@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6 */

/* 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.
 */

/* tabs container, internal floats cleared */
 
.TabbedPanels {
	margin: 0;
	padding: 0;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}
div.TabbedPanels {
	margin-top:10px;
	}

/* tab container */
.TabbedPanelsTabGroup {
	margin: 0;
	padding: 0;
}

/* tab style */
 #bd ul li.TabbedPanelsTab { /* overrides list styles defined in style.css */
	list-style: none;
	padding: 7px 0 3px;
	margin: 0px 6px 0 0; 	
	width:270px;
	}
 #bd ul li.TabbedPanelsTab.last {
 	margin-right:0;
 	}
.TabbedPanelsTab  {
	position: relative;
	top: 1px;
	float: left;
	list-style: none;
	text-align:center;
	color:#9f9fa1;
	background: #f7f8fa url(../images/bg_tabs.png) repeat-x bottom;
	border-left: solid 1px #bbb;
	border-bottom: solid 1px #bbb;
	border-top: solid 1px #bbb;
	border-right: solid 1px #bbb;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
}
#col1 .TabbedPanelsTab strong {	
	color:#9f9fa1;
	font-size:186%;
	font-weight:bold;
	font-family: 'Trebuchet MS',Arial,'Verdana',sans-serif;
}

/* tab hover color */
.TabbedPanelsTabHover,
#col1 .TabbedPanelsTab.TabbedPanelsTabHover strong,
#col1 .TabbedPanelsTabSelected.TabbedPanelsTabHover,
#col1 .TabbedPanelsTabSelected.TabbedPanelsTabHover strong {
	color:#000;
}

/* selected tab */
.TabbedPanelsTabSelected {
	background-color: #fff;
	background-image:none;
	color: #cc0000;
	border-bottom: 1px solid #fff;
}
#col1 .TabbedPanelsTabSelected strong {
	color: #cc0000;
	}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #bbb;
	border-bottom: solid 1px #bbb;
	border-top: solid 1px #bbb;
	border-right: solid 1px #bbb;
	background-color: #ffffff;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 10px;
}

/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
}

