@charset "utf-8";
/* CSS Document */

/***********************************************************************
http://function-code.blogspot.com/2013/03/horizontal-tabs-in-html-with-css.html
My code is free to use, but not free to republish
************************************************************************/
ul.tabs
{
    padding: 7px 0;
    font-size: 0;
    margin:0;
    list-style-type: none;
    text-align: left;
}
        
ul.tabs li
{
    display: inline;
    margin: 0;
    margin-right:3px;
}
        
ul.tabs li a
{
    font: normal 12px Verdana;
    text-decoration: none;
    position: relative;
    z-index: 1;
    padding: 7px 16px;
    border: 1px solid #CCC;
    border-bottom-color:#B7B7B7;
    color: #000;
    background: #fcf0f5;
    border-radius: 6px 6px 0px 0px;
 -moz-border-radius: 6px 6px 0px 0px;
    outline:none;
}

ul.tabs li a:hover
{
    border: 1px solid #B7B7B7;
    background:#F7B2D0;
}
        
ul.tabs li.selected a
{
    position: relative;
    top: 0px;
    font-weight:bold;
    background: white;
    border: 1px solid #B7B7B7;
    border-bottom-color: white;
}
div.tabcontents 
{
	width: 540px;
    border: 1px solid #B7B7B7; padding: 20px;
    background-color:#FFF;
    border-radius: 0 2px 2px 2px;
}
div.tabcontents2 {
	border: 1px solid #B7B7B7;
	padding: 20px;
	background-color:#FFF;
	border-radius: 0 2px 2px 2px;
	text-align: left;
}

#tab-center {
    margin-left: auto;
    margin-right: auto;
}
