@charset "utf-8";
/* CSS Document */

#menuArea{
	height: 75px;
	width: 100%;
	margin: auto;
	margin-bottom: 0;
	padding-bottom: 10px;
	position: relative;
}

#menuArea.game{
	background-color: #0f0f0f;
}

#logo{
	float:  left;
	width: 210px;
	height: 75px;
}

#menuWrapper{
	width: 750px;
	height: 75px;
	float: right;
}

#submenu{
	height: 16px;
	float: right;
	clear: both;
	font-size: 12px;
	color: #d3d3d3;
}

#submenu li {
	float: left;
	border-left: 1px #d3d3d3 solid;
	padding-left: 10px;
	padding-right: 10px;
}

#submenu li.first{
	border-left: none;
}

#submenu li.last{
	padding-right: 0px;
}

#submenu a {
	color: #d3d3d3;
	text-decoration: none;
}

#submenu a:hover {
	color: #FFF;
}

#menu{
	height: 40px;
	float: right;
	clear: both;
	font-family: 'Oswald', sans-serif;
	text-transform:uppercase;
	font-size: 22px;
	font-weight: 400;
	margin-top: 14px;
	z-index: 1000;

	position: absolute;
	right: 0;
}

#menu li {
	float: left;
	margin-left: 40px;
}

#menu li.active {
	border-bottom: 12px solid #ff2f01;
}

#menu a {
	color: #FFF;
	text-decoration: none;
}

#cookiePopup{
    display: none;
    background-color: rgba(255,255,255,0.95);
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    padding: 10px;
    z-index: 10000;
    color: #000;
    box-sizing: border-box;
}
#cookiePopup .closer{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
#cookiePopup .detail{
    display: none;
    margin-top: 20px;
}
#cookiePopup h4{
    color:#000;
    text-decoration: underline;
    font-size: 14px;
}
#cookiePopup .detail ul{
    list-style-type: disc;
    list-style-position: outside;
}
#cookiePopup .detail ul li{
    margin-left: 15px;
}
#cookiePopup .detail ul ul{
    list-style-type: circle;
}
