/* 	CSS for jquery tools tabs
	used in the js banners  */
	
/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-top:1px solid #666;	 	
}

/* 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;
	text-decoration:none;
	border:1px solid #000;
	border-right:1px solid #CCCCCC;
	height:20px;
	margin-right:2px;
	position:relative;
	bottom:1px;
	outline:0;
}

ul.css-tabs a.disabled{width:100px;}

ul.css-tabs a .tabIcon img{vertical-align:middle;}
ul.css-tabs a .tabText{vertical-align:middle;}
	
/* selected tab */
ul.css-tabs a.current {
	border-top:1px solid #000;	
	cursor:default;
}
	
/* tab pane */
.css-panes .pane {
	display:none;
	border:1px solid #666;
	border-width:1px 1px 0 1px;
	/*min-height:150px;*/
	padding:0;
	background-color:#ddd;	
}