/* Tab Content - menucool.com */
ul.tabs
{
    padding: 10px 0;
    font-size: 0;
    margin:50px 0px 0px 0px;
    list-style-type: none;
    text-align: center; /*set to left, center, or right to align the tabs as desired*/
}
        
ul.tabs li
{
    display: inline;
    margin: 0;
    margin-right:0px; /*distance between tabs*/
}
        
ul.tabs li a
{
    font: normal 12px Verdana;
    text-decoration: none;
    position: relative;
    padding: 10px 20px;
    border: 1px solid #ccc;
    color: #000;
    background: #fff;
    border-radius: 5px 5px 0 0;
    outline:none;
	font-weight: bold;
}
        
ul.tabs li a:hover
{
    background: #fff;
	color: #de5328;
}
        
ul.tabs li.selected a, ul.tabs li.selected a:hover
{
    position: relative;
    top: 0px;
    font-weight:bold;
    background: #fff;
	color: #de5328;
    border-bottom-color: white;
}
        
        
ul.tabs li.selected a:hover
{
    text-decoration: none;
}
   

div.tabcontents
{
    border-top: 1px solid #ccc; padding:15px 16px 0px 16px;  text-align: center;
}