/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6	{
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body	{
	border-top: solid 4px #bf0000; /* Sets the bottom border properties for an element using shorthand notation */
	background-image: url("../images/bgheader.gif");
	background-position: top left;
	background-repeat: repeat-x;
	background-color: #f8f6eb;
	color: #000;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	font: normal normal normal  SMALL Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	text-decoration: none;
	text-transform: none;
	}

.forminput {
	background-color: #FFFFFF; 
	border: 1px solid #999999; 
}

#flashcontent {
	border: none;
	width: 510px;
	height: 175px;
	margin: 0;
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	}

.tabletext {
	margin-top: 0px;
	color: #513300;
	font: normal normal normal 100% Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 150%;
	text-decoration: none;
	text-transform: none;
}

img	{
	border: none;
	}

img.content	{
	float: left;
	border: none;
	display: block;
	padding: 1em;
	}
.float-right { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin: 10px 0 0 8px;
}
.float-left { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
	
ol	{
	list-style-type: decimal;	
	list-style-position: outside;
	margin-top: 0px;
	color: #333333;
	font: normal normal normal 100% Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 150%;
	text-decoration: none;
	text-transform: none;
	}
ul	{
	list-style-type: disc;	
	list-style-position: outside;
	margin-top: 0px;
	color: #333333;
	font: normal normal normal 100% Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 150%;
	text-decoration: none;
	text-transform: none;
	}

p	{
	margin-top: 0px;
	color: #333333;
	font: normal normal normal 100% Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 150%;
	text-decoration: none;
	text-transform: none;
	}

p.footer	{
	margin-top: 0px;
	color: #666666;
	font: normal normal normal 9px Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 14px;
	text-decoration: none;
	text-transform: none;
	}

p.sidebar	{
	margin-top: 0px;
	margin-left: 17px;
	color: #333333;
	font: normal normal normal 11px Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 14px;
	text-decoration: none;
	text-transform: none;
	}

/* Commonly used to style page titles. */
h1	{
	margin-top: 0px;
	margin-bottom: 15px;
	color: #bf0000;
	font: normal normal normal 175% Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	text-decoration: none;
	text-transform: capitalize;
	}
/* Commonly used to style section titles. */
h2	{
	margin-top: 0px;
	color: #333333;
	font: normal normal normal 13px Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	border-bottom: solid 1px #cccccc; /* Sets the bottom border properties for an element using shorthand notation */
	line-height: 25px;
	letter-spacing: 1px;
	text-decoration: none;
	text-transform: uppercase;
	text-indent: 8px;
	background-image: url("../images/bgh2.jpg");
	background-position: top left;
	background-repeat: no-repeat;
	padding: 1px 0px 1px 0px;
	}
/* Sets the style for the h3 header. */
h3	{
	margin-top: 0px;
	color: #bf0000;
	font: normal normal normal 120% Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	line-height: 150%;
	text-decoration: none;
	text-transform: capitalize;
	}
a.namelink, a:hover.namelink	{
	color: #bf0000;
	text-decoration: none;
	outline: 0;
	}
a.namelinkfaq, a:hover.namelinkfaq	{
	color: #bf0000;
	text-decoration: none;
	font-weight: 800;
	outline: 0;
	}

/* Sets the style for unvisited links. */
a, a:link	{
	color: #af6a34;
	text-decoration: none;
	text-transform: none;
	outline: 0;
	}
/* Sets the style for visited links. */
a:visited	{
	color: #999999;
	text-decoration: none;
	text-transform: none;
	}
/* Sets the style for links on mouseover. */
a:hover	{
	color: #bf0000;
	text-decoration: underline;
	text-transform: none;
	}
/* Sets the style for a link that has focus. */
a:focus	{
	color: #bf0000;
	text-decoration: underline;
	text-transform: none;
	}
/* Sets the style for a link that is being activated/clicked. */
a:active	{
	color: #bf0000;
	text-decoration: none;
	text-transform: none;
	}

/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper	{
	background-image: url("../images/bgouterwrapper.gif");
	background-position: top;
	background-repeat: repeat-y;
	background-color: #f8f6eb;
	height: auto;
	margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	min-width: 740px;
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 740px;
	}
#outerWrapper #header-left	{
	border-bottom: solid 1px #999999; /* Sets the bottom border properties for an element using shorthand notation */
	height: 175px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 230px;
	float: left;
	}
#outerWrapper #header-right	{
	border-bottom: solid 1px #999999; /* Sets the bottom border properties for an element using shorthand notation */
	height: 175px;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 510px;
	float: right;
	}
#outerWrapper #nav	{
	background-color: #ffffff;
	border-bottom: solid 1px #999999; /* Sets the bottom border properties for an element using shorthand notation */
	height: 23px;
	padding: 0px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 740px;
	clear: both;
	}

#outerWrapper #contentWrapper #sidebar	{
	height: auto;
	padding: 35px 0px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 230px;
	float: left;
	}

/* subnav at sidebar*/
#subnav {
	list-style: none;
	width: 230px;
}

/* Sets the style for primary unvisited links. */	
#subnav a.subnav	{
	margin: 0px;
	padding: 2px 0px 2px 0px;
	display: block;
	color: #af6a34;
	text-decoration: none;
	text-transform: none;
	text-indent: 16px;
	font: normal normal normal 12px/21px Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	background-image: url("../images/bgsubnav.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	}
/* Sets the style for secondary unvisited links. */	
#subnav a.subsubnav	{
	margin: 0px;
	padding: 2px 0px 2px 0px;
	display: block;
	color: #af6a34;
	text-decoration: none;
	text-transform: none;
	text-indent: 28px;
	font: normal normal normal 12px/21px Tahoma, Geneva, Arial, Helvetica, sans-serif; /* Sets the font properties for an element using shorthand notation */
	background-image: url("../images/bgsubnav.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	}
/* Sets the style for visited links. */
#subnav a:visited	{
	color: #999999;
	text-decoration: none;
	text-transform: none;
	}
/* Sets the style for links on mouseover. */
#subnav a:hover	{
	color: #bf0000;
	text-decoration: underline;
	text-transform: none;
	background-image: url("../images/bgsubnav.jpg");
	background-position: bottom;
	background-repeat: no-repeat;
	}
/* Sets the style for a link that has focus. */
#subnav a:focus	{
	color: #bf0000;
	text-decoration: underline;
	text-transform: none;
	}
/* Sets the style for a link that is being activated/clicked. */
#subnav a:active	{
	color: #bf0000;
	text-decoration: none;
	text-transform: none;
	}

#outerWrapper #contentWrapper #content	{
	height: auto;
	border-bottom: solid 4px #999999; /* Sets the bottom border properties for an element using shorthand notation */
	margin-bottom: 0;
	margin-top: 0;
	padding: 25px 25px 25px 25px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 460px;
	float: right;
	}

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat	{
	clear: left;
	display: block;
	}

#outerWrapper #footer	{
	background-color: #f8f6eb;
	height: auto;
	padding: 5px 25px 10px 255px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 460px;
	clear: both;
	}

/* Main Navigation Styles */ 
/* Root = Horizontal, Secondary = Vertical */

ul#navmenu {
	margin: 0px;
	padding: 0px;
	width: auto; /*For KHTML*/
  	height: 23px;
	list-style-type: none; 
	background-color: #FFFFFF;
	color:  #000000;
}

ul#navmenu li {
	margin: 0;
	border: 0px none;
	padding: 0;
	float: left; /*For Gecko*/
	display: inline;
	position: relative;
	height: 23px;
	list-style-type: none;
}

ul#navmenu ul {
	margin: 0;
	border: 0px none;
	padding: 0;
	width: 290px;
	display: none;
	position: absolute;
	top: 23px;
	left: 0;
	list-style-type: none;
}

ul#navmenu ul:after /*From IE 7 lack of compliance*/{
	clear: both;
	display: block;
	font: 1px/0px serif;
	content: ".";
	height: 0;
	visibility: hidden;
}

ul#navmenu ul li {
	width: 290px;
	float: left; /*For IE 7 lack of compliance*/
	display: block !important;
	display: inline; /*For IE*/
}

/* Root Menu */
ul#navmenu a {
	background-image: url("../images/navdivider.jpg");
	background-position: left;
	background-repeat: no-repeat;
	margin: 0px;
	padding: 0 12px;
	float: none !important; /*For Opera*/
	float: left; /*For IE*/
	display: block;
	color:  #000000;
	font: 10px/23px Tahoma, Geneva, Arial, Helvetica, sans-serif;
	font-weight: 100;
	letter-spacing: 1px; 
	text-transform: uppercase;
	text-decoration: none;
	height: auto !important;
	height: 1%; /*For IE*/
}

ul#navmenu li.active a {
	background-image: url("../images/navdivider.jpg");
	background-position: left;
	background-repeat: no-repeat;
	color: #bf0000;
}

/* Root Menu Hover Persistence */
ul#navmenu a:hover,
ul#navmenu li:hover a,
ul#navmenu li.iehover a {
	background-color: #FFFFFF;
	color:  #bf0000;
}

/* 2nd Menu */
ul#navmenu li:hover li a,
ul#navmenu li.iehover li a {
	float: none;
	background-color: #FFFFFF;
	color:  #000000;
	font-weight: 100;	
	text-transform: none;
	text-indent: 16px;
	letter-spacing: 0px; 
	border-bottom: 1px solid #cccccc;
}

/* 2nd Menu Hover Persistence */
ul#navmenu li:hover li a:hover,
ul#navmenu li:hover li:hover a,
ul#navmenu li.iehover li a:hover,
ul#navmenu li.iehover li.iehover a {
	background: url("../images/navarrow.gif");
	background-repeat: no-repeat;
	background-position: left;
	background-color: #FFFFFF;
	color:  #bf0000;
	text-indent: 16px;
	font-weight: 100;
}

/* 3rd Menu */
ul#navmenu li:hover li:hover li a,
ul#navmenu li.iehover li.iehover li a {
	float: none;
	background-color: #FFFFFF;
	color:  #bf0000;
	font-weight: 100;	
	text-transform: none;
	text-indent: 16px;
	letter-spacing: 0px; 
	border-bottom: 1px solid #ffffff;
	border-bottom-color: #cccccc;
}

/* 3rd Menu Hover Persistence */
ul#navmenu li:hover li:hover li a:hover,
ul#navmenu li:hover li:hover li:hover a,
ul#navmenu li.iehover li.iehover li a:hover,
ul#navmenu li.iehover li.iehover li.iehover a {
	background: url("navarrow.gif");
	background-repeat: no-repeat;
	background-position: left;
	background-color: #FFFFFF;
	color:  #bf0000;
	text-indent: 16px;
	font-weight: 100;
}

/* 4th Menu */
ul#navmenu li:hover li:hover li:hover li a,
ul#navmenu li.iehover li.iehover li.iehover li a {
	background-color: #FFFFFF;
	color:  #000000;
}

/* 4th Menu Hover */
ul#navmenu li:hover li:hover li:hover li a:hover,
ul#navmenu li.iehover li.iehover li.iehover li a:hover {
	float: none;
	background: url("../images/navarrow.gif");
	background-repeat: no-repeat;
	background-position: left;
	background-color: #FFFFFF;
	color:  #bf0000;
	text-indent: 16px;
	font-weight: 100;
}

ul#navmenu ul ul,
ul#navmenu ul ul ul {
	display: none;
	position: absolute;
	top: 0;
	left: 160px;
}

/* Do Not Move - Must Come Before display:block for Gecko */
ul#navmenu li:hover ul ul,
ul#navmenu li:hover ul ul ul,
ul#navmenu li.iehover ul ul,
ul#navmenu li.iehover ul ul ul {
	display: none;
}

ul#navmenu li:hover ul,
ul#navmenu ul li:hover ul,
ul#navmenu ul ul li:hover ul,
ul#navmenu li.iehover ul,
ul#navmenu ul li.iehover ul,
ul#navmenu ul ul li.iehover ul {
	display: block;
}

table {
}

td, th {
	padding: 10px;
	background-color: #eaeff0;
}

<!--[if IE 5]>
/* IE 5 does not use the standard box model, so the column widths are overidden to render the page correctly. */
#outerWrapper #contentWrapper #sidebar	{
	width: 230px;
	}
<![endif]-->

<!--[if IE]>
/* The proprietary zoom property gives IE the hasLayout property which addresses several bugs. */
#outerWrapper #contentWrapper #content	{
	zoom: 1;
	}
<![endif]-->