/* CSS Stylesheet for tabs (the tab itself not the content) */

div.tabcontent 
{
	border-top: solid 2px #A0A0A0;
	background-color:White;
    clear: left;
    padding: 0px 4px 4px 4px;
    /*padding: 1em;*/
}

div.tabcontent.inactive {
	display: none;
}

ul#toc {
    height: 2em;
    list-style: none;
    margin: 0;
    padding: 0;
}

ul#toc a 
{
	display: none;
}

ul#toc li a {
    background: #F0F0F0 url(/images/tabs/tabs.gif);
    color: #008;
    display: block;
    float: left;
    height: 2em;
    padding-left: 10px;
    text-decoration: none;
}

ul#toc li a:hover {
    background-color: #797979;
    background-position: 0 -66px;
}

ul#toc li a:hover span {
    background-position: 100% -66px;
}

ul#toc li {
    float: left;
    margin: 0 1px 0 0;
}

ul#toc li a.active {
    background-color: #008;
    background-position: 0 -33px;
    color: #fff;
    font-weight: bold;
}

ul#toc li a.active span {
    background-position: 100% -33px;
}

ul#toc span {
    background: url(/images/tabs/tabs.gif) 100% 0;
    display: block;
    line-height: 2em;
    padding-right: 10px;
}

