/* 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;}
}

.tabs_nav {
	width: 100%; min-width: 660px; height: 31px;
	background: transparent; 
	margin: 0; padding: 0;
	font-size: 0.8em;
	/* width and padding must correspond with main panel */
	border-bottom: 1px solid #BFBFBF;
}
.tabs_nav a {
	display: block; float: left;
	height: 30px; line-height: 30px;
	margin-left: -1px; margin-right: 3px;
	padding-left: 10px; padding-right: 11px;
	color: #545454;
	text-decoration: none;
	border: 1px solid #BFBFBF;
	background: url(../images/tab_normal.gif) top left repeat-x;
}
.tabs_nav a:hover {
	color: #404040;
	background: url(../images/tab_hover.gif) top left repeat-x;
}
.tabs_nav a.tabs_selected, .tabs_nav a.tabs_selected:hover {
	color: #404040;
	background: url(../images/tab_sel.gif) top left repeat-x;
	border-bottom: 1px solid #cae2ff;
}

.tabs_body {
	width: 100%;
	min-width: 660px;
	background: transparent; 
	margin: 0 0 0 -1px; padding: 0;
	/* width and padding must correspond with main panel */
	border:1px solid #BFBFBF; border-top: none;
	background: url(../images/tab_body.gif) top left repeat-x;
}
