/*
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 { /* retain accessibility by overriding inline style used by animations... */
	.fragment {
		display: block !important;
		height: auto !important;
	}
	.anchors {
		display: none;
	}
}
.sections {
	float: left;
	margin: 1em .5em;
}
.sections div {
	padding: 5px;
	border: 1px solid #DDD;
}
#content .anchors {
	list-style: none;
	margin: 0;
	padding: 0 0 1px;
}
.anchors:after { /* clearing without presentational markup, IE gets extra treatment */
	display: block;
	clear: both;
	content: ' ';
}
#content .sections .anchors li {
	list-style: none;
	float: left;
	margin: 0 1px 0 0;
}
#content .anchors a {
	position: relative;
	display: block;
	z-index: 2;
	padding: 2px 9px 1px;
	top: 2px;
	border: 1px solid #DDD;
	border-bottom: none;
	background: #EAEAEA;
	color: #666;
	text-decoration: none;
}
#content .anchors .tabs-selected a {
	padding-bottom: 2px;
	font-weight: bold;
}
#content .anchors a:focus,
#content .anchors a:active {
	outline: none; /* @ Firefox 1.5, remove ugly dotted border */
}
#content .anchors .tabs-selected a,
#content .anchors a:hover,
#content .anchors a:focus,
#content .anchors a:active,
.fragment {
	background: #FFF;
	color: #000;
}
#content .anchors .tabs-selected a:link,
#content .anchors .tabs-selected a:visited,
#content .anchors .tabs-disabled a:link,
#content .anchors .tabs-disabled a:visited { /* @ Opera, use pseudo classes otherwise it confuses cursor... */
	cursor: text;
}
#content .anchors a:hover,
#content .anchors a:focus,
#content .anchors a:active {
	cursor: pointer;
}
#content .anchors .tabs-disabled {
    opacity: .4;
}
#content .anchors .tabs-disabled a:hover,
#content .anchors .tabs-disabled a:focus,
#content .anchors .tabs-disabled a:active {
    background: transparent;
}
#content .fragment {
    padding: 0 10px;
}
.sections div div {
	padding: auto;
	border: none;
}