@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Horizontal Tabbed Panels
 * The default style for a TabbedPanels widget places all tab buttons (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. This container does not contribute anything visually, but it is floated left to make sure that any floating or clearing done with any of its child elements are contained completely within the TabbedPanels container, to minimize any impact or undesireable interaction with other floated elements on the page that may be used for layout. If you want to constrain the width of the TabbedPanels widget, set a width on the TabbedPanels container. By default, the TabbedPanels widget expands horizontally to fill up available space. The name of the class ("TabbedPanels") used in this selector is not necessary to make the widget function.
 */
#TabbedPanels1 {
 width:701px;
 
}
.TabbedPanels {
	margin: 0;
	padding: 0;
	float: left;
	clear: both;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}
.TabbedPanelsTabGroup {
	margin: 0 0 0 0;
	padding: 0 0;
}
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0 0 0 0;
	/*font: bold 0.7em sans-serif;*/
	font-size:11px;
	background: #DDD url(/images/tab-off-bg.gif) repeat-x;
	list-style: none;
	border-left: solid 1px #C7CBCE;
	/*border-bottom: solid 1px #999;*/
	border-top: solid 1px #C7CBCE;
	border-right: solid 1px #C7CBCE;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	height:20px;
}
div#PageContent .TabbedPanelsTab {
	padding: 4px 20px 0 20px;
	margin-right:-1px;
	line-height:1.3;
	font-size:1em;
}
.TabbedPanelsTabHover {
	/*background-color: #CCC;*/
	color:#36689a;
}
.TabbedPanelsTabSelected {
	color:#36689a;
	background: #FFF;
/*	border-bottom: 1px solid #FFF;*/
	border-bottom:0;
	outline:0;
}
.TabbedPanelsTab a {
	color: #36689a;
	text-decoration: none;	
}
.TabbedPanelsContentGroup {
	clear: both;
	border-top: solid 1px #C7CBCE;
	border-left:solid 1px #C7CBCE;
	border-right:solid 1px #C7CBCE;
	background:#f5f5f5 url(/images/tab-body-gradient-bg.gif) repeat-x;
}
div#PageContent .TabbedPanelsContent {
	padding: 18px 0;
	min-height: 214px; /* IE Style in ie-lt7.css */
}
.TabbedPanelFooter {
	background: transparent url(/images/tab-footer.gif);
	height:6px;	
	overflow:hidden;
	width:701px;
	clear:both;
}
/* The class "TabbedPanelsContentVisible" is programatically added and removed from the content element as the panel is activated/deactivated.
 */
.TabbedPanelsContentVisible {}