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

.tabs {
	float: left;
	width: 590px;
	padding: 0px;
	margin: 0px;
}

.panes {
	float: left;
	width: 570px;
	padding-top: 20px;
	padding-right: 10px;
	padding-left: 10px;
	background: url(../images/general/bgr-pane.jpg) repeat-x;
}

.panes h1 {
	color: #1A63BD;
}

div.panes div {
	display:none;
	border-top:0;

}

/* root element for tabs  */
ul.tabs {
	list-style:none;
	margin:0 !important;
	padding:0;
	height:39px;
	float: left;
}

/* single tab */
ul.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 */
ul.tabs a {
	font-size:12px;
	display:block;
	height: 40px;
	width: 134px;
	text-align:center;
	text-decoration:none;
	color:#FFF;
	padding:0px;
	position:relative;
	background: url(../images/general/btn-tabs.jpg) no-repeat top;
	font-weight: bold;
	float: left;
	line-height: 45px;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#E7EAD5;
	background: url(../images/general/btn-tabs.jpg) bottom;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	cursor:default !important;
	color:#E7EAD5 !important;
	background: url(../images/general/btn-tabs.jpg) bottom;
}


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}

