@charset "utf-8";
/*-----------------------------------------------*/
/* Reset & Default Setting ----------------------*/
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p,
header, hgroup, section, article, aside, hgroup, footer, figure, figcaption, nav {
	display:block;
	margin: 0;
	padding: 0;
	font-size: 14px;
}
html{
	-webkit-text-size-adjust: none;
}
ul {
	list-style: none;
	list-style-position:inside;
}
a,a:link,a:visited,a:hover,a:active{
	color:#000;
}
p{
	padding:10px 0px;
	line-height:1.2em;
}
hr{
	margin:20px 0px;
}
/*-----------------------------------------------*/
body{
	background-color:#996665;
}
header{
	height:56px;
	background: rgb(153,204,0);
	background: -moz-linear-gradient(top, rgba(153,204,0,1) 0%, rgba(116,165,0,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(153,204,0,1)), color-stop(100%,rgba(116,165,0,1)));
	background: -webkit-linear-gradient(top, rgba(153,204,0,1) 0%,rgba(116,165,0,1) 100%);
	background: -o-linear-gradient(top, rgba(153,204,0,1) 0%,rgba(116,165,0,1) 100%);
	background: linear-gradient(top, rgba(153,204,0,1) 0%,rgba(116,165,0,1) 100%);
}
header h1{
	display:table-cell;
	padding:0px 0px 0px 12px;
	height:56px;
	font-size:20px;
	vertical-align:middle;
	color:#FFF;
	text-shadow: -1px -1px 1px #525252;
}
header h1>a,header h1>a:link,header h1>a:visited{
	color:#FFF;
	text-decoration:none;
}
.main{
	margin:20px;
}
.topMenu{
	margin:0px 0px 20px 0px;
	background-color:#FFF;
	-webkit-background-clip: padding-box;
	-moz-border-radius-bottomright:10px;
	-moz-border-radius-bottomleft:10px;
	-webkit-border-bottom-right-radius:10px;
	-webkit-border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
	border:2px rgba(116,165,0,1) solid;
}
.topMenu>h2{
	display:table-cell;
	padding:0px 0px 0px 12px;
	height:48px;
	font-size:16px;
	vertical-align:middle;
	color:rgba(116,165,0,1);
}
.topMenu>ul{
}
.topMenu>ul>li{
	position:relative;
	padding:0px 0px 0px 12px;
	background: rgb(255,255,255);
	background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(47%,rgba(246,246,246,1)), color-stop(100%,rgba(237,237,237,1)));
	background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	background: linear-gradient(top, rgba(255,255,255,1) 0%,rgba(246,246,246,1) 47%,rgba(237,237,237,1) 100%);
	-webkit-background-clip: padding-box;
	border-top:1px #999 solid;
}

.topMenu>ul>li:last-child{
	-moz-border-radius-bottomright:10px;
	-moz-border-radius-bottomleft:10px;
	-webkit-border-bottom-right-radius:10px;
	-webkit-border-bottom-left-radius:10px;
	border-bottom-right-radius:10px;
	border-bottom-left-radius:10px;
}
.topMenu>ul>li>a,
.topMenu>ul>li>a:link,
.topMenu>ul>li>a:visited{
	display:block;
	padding:10px 10% 10px 0px;
	font-size:16px;
	line-height:1.3em;
	text-decoration:none;
}
.topMenu>ul>li>a:after{
	position:absolute;
	top:30%;
	right:6%;
	height:16px;
	content:'▼';
	color:rgba(116,165,0,1);
	font-weight:bold;
	text-shadow: 1px -1px 1px #525252;
	-o-transform:rotate(-90deg);
	-moz-transform:rotate(-90deg);
	-webkit-transform:rotate(-90deg);
	transform:rotate(-90deg);
}

.content{
	margin:0 auto 20px;
	padding:10px;
	width:80%;
	background-color:#FFF;
	-moz-box-shadow: 0px 3px 5px rgba(0,0,0,.8);
	-webkit-box-shadow: 0px 3px 5px rgba(0,0,0,.8);
}