@charset "utf-8";
@import "reset.css";
#wrapper {
	width: 620px;
	margin: 5px auto;
	line-height: 1.6;
}
/* ライセンス表示 */
div.copyright {
	font-size: .875em;
	background: #999;
	color: #fff;
	padding: 1.5em 0;
}
div.copyright p {
	width: 620px;
	margin: 0 auto;
	color: #fff;
}
div.copyright em {
	text-decoration: underline;
}

#wrapper ul.tabNav {
	overflow: hidden; /* haslayout=true */
	position: relative;
	z-index: 10;
	margin: 0;
	padding: 0;
	height: 39px;
}
#wrapper ul.tabNav li {
	float: left;
	list-style-type: none;
	margin: 0;
	height: 39px;
}
#wrapper ul.tabNav li a {
	display: block;
	margin: 1px 0px 0;
	padding: 0 2px;
	color: #999;
	border: 1px solid #999;
	text-decoration: none;
	line-height: 3;
	font-weight:bold;
	font-size:12px;
	text-align:center;
	width: 149px;
		   /* 角丸 */
	   /* ▼CSS3 */
   border-top-left-radius: 5px;  /* 左上 */
   border-top-right-radius: 5px; /* 右上 */

   /* ▼Safari,Chrome */
   -webkit-border-top-left-radius: 5px;  /* 左上 */
   -webkit-border-top-right-radius: 5px; /* 右上 */

   /* ▼Firefox */
   -moz-border-radius-topleft: 5px;  /* 左上 */
   -moz-border-radius-topright: 5px; /* 右上 */
   
   background: -moz-linear-gradient(top, #fff, #fef7e5);  
   background: -webkit-gradient(linear, center top, center bottom, from(#fff), to(#fef7e5)); 
}
#wrapper ul.tabNav li a:hover ,
#wrapper ul.tabNav li a:focus {
	color: #666;
	background: -moz-linear-gradient(top, #e6fb9e, #fff);  
    background: -webkit-gradient(linear, center top, center bottom, from(#e6fb9e), to(#fff)); 
}
#wrapper ul.tabNav li a.active {
	color: #006620;
	background: -moz-linear-gradient(top, #b7dbad, #fff);  
    background: -webkit-gradient(linear, center top, center bottom, from(#b7dbad), to(#fff));
	border-bottom-color: #fff;
	border-top-width: 5px;
	border-top-color: #08a33d;

}
div.tabContent {
	position: relative;
	top: -1px;
	z-index: 1;
	clear: left;
	padding: 5px;
	background: #fff;
	border: 1px solid #999;
}
