
/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:2em 0 0 0 !important; 
	padding:0;
	width: 676px;
	height:37px;
	/*background-color: #eee;
	border-top: solid 1px #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-color: #eee;
	background-image: none;
	font-size:11px;
	display:block; 
	/*line-height:26px;*/
	text-align:center;	
	text-decoration:none;
	color:#999;
	padding: 5px 14px;
	margin:0 1px;	
	position:relative;
	top:1px;
	font-weight: bold;
	height: 2.4em;
}

ul.tabs a:active {
	outline: none;		
}

/* when mouse enters the tab move the background image */
ul.tabs a:hover {
	background-image: none;
	color: #666;
}

/* 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; 
	color:#993300 !important;
	background-image: none;
	background-color: #f2e7b9;
	border: solid 1px #cecece;
	border-bottom: none;
	font-weight: bold;
}


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
}

.panes {
	background-color: #fff;
	border: solid 10px #f2e7b9;
	padding: 1em;
	margin: 0;
}

/********** SECONDARY TABS **********/

ul.tabs2 { 
	height: 74px;
	border: solid 1px #00FF00;
	margin: 0;
}

/* single tab */
ul.tabs2 li { 
}

/* link inside the tab. uses a background image */
ul.tabs2 a { 
	background-color: #f4f4f4;
	background-image: none;
	font-size:11px;
	display:block;
	height: 60px;  
	/*line-height:30px;*/
	width: 160px;
	text-align:left;
	vertical-align: baseline;
	text-decoration:none;
	color:#999;
	padding:10px;
	margin:0px;	
	position:relative;
	top:1px;
	border-right: solid 4px #fff;
}

ul.tabs2 a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
ul.tabs2 a:hover {
	background-color:#fff;
	background-image: none;
	color: #000;
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
ul.tabs2 a.current, ul.tabs2 a.current:hover, ul.tabs2 li.current a {	
	cursor:default !important; 
	color:#000 !important;
	background-image: none;
	background-color: #fff;
	font-weight: bold;
	height: 61px;
}


/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;
}


