@charset "UTF-8";

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

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

/* This is the selector for the TabbedPanelsTab. This is the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 3px 0px 0px 0px;
	margin: 0px 10px 0px 5px;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	font-family:"Trebuchet MS", Verdana;
	font-size:18px;
	font-style:normal;
	font-weight:bold;
	border:none;
	border-bottom: 1px solid #EEE;
	width:130px;
	background-image:url(../images/tab.gif);
	background-repeat:no-repeat;
	text-align:center;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. 
 */
.TabbedPanelsTabHover {
	background-color: #CCC;
}

/* 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.
 */
.TabbedPanelsTabSelected {
	border:none;
	border-bottom: 1px solid #EEE;
	width:130px;
	background-image:url(../images/tab_selected.gif);
	background-repeat:no-repeat;
	text-align:center;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. 
 */
.TabbedPanelsTab a {
	color: black;
	text-align:center;
	text-decoration: none;
}

/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. 
 */
.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: #fff;
	height:auto;
}

/* This is the selector for the Content panel. 
 */
.TabbedPanelsContent {
	padding: 4px;
	padding-top:15px;
}

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


