/*  Firefox version  profile/resources/IncPart1_FF.html */
/*  Main menu li items - remember everything is inherited downward  */


#nav, #nav ul {
  font-family : verdana;
  font-weight : normal;             /*  of ALL text in ALL boxes within the top-level ul  */
  font-size   : 16px;           
  line-height : 21px;
  list-style  : none;
  margin      : 0 0 0 0;
  padding     : 0px 0px 0px 0px;
  text-align  : center;
}

#nav a {
  color           : #FFFFFF;
  display         : block;
  text-decoration : none;
  padding         : 0px;        /* second field defines left/right padding around each main menu item */
}


#nav li.daddy {
  background: url(/images/rightarrow2.gif) center right no-repeat;
}


#nav li {
  float   : left;
  padding : 0px;
}

#nav li ul {                    /* this describes the first dropdown box */
  background  : #606060;          /*  of ALL submenu boxes */
  border      : solid 1px red;
  color       : #FFFFFF;
  font-size   : 16px;             /*  of text with submenu box  */
  height      : auto;
  left        : -999em;
  line-height : 48px;
  padding     : 0 0 0 0;
  position    : absolute;
  text-indent : 5px;              /*  indent of normal text (not a)  */
  text-align  : left;
  width       : 182px;
  z-index     : 9999;
}

#nav li ul ul {                     /*  this describes the second dropdown box */
  margin      : -48px 0 0 182px;    /*  First number is the vertical offset of second submenu.
                                        last number should match the width in "nav li ul" above. */
}

#nav li:hover {
	background-color: #A0A0A0;
	font-weight: normal;        /*  of text with submenu box  */
}

#nav li:hover ul ul, #nav li:hover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul{
	left: auto;
}

