@charset "UTF-8";
/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: inherit;
}

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

.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 3px 6px;
	margin: 0px 1px 0px 0px;
	list-style: none;
	border: solid 1px #bbb;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;	
	color: #bbb;
	background-color: #888;	
}

.TabbedPanelsTabHover {
	background-color: #bbb;
	color: #00F;
}


.TabbedPanelsTabSelected {
	background-color: #EEE;
	font-weight: bold;
	color: #00F;
}

/* 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 BodyGroup. The BodyGroup container houses
 * all of the body panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the body.
 *
 * The name of the class ("TabbedPanelsBodyGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the BodyGroup container.
 */
.TabbedPanelsBodyGroup {
	clear: both;

}

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

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



