
/* root element for tabs  */
.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:10px;
	height:20px;
	text-align:center;
	/*border-bottom:1px solid #666;	*/
}

/* single tab */
.tabs li { 
	float:left;	 
	text-indent:0;
	padding:3px;
	margin:0 !important;
	list-style-image:none !important; 
	
}

/* link inside the tab. uses a background image */
.tabs a { 
	font-size:11px;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 111px;
	text-align:center;	
	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
	padding-left:35px;
}

.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	background-position: -652px -31px;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
.tabs .current, .tabs .current:hover, .tabs li.current a {
	background-position: -652px -62px;		
	cursor:default !important; 
	color:#000 !important;
}
/* initially all panes are hidden */ 
.panes .pane {
	display:none;		
	
}
.panes .block{
		background:#FFF9E8;
		padding:5px;
		-moz-border-radius-bottomright: 10px;
	border-bottom-right-radius: 10px;
	-moz-border-radius-bottomleft: 10px;
	border-bottom-left-radius: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
	-moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
}

