﻿/* Tab Content - menucool.com */

ul.tabs
{
    padding: 10px 0 0 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*/
	border-bottom:1px solid#4c4c4c;
}
        
ul.tabs li
{
    display: inline;
    margin: 0;
    margin-right:5px; /*distance between tabs*/
}
        
ul.tabs li a
{
    font-family:'Conv_PSL-Text';
	font-size:20px;
    text-decoration: none;
    position: relative;
    padding: 5px 5px 2px 5px;
    text-align: center;
    width: 140px;
    display: inline-block;
    color: #fff;
    background:#d1d1d1;
    border-radius: 15px 15px 0 0;
	-webkit-border-radius: 15px 15px 0 0;
	-moz-border-radius: 15px 15px 0 0;
	-khtml-border-radius: 15px 15px 0 0;
    outline:none;
	
	-webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
        
ul.tabs li a:visited
{
    color: #fff;
}
        
ul.tabs li a:hover
{
    background:#4c4c4c;
}
        
ul.tabs li.selected a, ul.tabs li.selected a:hover
{
    position: relative;
    top: 0px;
    background: #4c4c4c;
    /*border: 1px solid #339966;*/
    border-bottom-color: #4c4c4c;
	color: #fff;
/*	text-shadow: black 1px 1px 1px;
*/}
        
        
ul.tabs li.selected a:hover
{
    text-decoration: none;
	color: #fff;
}
     

div.tabcontents
{
     
	padding:10px 0;
    background-color:#fff;
	-webkit-border-radius: 0 5px 5px 5px;
	-moz-border-radius: 0 5px 5px 5px;
	-khtml-border-radius: 0 5px 5px 5px;
    border-radius: 0px;
	height: auto;
}