/* Caution: ensure accessibility in print */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .tabs-hide {
        display: none;
    }
    .tabs-container h3 {
        display: none;
    }
}

@media print {
    .tabs-nav {
        display: none;
    }
    #containerTabs {
        display: none;
    }
}

/* Skin */
.tabs-container { /* declare background color for container to avoid distorted fonts in IE while fading */
    background: #fff;
}
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 4px;
    height: 21px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}

ul.tabs-nav {
	padding: 0pt;
}
.tabs-nav li {
    float: left;
    margin: 0 0 0 1px;
    width:1%;
}
#bottomContent .tabs-nav li {
    background-image: none;
    padding:0pt 1px;
    margin-top: 0pt;
}
html>body .tabs-nav li {
	width:auto;	
}
	
.tabs-nav a {
    display: block;
    position: relative;
    top: 1px;
    z-index: 2;
    padding: 3px 10px 0;
    width: auto;
    height: 15px;
    color: #99917B;    
    line-height: 1.2em;
    text-align: left;
    text-decoration: none;
    background-color: #F4F3F1;
    border-top: 1px solid #99917B;
    border-left: 1px solid #99917B;
    border-right: 1px solid #99917B;
    border-bottom: 1px solid #FFF;    
}
* html .tabs-nav a {height: 16px;top: 0px;}/* hack ie6 */

.tabs-nav .tabs-selected a {
    padding-top: 3px;
    color: #99917B;
    font-weight: bold;
    background-color: #FFF;      
    height: 16px;
}
* html .tabs-nav .tabs-selected a {top: 1px;}/* hack ie6 */

.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background-position: 0 -50px;
}
.tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
    background-position: 0 0;
}
.tabs-nav .tabs-selected a:link, .tabs-nav .tabs-selected a:visited,
.tabs-nav .tabs-disabled a:link, .tabs-nav .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container {
    border-top: 1px solid #AFA898;
    padding: 1em;
    /*clear:both;*/
}
/* Uncomment this if you want a little spinner to be shown next to the tab title while an Ajax tab gets loaded
.tabs-loading span {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}*/