@charset "UTF-8";

/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */


.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 {
	margin: 0px;
	padding: 0px;
	text-transform:uppercase;
	color: #FFF;
}


.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 1px 0px 0px;
	font: 0.7em sans-serif;
	background-color: #999999;
	list-style: none;
	border-left: solid 1px #FFF;
	border-bottom: solid 1px #FFF;
	border-top: solid 1px #FFF;
	border-right: solid 1px #FFF;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
}

.TabbedPanelsTabHover {
	background-color: #CCC;
}

.TabbedPanelsTabSelected {
	background-color: #CCC;
	border-bottom: 1px solid #FFF;
	font-weight:bold;
}

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

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


.TabbedPanelsContent {
	padding: .7em;
	min-height: 250px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: .8em;
	color: #000;
}

.TabbedPanelsContent ul li p {
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
    color: #000;
}

/* 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 {
}


