/* root element for tabs  */


#bum
{
  margin: 0px;
 padding: 10px;
 width: 250px;
  font-family: Tahoma, Helvetica, sans-serif;
 font-size: 11px;
 margin: 0px;
 padding: 0px;
color: #000000;
}
ul.css-tabs {  
	margin:0 !important; 
	padding:0;
	height:26px;
	border-bottom:1px solid #c0c0c0;	 
	
}

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

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:11px;
	display:block;
	padding:5px 7px;	
	text-decoration:none;
	border:1px solid #c0c0c0;	
	border-bottom:0px;
	height:14px;
	background-color:#d0d0d0;
	
	color:#444;
	margin-right:2px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;
border-top-left-radius: 4px;
 border-top-right-radius: 4px;
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#F7F7F7;
	color:#333;
}
	
/* selected tab */
ul.css-tabs a.current {
	background: #dfdfdf;
	border-bottom:1px solid #dfdfdf;	
	color:#000;	
	cursor:default;
font-weight: bold;
}

	
/* tab pane */
div.css-panes div {
	display:none;
	border:1px solid #c0c0c0;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding:15px 10px;
	background: #dfdfdf;
}



