@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. For our
 * default style, 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. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	margin: 8px 0 0 0;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

.TabbedPanelsTabGroup {
font-size:13px;
height:28px;
}

.TabbedPanelsTab {
font-weight:bold;
display:block;
float:left;
color:#fff;
font-size:13px;
height:10px;
padding:4px 18px 22px 18px;
text-decoration:none;
cursor: pointer;
background:url(../images/tab_bg.gif) 0 0 repeat-x;
border-bottom:0;
}
.TabbedPanelsTabHover {
color:#333;
background:url(../images/tab_hover.gif) 50% 0 no-repeat;
}
.TabbedPanelsTabSelected {
background:url(../images/tab_hover.gif) 50% 0 no-repeat;
color:#333;
}
.TabbedPanelsTab a {
font-weight:bold;
display:block;
float:left;
color:#333;
height:10px;
padding:4px 10px 22px 10px;
text-decoration:none;
cursor: pointer;
}
.TabbedPanelsContentGroup {
	clear: both;
}
.TabbedPanelsContent {
	padding: 4px;
}