@charset "utf-8";

/*コンテナ
---------------------------------------------------------------------------*/
#container {
	width: auto;
	margin-right: 6px;
	margin-left: 6px;
}

/*コンテンツ
---------------------------------------------------------------------------*/
#main, #left {
	float: none;
	width: auto;
}

/*上部のメインメニュー
---------------------------------------------------------------------------*/
/*メニューブロック全体の設定*/
header nav#menubar ul {
	height: auto;
	padding-left: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}
/*メニュー１個ごとの設定*/
header nav#menubar ul li {
	border-right: none;
	background-color: #0e1e41;
	border-radius: 6px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#284571), to(#0e1e41));
	background-image: -webkit-linear-gradient(#284571, #0e1e41);
	background-image: linear-gradient(#284571, #0e1e41);
	width: 49%;
	margin-bottom: 1%;
}
/*１個目のメニューの線の設定*/
header nav#menubar ul li:first-child {
	border-left: 0;
}
/*奇数番目のメニューの設定*/
header nav#menubar ul li:nth-child(odd) {
	margin-right:1%;
	width: 50%;
}
