/* root element for tabs  */

ul.tabs {
	background:#c3cbd0;
	border-bottom:solid 1px #d7dcdf;
	list-style:none; 
	margin:0 !important; 
	padding:0;	
	height:23px;
	position:absolute;
	bottom:0px;
	width:562px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0px 0px 0px 5px;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
ul.tabs a {
	display:block;
	height: 24px;  
	line-height:24px;
	text-align:center;
	font-size:0.85em;	
	text-decoration:none;
	color:#505e71;
	padding:0px 8px;
	margin:0px;	
	position:relative;
}
ul.tabs a:active {
	outline:none;		
}

/* active tab uses a class name "current". its highlight is also done by moving the background image. */
ul.tabs a.current, ul.tabs a.current:hover, ul.tabs li.current a {
	background:url(../images/tabHover.jpg) repeat-x 0px 0px scroll;	
	cursor:default !important; 
	color:#2b2b2b !important;
}
/* initially all panes are hidden */ 
.panesinner .innerpane,
.panes .pane {
	display:none;
}
.panes div.pane {
	background:#f2f2f2;
	display:none;		
	padding:10px 15px;
	min-height:130px;
}
.panesinner .innerpane {
	background:#fff;
	border:solid 1px #ccc;
	display:none;		
	padding:10px 15px;
	min-height:145px;
}
.innerpane p{font-size:0.85em !important; margin-bottom:7px;}
.panes div.pane p {
	font-size:0.8em;
	margin-bottom:7px;
}
.panes div.pane p span {
	color:#5284c8;
	padding-right:10px;
}
.panes div.pane p a {
	color:#8f9090;
}
.panes div.pane p a:hover {
	color:#5284c8;
}



