/* root element for tabs  */
ul.tabs { 
	list-style:none; 
	margin:0 !important; 
	padding:0;
	padding-left:7px;
	height:30px;
}

/* single tab */
ul.tabs li { 
	float:left;	 
	text-indent:0;
	padding:0;
	margin:0;
	margin-right:3px;
	list-style-image:none !important; 
}

/* link inside the tab. uses a background image */
#sidebar .tabbedpane ul.tabs a { 
	font-family:FuturaStd-CondensedLight, "Arial Narrow", Arial, Helvetica, Sans Serif;
	font-size:16px;
	text-transform:uppercase;
	display:block;
	height: 30px;  
	line-height:30px;
	width: 82px;
	text-align:center;	
	text-decoration:none;
	padding:0px;
	margin:0px;	
	position:relative;
	top:1px;
	
	color:#334f68;
	border:1px solid #979797;
	
	-moz-border-radius-topleft:5px;
	-webkit-border-top-left-radius:5px;
	-moz-border-radius-topright:5px;
	-webkit-border-top-right-radius:5px;
}

#sidebar .tabbedpane ul.tabs a:active {
	outline:none;		
}

/* when mouse enters the tab move the background image */
#sidebar .tabbedpane  ul.tabs a:hover {
	color:#4b8d37;	
}

/* active tab uses a class name "current". it's highlight is also done by moving the background image. */
#sidebar .tabbedpane ul.tabs a.current, #sidebar .tabbedpane ul.tabs a.current:hover, #sidebar .tabbedpane ul.tabs li.current a {	
	cursor:default !important; 
	color:#4b8d37 !important;
	border-bottom:1px solid #FFF;
}

/* initially all panes are hidden */ 
div.panes div.pane {
	display:none;		
}

div.panes div{
	width:255px;
	padding:10px;
	min-height:100px;
	margin-top:2px;
	
	color:#646464;
	
	border:1px solid #979797;
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

div.panes div ul{
	list-style:none;
}


