﻿
ul.tabs
{
    padding: 7px 0;
    font-size: 0;
    margin:0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
}
        
ul.tabs li
{
    display: inline;
    margin: 0;
    margin-right:3px; /*distance between tabs*/
}
        
ul.tabs li a
{
    border-left:1px solid #CCC; border-right:1px solid #CCC; border-top:1px solid #CCC; border-bottom:1px solid #B7B7B7; text-decoration: none;
    position: relative;
    top: 0px;
    color: #000;
    background: #5B5537 url('bg.gif') repeat-x 0 0;
    border-radius: 2px 2px 0 0;
    outline:none; font-style:normal; font-variant:normal; font-weight:normal; font-size:12px; font-family:Verdana; padding-left:16px; padding-right:16px; padding-top:7px; padding-bottom:7px
}
        
ul.tabs li a:visited
{
    color: #000;
}
        
ul.tabs li a:hover
{
    border: 1px solid #B7B7B7;
    background:#F0F0F0 url('bg.gif') repeat-x 0 -36px;
}
        
ul.tabs li.selected a
{
    /*selected tab style */
    position: relative;
    top: 0px;
    font-weight:bold;
    background: white;
    border: 1px solid #B7B7B7;
    border-bottom-color: white;
}
        
        
ul.tabs li.selected a:hover
{
    /*selected tab style */
    text-decoration: none;
}
        
div.tabcontent
{
    display: block;
}

div.tabcontents
{
    border: 1px solid #B7B7B7; padding: 12px;
    background-color:#FFF;
    border-radius: 0 2px 2px 2px;
}