@charset "utf-8";
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
}

/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/
.header {
	height: 190px;
	background-color: #EDCE7B;
	background-image: url(../images/images/header-back.gif);
	background-repeat: repeat-x;
	background-position: left top;
	margin-bottom: 10px;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #533120;
}

.headercontent {
	height: 158px;
	background-image: url(../images/images/Header_01.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	margin: 0px;
	padding: 0px;
}
.topmenu {
	height: 32px;
	background-image: url(../images/images/Header_02.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.header .topmenu .topnav {
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	}
.header .topmenu .topnav ul {
	padding: 0px;
	list-style-type: none;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-right:auto;
	margin-left:auto;
}
.header .topmenu .topnav li {
	float: left;
	text-align: left;
	display: block;
	margin-top: 0px;
	margin-bottom: 0px;
	height: 32px;
}
.header .topmenu .topnav a:link, .header .topmenu .topnav a:visited  {
	font-size: 14px;
	color: #ECD07C;
	text-decoration: none;
	height: 29px;
	display: block;
	padding-top: 3px;
	padding-right: 11px;
	padding-left: 11px;
	border-right-width: 2px;
	border-left-width: 2px;
	border-right-style: solid;
	border-left-style: solid;
	border-left-color: #2E2E2E;
	border-right-color: #2E2E2E;
}



.header .topmenu .topnav a:hover {
	background-image: url(../images/menu-hover.gif);
	background-repeat: repeat-x;
	background-position: left;	
}
.header .topmenu .topnav li ul {
	display: none;
}
.header .topmenu .topnav li:hover ul {
	display: block;
	
}

/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* 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-left: 8px;
	border: 2px solid #000;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
	border: 2px solid #000;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

.subfooter .footermenu img {
	margin: 8px;
}
