﻿
ul.tabs
{
    padding:0px;
     font-size:100%;
    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; 
	font-size:100%;/*distance between tabs*/
}
        
ul.tabs li a
{
     font-size:100%; Verdana;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 7px 10px;    
    color: #fff;
	background-color:#c10001;
    outline:none;
}
        
ul.tabs li a:visited
{
    color: #000;
}
        
ul.tabs li a:hover
{
	background-color:#ffab10;
}
        
ul.tabs li.selected a
{
    /*selected tab style */
    position: relative;
    top: 0px;
	background-color:#ffab10;
	color:#000;
}
        
        
ul.tabs li.selected a:hover
{
    /*selected tab style */
    text-decoration: none;
}
        
div.tabcontent
{
    display: block;
}

div.tabcontents
{
	width:875px;
    border: 1px solid #ffab10; padding:20px;
    background-color:#412e21;
    border-radius: 0 2px 2px 2px;
	margin: 0 auto; font-size:100% Verdana; line-height:normal;
}