@charset "UTF-8";
/* CSS Document */

#nav li {
	/*float the main list items*/
  margin: 0;
	float: left;
	display: block;
	list-style-type: none;
	text-decoration: none;
}

#nav li.off ul, #nav li.on ul {
  /*hide the subnavs*/
  display: none;
}

#nav li a {
	/*for all links in the list*/
  color: #A4A4A4;
	font-weight: normal;
	display: block;
	height: 15px;
	width: auto;
	list-style-type: none;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #4F4E20;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	padding-left: 20px;
}

#nav li.off ul, #nav li.on ul {
  /*put the subnavs below and hide them all*/
  display: none;
  position: absolute;
  top: 33px;
  height: 15px;
  left: 0;
  padding-top: 10px;
}
#nav li.on a {
	color: #f90;
}

#nav li.on ul a, #nav li.off ul a {
	/*  cancel inherit of border
      on subnav of active topic */
  border: 0;
	color: #B79808;
}
#flash_intro {
	height: 540px;
	width: 980px;
}

#nav li.on ul {
	/*display active subnav list*/
  display: block;
	color: #f90;
}
#nav li.on ul a, #nav li.off ul a {
	float: left;
	/*ie doesn't inherit the float*/
  border: 0;
	color: #999;
	margin-right: 15px;
	width: auto;
}

#nav li.on ul {
	/*display the current topic*/
  display: block;
	color: #f90;
}

#nav li.off:hover ul {
	/*  display the other topics when
      their parent is hovered */
  display: block;
	z-index: 6000;
	color: #f90;
}
#nav li.off a:hover, #nav li.off:hover a {
	color: #f90;
}
#nav li.off ul, #nav li.on ul {
	/*put the subnav below*/
  top: 33px;
  *top: 44px; /*reposition for IE*/
	color: #f90;
}
