
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	/*border-bottom:1px solid #666;	*/ 
	padding-left: 75px;	
	padding-top: 140px;
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	display:block;
	padding:10px 15px;	
	text-decoration:none;
	/*border:1px solid #666;	
	border-bottom:1px solid #efefef;	*/
	height:18px;
	background-color:#efefef;
	color:#777;
	margin-right:2px;
	/*-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;*/
	position:relative;
	top:1px;
	
	font-family: Latorre, Georgia, "Times New Roman", Times, serif;
	font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: #666; text-decoration: none; 
	
	
}

ul.css-tabs a:hover {
	/*background-color:#cfe4f8;*/
	color:#000;
	background-color:#fff;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#fff;
	/*border-top:2px solid #cecece;	
	margin-top: -2px;*/

	background-image: url(../img/tab-active.png);
	background-repeat: no-repeat;
	background-position: 0 0;
	
	color:#000;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding-top: 30px;
}


