/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	font-size:12px;
	line-height: 16px;
	width:550px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:10px 0px;
	margin:0 !important;
	list-style-image:none !important; 
	width: 137px;
	text-align: center;
}

/* link inside the tab. uses a background image */
ul.tabs a { 
	display:block;
	padding:0px;
	margin:0px;	
	position:relative;
	color: #ffffff;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
}

/* 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; 
}

/* Different widths for tabs: use a class name: w1, w2, w3 or w2 */


/* width 1 */
ul.tabs a.s 			{  }
ul.tabs a.s:hover 	{  }
ul.tabs a.s.current  {  }

/* width 2 */
ul.tabs a.l 			{  }
ul.tabs a.l:hover 	{  }
ul.tabs a.l.current  {  }


/* width 3 */
ul.tabs a.xl 			{  }
ul.tabs a.xl:hover 	{  }
ul.tabs a.xl.current {  }


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}

/* tab pane styling */
div.panes div {
	display:none;		
	padding:5px 0px;
	height:auto;
	clear:both;
}

/* other styling */
ul#footerNav {
	list-style-position: outside;
	list-style-image: none;
	list-style-type: none;
	margin: 0px;
	padding: 10px 0px;
}
ul#footerNav li {
	font-size: 11px;
	font-weight: bold;
	display: inline;
	margin: 0px;
	padding: 0px 5px 0px 0px;
}
#footerNav a {
	text-decoration: none;
	padding: 3px 5px;
	color: #003366;
}
#footerNav a:link {
	text-decoration: none;
	padding: 3px 5px;
	color: #003366;
}
#footerNav a:visited {
	text-decoration: none;
	padding: 3px 5px;
	color: #003366;
}
#footerNav a:hover {
	text-decoration: underline;
	background-color: #e0e0e0;
	color: #003366;
}

#footerNav a.footerIndexnav {
	text-decoration: none;
	padding: 3px 5px;
	color: #003366;
}
#footerNav a.footerIndexnav:link {
	text-decoration: none;
	padding: 3px 5px;
	color: #003366;
}
#footerNav a.footerIndexnav:visited {
	text-decoration: none;
	padding: 3px 5px;
	color: #003366;
}
#footerNav a.footerIndexnav:hover {
	text-decoration: underline;
	background-color: #e0e0e0;
	color: #003366;
}

