@charset "utf-8";
/* NHN | JCM */

/* Element Reset */
body,
input, 
textarea,
select{ margin:0; font-size:12px; font-family:Tahoma;}
body{background-color:#000;}
em{ font-style:normal;}
fieldset{ border:0; margin:0; padding:0;}
img{ border:0;}
ul,li{list-style:none;}
*, ::after, ::before {
	-webkit-box-sizing: border-box;
    box-sizing: border-box;
}
a{ text-decoration:none; }
body{overflow-x: hidden;}
#wrapper{min-width:1110px;}
.navbar-custom{min-width:1110px;}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #5F88C0;
}
::-webkit-scrollbar-button {
  width: 0;
  height: 0;
}

.button{
	zoom: 1;
    display: inline-block;
    vertical-align: baseline;
    margin: 0 2px;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    font: 1.2em Tahoma;
    padding: .5em 2em .55em;
    text-shadow: 0 1px 1px rgba(0,0,0,.3);
    -webkit-border-radius: .5em;
    -moz-border-radius: .5em;
    border-radius: .5em;
    -webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    -moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
    box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover{
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}
.button.blue{
	color: #fff;
    border: solid 1px #224FA3;
    background: #2453AD;
    background: -webkit-gradient(linear, left top, left bottom, from(#285EC1), to(#204A99));
    background: -moz-linear-gradient(top, #285EC1, #204A99);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#285EC1', endColorstr='#204A99');
}
.button.blue:hover{
	border: solid 1px #da7c0c;
    background: #f78d1d;
    background: -webkit-gradient(linear, left top, left bottom, from(#faa51a), to(#f47a20));
    background: -moz-linear-gradient(top, #faa51a, #f47a20);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#faa51a', endColorstr='#f47a20');
}


.skip{
	position: fixed;
    bottom: 30px;
    right: 30px;
	display:none;
}
.volume{
	position: fixed;
    top: 10px;
    left: 10px;
}
.volume i{
	color:#fff;
	cursor:pointer;
}

/* 깜박이는 애니메이션 정의 */
@keyframes blink-effect {
	50% {
		opacity: 0;
	}
}
/* 버튼 기본 상태에 깜박이는 효과 적용 */
.button-blink {
	animation: blink-effect 1s step-end infinite;
}

/* 버튼 호버 또는 포커스 상태 */
.button-blink:hover, .button-blink:focus {
	animation: none;
}