@charset "utf-8";

/*
 Created: 10/22/2009
 Last Modified: 
*/

/* root element for tabs  */
ul.css-tabs {
	border-bottom:1px solid #b2b2b2; 
	height: 30px;
	margin:0 !important; 
	padding:0;
}
/* single tab */
ul.css-tabs li { 
	float: left;	 
	list-style-type: none;
	margin: 0; 
	padding: 0;		
}
/* link inside the tab. uses a background image */
ul.css-tabs a { 
	background-color: #efefef;
	border: 1px solid #b2b2b2; 
	border-bottom: 0px;
	color :#7c7c7c;
	display: block;
	float: left;
	font-size: 1em;
	height: 18px;
	margin: 0 3px 0 0;
	padding: 5px 30px; 
	position: relative; 
	text-decoration:none;
	top: 1px; 
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright:5px;
	-webkit-border-top-left-radius: 5px; 
	-webkit-border-top-right-radius: 5px; 
}
ul.css-tabs a:hover { 
	background-color: #f9f9f9; 
	color: #2d2d2d;
}
/* selected tab */
ul.css-tabs a.current {
	background-color: #ffffff; 
	border-bottom: 1px solid #ffffff; 
	color: #2d2d2d; 
	cursor: default;
}
/* tab pane */
div.css-panes div {
	background-color: #ffffff; 
	border: 1px solid #b2b2b2; 
	border-width: 0 1px 1px 1px; 
	display: none; 
	min-height: 150px; 
	padding: 15px 20px;
}