#tabs {
	padding:0px;
	float:left;
	clear:both;
	width: 600px;
	margin-bottom:15px;
}
	
	ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 37px; /*--Set height of tabs--*/
 	width: 600px;
	background: #eee;
	}
	ul.tabs li {
		float: left;
		padding: 0;
		margin: 0 0 0 0px;
		height: 43px; /*--Subtract 1px from the height of the unordered list--*/
		line-height: 43px; /*--Vertically aligns the text within the tab--*/
 		border-left: none;
		margin-bottom: -1px; /*--Pull the list item down 1px--*/
		overflow: hidden;
		position: relative;
		border-right: 1px solid #fff;
 	}
	ul.tabs li a {
		text-decoration: none;
		color: #333;
		display: block;
		font-size: 14px;
		font-weight:bold;
 		outline: none;
 		cursor: pointer;
		text-align: center;
		padding: 0px 15px 0px 15px;
	}
	ul.tabs li a:hover {
 	}
 	
	html ul.tabs li.active, html ul.tabs li.active a,  html ul.tabs li.active a:hover  { /*--Makes sure that the active tab does not listen to the hover properties--*/
		color:#fff;
		background: url(../images/tabs_arrow.jpg) no-repeat center bottom;
		background-color: #333;
 	}
	
	
.tab_container {
 	overflow: hidden;
	clear: both;
	float: left; 
	padding: 20px 15px 10px 15px;
	width:568px;
	border: 1px solid #eee;
 }
	.tab_content {
	padding: 0px 0;
	font-size: 14px;
	background: #fff;
	}



	