/* CSS Document */
/* Styles used by the navigation bar
   ----------------------------------------------------------------- */

.header {
	width: 100%;
	background: #5a5e44;
	border-bottom-width: 4px;
	border-bottom-style: solid;
	border-bottom-color: #e2e1c6;
	position: relative;
}

/* New styling used by the drop-down menu */
/*micro-clearfix by Nicolas Gallagher http://nicolasgallagher.com/micro-clearfix-hack/*/
/* For modern browsers */
.cf:before, .cf:after {
	content:"";
	display:table;
}

.cf:after {
	clear:both;
}

/* For IE 6/7 (trigger hasLayout) */
.cf {
	zoom:1;
}
/*horizontal menu styles*/	
nav {
	height: 55px;
	width: 996px;
	margin: 0px auto;
	position: relative;
}

nav img {
	border: none;
}

nav ul, nav li {
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
nav ul {
	height: 55px;
	width: 100%;
}
nav li {
	position: relative;
}
nav li a {
	display: block;
	line-height: 55px;
	text-align: center;
	font-size: 0.80em;
	letter-spacing: 0.15em;
	padding: 0 1em;
	color: #e2e1c6;
	font-family: Myriad Pro, Verdana, Geneva, sans-serif;
	text-transform: uppercase;
	border-right: 1px solid #e2e1c6;
	text-decoration: none;
}
nav li a:hover, .topmenu li:hover > a {
	background: #5a5e44;
	height: 55px;
	position: relative;
}
.current, a:hover.current, .topmenu li:hover a.current {
	background: #5a5e44;
	color: #e2e1c6;
	position: relative;
	cursor: default;
	font-weight: bold;
}
/*dropdown menu styles*/
ul.submenu {
	float: none;
	background: #5a5e44;
	width: auto;
	height: auto;
	position: absolute;
	top: 55px;
	left: -9000em;
	max-height: 0;
	-moz-transition:max-height 0.5s ease-in-out;
	-webkit-transition:max-height 0.5s ease-in-out;
	-o-transition:max-height 0.5s ease-in-out;
	transition:max-height 0.5s ease-in-out;
	overflow: hidden;
	z-index: 1000;
}
ul.submenu li {
	float: none;
}
.topmenu li:hover ul {
	left: 0;
	max-height: 750px;
}
ul.submenu li a {
	border-bottom: 1px solid #e2e1c6;
	padding: .2em 1em;
	white-space: nowrap;
	text-transform: none;
}
ul.submenu li:last-child a {
	border-bottom: none;
}
ul.submenu li a:hover {
	background: #5a5e44;
	height: 55px;
	padding-top: .2em;
	top: 0;
}

/* ===== ADA / WCAG 2.1 AA Fixes ===== */

/* Skip link */
a.skip-link {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
  color: #ffffff; background: #000000;
  text-decoration: none;
}
a.skip-link:focus {
  position: fixed; top: 0; left: 0;
  width: auto; height: auto;
  padding: 10px 16px; margin: 0;
  overflow: visible; clip: auto;
  white-space: nowrap; z-index: 10000;
  font-size: 1em;
  color: #ffffff; background: #000000;
}

/* Suppress focus outline on main (receives focus only from skip link) */
main:focus { outline: none; }

/* Global focus ring */
a:focus, button:focus, [tabindex]:focus {
  outline: 2px solid #5a5e44;
  outline-offset: 2px;
}
