html,body{
    background: #000;
}

.font-12{
    font-size:12px;
}
.font-20{
    font-size:20px;
}
.font-bold{
    font-weight:bold;
}

.font-gold{
    color:#F7842C;
}
.alert{
    text-align:left;
    padding:5px;
    font-size:12px;
    color:#080;
    background-color:#f0f0f0;
    border-radius:2px;
}

.result table td{
    background: white;
    font-size: 12px
}
.result table th{
    background: white;
    font-size: 14px
}

.menu ul{
    list-style-type:none;
    padding:0px;
    margin:0px;
}

.menu ul li a{
    display:inline;
    font-size: 17px;
}
.menu ul li{
    display:inline;    
}

a{
    color:blue;
    text-decoration:none;
}

.border-blur{
    border:1px solid #f0f0f0;
}

.diskon-kei table{
    width:100%;
}

.diskon-kei th{
    background-color:#f0f0f0;
    color:#505050;
    font-size:12px;
    font-weight:bold;
}
.diskon-kei td{
    font-size:12px;
    text-align:center;
}
.font-green{
    color:#090;
}
.font-red{
    color:#f00;
}
.fontwhite{
    color:#fff;
}
.fontred{
    color:#f00;
}
.fontgreen{
    color:#0f0;
}
.fontblue{
    color:#00f;
}
.fontoceanblue{
    color:#0088FF;
}
.fontblack{
    color:#000;
}
.fontyellow{
    color:yellow;
}
.fontgold{
    color:#ffae00;
}
#noti_Container {
    position:relative;     /* This is crucial for the absolutely positioned element */
    padding-left:5px;
    padding-top:5px;
    width:16px;
    height:16px;
}
.noti_bubble {
    position:absolute;    /* This breaks the div from the normal HTML document. */
    top: -6px;
    right:-6px;
    padding:1px 2px 1px 2px;
    background-color:red; /* you could use a background image if you'd like as well */
    color:white;
    font-weight:bold;
    font-size:0.55em;

    /* The following is CSS3, but isn't crucial for this technique to work. */
    /* Keep in mind that if a browser doesn't support CSS3, it's fine! They just won't have rounded borders and won't have a box shadow effect. */
    /* You can always use a background image to produce the same effect if you want to, and you can use both together so browsers without CSS3 still have the rounded/shadow look. */
    border-radius:30px;
    box-shadow:1px 1px 1px gray;
}