/* 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 */
.tabs-nav {
    list-style: none;
	float:right;
	margin:0px 0 0 0;
}

.tabs-nav:after { /* clearing without presentational markup, IE gets extra treatment */
    display:list-item;
    clear: both;
    content: " ";
}
.tabs-nav li {
	display:list-item;
    margin: 0 0 10px 0px;
    min-width: 524px; /* be nice to Opera */

}
.tabs-nav a, .tabs-nav a span {
    display:list-item;
	padding:0 0 0 10px;
	text-decoration:none;
	font-size:.96em;
	color:#292929;
	
/*	float:right;
	clear:right;	
	min-width: 504px;  be nice to Opera */

}

.tabs-nav a img, .tabs-nav a span img {
	margin:0 10px 0 0;
	float:left;
}
.tabs-nav a h1, .tabs-nav a span h1  {
	font-size:1.8em;
	margin:0;
}
.tabs-nav a h1 strong, .tabs-nav a span h1 strong {
	color:#2a86b5;
	font-size:130%;
	font-weight: bold;
}
.tabs-nav a p, .tabs-nav a span p  {
	font-size:1.2em;
	line-height: 1.4em;
	margin:0;
}

.tabs-nav a {
    white-space: nowrap; /* required in IE 6 */    
}
.tabs-nav .tabs-selected a {
	background-image:url(../images/vblig.jpg);
	background-repeat:no-repeat;
	background-position:center bottom;

}
.tabs-nav .tabs-selected a, .tabs-nav a:hover {
    outline: 0; /* prevent dotted border in Firefox */
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover {

}
.tabs-nav a span {
    width: 64px; /* IE 6 treats width as min-width */
    min-width: 64px;
    height: 62px; /* IE 6 treats height as min-height */
    min-height: 62px;
    padding-top: 6px;
    padding-bottom: 10px;
    padding-right: 0;
}
*>.tabs-nav a span { /* hide from IE 6 */
    width: auto;
    height: auto;
}
.tabs-nav .tabs-selected a span {

}
.tabs-nav .tabs-selected a span, .tabs-nav a:hover span {

}
.tabs-nav a span, .tabs-nav .tabs-disabled a:hover span, {

}
.tabs-nav .tabs-selected a, .tabs-nav .tabs-disabled a, .tabs-nav { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
    cursor: text;
}
.tabs-nav a:hover { /* @ Opera, we need to be explicit again here now... */
    cursor: pointer;
}
.tabs-nav .tabs-disabled {
    opacity: .4;
}
.tabs-container {
    background: #e9e9e9; /* declare background color for container to avoid distorted fonts in IE while fading */
}
.tabs-loading em {
    padding: 0 0 0 20px;
    background: url(loading.gif) no-repeat 0 50%;
}
