/*
 *   Multi-level CSS menus described in Suckerfish dropdown article on
 *   http://alistapart.com
 *
 *   The multi-level version of this is used here and is found at
 *
 *   http://www.htmldog.com/articles/suckerfish/dropdowns/
 *
 */

#nav, #nav ul {
  font-family: Verdana;
  font-size: 16px;
  font-weight: normal;
  background: #848484;
  border: 1px solid #848484;
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1;
  z-index: 999;
}

#nav a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  width: 7.2em; /* 12 */
  z-index: 999;
}

/* The first level menus don't account for the margin-bottom on the head */
#nav li.head ul.body {
  clear: both;
  margin-top: .2em; /* .2 */
  text-align: left;
}

#nav li.head ul a {
  padding-left:  .6em; /*1.5*/
  padding-right: .10em; /* .15 */
}

/*
 * Setting the li.head to text-align centers causes the whole menu to
 * align to the center in IE. This separate span class aligns just the
 * link at the top of the menu.
 *
 */

#nav span.head {
  display: inline-block;
  text-align: center;
}

#nav a.daddy {
  /*background: url(/images/arrow.gif) center right no-repeat;*/
}

/* All list items */

#nav li {
  text-align: left;
  padding-top: .2em; /*.2 */
  padding-bottom: .2em; /*.2 */

  float: left;
  width: 7.42em; /* 8.2 width needed or else Opera goes nuts */
  z-index: 999;
}

/* Center the headings on the first level menu entries */

#nav li.head {
  /* text-align: center; */
  width: 7.42em;  /*12.2*/
}

/* Second level menus */

#nav li ul {
  font-weight: normal;

  position: absolute;
  width: 7.42em; /* 8 */
  margin: 0.15em 0 0 0em; /* none */

  /* Using left instead of display to hide menus because display: none isn't
     read by screen readers
   */
  left: -999em;
  z-index: 999;
}

/* Third level and above menus */

#nav li ul ul {
  margin: -1.2em 0 0 8em; /* 14 */
}

#nav li:hover ul ul, #nav li:hover ul ul ul,
#nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
  left: -999em;
}

/* Lists nested under hovered list items */
#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul,
#nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
  left: auto;
}

#nav li:hover, #nav li.sfhover {
  background: #C70006;
}

a.noul {
  text-decoration: none;
}

#nolist, #nolist ul { 
  font-family: Verdana;
  font-size: 1em;
  font-weight: normal;
  padding:0;
  margin:0;
  list-style: none;
  width:12em;
  z-index:99;
  background-color: white;
  line-height: 1;
}

.lihover {
  background-color: #9cf000; 
}

.lihover2 {
  background-color: #ffffdd;
}

.lihover3 {
  background-color: white;
}

.lihover4 {
  background-color: #DBF7FD;
}

.redhover {
  text-decoration: none;
  color: #C70006;
}

.orangehover {
  text-decoration: none;
  color: #E9B151;
}

.greyhover {
  text-decoration: none;
  color: #848484;
}

table { 
    border-spacing: 0px; 
    border-collapse: collapse;
} 

td {
	margin: 0px;
	padding: 1px;
	font-family: Verdana, Arial, Helvetica, sans-serif, Tahoma;
}

.top_link {
        font-family:Verdana;
  	color: #848484;
        text-decoration:none;
        font-size:14px;
        line-height:20px;
}

.top_link:hover, .bottom_link:hover {
  	color: #C70006;
}

.bottom_link {
        font-family:Verdana;
  	color: #FFFFFF;
        text-decoration:none;
        font-size:14px;
        line-height:16px;
}

