@charset "UTF-8";
/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Sliding tab panel with css colored tabs */

/* Main Panel parameters - percentage width is not possible */
.SlidingPanels {
	background-color:#333;
	position: relative;
	width: 400px;
	padding-right:5px;
	padding-left:0;
	padding-bottom:5px;
	border: 1px solid #e69d01;
	clear:both;
}


/* Main Panel parameters - do not change*/
.SlidingPanelsContentGroup {
	position: relative;
	width: 10000px;
	margin: 0px;
	padding: 0px;
	border: none;
}

/* Main Panel parameters - percentage width is not possible */
.SlidingPanelsContent {
	float: left;
	width: 380px; /*to make the right slider visible */
	height: 270px; /*new*/
	overflow: auto; /*changed*/
	overflow-x: hidden;
	margin: 0px;
	padding-right:10px;
	border: none;
	padding-top: 0px;
	padding-bottom: 0px;
	padding-left: 17px; /*to make the bullets visible */
	text-align:left;
}


/* Link properties */
A {
	color:#cc3300;
	text-decoration:none;
}
A:hover {
	text-decoration:none;
}

/* Do not change*/
.SlidingPanelsAnimating * {
	overflow: hidden !important;
}

/* Content parameters */
ul, li {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	list-style-position:outside;
	list-style:disc;
	color: #FF9;
}

h1 {
	margin:0;
	padding:0;
	font-size:18px;
	color: #595959;
}
h2 {
	font-size:12px;
	color:#444;
	color: #595959;
}

/* General tab area settings */
.slidingTabPanelWrapper {
	height:28px; /*space between tabs and content box*/
	margin:0px 0 0px 0;
	display: none;
}
.slidingTabPanel {
	list-style:none;
	margin:0 auto;
	padding:0;
}
/*tabs at top of box */
.slidingTabPanel LI {
	list-style:none;
	position: relative;
	float:left;
	width:auto;
	margin:0 4px 0 0px;
}

/* Tab settings */
.tabActive {
background-color:#333333; /*background color for active tab */
font-weight: bold;
color:#000000;
	position:relative;
	top:1px;
	display:block;
	width:auto;
	padding-top: 4px;
	padding-left: 6px;
	padding-right: 6px;
	height:22px;
	cursor:default;
	outline:none;
	border-top: 1px solid #F90;
border-left: 1px solid #F90;
border-right: 1px solid #F90;
text-align:left;
border-bottom: solid 1px #F90;
}

a.tabActive:link {
font-weight: bold;
color:#ffffff;
}

.tab {
background-color: #333333;
font-weight: bold;
color:#ffffff;
	position:relative;
	top:1px;
	display:block;
	width:auto;
	padding-top: 4px;
	padding-left: 6px;
	padding-right: 6px;
	height:22px;
	background-position:-100px;
	cursor:pointer;
	outline:none;
	border-top: 1px solid #F90;
border-left: 1px solid #F90;
border-right: 1px solid #F90;
text-align:left;
}

a.tab:link{
background: #CCC; /*background color for inactive tab */
padding-top: 4px;
color:#ffffff; /*font color for inactive tab */
font-weight: bold;
text-decoration:none;}

a.tab:hover{
padding-top: 4px;
background-color:#333333; /* hover background color for inactive tab */
font-weight: bold;
color:#ffffff; /*font color for inactive tab */
text-decoration:none;}


