﻿
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
{
	 
	font-size: 19px;
	
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 7px 16px;
    border: 1px solid #D7DBDD;
    border-bottom-color:#D7DBDD;
    background-color:#fff;
    color:#808080;
    /*background: #f5f5f5 url(tabbg.gif) 0 0 repeat-x;*/
    border-radius: 2px 2px 0 0;
    outline:none;
}
        
ul.tabs li a:visited
{
    color: #000;
    
}
        
ul.tabs li a:hover
{
    background-color:#D7DBDD;
    border: 1px solid #D7DBDD;
    /*background:#fff url(tabbg.gif) 0 -36px repeat-x;*/
}
        
ul.tabs li.selected a
{
    /*selected tab style */
    position: relative;
    top: 0px;
    font-weight:normal;
    background: #fff;
    color:#0094ff;
    border: 1px solid #D7DBDD;
    border-bottom-color: #fff;
}
        
        
ul.tabs li.selected a:hover
{
    /*selected tab style */
    text-decoration: none;
}
        
div.tabcontent
{
    display: block;
}

div.tabcontents
{
    border: 1px solid #D7DBDD; padding: 10px;
    background-color:#FFF;
    border-radius: 0 2px 2px 2px;
}