@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: 5px 3px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%; 
}

.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
}

/*
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 20px;
	margin: 0px 1px 0px 0px;
	font: 100% Tahoma, Geneva, sans-serif;
	font-weight:bold;
	letter-spacing: 0.08em;
	background: url(../images/nav-bg.jpg) bottom;
	list-style: none;
	border-left: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	background:url(images/nav-bg-hover.jpg) repeat-x bottom;
	color:#FFF;
}

.TabbedPanelsTab a:hover {
	color:#FFF;
	text-decoration: none;
}

.TabbedPanelsTab a {
	text-decoration: none;
	color:#FFF;
}
 
.TabbedPanelsTabSelected {
	border-bottom: 1px solid #EEE;
	background:url(../images/nav-bg-hover.jpg) repeat-x bottom;
}

.TabbedPanelsTabSelected a {
	color:#002596;
}




.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	background: #FFF url(../images/packages-bg.jpg) repeat-x bottom;
}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 0px 20px;
}


.TabbedPanelsContentVisible {
}

