.tabs{
float:left;
width:100%;
margin-top: 0px;
}

.tabs ul{
list-style-type: none;
margin:0;
margin-left: 0px; /*Left offset of entire tab menu relative to page*/
padding:0;
margin-top:0px;
padding-right:0px;
float:right;
}

.tabs li{
display:inline;
margin:0;
padding:0;
}

.tabs a{
float:left;
background: url(../images/menu.gif) no-repeat left top;
border-right: 1px solid #c8c7cd;
border-left: 1px solid #c8c7cd;
margin-right: 4px; /*spacing between each tab*/
padding:0 0 0 8px;
text-decoration:none;

}

.tabs a span{
font-family: Tahoma, Verdana, Arial;
font-size:11px;
float:left;
display:block;
background:url(../images/menu.gif) no-repeat right top;
padding: 3px 12px 4px 4px;
font-weight:bold;
color:#929191;

}

/* Commented Backslash Hack hides rule from IE5-Mac \*/
.tabs a span {float:none;}
/* End IE5-Mac hack */

.tabs a:hover span {
color:#5d5d5d;

}

.tabs a.current{ /*Selected Tab style*/
background-position:0 -40px; /*Shift background image up to start of 2nd tab image*/
}
.tabs a.current span{ /*Selected Tab style*/
background-position:100% -40px; /*Shift background image up to start of 2nd tab image*/
color:#efeded;
}

.tabs a.current:hover{ /*Selected Tab style*/
background-position:0 -40px; /*Shift background image up to start of 2nd tab image*/
}

.tabs a.current:hover span{ /*Selected Tab style*/
background-position:100% -40px; /*Shift background image up to start of 2nd tab image*/
color:#efeded;
}

.tabs a:hover{ /*onMouseover style*/
background-position:0% -20px; /*Shift background image up to start of 2nd tab image*/
}

.tabs a:hover span{ /*onMouseover style*/
background-position:100% -20px; /*Shift background image up to start of 2nd tab image*/
}

.tabcontainer{
clear: left;
width:100%; /*width of 2nd level sub menus*/
height:0; /*height of 2nd level sub menus. Set to largest's sub menu's height to avoid jittering.*/
}

.tabcontent{
display:none;
}

.tabcontent a{
	font-family:tahoma;
	font-size:11px;
	color: #a2a2a2;
	text-decoration:none;
	margin: 0 2px 0 2px;
}

.tabcontent a:hover{
	color: #cbcbcb;
	text-decoration:underline;
}