.tab_container {  margin: 0px;  }
.tab_content { padding: 0px ; margin: 0px;}

ul.tabs {
	margin: 0; width: 100%;
	padding: 5px 0px;
	float: left;
	list-style: none;
	height: 18px; /*--Set height of tabs--*/
}
ul.tabs li {
	float: left; 
	margin: 0;
	padding: 0;
	height: 30px; /*--Subtract 1px from the height of the unordered list--*/
	line-height: 12px; /*--Vertically aligns the text within the tab--*/
	overflow: hidden; list-style-type: none;  text-align:center;
}

ul.tabs li a {
	text-decoration: none;
	font-weight: 400;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 10px 20px;
	text-transform: uppercase;
}

ul.tabs li a:hover {
	color:#3f80b1; text-decoration: none;
}
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--*/
	color: #000; background-color:#fff; border-bottom: 2px #000 solid;
}