/*ページ設定部分（style.cssなどで設定していれば削除する）*/
* {
	margin: 0;
	padding: 0;
}
body {
	background: #000;
	font-family: Arial;
	text-transform: uppercase;
	overflow-x: hidden;
}
#container {
	width: 100%;
}
a {
	color: #fff;
	text-decoration: none;
}
a:hover {
	color: #ff0000;
	text-decoration: underline;
}
.bg_img img {
	width: 100%;
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: -1;
}
/*ここまでページ設定部分*/


/*ここからOverlay Effect Menuの設定*/
.oe_wrapper ul.hovered > li > a {
	background: #fff;
	text-shadow: 0px 0px 1px #FFF;
}
.oe_overlay {
	background: #000;
	opacity: 0;
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
}
ul.oe_menu {
	list-style: none;
	position: relative;
	margin: 30px 0px 0px 40px;
	width: 560px;
	float: left;
	clear: both;
}
ul.oe_menu > li {
	width: 112px;
	height: 101px;
	padding-bottom: 2px;
	float: left;
	position: relative;
}
ul.oe_menu > li > a {
	display: block;
	background-color: #101010;
	color: #aaa;
	text-decoration: none;
	font-weight: bold;
	font-size: 12px;
	width: 90px;
	height: 80px;
	padding: 10px;
	margin: 1px;
	text-shadow: 0px 0px 1px #000;
	opacity: 0.8;
}
ul.oe_menu > li > a:hover, ul.oe_menu > li.selected > a {
	background: #fff;
	color: #101010;
	opacity: 1.0;
}
ul.oe_menu div {
	position: absolute;
	top: 103px;
	left: 1px;
	background: #fff;
	width: 498px;
	height: 180px;
	padding: 30px;
	display: none;
}
ul.oe_menu div ul li a {
	text-decoration: none;
	color: #222;
	padding: 2px 2px 2px 4px;
	margin: 2px;
	display: block;
	font-size: 12px;
}
ul.oe_menu div ul.oe_full {
	width: 100%;
}
ul.oe_menu div ul li a:hover {
	background: #000;
	color: #fff;
}
ul.oe_menu li ul {
	list-style: none;
	float: left;
	width: 150px;
	margin-right: 10px;
}
li.oe_heading {
	color: #aaa;
	font-size: 16px;
	margin-bottom: 10px;
	padding-bottom: 6px;
	border-bottom: 1px solid #ddd;
}
