@charset "utf-8";
/* CSS Document */

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

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

/* link inside the tab. uses a background image */
.tabs a { 
	background:url(../images/tab1.png) no-repeat;
	font-size:14px;
	display:block;
	height: auto;  
	line-height:30px;
	width: 134px;
	text-align:center;	
	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
	outline:none;
}

.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
.tabs a:hover {
	background:url(../images/tab4.png) no-repeat;
	color:#fff;	
	outline:none;
}

/* 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:url(../images/tab2.png) no-repeat;
	cursor:default !important; 
	color:#000 !important;
	outline:none;
}


/* initially all panes are hidden */ 
.panes .pane {
	display:none;
	width:auto;
	height:450px;	
}
}

#help-panes {	
	width:auto;
	height:450px;	
}

