/*
IMPORTANT:
Essential styles to ensure accessibility
*/
@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;
	}
}
@media print { /* maintain accessibility by overriding inline style used by animations... */
	.fragment {
		display: block !important;
		height: auto !important;
		opacity: 1 !important;
	}
	.anchors {
		display: none;
	}
}

/*TAB STYLES:*/


.anchors {
	list-style: none;
	margin: 0;
	padding: 0 0 1px;
}
.anchors:after { 
	display: block;
	clear: both;
	content: " ";
}
.anchors li {
	float: left;
	margin: 0 1px 0 0;
	height:80px;
}
.anchors a, .anchors a:visited {
	font-size:1.4em;
	display: block;
	position: relative;
	top: 0px;
	border: none;
	border-bottom: 0;
	z-index: 2;
	padding: 10px 9px 4px;
	font-weight: normal;
	color: #999999;
	text-decoration: none;
}
.anchors .tabs-selected a { /* selected tab */
	padding-bottom: 2px;
	font-weight: bold;
	text-decoration: none;
}
.anchors a:focus, .anchors a:active {
	outline: none; /* @ Firefox 1.5, remove ugly dotted border */
}
.anchors .tabs-selected a:link, .anchors .tabs-selected a:visited { /* selected tab */
	background: #999999;
	color: #fff;
	text-decoration: none;
}
.anchors a:hover, .anchors a:focus, .anchors a:active { /* mouseover */
	background: #eeeeee;
	text-decoration: none;
}
.fragment {
}


























