/* 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 {
	
	width: auto;
    margin: 0px;
    padding: 0px;
}

	.tabs-nav:after {
	
		display: block;
		clear: both;
		content: " ";
	}

	.tabs-nav li {
		
		float: left;
		margin: 0 0 0 4px;
		min-width: 35px; /* be nice to Opera */
		/* IE6 HACK */
		display: inline;
	}

	.tabs-nav a, .tabs-nav a span {
		
		width: 97px;
		height: 35px;
		line-height: 25px;
		display: block;
		background: url('/i/hwf/layout/tab.jpg') no-repeat;
		
	}

	.tabs-nav a {
	
		padding-left: 0px;
		color: #ffffff;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
	}

	.tabs-nav .tabs-selected a {
		
		color: #ffffff;
	}
	
	.tabs-nav .tabs-selected a:hover {
		
		color: #ffffff;
	}
	
	.tabs-nav a:hover {
		
		width: 97px;
		height: 35px;
		color: #c6afdb;
		background: url('/i/hwf/layout/tab.jpg') no-repeat;
	}

	.tabs-nav .tabs-selected a, .tabs-nav a:focus, .tabs-nav a:active {
		
		width: 97px;
		height: 35px;
		background: url('/i/hwf/layout/tab-selected.jpg') no-repeat;
	}

	.tabs-nav a, .tabs-nav .tabs-disabled a:hover, .tabs-nav .tabs-disabled a:focus, .tabs-nav .tabs-disabled a:active {
		
		background-position: 100% -97px;
	}

	.tabs-nav a span {
	
		width: 97px; /* IE 6 treats width as min-width */
		height: 35px;
		padding-top: 7px;
		padding-right: 0;
	}

	*>.tabs-nav a span { /* hide from IE 6 */
	
		width: 97px;
		height: 35px;
	}
	
	.tabs-nav .tabs-selected a span {
		
		padding-top: 7px;
	}
	
	.tabs-nav .tabs-selected a span, .tabs-nav a:hover span, .tabs-nav a:focus span, .tabs-nav a:active span {
		
		background-position: 0 -50px;
	}
	
	.tabs-nav a span, .tabs-nav .tabs-disabled a:hover span, .tabs-nav .tabs-disabled a:focus span, .tabs-nav .tabs-disabled a:active span {
		
		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-container {
		
		border-top: 1px solid #97a5b0;
		padding: 3px;
		background: #ffffff; /* declare background color for container to avoid distorted fonts in IE while fading */
	}