/* structural styles and offsets */
/* Change the margin values here to position the menu */
ul.vertical, ul.vertical li, ul.vertical ul {
  position: relative;
  margin: -20px 0 0 0;
  padding: 0;
  list-style-type: none;
  font-size: 100%;
}

ul.vertical {
  position: absolute;
  z-index: 1000;
  cursor: default;
  width: 8em;
  left: 1em;
  top: 1em;
}

/* Width in this blook changes the width of the nav menu cells */
ul.vertical li {
  position: relative;
  text-align: left;
  cursor: pointer;
  width: 8.3em;
  margin: -1px 0 0 0;
}

ul.vertical ul {
  z-index: 1020;
  cursor: default;
  width: 8.2em;
  margin: -0.5em 0 0 7.5em;
  position: absolute;
  left: -100em;
  top: 0;
  padding: 1px 0 0 0;
}

/* Width here changes width of the submenu nav menu cells */
ul.vertical ul li {
  width: 11.4em;
}

ul.vertical ul ul {
  margin: -0.5em 0 0 7.7em;
}


/* design styles */
ul.vertical ul {
  border-width: 1px;
  border-style: solid;
  border-color: #ffeca7 #a97741 #a97741 #ffeca7;
}

/* Background #ffc here for NON ACTIVE links with no sublinks */
/* But with windows IE5/6 it only works with toplevel link*/
/* Temporarily changed to orange. Note text color #008000 Green */

ul.vertical a:link, ul.vertical a:visited {
  display: block;
  cursor: pointer;
  background: #ffc;
  border: 1px solid #edbb85;
  padding: 5px 7px;
  font: normal normal bold 0.75em tahoma, verdana, sans-serif;
  color: #003399;
  text-decoration: none;
  letter-spacing: 1px;
}


/* Background #ffefcf is for the final active link (no submenu) */
/* The original text color here-- #806020 was brown */
/* Background is deep blue */

ul.vertical a:hover, ul.vertical a:focus, ul.vertical a:active,
ul.vertical a.rollover:link, ul.vertical a.rollover:visited {
  background: #003399;
  color: yellow;
}

/* submenu indicator arrows */
/* Background #ffc here is color of menus containing submenus */
/* when they are NOT active. Temporarily yellow #ffff00 */
/* IE5/6 does not obey the background specified here */

ul.vertical li.hasmenu > a:link, ul.vertical li.hasmenu > a:visited {
  background: url(right-green.gif) #ffc no-repeat 95% 50%;
}

/* #ffefcf here is light tan */
/* Background #ffefcf affects active links with submenus */
/* Temporarily changed to AQUA-- #00FFFF */
/* IE5/6 does not obey the background color specified */

ul.vertical li.hasmenu > a:focus,
ul.vertical li.hasmenu > a:hover,
ul.vertical li.hasmenu > a:active,
ul.vertical li.hasmenu > a.rollover:link,
ul.vertical li.hasmenu > a.rollover:visited {
  background: url(right-red.gif) #003399 no-repeat 95% 50%;
}

/* These next three blocks use code for IE5/6 ONLY */

/* #ffc here twice is light tan, temp changed to lime #66FF66 */
* html ul.vertical li.hasmenu a,
* html ul.vertical li.hasmenu a:visited {
  background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url(right-green.gif) #ffc no-repeat 95% 50%" : "#ffc");
}

* html ul.vertical li.hasmenu a:hover {
  background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url(right-red.gif) #003399 no-repeat 95% 50%" : "#003399");
}

/* #ffefcf here is light tan, temp changed to dark blue #003399 */
/* The second background value affects lower level sublinks */
* html ul.vertical li.hasmenu a:active,
* html ul.vertical li.hasmenu a.rollover,
* html ul.vertical li.hasmenu a.rollover:visited {
  background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url(right-red.gif) #003399 no-repeat 95% 50%" : "#003399");
}

/* iframe layer */
ul iframe {
  position: absolute;
  z-index: 1010;
  border: none;
}

/* browser hacks */
@media screen, projection {
  * html ul.vertical li {
    display: inline;
    f\loat: left;
    background: #fff;
  }
}
* html ul.vertical li { position: static; }
* html ul.vertical a:link, * html ul.vertical a:visited { position: relative; }
