﻿#tab{ width:240px;}

ul.tabs
{
    padding: 7px 0;
    font-size: 0;
    margin:0;
	list-style-type: none;
    text-align:right; /*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
{
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 7px 16px;
    border: 1px solid #CCC;
    border-bottom-color:#B7B7B7;
    color: #FFF;
	font-size:15px;
    background: #002c4f;
    border-radius: 2px 2px 0 0;
    outline:none;
}
        
ul.tabs li a:visited
{
    color: #000;
}
        
ul.tabs li a:hover
{
    border: 1px solid #B7B7B7;
    background:#2488d8;
}
        
ul.tabs li.selected a
{
    /*selected tab style */
    position: relative;
    top: 0px;
    font-weight:bold;
    background:#2488d8;
    border: 1px solid #B7B7B7;
    border-bottom: 1px solid #cfcfcf;
}
        
        
ul.tabs li.selected a:hover
{
    /*selected tab style */
    text-decoration: none;
}
        
div.tabcontent
{
    display: block; width:240px;
}

div.tabcontent2
{
    display: block; width:240px;
}

div.tabcontent3
{
    display: block; width:240px; float:left;
}

div.tabcontents
{
    border: 1px solid #B7B7B7; padding: 4px;
    background-color: #FFF;
}
