@charset "UTF-8";

/* SpryTabbedPanels.css - Revision: Spry Preview Release 1.4 */

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

/* Horizontal Tabbed Panels
 *
 * The default style for a TabbedPanels widget places all tab buttons
 * (left aligned) above the content panel.
 */

/* This is the selector for the main TabbedPanels container. For our
 * default style, this container does not contribute anything visually,
 * but it is floated left to make sure that any floating or clearing done
 * with any of its child elements are contained completely within the
 * TabbedPanels container, to minimize any impact or undesireable
 * interaction with other floated elements on the page that may be used
 * for layout.
 *
 * If you want to constrain the width of the TabbedPanels widget, set a
 * width on the TabbedPanels container. By default, the TabbedPanels widget
 * expands horizontally to fill up available space.
 *
 * The name of the class ("TabbedPanels") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabbedPanels container.
 */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 440px; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

/
.TabbedPanelsTabGroup {border-bottom:	1px solid #CCC;
	padding: 0px;
}
.TabbedPanelsTabGroup li{clear:none; padding:15px 7px 0 7px; font-family:Arial, Helvetica, sans-serif;}

.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 0px 10px;
	margin: 0px 0px 0px 5px;
	text-transform: uppercase;
	font-size: 10px;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	overflow: hidden;
}

.TabbedPanelsTabHover {
}

.TabbedPanelsTabSelected {
	font-size:12px;
	font-weight:bold;
	text-decoration:underline;
	background-color:#ffffff;
}

.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
}
.TabbedPanelsTab a:hover {
	color: #006699;
	text-decoration: none;
}

.TabbedPanelsContentGroup {
	clear: both;
	font-family:"trebuchet MS", Helvetica-Light;
	font-size:13px;
	margin:0px 0px 0px 10px;
	color: #000;
	padding:0px 0px 0px 5px;
}

.TabbedPanelsContent {
	padding: 5px 4px 0 0;
	
}
.over{height:500px;
	overflow:auto;}
.TabbedPanelsContentVisible {
}


.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	color: #EEE;
	position: relative;
}


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


.VTabbedPanels .TabbedPanelsTabSelected {
	color: #EEE;
}

.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}

