@charset "iso-8859-1";
/* 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. */
/* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
}
/* 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 {
	background-color: #CF7554;
	font-size: .95em;
	color: #2e2d2c;
	font-family: Arial, Helvetica, sans-serif;
	text-align: center; /* Centers the page content container in IE 5 browsers. */;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	background-image: url('../images/background-burnt-orange.jpg');
	background-repeat: repeat-x;
}
body img {
	border: 0px;
}
h1, h2, h3, h4 {
	color: #003300;
	font-family: Georgia, "Times New Roman", Times, serif;
	background-color: #ffffff;
}
h1 {
	font-size: 130%;
}
h2 {
	font-size: 110%;
}
h3 {
	font-size: 100%;
}
/* Sets the style for unvisited links. */
a, a:link {
	color: #003300;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color: #336633;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	text-decoration: underline;
}
/* 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 {
	border: thin solid #933818;
	background-color: #fff;
	width: 95%;
	text-align: left; /* Redefines the text alignment defined by the body element. */;
	margin: 0 auto 0 auto;
	max-width: 1400px;
}
#logoleft {
	padding: 10px;
	margin: 10px 0px 0px 20px;
	vertical-align : top;
	background-image: url('../images/huu-logo5.gif');
	background-repeat: no-repeat;
	height: 112px;
}
#logoright {
	float: right;
	width: 130px;
	height: 86px;
	margin-left: 0px;
	margin-top: 10px;
	padding: 5px;
	color: #bd7b7c;
	font-size: 90%;
	font-weight: bold;
	vertical-align: top;
	text-align: center;
	font-family: Georgia, "Times New Roman", Times, serif;
}
#outerWrapper #topNavigation {
	border-bottom: medium double #003300;
	border-top: medium double #003300;
	font-size: 90%;
	margin-top: 5px;
	padding-top: 5px;
	margin-bottom: 5px;
	padding-bottom: 5px;
	text-align: right;
	background-color: #ffffff;
	height: 25px;
	padding-right: 15px;
}
.bevelmenu {
	font: bold .9em arial;
	padding: 6px 0 6px 20px;
	margin: 0;
	background-color: #ffffff;
	text-align: right;
}
.bevelmenu li {
	list-style: none;
	display: inline;
}
.bevelmenu li a {
	padding: 3px 0.5em;
	text-decoration: none;
	color: black;
	background-color: #ffffff;
	border: 2px solid #ffffff;
}
.bevelmenu li a:hover {
	color: #F1EDEB;
	background-color: #903414;
	border-style: outset;
}
html > body .bevelmenu li a:active {
	/* Apply mousedown effect only to NON IE browsers */
border-style: inset;
}
#outerWrapper #contentWrapper #leftColumn1 {
	background-color: #fff;
	float: left;
	border-right: solid 1px #bd9c76;
	width: 180px;
	padding: 10px 10px 10px 10px;
	font-size: .9em;
}
#outerWrapper #contentWrapper #leftColumn1 ul {
	margin: 10px 0px 10px;
	padding-left: 0px;
	list-style-image: none;
}
#outerWrapper #contentWrapper #leftColumn1 li {
	list-style: none;
	margin: 1px 1px 4px 1px;
	padding-left: 9px;
}

#outerWrapper #contentWrapper #leftColumn1 p {
	font-size:.9em;
	margin: 3px;
	padding: 2px 3px 3px 5px;
}
.heading {
	border: 1px solid #4f0708;
	font-family: Geneva, Arial, Helvetica, sans-serif;
	font-size: 94%;
	font-weight: bolder;
	margin: 3px;
	padding: 2px 3px 3px 5px;
	background-color: #903515;
	text-align: left;
	color: #F9EDE9;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the 
floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	padding: 10px 20px 10px 20px;
	margin: 0 0 0 195px;
}
#outerWrapper #contentWrapper .sunserv {
	background-color: #EFD1C6;
	color: #000000;
	width: 170px;
	float: right;
	margin-left: 10px;
	padding: 8px;
	border: 1px #630 solid;
	font-size: .8em;
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
}
#outerWrapper #contentWrapper .sunserv p.left {
	text-align: left;
}
#outerWrapper #contentWrapper .rgtsdbr {
	background-color: #FFFFFF;
	color: black;
	width: 170px;
	float: right;
	margin-left: 10px;
	padding: 8px;
	border: 1px solid #CF7554;
	font-size: .8em;
	font-weight: normal;
	line-height: 1.1;
}

#outerWrapper #contentWrapper .rgtsdbr ul {
	margin: 10px 0px 10px;
	padding-left: 0px;
	list-style-image: none;
}
#outerWrapper #contentWrapper .rgtsdbr li {
	list-style: none;
	margin: 1px 1px 4px 1px;
	padding-left: 9px;
}

/* 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 {
	display: block;
	clear: both;
}
#outerWrapper #footer {
	margin-top: 8px;
	background-color: #ffffff;
	color: black;
	font-size: .8em;
	text-align: center;
	border-top: medium double #003300;
	margin-bottom: 8px;
	padding-top: 8px;
	padding-bottom: 8px;
}
#outerWrapper #footer p {
	margin-bottom: 0px;
	margin-top: 0px;
}
/*styles search button color*/
.search {
	background-color: #E69A80;
	color: black;
	font-weight: bold;
	margin-top: 5px;
}
.pch {
	background-color: #F2DECD;
}
.smalltext {
	font-size: small;
}
.frmbrd {
	border: thin solid #008000;
	padding: 10px;
}
.important {
	font-variant : small-caps;
	color : #992600;
	font-weight : bold;
	background-color: inherit;
}
.imgrgt {
	float: right;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.imglft {
	float: left;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 5px;
}
.fltright {
	float: right;
}
.clearrt {
	clear: right;
}
.clearlft {
	clear: left;
}
.ctr {
	text-align: center;
}

.exponent {
	font-size: x-small;
	vertical-align: super;
}

/* begin styles for RSS Feed */
.rss-box {
	background-color: white;
	margin: 10px 15%;
	padding: 4px 8px;
	border: solid 3px tan;
}
.rss-title, rss_title a {
	font-family: verdana, arial, sans-serif;
	font-size: 110%;
	font-weight: normal;
	color: #663399;
	margin: 0px 0;
	padding: 0;
	letter-spacing: 1px;
}
.rss-items {
	list-style-type: none;
	list-style-image: url("http://142.27.144.70/gerry/pointer.jpg");
}
.rss-item {
	color: black;
	font-size: 75%;
	font-family: Tahoma;
	font-weight: normal;
	margin: 8px 0;
}
.rss-item a:link, .rss-item a:visited {
	color: #663399;
	font-size: 110%;
	text-decoration: none;
}
.rss-item a:hover {
	color: gray;
	text-decoration: underline;
}
.rss-date {
	color: gray;
	font-size: 80%;
	font-weight: normal;
}

#contact {
	width:75%;
	border-collapse:collapse;
	border: thin solid #008000;
	padding: 10px;
}
#contact td .title {
	width: 20%;
	text-align: right;
	
}
#contact td .field {
	width: 78%;
}

.cf {
	background-image: url('../images/form-bg.jpg');
	background-repeat: repeat;
}
/*=============error page formatting contact page script=============*/
.error-page-heading1 {
	font-family: "Times New Roman";
	color: #564c66;
	font-size: 1.5em;
	font-weight: bold;
}
.error-page-heading2 {
	font-family: "Times New Roman";
	color: #564c66;
	font-size: 1.2em;
	font-weight: bold;
}
.line-closing {
	font-family: "Times New Roman";
	color: #0066CC;
	font-size: .9em;
	font-weight: bold;
}
.line-opening {
	font-family: "Times New Roman";
	color: #0066CC;
	font-size: .9em;
	font-weight: bold;
}
.message-error {
	font-family: "Times New Roman";
	color: #CC3300;
	font-size: 1em;
	font-weight: bold;
}
.message-footer {
	font-family: "Times New Roman";
	color: #000000;
	font-size: .8em;
	font-weight: bold;
}
.buttons {
	background-color: #980E10;
	color: #FFFFFF;
	font-weight: bold;
}

.huggins {
	font-size:small;
	font-style:italic;
}

.cell {
	margin-left: 20px;
	margin-top: 5px;
}

