@import url(./header.css);
@import url(./footer.css);
@import url(./main.css);
@import url(./left.css);
@import url(./right.css);
@import url(./log.css);
/*-----------------------------------------------------
	基本設定
-----------------------------------------------------*/
*{
	margin: 0px;
	padding: 0px;
}
html {
	scrollbar-face-color:#333333; /*スクロールバー本体の色*/
	scrollbar-highlight-color: #999999; /*スクロールバー左側（上）の影*/
	scrollbar-3dlight-color: #ffffff; /*スクロールバーの左側（下）の影*/
	scrollbar-shadow-color: #cccccc; /*スクロールバー右側（上）の影*/
	scrollbar-darkshadow-color: #ffffff; /*スクロールバー右側（下）の影*/
	scrollbar-arrow-color: #ff3333; /*矢印の色*/
	scrollbar-track-color: #eeeeee; /*背面の色*/
}
body {
	font-size: 12px;
	line-height: 18px;
	color: #CCCCCC;
	background-color: #333333;
}
#Container {
	background-color: #333333;
	height: auto;
	width: 100%;
}
#Header {
	background-color: #333333;
	height: auto;
	width: 100%;
	margin-bottom: 15px;
}
#Center {
	width: auto;
	height: auto;
	min-height: 1500px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #999999;
	border-left-color: #999999;
	margin-left: 175px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
}
#Left {
	height: auto;
	width: 170px;
	float: left;
	position: absolute;
	left: 0px;
	top: 105px;
	background-color: #333333;
}
#Left_wrapper {
	height: auto;
	width: auto;
	margin-top: 0px;
	margin-right: 195px;
	margin-bottom: 0px;
	margin-left: 0px;
}
#Right {
	height: auto;
	width: 190px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: -190px;
	position: absolute;
	top: 105px;
	right: 0px;
	background-color: #333333;
}
#Footer {
	margin: 5px 0px 0px;
	height: 30px;
	width: 100%;
	text-align: center;
	clear: both;
	border-top-width: 1px;
	border-right-width: 0px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	border-top-color: #999999;
}
a:link {
	color: #FF9933;
	text-decoration: none;
}
a:visited {
	text-decoration: none;
	color: #FF9933;
}
a:hover {
	text-decoration: underline;
	color: #FFFF99;
}
a:active {
	text-decoration: none;
	color: #FF0000;
}
.emptyBox {
	font-size: 1px;
	line-height: 1px;
	height: 1px;
	width: 100%;
	clear: both;
	float: none;
	display: block;
}