﻿@charset "UTF-8";
#nav {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 250px;
	height: 100%;
	padding: 20px;
	border: 1px solid #113da5;
	background-color: #335fc7;
	-webkit-border-top-left-radius: 10px;
	-webkit-border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-top-left-radius: 10px;
	border-bottom-left-radius: 10px;
	-webkit-box-shadow: inset 0px 1px 0px 0px rgba(121, 148, 225, 1);
	-moz-box-shadow: inset 0px 1px 0px 0px rgba(121, 148, 225, 1);
	box-shadow: inset 0px 1px 0px 0px rgba(121, 148, 225, 1);
}
#nav .panel {
	position: relative;
	width: 100%;
	padding: 10px 9px;
	background-color: #fff;
	border: 1px solid #133890;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
	box-shadow: inset 0px 0px 6px 0px rgba(0, 0, 0, 0.5);
	color: #335fc7;
	text-align: center;
	letter-spacing: -1px;
}
#nav .panel .btn {
	position: relative;
	width: 100%;
	z-index: 1;
}
#nav .panel .btn:after {
	content: '';
	display: block;
	clear: both;
}
#nav .panel .btn li {
	float: left;
	width: 90px;
	margin-right: 8px;
}
#nav .panel .btn li:last-child {
	margin-right: 0;
}
#nav .panel a {
	display: block;
	width: 100%;
	height: 100%;
	color: #fff;
}
#nav .line {
	position: relative;
	width: 100%;
	height: 1px;
	margin: 20px 0;
	background-color: #113da5;
	border: none;
	border-bottom: 1px solid #7994e1;
}

/* login
====================================================*/
#ctl00_login form {
	text-align: left;
}
#ctl00_login input[type=text],
#ctl00_login input[type=password] {
	position: relative;
	width: 125px;
	height: 30px;
	margin-bottom: 5px;
	padding: 5px;
	border: 1px solid #929292;
	-webkit-box-shadow: inset 0px 0px 10px 0px rgba(100, 100, 100, 0.1);
	-moz-box-shadow: inset 0px 0px 10px 0px rgba(100, 100, 100, 0.1);
	box-shadow: inset 0px 0px 10px 0px rgba(100, 100, 100, 0.1);
	background-color: transparent;
	color: #bbb;
	font-size: 13px;
}
#ctl00_login .password {
	position: relative;
}
#ctl00_login .password:before {
	content: 'PASSWORD';
	display: block;
	position: absolute;
	top: 4px;
	left: 6px;
	width: 100px;
	height: 30px;
	color: #bbb;
	font-size: 13px;
}
#ctl00_login .password.on:before {
	content: none;
}
#ctl00_login input[type=text].on,
#ctl00_login .on input[type=password] {
	color: #464646;
	font-size: 14px;
}
#ctl00_login input[type=submit] {
	outline: none;
	position: absolute;
	top: 10px;
	left: 140px;
	width: 58px;
	height: 65px;
	border: 1px solid #797979;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: inset 0px 1px 0px 0px rgba(191, 191, 191, 1);
	-moz-box-shadow: inset 0px 1px 0px 0px rgba(191, 191, 191, 1);
	box-shadow: inset 0px 1px 0px 0px rgba(191, 191, 191, 1);
	background: #989898; /* Old browsers */
	background: -moz-linear-gradient(top,  #989898 0%, #8f8f8f 8%, #8f8f8f 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#989898), color-stop(8%,#8f8f8f), color-stop(100%,#8f8f8f)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #989898 0%,#8f8f8f 8%,#8f8f8f 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #989898 0%,#8f8f8f 8%,#8f8f8f 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #989898 0%,#8f8f8f 8%,#8f8f8f 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #989898 0%,#8f8f8f 8%,#8f8f8f 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#989898', endColorstr='#8f8f8f',GradientType=0 ); /* IE6-9 */
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	text-shadow: 0px 1px 0px rgba(110, 110, 110, 1);
}

#ctl00_login input[type=submit]:hover {
	background: #8c8c8c; /* Old browsers */
	background: -moz-linear-gradient(top,  #8c8c8c 0%, #7e7e7e 10%, #7e7e7e 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#8c8c8c), color-stop(10%,#7e7e7e), color-stop(100%,#7e7e7e)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  #8c8c8c 0%,#7e7e7e 10%,#7e7e7e 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  #8c8c8c 0%,#7e7e7e 10%,#7e7e7e 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  #8c8c8c 0%,#7e7e7e 10%,#7e7e7e 100%); /* IE10+ */
	background: linear-gradient(to bottom,  #8c8c8c 0%,#7e7e7e 10%,#7e7e7e 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#8c8c8c', endColorstr='#7e7e7e',GradientType=0 ); /* IE6-9 */
}

/* logout
====================================================*/
#ctl00_logout .info {
	position: relative;
	width: 100%;
	margin: 10px 0;
	line-height: 1.4;
}
#ctl00_logout .info .name {
	display: inline-block;
	margin: 5px 3px 0 0;
	font-weight: bold;
	color: #000;
}
#ctl00_logout .btn_otp a {
	display: block;
	width: 100%;
	height: 100%;
}
#ctl00_logout .btn_otp a span {
	display: block;
}
#ctl00_logout .btn_otp a span.status {
	width: 90%;
	margin: 0 auto;
	font-size: 11px;
	text-shadow: none;
}
#ctl00_logout .btn_otp a span.status.off {
	border-top: 1px solid #3f0101;
	border-left: 1px solid #3f0101;
	background-color: #fb0303;
	color: #ebffd4;
}
#ctl00_logout .btn_otp a span.status.on {
	border-top: 1px solid #0a0e25;
	border-left: 1px solid #0a0e25;
	background-color: #283795;
	color: #e2f464;
}

/* gnb
====================================================*/
#gnb {
	position: relative;
	width: 100%;
}
#gnb dl {
	width: 190px;
	margin: 0 auto;
}
#gnb dl dt {
	position: relative;
	width: 170px;
	height: 22px;
	margin: 30px 0 15px 0;
	background-repeat: no-repeat;
	background-image: url(/image/Gamecom/nav.png);
	text-indent: -1000000px;
}
#gnb dl dd {
	margin-left: 10px;
}
#gnb dl dd:before {
	content: '・';
	display: inline-block;
	color: #9cb1e4;
}
#gnb dl dt.menu0 {
	background-position: -850px 0;
}
#gnb dl dt.menu1 {
	background-position: 0 0;
}
#gnb dl dt.menu2 {
	background-position: -170px 0;
}
#gnb dl dt.menu3 {
	height: 40px;
	background-position: -340px 0;
}
#gnb dl dt.menu4 {
	background-position: -510px 0;
}
#gnb dl dt.menu5 {
	background-position: -680px 0;
}
#gnb dl dt.menu5 a {
	display: block;
	width: 100%;
	height: 100%;
}
#gnb dl a {
	color: #9cb1e4;
}
#gnb dl dd.on a,
#gnb dl a:hover {
	color: #c9d5f1;
	font-weight: bold;
}
#nav .menu6 {
	position: absolute;
	bottom: 35px;
	left: 35px;
	width: 60px;
	height: 30px;
}
#nav .menu6 a {
	color: #96bbf0;
	text-decoration: underline;
}
