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

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

/* link inside the tab. uses a background image */
ul.simple-tab a { 
	background:#142f61;
	font-size:11px;
	font-weight:bold;
	display:block;	
	text-align:center;	
	text-decoration:none;
	text-transform:uppercase;
	color:#fff;
	padding:10px 20px;
	margin:0px;	
	position:relative;
	top:-3px;
	border:1px solid #142f61;
	border-bottom:none;
}

ul.simple-tab a:active {
	outline:none;	
}

/* when mouse enters the tab move the background image */
ul.simple-tab a:hover {
	background:#fff;
	color:#142f61;	
	border:1px solid #cdcdcd;
	border-bottom:none;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.simple-tab a.current, ul.simple-tab a.current:hover, ul.simple-tab li.current a {
	background:#fff;
	color:#142f61 !important;
	cursor:default !important; 	
	border:1px solid #cdcdcd;
	border-bottom:none;
}

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

ul.simple-tab a:active {
  outline:none;
}

ul.simple-tab a:focus {
  -moz-outline-style:none;
}

/* tab pane styling */
div.css-panes div.pane {
	display:none;		
	padding:10px 10px;
	border:1px solid #cdcdcd;
	border-top:0;
	font-size:10pt;
	background-color:#fff;
}
