@charset "utf-8";
/* CSS Document */

/* root element for tabs  */
ul.css-tabs {  
	margin:0 !important; 
	margin-top:20px;
	padding:0;
	/*height:30px;*/
	/*border-bottom:1px solid #999;*/
	width:590px;
}

/* single tab */
ul.css-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
	border: 1px solid #ededed;
	border-bottom-width: 0;
	border-top: 1px solid #fff;
}

/* link inside the tab. uses a background image */
ul.css-tabs a { 
	float:left;
	font-size:13px;
	font-weight:bold;
	display:block;
	padding:2px 10px;	
	text-decoration:none;
	/*border:1px solid #999;*/	
	border-bottom:0px;
	/*height:18px;*/
	background-color:#EDEDED;
	color:#0080C5;
	/*margin-right:2px;*/
	/*-moz-border-radius-topleft: 4px;
	-moz-border-radius-topright:4px;*/
	position:relative;
	top:1px;	
}

ul.css-tabs a:hover {
	background-color:#dedede;
	color:#0080C5;
}
	
/* selected tab */
ul.css-tabs a.current {
	background-color:#fff;
	border:1px solid #ddd;
	border-bottom:none;	
	color:#404041;	
	cursor:default;
	outline:none;
}

	
/* tab pane */
div.css-panes > div {
	display:none;
	/*border:1px solid #999;*/
	/*border-width:0 1px 1px 1px;*/
	min-height:150px;
	/*padding:15px 20px;*/
	background-color:#fff;	
}




