@charset "UTF-8";

.TabbedNav {
	margin: 0px;
	padding: 0px;
	/*float: left;*/
	clear: none;
	/*width: 100%;  IE Hack to force proper layout when preceded by a paragraph. (hasLayout Bug)*/
}

.TabbedNavTabGroup {
	margin: 0px;
	padding: 0px;
}


.TabbedNavTab {
	position: relative;
	top: 0px;
	float: left;
	
	font-family:"Trebuchet MS";
	font-size:12px;
	font-weight:bold;
	margin: 0px 0px 0px 0px;
	/*background-color: #DDD;*/
	list-style: none;
	border-left: solid 0px #CCC;
	border-bottom: solid 0px #999;
	border-top: solid 0px #999;
	border-right: solid 0px #999;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	text-align:center;
	border-right:1px solid #C1ECF6;
}


/*.TabbedNavTabHover {
	background-color: #00CC66;
	color:#333333;
}*/


.TabbedNavTabHover , .TabbedNavTabSelected {
	/*background-color: #00CC66;*/
	border-bottom: 0px solid #EEE;
	color:#333333;
	background-image:url("../images/navbar_hover.gif");
	background-repeat: repeat-x;
}


.TabbedNavTab a {
	color:#661113;
	text-decoration: none;
	text-transform:uppercase;
	padding-left:14px;
	padding-right:14px;
	padding-top:13px;
	display: block;
	height:26px;
}


.TabbedNavContentGroup {
	clear: both;	
	background-color:#C1ECF6;
	color:#333333;
}


.TabbedNavContent {
}

.TabbedNavContent div{
	padding: 2px 0px;
	font-size:11px;
}

.TabbedNavContent div.t1{ }
.TabbedNavContent div.t2{ }
.TabbedNavContent div.t3{ text-align:left; padding-left:45px;}
.TabbedNavContent div.t4{ }
.TabbedNavContent div.t5{ }
.TabbedNavContent div.t6{ text-align:right; padding-right:20px; }
.TabbedNavContent div.t7{ }

.TabbedNavContent a{
font-family:"Trebuchet MS";
margin:0px 8px;
color:#791D20;
text-decoration:none;
font-weight:normal;
}

.TabbedNavContent a:hover{
	color:#791D20;
	text-decoration: underline;
}


.TabbedNavContentVisible {
}

/* Vertical Tabbed Panels
 *
 * The following rules override some of the default rules above so that the
 * TabbedNav 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 "VTabbedNav" class on the top-level widget
 * container element, instead of "TabbedNav".
 */

/* 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.
 */
.VTabbedNav .TabbedNavTabGroup {
	float: left;
	width: 10em;
	height: 20em;
	/*background-color: #EEE;*/
	position: relative;
	border-top: solid 1px #999;
	border-right: solid 1px #999;
	border-left: solid 1px #CCC;
	border-bottom: solid 1px #CCC;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedNavTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedNav .TabbedNavTab {
	float: none;
	margin: 0px;
	border-top: none;
	border-left: none;
	border-right: none;
}

/* This selector disables the float property that is placed on each tab button
 * by the default TabbedNavTab selector rule above. It also draws a bottom
 * border for the tab. The tab button will get its left and right border from
 * the TabGroup, and its top border from the TabGroup or tab button above it.
 */
.VTabbedNav .TabbedNavTabSelected {
	background-color: #EEE;
	border-bottom: solid 1px #999;
}

/* This selector floats the content panels for the widget so that they
 * render to the right of the tabbed buttons.
 */
.VTabbedNav .TabbedNavContentGroup {
	clear: none;
	float: left;
	padding: 0px;
	width: 30em;
	height: 20em;
}

