
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #f5c49d;	 	
}

/* 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:9px 15px 1px;	
	text-decoration:none;
	border:1px solid #f5c49d;	
	border-bottom:0px;
	height:18px;
	background: #f9ebde url(../images/bkgd-tab.png) repeat-x;
	color:#444;
	margin-right:0px;
	position:relative;
	top:1px;	
	outline:0;
	-moz-border-radius:6px 6px 0 0;	
}

ul.css-tabs a:hover {
	background: #f2d8be url(../images/bkgd-tab-hover.png) repeat-x;
	color:#000;
}
	
/* selected tab */
ul.css-tabs a.current {
   background: #fff url(../images/bkgd-tab-active.png) repeat-x;
	border-bottom:1px solid #fff;	
	color:#000;	
	cursor:default;
}

	
/* tab pane */
.css-panes div.pane {
	display:none;
	border:1px solid #f5c49d;
	border-width:0 1px 1px 1px;
	padding:15px 15px;
	background-color:#fff;	
}



