﻿/* linkbar Container */
#linkwrapper {
	width: 100%;
	border-top: none 0px #000000;
	/* border-top: 1px solid #92a7b1; */
	border-bottom: none 0px #000000;
	/* border-bottom: 1px solid #92a7b1; */
	/* background-color: #c6c6c6;
	background-repeat: repeat-x; */
}
/*
This sets font for just the link. Do not add a font-size here
it is set under .linkbar a.
*/
.linkbar, .linkbar ul {
	padding: 0;
	margin: 0;
	list-style: none;
    font-family:Georgia,Times New Roman;
	/* font-weight: bold; */
	text-align: center;
	height: 30px; padding-top:6px;
	FONT: bold 11pt 'Arial', Helvetica, sans-serif; COLOR: #fafafa; TEXT-ALIGN: center;
}
/*
Main link Links
Font-size is set here and will apply to all link levels.
*/
.linkbar a {
	display: block;
	text-decoration: none;
	padding: 6px 10px 6px 10px;
	border-bottom: none 0px #000000;
	/* border-bottom: 1px solid #92a7b1; */
	color: #000000;
	BORDER-TOP-WIDTH: 0px; PADDING-RIGHT: 0px; PADDING-LEFT: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; PADDING-BOTTOM: 0px; PADDING-TOP: 0px; BACKGROUND-COLOR: transparent; BORDER-RIGHT-WIDTH: 0px
}

/*
The top and bottom padding assigned this element must be the same as
that assigned to the .linkbar a.
*/
.linkbar a.trigger {
	padding: 6px 16px 6px 10px;
	background-repeat: no-repeat;
	background-position: right center;
}
/*
The horizontal rule image
*/
.linkbar hr 
{	
	color:#896947;
}
/*
The main link list items.*/
.linkbar li {
	display: block;
	/* float: left; */
	width: 10em; 
    /* background: url('../images/graphic.gif') no-repeat left; */    
    padding: 0px 0px 0px 10px;
}
.ie6 .linkbar li {
	display: block;
	/* float: left; */
	width: 10em; 
    /* background: url('../images/graphic.gif') no-repeat left; */    
    padding: 0px 0px 0px 10px;    
	height:20px;
}  
/*
Sets width for sub-link box and the list items inside.*/
.linkbar li ul, .linkbar ul li  {
	width: 22em;
	text-align: center;
}
/*
The sub-link links. */
.linkbar ul li a  {
	color: #000000;
	border-right: 0;
	padding: 3px 12px 3px 16px;
}
/*
Sub-link unordered lists 
Background color must be set or problems will be encountered in MSIE.
*/
.linkbar li ul {
	position: absolute;
	display: none;
	background-color: #d2d1c6;
	border-right: 1px solid #92a7b1;
	border-bottom: 1px solid #92a7b1;
	background-repeat: repeat-x;
}

.linkbar li:hover a, 
.linkbar a:focus,
.linkbar a:active,  
.linkbar li.hvr a
{
	color: #c4782c;
	/* background-color:  #FFF1CD; */
}
/*
Set the sub-nenu UL to be visible when its associated
main link link is moused over. 
*/
.linkbar li:hover ul, .linkbar li.hvr ul {
	display: block;
}
/*
Sets the text color of the sub links when the main link items 
are moused over. The color set should march the normal sub links 
link color in the rule: linkbar ul li a.
*/
.linkbar li:hover ul a, .linkbar li.hvr ul a {
}
/*The normal hover class for sub-link links.*/
.linkbar ul a:hover {
	/* background-color: #FFF1CD!important; */
	color: #e4cf3e!important;
}
/* 
The single backslash \ character inside this comment
causes IE5 Mac to ignore the following rule, which allows other
browsers to render top-level link items to their natural width.
*/
.linkbar li {width: auto;}

