@charset "utf-8";

ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 30px; /*--Set height of tabs--*/

	width: 100%;
}
ul.tabs li {
	float: left;
	margin: 0;
	padding: 0;
	height: 29px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 29px; /*--Vertically aligns the text within the tab--*/
	border: 1px solid #ffffff;
	border-left: none;
	
	overflow: hidden;
	position: relative;
	background-image: url(../images/tab.jpg);
	background-repeat: no-repeat;
	width: 130px;
}
ul.tabs li a {
	text-decoration: none;
	color: #111111;
	display: block;
	font-size: 12px;
	padding: 0 15px; /*--Gives the bevel look with a 1px white border inside the list item--*/
	outline: none;
	font-weight: normal;
	text-align: center;
}
ul.tabs li a:hover {
	background-image: url(../images/tabh.jpg);
	color: #FFFFFF;
}
ul.tabs li.active {

color: #ffffff

}
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--*/
	border-bottom: 1px solid #fff; /*--Makes the active tab look like it's connected with its content--*/
	background-image: url(../images/tabh.jpg);
	color: #FFFFFF;
}
ul.tabs li.active a {color: #ffffff;}


.tab_container {
	border-top: none;
	overflow: hidden;
	clear: both;
	float: left;
	width: 100%;
	background: #262626;
	height: 365px;
	margin-top:1px;
}
.tab_content {
	font-size: 1em;
	color: #FFFFFF;
}

#lines{
	width:900px;
	background-color:#dddeed;
	height:2px;
}

