.tabs_maindiv {
	float: left;
	width: 600px;
}
#tabs {
	float:left;
	clear:both;
	width: 600px;
	height: 403px;
	background: url(../images/tabs_bg.jpg) no-repeat left bottom;
}
	
	ul.tabs {
	margin: 0;
	padding: 0;
	float: left;
	list-style: none;
	height: 34px; /*--Set height of tabs--*/
 	width: 600px;
	background: url(../images/tabs_navbg.jpg) no-repeat left top;
	}
	ul.tabs li {
		float: left;
		margin: 0;
		padding: 0;
		height: 34px; /*--Subtract 1px from the height of the unordered list--*/
		line-height: 34px; /*--Vertically aligns the text within the tab--*/
 		border-left: none;
		overflow: hidden;
		position: relative;
 	}
	ul.tabs li a {
		text-decoration: none;
		color: #999;
		display: block;
		font-size: 16px;
		font-weight:bold;
 		outline: none;
 		cursor:pointer;
		width: 150px;
		height: 34px;
		text-align: center;
	}
	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:#222;
		background: url(../images/tabs_active.png) no-repeat left top;
		border-bottom: 1px solid #fff;
 	}
	
	
	.tab_container {
 	overflow: hidden;
	clear: both;
	float: left; 
	padding: 10px 10px 0px 10px;
	width:580px;
 }
	.tab_content {
	padding: 10px;
	font-size: 13px;
	display: none;
	}






	
