	

      /* this sets lists within lists to be menus which are hidden */
      /* until the user mouses over the "parent" list item         */
      #nav li ul {
      display: none;
      position: absolute;
      top: auto;
      left: auto;
      font-weight: normal;
      background: white;
      border: none;
      z-index: 100;
      width: 100%;
      }

      /* sets an unordered list which is a child of another list item */
      /* to be positioned at the upper left of the parent list item */

      /* the major site navigation elements, currently styled in a horizontal bar  */
      #major_nav {
      clear: both;
      height: 1.7em;
      color: #000066;
      border-top: solid 1px #ffffcc;
      }

      #nav li>ul {
      top: auto;
      left: auto;
      }

      /* displays the child list when the user mouses over the parent list item */
      #nav li:hover ul, #nav li.over ul {
      display: block;
      background-color: #cecece;
      }


      ul#nav {
      list-style: none;
      font-size: 90%; ///
      padding: 0em 0em 0em 1.3em;
      white-space: nowrap;
      }

      ul#nav a {
      display: block;
      font-weight: bold;
      color: #000066;
      text-decoration: none;
      line-height: 1.0em;
      padding: 0.5em 0.8em 0.4em 0.8em;
      height: auto;
      }

      ul#nav li {
      display: block;
      float: left;
      text-align: center;
      background-color: inherit;
      width: auto;
      height: auto;
      position: relative;
      z-index: 100;
      }

      ul#nav li:hover {
      background-color: #006699;
      color: white;
      }

      ul#nav a:hover {
      background-color: #006699;
      color: white;
      text-decoration: none;
      }

      ul#nav li ul {
      width: 17em;
      border: none;
      top: 1.6em;
      left: 0em;
	PADDING-RIGHT: 0px; PADDING-LEFT: 0px; PADDING-BOTTOM: 0px; MARGIN: 0px; PADDING-TOP: 0px;
      }

      ul#nav li li {
      display: block;
      border: solid 1px #bbb;
      background-color: white;
      text-align: left;
      height: auto;
      width: 100%;
      position: relative;
      z-index: 100;
      }

      ul#nav li li a {
      display: block;
      font-weight: normal;
      width: 90%; ///
      height: 100%;
      padding: 0.4em;
      border: none;
      }

      ul#nav li li a:hover {
      background-color: #ddd;
      color: black;
      }

      ul#nav li li:hover {
      background-color: #ddd;
      }

      /* this makes the submenus work on IE */
      /* Fix IE. Hide from IE Mac \*/
      * html ul#nav li { float: left; height: 1%; }
      * html ul#nav li a { height: 1%; }
      /* End */

      /* this position the submenu slightly below the parent list item */
      ul#nav li.over ul {
      top: 1.5em;
      left: 0em;
      }
