@charset "utf-8";
/* CSS Document */

.pointer{cursor: pointer;}
.default{cursor: default;}
a{text-decoration: none;}
/* unvisited link */
.a:link {color: green; font-weight: bold;}
/* visited link */
.a:visited {color: orange; font-weight: bold;}
/* mouse over link */
.a:hover {color: #00FF00; font-weight: bold;}
/* selected link */
.a:active {color: #red; font-weight: bold;}
.left{float: left; margin-right:20px;}
.right{float: right;}
.tengah{float: left;margin-left:100px;}
.center{margin-left: auto; margin-right: auto;}
.tengah img{ height:15px; width:15px; cursor:pointer;}
.clear{clear: both;}
.disable-selection{
	-moz-user-select: none; /* Firefox */
	-ms-user-select: none; /* Internet Explorer */
	-khtml-user-select: none; /* KHTML browsers (e.g. Konqueror) */
	-webkit-user-select: none; /* Chrome, Safari, and Opera */
	-webkit-touch-callout: none; /* Disable Android and iOS callouts*/
}
body{margin: 0px; background-color: #161616; color: white; font-size: 12px; font-family: Gotham, "Helvetica Neue", Helvetica, Arial, sans-serif;}
.header{background-color: #212121; border-bottom: 1px solid #444444; width: 100%;position:fixed;top:0; z-index:1;}
.judul{width: 200px; font-weight: bold; font-size: 28px; padding-top: 1px; padding-bottom: 1px; padding-left: 10px; padding-right: 10px; color: white;}
.menu{}
.teksfooter{color: #858585; font-size: 12px; padding-left: 10px; padding-top: 3px; padding-bottom: 3px;}
.content{width: 100%; height: 100%; margin-bottom: 50px;margin-top:50px;}
.footer{background-color: #212121; bottom: 0; position: fixed; width: 100%; border-top: 1px solid #444444;}
.tanggal {float:right; margin-right:20px; margin-top:10px; font-size:12px; color:#FFF;}
.glow {color: #FFFFFF; text-shadow: 0 0 5px #da251c, 0 0 10px #da251c, 0 0 30px #da251c, 0 0 45px #da251c, 0 0 60px #da251c; text-align: center; /*text-transform: uppercase;*/}
.blink {
    -webkit-animation: blink .75s linear infinite;
    -moz-animation: blink .75s linear infinite;
    -ms-animation: blink .75s linear infinite;
    -o-animation: blink .75s linear infinite;
    animation: blink .75s linear infinite;
}

@-webkit-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}

@-moz-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}

@-ms-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}

@-o-keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 1; }
    50.01% { opacity: 0; }
    100% { opacity: 0; }
}