#tabs{
}

#tabs a{
display: block;
text-decoration: none;
font: bold 9px Verdana; /*tab font */
color: white; /*font color */
width: 92px; /*width of tab image */
height: 22px; /*height of tab image */
float: left;
display: inline;
margin-left: 4px; /*spacing between tabs */
padding-top: 4px; /*vertical offset of tab text from top of tab*/
background-image: url(images/bluetab.gif); /*URL to tab image */ 
background-repeat: no-repeat;
text-align: center;
}

#tabs a:hover, #tabs a.current{
background-image: url(images/bluetabover.gif); /*URL to tab image onmouseover */
color: white;
}

#tabcontentcontainer{
width:90%; /*width of 2nd level content*/
padding: 8px;
}

.tabcontent{
display:none;
}

