
/* root element for tabs  */
ul.css-tabs {  
	margin: 10px 0 20px 0 !important; 
	padding: 0;
	height:30px;
}

/* 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:11pt;
	display:block;
	padding:5px 2px;	
	text-decoration:none;
	border-top: 4px solid #bbbbbb;	
	height:20px;
	color:#aaaaaa;
	margin-right:15px;
	position:relative;
	top:1px;	
	outline:0;
	text-transform: uppercase;
	font-weight: bold;
}

ul.css-tabs a:hover {
	border-top: 4px solid #888;	
	color:#888;
}
	
/* selected tab */
ul.css-tabs a.current {
	border-top: 4px solid black;	
	color:black;	
	cursor:default;
}

	
/* tab pane */
.css-panes div.css-pane {
	display:none;
	border:1px solid white2;
	border-width:0 1px 1px 1px;
	min-height:150px;
//	padding:5px 0px;
	background-color:white;	
}

/* root element for tabs  */
ul.small-tabs {  
	height:22px;
	border-bottom:1px solid #aaa;	
	margin: 0 2px 0 0 !important;
}

/* single tab */
ul.small-tabs li {  
	float:left;	 
	padding:0; 
	margin:0;  
	list-style-type:none;	
}

/* link inside the tab. uses a background image */
ul.small-tabs a { 
	float:left;
	font-size:12px;
	display:block;
	padding:2px 5px;	
	text-decoration:none;
	border:1px solid #aaa;	
	border-bottom:0px;
	height:16px;
	background-color:#f4f4f4;
	color:#777 !important;
	margin-right:2px;
	position:relative;
	top:1px;	
	outline:0;
	border-radius:2px 2px 0 0;	
}

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

	
/* tab pane */
.small-panes div.small-pane {
	display:none;
	border:1px solid #aaa;
	border-width:0 1px 1px 1px;
	min-height:150px;
	padding: 10px 0 0 0;
	background-color:white;	
	margin: 0 2px 0 0;
}



