 
@charset "UTF-8";

 .TabbedPanels {
	margin: 0px;
	padding: 0px;
	float: left;
	width: 100%; /* IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
	background-color: #4C1010;
}
 .TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
    width: 70%;
    margin-right: auto;
}
 .TabbedPanelsTab {
	position: relative;
	top: 1px;
	float: left;
	padding: 4px 10px;
	margin: 0px 1px 0px 0px;
	background-color: #4C1010;
	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;
	font-family: sans-serif;
	font-size: 18px;
	font-weight: normal;
	color: #C7BD8F;
	background-image: url(../images/pawback.jpg);
	background-repeat: repeat;
 
}
/***************MENU LINKS**************************/
 #outerWrapper #topNavigation #TabbedPanels1 .TabbedPanelsTabGroup .TabbedPanelsTab a,  a:link {
	color: #FFF;
	font-weight: bold;
	text-decoration: none;
}
/*  visited links. */
#outerWrapper #topNavigation #TabbedPanels1 .TabbedPanelsTabGroup .TabbedPanelsTab a:visited {
	color: #C7BD8F;
	font-weight: bold;
	text-decoration: none;
}
/*  mouseover. */
 #outerWrapper #topNavigation #TabbedPanels1 .TabbedPanelsTabGroup .TabbedPanelsTab a:hover {
	color: #915523
}
/*   focus. */
#outerWrapper #topNavigation #TabbedPanels1 .TabbedPanelsTabGroup .TabbedPanelsTab a:focus {
	color: #774C29;
}
/*  activated/clicked. */
 #outerWrapper #topNavigation #TabbedPanels1 .TabbedPanelsTabGroup .TabbedPanelsTab a:active {
	color: #FFF;
	background-color: #C7BD8F;
}

/*************end link colors******************/


 .TabbedPanelsContentGroup {
	clear: both;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	background-color: #4C1010;
}

 .TabbedPanelsContent {
	padding: 4px;
}
 .TabbedPanelsContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedPanels widget renders with its tab buttons along the left side of
 * the currently active content panel.
 *
 * With the rules defined below, the only change that will have to be made
 * to switch a horizontal tabbed panels widget to a vertical tabbed panels
 * widget, is to use the "VTabbedPanels" class on the top-level widget
 * container element, instead of "TabbedPanels".
 */

/* This selector floats the TabGroup so that the tab buttons it contains
 * render to the left of the active content panel. A border is drawn around
 * the group container to make it look like a list container.
 */
.VTabbedPanels .TabbedPanelsTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	background-color: #4C1010;
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

 .VTabbedPanels .TabbedPanelsTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}
 .VTabbedPanels .TabbedPanelsTabSelected {
	background-color: #C7BD8F;
	border-bottom: solid 1px #999;
}
 .VTabbedPanels .TabbedPanelsContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}
