/* Sub Page */
/* 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; }
}
/* clearing without presentational markup, IE gets extra treatment */
.tabs-nav:after { display:block; clear:both; content:" ";}

.tabs-nav { padding:0; margin:0 auto; list-style:none; width:80%;}
.tabs-nav li { margin:0; padding:0; float:left;}
.tabs-nav li a {
	float:left;
	background:url(../images/submenu.gif);
	width:153px;
	height:14px;
	text-align:center;
	font:bold 12px Tahoma, Geneva, sans-serif;
	color:#474747;
	text-decoration:none;
	vertical-align: baseline;
	white-space: normal;
	display: inline;
	margin-top: 0;
	margin-right: 1px;
	margin-bottom: 0;
	margin-left: 0;
	padding-top: 14px;
	padding-right: 0;
	padding-bottom: 14px;
	padding-left: 0;
}
.tabs-nav li a:hover {
	background:url(../images/submenu_hover.gif);
	font-size: 12px;
}
.tabs-nav li.tabs-selected a {
	background:url(../images/submenu_hover.gif);
	font-size: 12px;
}
.tabs-container { }
.tabs-nav .tabs-selected a, .tabs-nav a:hover, .tabs-nav a:focus, .tabs-nav a:active {
    background-position:100% -150px;
    outline:0; /* prevent dotted border in Firefox */
}
.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
    background-position:100% -100px;
}

