
/* root element for tabs  */
ul.css-tabs {  
	list-style-image: none !important;
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #155BA1;	 	
}

/* 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;
	font-size:13px;
	display:block;
	padding:5px 10px;	
	text-decoration:none;
	border:1px solid #678;
	border-bottom:0px;
	height:18px;
	background-color:#678;
	color:#FFF;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#4396CA;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#155BA1;
	border:1px solid #155BA1;
	border-bottom:2px solid #155BA1;	
	color:#FFF;	
	cursor:default;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	border:1px solid #155BA1;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 20px;
	background-color:#ddd;	
}

 
/* tab pane with background gradient */ 
div.skin2 div { 
    color:#fff; 
    background:#4396CA url(../images/main_bg.jpg) repeat-x scroll 0 -50px;
    min-height:200px; 
}
ul.css-tabs img {
	margin-right: 5px;
	margin-bottom: -5px;
}

