@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.6 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */
/* Horizontal Tabbed Panels */

.TabbedPanels {
	overflow: hidden;
	margin: 10px 0px;
	padding: 0px;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 1px 0px 0px;
	font-weight:bold;
	font-size:13px;
	/* color: #00538A; */
	color: #666;
	background-color: #f3f3f3;
	list-style: none;
	list-style-image: none !important;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #e4e4e4;
	border-top: solid 1px #e4e4e4;
	border-right: solid 1px #e4e4e4;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#e9eaea));
	background: -webkit-linear-gradient(top, #f8f8f8, #e9eaea);
	background: -moz-linear-gradient(top, #f8f8f8, #e9eaea);
	background: -ms-linear-gradient(top, #f8f8f8, #e9eaea);
	background: -o-linear-gradient(top, #f8f8f8, #e9eaea);
	-moz-border-radius-topright: 10px;
	border-top-right-radius: 10px;
	-moz-border-radius-topleft: 10px;
	border-top-left-radius: 10px;
}

.TabbedPanelsTabHover {
	background-color: #FFF;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#fff));
	background: -webkit-linear-gradient(top, #f8f8f8, #fff);
	background: -moz-linear-gradient(top, #f8f8f8, #fff);
	background: -ms-linear-gradient(top, #f8f8f8, #fff);
	background: -o-linear-gradient(top, #f8f8f8, #fff);
}

.TabbedPanelsTabSelected {
	background-color: #FFF;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8f8f8), to(#fff));
	background: -webkit-linear-gradient(top, #f8f8f8, #fff);
	background: -moz-linear-gradient(top, #f8f8f8, #fff);
	background: -ms-linear-gradient(top, #f8f8f8, #fff);
	background: -o-linear-gradient(top, #f8f8f8, #fff);
	border-bottom: 1px solid #EEE;
	color: #00538A;
}

.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #e4e4e4;
	border-right: solid 1px #e4e4e4;
	background-color: #FFF;
}

.TabbedPanelsContent {
	overflow: hidden;
	padding: 10px;
}

.TabbedPanelsContentVisible {
}

/* Styles for Printing */
@media print {
.TabbedPanels {
	overflow: visible !important;
}
.TabbedPanelsContentGroup {
	display: block !important;
	overflow: visible !important;
	height: auto !important;
}
.TabbedPanelsContent {
	overflow: visible !important;
	display: block !important;
	clear:both !important;
}
.TabbedPanelsTab {
	 overflow: visible !important;
	 display: block !important;
	 clear:both !important;
}
}
