/* structural styles and offsets */
ul.vertical, ul.vertical li, ul.vertical ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 100%;
}

ul.vertical {
  position: absolute;
  z-index: 1000;
  cursor: default;
  width: 11em;
  left: 1em;
  top: 1em;
}

ul.vertical li {
  position: relative;
  text-align: left;
  cursor: pointer;
  cursor: hand;
  width: 11em;
  margin: -1px 0 0 0;
  vertical-align: top;
  }

ul.vertical ul {
  z-index: 1020;
  cursor: default;
  width: 11em;
  margin: -0.5em 0 0 11.1em;
  position: absolute;
  left: -100em;
  top: 0;
  padding: 1px 0 0 0;
}

ul.vertical ul li {
  width: 11em;
}

ul.vertical ul ul {
  margin: -0.5em 0 0 11.1em;
}


/* design styles */
ul.vertical ul {
  border-width: 1px;
  border-style: solid;
  border-color: #000;
}
	/* Non-Rollover, No sub-menu */
ul.vertical a:link, 
ul.vertical a:visited {
  display: block;
  cursor: pointer;
  cursor: hand;
  background: White;
  border: 1px solid #000;
  padding: 5px 7px;
  font: normal normal bold 0.7em tahoma, verdana, sans-serif;
  color: Black;
  text-decoration: none;
  letter-spacing: 1px;
}
	/* Rollover, sub-menu */
ul.vertical a:hover, 
ul.vertical a:focus, 
ul.vertical a:active,
ul.vertical a.rollover:link, 
ul.vertical a.rollover:visited {
  background: #E5F7BE;
  color: Black;
}

/* submenu indicator arrows */
	/* Non-rollover, sub-menu */
ul.vertical li.hasmenu > a:link, 
ul.vertical li.hasmenu > a:visited {
  background: #689B02 url(../images/right-gray.png) no-repeat 98% 50%;
  color: White;
}
	/* Sub-menu */
ul.vertical li.hasmenu > a:hover,
ul.vertical li.hasmenu > a:focus,
ul.vertical li.hasmenu > a:active {
  background: #E5F7BE url(../images/right-green.png) no-repeat 98% 50%;
  color: Black;
}
	/* Rollover sub-menu */
ul.vertical li.hasmenu > a.rollover:link,
ul.vertical li.hasmenu > a.rollover:visited {
  background: #E5F7BE url(../images/right-green.png) no-repeat 98% 50%;
  color: Black;
}

* html ul.vertical li.hasmenu a,
* html ul.vertical li.hasmenu a:visited {
  background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url(../images/right-gray.png) #ffc no-repeat 98% 50%" : "#ffc");
}

* html ul.vertical li.hasmenu a:hover,
* 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(../images/right-green.png) #ffefcf no-repeat 98% 50%" : "#ffefcf");
}

.here {
		background-color: #C3CFDB;
		color: #C3CFDB;
}

ul.navdefault li a:link {
	background: #689B02;
  	color: White;
}

/* 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; }

/* 20080221: new hacks for IE7 */
    *+html ul.vertical li {
        display: inline; 
        float: left; 
        background: #fff; 
    }
    *+html ul.vertical li { position: static; }
    *+html ul.vertical a { position: relative; }