/* CSS Document */

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 32px; /*--Set height of tabs--*/
	border-bottom: 1px solid #99832D;
	border-left: 1px solid #99832D;
	width: 100%;
	font-family:Arial;
}
ul.tabs li {
	float: left;
	width:109px;
	margin: 0;
	padding: 0;
	height: 31px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 31px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #99832D;
	border-left: none;
	margin-bottom: -1px; /*--Pull the list item down 1px--*/
	overflow: hidden;
	position: relative;
	background: #ffcc00;
}
ul.tabs li a {
	text-decoration: none;
	color: #000;
	display: block;
	font-size:11px;
	font-weight:bold;
/*	font-size: 1.2em;
	padding: 0 20px;*/
	padding-left:5px;
	border: 1px solid #FFd425; /*--Gives the bevel look with a 1px yellow border inside the list item--*/
	outline: none;
}
ul.tabs li a:hover {
	background: #eaaf13;
}
html ul.tabs li.active, html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
	background: #FFd425;
	background-image:url(../images/active.gif);
	border-bottom: 1px solid #FFd425;/* --Makes the active tab look like it's connected with its content--*/
}
.tab_container {
	border: 1px solid #99832D;
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left; width: 100%;
	background: #FFd425;
	width:219px;
}
.tab_content {
	/*	padding: 10px;*/
	font-size: 11px;
	margin-left:10px;
	margin-top:3px;
/*	line-height:2px;*/
	margin-right:3px;
	font-family: Arial, Helvetica, sans-serif;
}
.tab_content a {
color:#006600;
text-decoration:none;
}
.tab_content p { padding-top:-10px; padding-bottom:4px; line-height:0px; margin-top:10px;}
/*.tab_content ul{
	padding: 0px;
	font-size:9px;
	padding:2px;
	margin:5px;
	padding:7px 7px 7px 0;
	margin-top:5px;
	line-height:16px;
	margin-left:10px;
}*/
/*.tab_content ul a {
color:#006600;
text-decoration:none;
 

}*/
