/* root element for tabs  */
ul.tabs { 
	font-family: "Calibri", "Trebuchet MS", Tahoma, Verdana, Arial, Helvetica, sans-serif;
	list-style:none; 
	margin:0 !important; 
	padding:0;
	width: auto;
	height:30px;
	width: 645px;
	border-bottom:1px solid #ccc;	
}

/* 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 { 
	background: url(images/tabs_0.gif) repeat-x;
	border-top: 1px solid #eee;
	border-right: 1px solid #eee;
	border-left: 1px solid #eee;
	font-size:16px;
	display:block;
	height: 28px;  
	line-height:28px;
	width: 110px;
	text-align:center;	
	text-decoration:none;
	color:#000;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
}

ul.tabs a:active {
	outline:none;
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background: url(images/tabs_1.gif) repeat-x;
	color: #CC0033;	
	border-bottom: 1px solid #ccc;
}

/* 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 {
	background: url(images/tabs_2.gif) repeat-x;
	border: 1px solid #ccc;
	border-bottom-color: #F5F5F5;
	font-weight: bold;
	cursor:default !important; 
	color:#CC0033 !important;
}



/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}


/* tab pane styling */
div.panes div {
	font-family: Verdana, Tahoma, Geneva, Arial, Helvetica, sans-serif;
	display:none;		
	padding:8px;
	padding-top: 12px;
	border:1px solid #ccc;
	border-top:0;
	width: 628px;
	height:100%;
	font-size:12px;
	background-color:#F5F5F5;
}


