@charset "UTF-8";

.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

.TabbedPanelsTabGroup {
	display:block;
	width:100%;
	height:32px;
	margin: 0px;
	padding: 0px;
	background:url(tabBG.gif) repeat-x left center;

}

.TabbedPanelsTabGroup2{
	display:block;
	width:100%;
	height:26px;
	margin: 0px;
	padding: 0px;
	border-top:1px solid #99cc00;
	border-bottom:1px solid #99cc00;

}

*html .TabbedPanelsTabGroup2{
	display:block;
	width:100%;
	height:28px;
	margin: 0px;
	padding: 0px;
	border-top:1px solid #99cc00;
	border-bottom:1px solid #99cc00;

}


.TabbedPanelsTab {position: relative;float: left;list-style: none;-moz-user-select: none;-khtml-user-select: none;cursor: pointer;display:block; width:120px; height:32px; background:url(tab_link.gif) no-repeat center center; font-size:14px; font-weight:700; color:#a3a3a3; line-height:32px; padding:0; margin: 0px 1px 0px 0px;
}

.TabbedPanelsTab2 {
	position: relative;
	float: left;
	padding: 6px 17px;
	margin: 1px 1px 0px 0px;
	font-size:12px;
	color:#727272;
	background-color: #f0f7d9;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;

}

.TabbedPanelsTabHover { color: #727272;background:url(tab_over.gif) no-repeat center center;}
.TabbedPanelsTabSelected {color: #727272;background:url(tab_over.gif) no-repeat center center;}
.TabbedPanelsTab a {color: #727272;text-decoration: none;background:url(tab_link.gif) no-repeat center center;}

.TabbedPanelsTabHover2 { color: #fff;text-decoration: none; background-color:#99cc00}
.TabbedPanelsTabSelected2 {color: #fff;text-decoration: none; background-color:#99cc00}
.TabbedPanelsTab2 a {color: #fff;text-decoration: none; background-color:#99cc00}

/* 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;
}


.TabbedPanelsContent {
	padding: 18px 2px 10px 1px;
}

.TabbedPanelsContent3 {
	padding: 18px 3px 10px 5px;
	text-align:left;
}

.TabbedPanelsTabGroup3{
	display:block;
	width:100%;
	height:26px;
	margin: 0px;
	padding: 0px;
	border-top:1px solid #99cc00;
	border-bottom:1px solid #99cc00;

}
*html .TabbedPanelsTabGroup3{
	display:block;
	width:100%;
	height:28px;
	margin: 0px;
	padding: 0px;
	border-top:1px solid #99cc00;
	border-bottom:1px solid #99cc00;

}
.TabbedPanelsContent3 span{ margin-top:20px; margin-bottom:5px; margin-left:0;}
.TabbedPanelsContent3 p{ padding:0; margin:0;}
.TabbedPanelsTabGroup3 li{ display:inline; }
.TabbedPanelsTabGroup3 a{
	position: relative;
	float: left;
	padding: 6px 26px;
	margin: 1px 1px 0px 0px;
	font-size:12px;
	color:#727272;
	background-color: #f0f7d9;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;

}
.TabbedPanelsTabGroup3 a:hover{

	float: left;
	padding: 6px 26px;
	margin: 1px 1px 0px 0px;
	font-size:12px;
	color:#fff;
	background-color: #99cc00;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;

}


.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: 10em;
	height: 20em;
	background-color: #EEE;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedPanelsTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}

