﻿/* Tab Content - menucool.com */
ul.tabs
{
    
    margin-top:7px;
    font-size: 0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
    padding-left:5px; /* Offset of the first tab */

}
        
ul.tabs li
{
    display: inline;
    margin: 0;/*no distance between tabs*/
    background:#efefef;
    margin-left: -4px;
	text-align:center;
}
        
ul.tabs li a
{
    font: normal 12px Verdana;
    text-decoration: none;
    position: relative;
    padding: 7px 22px;
    color: #000;
    outline:none;
    background: #efefef;
    border:1px solid #CCCCCC;
    text-transform:uppercase;
	text-align:center
}



/*Note: IE8 and earlier doesn't support li:last-child. You have to add another class to the last tab (LI) and specify its border-right as below.*/
ul.tabs li:last-child a
{
    border-right:1px solid #cccccc !important;
}
  

        
ul.tabs li a:hover
{
    color: #309244;
    background: #efefef;
	text-align:center;
}
        
ul.tabs li.selected a, ul.tabs li.selected a:hover
{
    top: 0px;
    font-weight:bold;
    background: #efefef;
    border-bottom: 1px solid #efefef;
    color: #309244;
	text-align:center;
}


        
        
ul.tabs li.selected a:hover
{
    text-decoration: none;
	text-align:center;
}

div.tabcontents
{
    border-top: 1px solid #CCC; padding: 20px 0px 10px 5px;
}
