@charset "utf-8";
/* Spry Tab Style */

.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%;
	font-size:15px;
/* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 2px 5px;
	margin: 0px 1px 0px 0px;
	font: bold 0.7em sans-serif;
/*	background-color: #DDD; */
/*	border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	
	cursor: pointer
	cursor: Hand
	cursor Help*/
	border-left: solid 1px Orange;
	border-bottom: solid Orange;
	border-top: solid 1px Orange;
	border-right: solid 1px Orange;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: Hand;
	background: White;
}

.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
	font-size:20px;
	color:#FF0000;
}

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

.TabbedPanelsContent {
	padding: 4px;
}

.TabbedPanelsContent ul {
    padding-left: 10px;
	list-style-image:url(../img_icon/bluedot.gif);
}

.TabbedPanelsTabHover {background-color: Orange;}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	background-color: Bisque;
/*	background-color: #EEE; */
	border-bottom: 2px solid Bisque;
}

.TabbedPanelsContentVisible {
/*	background-color: Bisque;*/
	background-image:url(../bg/bisque.png);
}


