﻿
ul.tabs
{
    height: 24px;
	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: 20px; /*distance between tabs*/
}
        
ul.tabs li a
{
    position: relative;
    z-index: 1;
    top: 0;
	font: normal 16px Tahoma, Geneva, sans-serif;
    text-decoration: none;
    padding: 0;
	background: 0;
    border: 0;
    border-bottom: 0;
    outline: none;
    color: #313330;
    text-transform: uppercase;
}

ul.tabs li a:visited
{
    color: #000;
}

ul.tabs li a:hover
{
    border: 0;
    border-bottom: 0;
	text-decoration: none;
	color: #888;
}

ul.tabs li.selected a
{
    /*selected tab style */
	font: normal 22px Tahoma, Geneva, sans-serif;
    position: relative;
    top: 1px;
    padding: 10px 15px;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    background: #313330;
	color: #eee;
}
        
        
ul.tabs li.selected a:hover
{
    /*selected tab style */
    text-decoration: none;
}
        
div.tabcontent
{
    display: block;
	background: 0;
	padding: 10px 0 0;
    margin: 0;
}

div.tabcontents
{
	min-height: 110px;
	margin-left: 0px;
	padding: 0;
    background-color: 0;
}