@charset "UTF-8";
/* SpryTabbedPanels.css - version 0.4 - Spry Pre-Release 1.6.1 */
/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/* Main Panel parameters */
.TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	clear: none;
	width: 100%;
	transition: all 0.3s ease 0s;
}

.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
	transition: all 0.3s ease 0s;
}
.tabpanelcontent li {
	display: list-item;
	list-style-position: inside;
	list-style-type: disc;
}
/* General tab parameters */
.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	font-weight: 600;
	list-style: none;
	border: 1px solid #e0e0e0;
	border-radius: 4px 4px 0 0;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	color: #fff;
	font-size: 19px;
	line-height: 13px;
	padding: 18px 39px;
	text-transform: capitalize;
	transition: all 0.3s ease 0s;
	margin-right: 3px;
	background-color: #005500;
	text-align:center;
}

/* Mouseover tab */
.TabbedPanelsTabHover {
	background-color: #9AE153;
	color: #FFF;
	outline: none;
	font-size: 19px;
	line-height: 13px;
	transition: all 0.3s ease 0s;
}

/* Selected tab */
.TabbedPanelsTabSelected {
	background-color: #000;
	border-bottom: 1px solid #eee;
	color: #FFF;
	border-radius: 4px 4px 0 0;
	outline:none;  
	transition: all 0.3s ease 0s;
}

/* Link in panel */
.TabbedPanelsTab a {
	color: black;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	
}

/* Panel colors and borders */
.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #eee;
	border-bottom: solid 1px #eee;
	border-top: solid 1px #eee;
	border-right: solid 1px #eee;
	background-color: #fff;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	transition: all 0.3s ease 0s;
	padding-top: 20px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 10px;
}

/* Panel content padding*/
.TabbedPanelsContent {
	padding: 4px;
	margin: 0px;
}

