﻿/* Tab Content - menucool.com */

/* ME After editing tabcontect.css, rename and change link in html to ensure the cached copy gets refreshed immediately */

ul.tabs
{
    padding: 4px 0; /* ME was 7px 0; */
    margin: 0; /* ME was margin: 0; */
    font-size: 0;
    list-style-type: none;
    text-align: left; /*set to left, center, or right to align the tabs as desired*/
    padding-left: 20px; /* Offset of the first tab */
}
        
ul.tabs li
{
    display: inline;
    margin: 0;/*no distance between tabs*/
    background: White;
    margin-left: 0px; /* ME was -4px */
}
        
ul.tabs li a
{
    font: normal 13px Verdana; /* ME was: font: normal 13px 'Open Sans'; */
    text-decoration: none;
    position: relative;
    padding: 4px 16px; /* ME was 7px 22px; */
    color: #FFF; /* ME was #000; black */
    outline:none;
    background: #282828; /* ME was #F6F6F9; */
    border: 1px solid #AAA; /* ME was: #CCC */
    border-bottom: 0; /* ME get rid of bottom border */
    border-right: 0;
}

/*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 #AAA; /* ME was: #CCC */
}
  
        
ul.tabs li a:hover
{
    color: #000;
    background: white;
}
        
ul.tabs li.selected a, ul.tabs li.selected a:hover
{
    top: 0px;
    font-weight:normal;
    background: #FFF;
    border-bottom: 0px solid #AAA; /* ME was 1px solid #CCC    remove bottom border */
    color: #000;
}

        
ul.tabs li.selected a:hover
{
    text-decoration: none;
}

div.tabcontents
{
    border-top: 0px solid #AAA; /* ME was: 1px #CCC but caused line under selected menu */
    padding: 10px 10px;
}
