/* Caution! Ensure accessibility in print and other media types... */
@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;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .tabs-nav {
        display: none;
    }
}

/* Skin */
#tab-container{
	margin: 15px 15px 0 15px;
	width:636px;

}

#tab-container img{
	margin-top: 14px;

}
.tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0 0 0 0px;
}
.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display: block;
    clear: both;
    content: " ";
}
.tabs-nav li {
    float: left;
    
}
.tabs-nav a, .tabs-nav a span {
    display: block;
}
.tabs-nav a {
    position: relative;
    z-index: 2;
    background-color:#ACA893;
	font-family:"Times New Roman", Times, serif;
	font-size:16px;
	height:24px;
	margin:0px 4px 0 0;
	padding:12px 15px 0px 15px;
	display: inline;
    color: #5E3500;
    font-weight: bold;
    text-align: left;
    text-decoration: none;
    white-space: nowrap; /* required in IE 6 */   
	float: left; 
}
.tabs-nav .tabs-selected a, .tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background-color: #e8e5d5;
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-nav a span {
   /* width: 64px;  IE 6 treats width as min-width 
    min-width: 64px;
    height: 24px; /* IE 6 treats height as min-height 
    min-height: 24px;*/
 
}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}

.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-container {
    background-color: #e8e5d5; /* declare background color for container to avoid distorted fonts in IE while fading */
	padding-bottom:20px;
	float: left;
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(images/loading.gif) no-repeat 0 50%;
}
#tab-container ul.inside{
	list-style-position:outside;
	list-style-type: disc;
	padding:15px 31px 0pt;
	text-align:left;
	margin-left: 15px;
}

#tab-container ul.inside li{
	line-height:16px;
	padding:4px 5px;
}



