/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:30px;
	border-bottom:1px solid #666;	 
	background-image: url("../images/bg_titlebar.png");	
	background-repeat: repeat-x;
}

/* 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 { 
	display: block;
    float: left;
    font-size: 13px;
    font-weight: bold;
    height: 30px;
    line-height: 33px;
    margin-right: 2px;
    outline: 0 none;    
    position: relative;
    text-align: center;
    text-decoration: none;    
    width: 81px;
}

ul.css-tabs a:hover {
	/*background-color:#F7F7F7;
	color:#333;*/
	background-image: url("../images/bg_tab_mouseover.png");
}
	
/* selected tab */
ul.css-tabs a.current {	
	/*border-bottom:1px solid #ddd;	*/
	color:#000;	
	cursor:default;
	background-image: url("../images/bg_tab_chosen.png");
	background-repeat:no-repeat;
}

	
/* tab pane */
div.css-tab-panel {
	display: block;
	border-width: 0;
	background: none;
	height: 100%;
	width: 100%;
	/*
	display:none;
	border:1px solid #666;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 20px;
	background-color:#ddd;	*/
}
