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

/* 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-family: Helvetica, Arial, sans-serif;
	background: url(../images/tabs.gif) no-repeat -125px 0px;
	 font-size: 18px; font-weight: bold;
	display:block;
	height: 45px;  
	line-height:42px;
	width: 125px;
	text-align:center;	
	text-decoration:none;
	color:#162e44;
	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-position: none;	
	color:#fff;	
	text-decoration: none;
}

/* 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-position: 0px 0px;		
	cursor:default !important; 
	color:#000 !important;
	text-decoration: none;
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabs a.t1 			{ font-size: 16px; font-weight: normal; color: #FFF; background-position: 0 -45px; text-shadow: #000 1px 1px 0px;	 }
ul.tabs a.t1:hover 	{  }
ul.tabs a.t1.current  {  font-size: 18px; font-weight: normal; background-position: 0px 0px; text-shadow: #fff 1px 1px 0px;	 }

/* width 2 */
ul.tabs a.t2 			{  font-size: 16px; font-weight: normal; color: #FFF;  text-shadow: #000 1px 1px 0px;}
ul.tabs a.t2:hover 	{  }
ul.tabs a.t2.current  {  font-size: 18px; font-weight: normal; background-position: -125px -45px; text-shadow: #fff 1px 1px 0px; }



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

/* override single pane */ 
div.panes div.items { 
    float:left; 
    display:block;
    width: 200px;
    padding: 20px 30px 0px 20px;
    font-size:11px; 
    text-shadow: #fff 1px 1px 0px;
    min-height: 220px;
} 
div.panes div.items p {
	padding: 0px;
	margin: 0px;
}
