@charset "utf-8";
/* CSS Document */
/* A modified version of http://www.cssplay.co.uk/menus/vertical_tab.html */

.tabs {
list-style:none; 
padding:15px 0px 0 0; 
margin:0 10px 10px 0;
float:left; /* added by Steve */
width:160px;
/*position: relative;*/	/* See below, added by Steve */
/*left:-18px;*/ 				/* I have moved this left, so that it is tight up against the border of the snazzy-corners box */
												/* No longer needed, since I specified margin of 0px on .tabs li below */
/*background:url(tabs/vback.gif) repeat-y right bottom;*/
}

.tabs li {
display:block; 
margin:0 0 4px 0px;
}

.tabs li a {
display:block; 
width:150px; 
height:26px; 
text-decoration:none; 
background:url(../images_nautilus/tabs.png) left top; 
font-size:12px; 
text-decoration:none; 
color:#fff; 
font-family:verdana; 
line-height:24px; 
text-indent:10px; 
/*border-left:5px solid #ffff00;*/
}

.tabs li a:hover {
background:url(../images_nautilus/tabs.png) left center; 
color:#000; 
/*border-color:#666;*/
}

.tabs li a.selected, .tabs li a.selected:hover {
background:url(../images_nautilus/tabs.png) left bottom; 
color:#000;
font-weight:bold;
/*border-color:#fff;*/
cursor:default;
}

