@charset "UTF-8";

.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;
}

.TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 8px 10px;
	margin: 0px 1px 0px 0px;
	font: bold 0.7em sans-serif;
	/*background-image:url(../images/bg_greenpx.png);
	background-color: #679832;*/
	list-style: none;
	/*border-left: solid 1px #CCC;
	border-bottom: solid 1px #999;
	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-color: #679832;
	background-image:url(../images/bg_greenpx.png);*/
}

.TabbedPanelsTabSelected {
/*	background-image:url(../images/bg_greenpx.png);*/
}

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

.TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	/*background-image:url(../images/bg_greenpx.png);*/
	}

.TabbedPanelsContent {
	padding: 4px; /*4*/
}

.TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels */

.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 132px; /*width of links in tab panel*/
	height: 320px; /*height of links in tab panel*/
	/*background-image:url(../images/bg_greenpx.png);*/
	position: relative;
	margin-left:30px;
}

.VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
	height:50px;
	background-image:url(../images/left_button.png);/*added for image on tabs*/
	background-repeat:no-repeat;
	color:#FFF;
	font-family:Tahoma;
	font-size:16px;
	font-weight:bold;
	text-align:center;
}

.VTabbedPanels .TabbedPanelsTabSelected {
	 /*background-color: #0F6;bg color of tabs
	border-bottom: solid 1px #999;*/
	background-image:url(../images/left_button_ho.png);
	/*padding:20px; added for height of tabs*/
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 10px;
	width: 600px;
	height: 250px;
	margin-left:30px; /*margin for distance betn tabs and content*/
}


