@charset "UTF-8";


.TabbedPanels {
	margin-left: 0px;
	margin-right: 35px;
	padding: 0px;
	clear: both;
	width: auto;
	height: auto;
}
 .TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
	vertical-align: text-top;
 
}

 
.TabbedPanelsTab {
	position: relative;
 	float: left;
	background-color: #000;
	list-style: none;
 	cursor: pointer;
	border: 1px solid #000;
	font-family: sans-serif;
	font-size: 18px;
	font-weight: bold;
	color: #FFF;
	margin-top: 0px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	height: 28px;
}

.TabbedPanelsTabHover {
	background-color: #CCC;
}
 
.TabbedPanelsTabSelected {
	background-color: #333;
	border-bottom: 1px solid #EEE;
	width: auto;
}

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

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

.TabbedPanelsContent {
	padding: 4px;
	background-color: #000;
	color: #FFF;
}
 
.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: auto;
	height: 28px;
	background-color: #000;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #999;
	border-bottom: solid 1px #999;
}


.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}


.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}


.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: auto;
	height: 28px;
}
