/* 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:940px;
}
.tabs-nav li { margin:0; padding:0; float:left;}
.tabs-nav li a {
	margin:0 1px 0 0;
	padding:14px 0;
	float:left;
	background:url(../images/nav.png);
	width:153px;
	height:44px;
	text-align:center;
	font:normal 12px Trebuchet MS, Geneva, sans-serif;
	color:#42C4DD;
	text-decoration:none;
}
.tabs-nav li a:hover {
	background:url(../images/navhover.png);
}
.tabs-nav li.tabs-selected a {
	background:url(../images/navhover.png);
}
.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;
}
