ul.tabs
{
    padding: 7px 0;
    font-size: 0;
    margin-right: auto;
    margin-left: auto;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
}
        
ul.tabs li
{
    display: inline-block;
    margin: 0;
    margin-right:10px;
    margin-bottom: 10px; /*distance between tabs*/
}
        
ul.tabs li a
{
    font: normal 12px Verdana;
    text-decoration: none;
    position: relative;
    padding: 0px 0px;
    border: 1px solid #CCC;
    border-bottom-color:#B7B7B7;
    color: #000;
    background: #F0F0F0;
    border-radius: 3px 3px 0 0;
    outline:none;
}
        
ul.tabs li a:visited
{
    color: #000;
}
        
ul.tabs li a:hover
{
    border: 1px solid #B7B7B7;
    background:#F0F0F0;
}
        
ul.tabs li.selected a, ul.tabs li.selected a:hover
{
    position: relative;
    top: 0px;
    font-weight:bold;
    border: 1px solid #B7B7B7;
    border-bottom-color: white;
    background: url('images/active.png') no-repeat;
    z-index: 9999;
}
        
        
ul.tabs li.selected a:hover
{
    text-decoration: none;
}
     

div.tabcontents
{
    border: 1px solid #B7B7B7; padding: 30px;
    background:url('images/main_tail.jpg') repeat-y;
    border-radius: 0 3px 3px 3px;
}