/* CSS Document */


ul.tabs {
	width: 100%;
	overflow:hidden;
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 18px;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
	margin-top:12px;
}
ul.tabs li 
{
	float:left;
	margin: 0 0 -1px;
	padding: 0;
	line-height: 18px;
	border: 1px solid #999;
	border-left: none;
	background: #e0e0e0;
	position: relative;
	height: 18px;
}
.wrapertab {
	margin: 0px;
	padding: 0px;
	height: auto;
	width: auto;
	position: relative;
}

ul.tabs li a {
	text-decoration: none;
	color: #000;
	display: block;
	font-size: 11px;
	padding: 0 7px;
	border: 1px solid #fff;
	outline: none;
}
ul.tabs li a:hover {
	background: #ccc;
}	
html ul.tabs li.active, html ul.tabs li.active a:hover  {
	background: #fff;
	border-bottom: 1px solid #fff;
}
.tab_container {
	width: 100%;
	border: 1px solid #999;
	border-top: none;
	clear: both;
	-moz-border-radius-bottomright: 5px;
	-khtml-border-radius-bottomright: 5px;
	-webkit-border-bottom-right-radius: 5px;
	-moz-border-radius-bottomleft: 5px;
	-khtml-border-radius-bottomleft: 5px;
	-webkit-border-bottom-left-radius: 5px;
}
.tab_content 
{
	font-size: 12px;
	background: #FFF;
	padding: 10px;
}
