@charset "UTF-8";
/* CSS Document */


/* get rid of those system borders being generated for A tags */
a:active {
  outline:none;
}
a {
  outline:none;
}

:focus {
  -moz-outline-style:none;
}

/* tab pane styling */
div.panes div.holder {
}

/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	height:100px;
	font-family: "museo-sans-1","museo-sans-2", sans-serif;
	font-weight: 600;
	font-style: normal;
	font-size: 16px;
	color: #000000;
}

/* 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 { 
	display:block;
	height: 100px;  
	line-height:100px;
	width: 115px;
	text-align:center;
	text-decoration:none;
	color:#000000;
	padding:0px;
	margin:0px;	
	position:relative;
}

ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	color:#0093D0;	
}

/* 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/button.png) top no-repeat;
	cursor:default !important; 
	color:#0093D0 !important;
}

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