/* styles for horizontal navigation bar */
/* structural styles and offsets */
ul.horizontal, ul.horizontal li, ul.horizontal ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  font-size: 100%;
}

/* left and top will be changed by the javascript initialization */
ul.horizontal {
  position: absolute;
  left: -300em;
  width: 100%;
  cursor: default;
  z-index: 2000;
  top: 100em;
}

ul.horizontal li {
  width: auto;
  float: left;
  position: relative;
  cursor: pointer;
  cursor: hand;
  text-align: left;
  left: 1em;
  margin: 0 0 0 -0.1em;
}

* html ul.horizontal li {
  margin: 0 -1.1em 0 1em;
  left: 0;
}

ul[class^="horizontal"] li {
  margin: 0 -1.1em 0 1em;
  left: 0;
}

ul.horizontal ul {
  z-index: 2020;
  padding: 0;
  cursor: default;
  position: absolute;
  left: -100em;
  top: auto;
  width: 9.2em;  /* was 12.2. */
  margin: 0 0 0 0;
  padding: 1px 0 0 0;
}

ul.horizontal ul li {
  width: 9.2em; /* was 12.2 */
  float: none;
  left: auto;
  margin: -1px 0 0 0;
}

ul.horizontal ul ul {
  margin: -0.45em 0 0 11.65em;
}

/* color palette:
	background #d9d9ff light blue
	background (highlighted) e6e6ff lighter light blue 
	text #000088 dark blue
	text (highlighted) #000000 black
	border #000088 dark blue
	outer border #000000 and #e6e6ff to create 3d bevel effect
*/

/* design styles */
ul.horizontal ul {
  border-width: 1px;
  border-style: solid;
  border-color: #000000 #000000 #000000 #e6e6ff;	/* outer border: top, right, bottom, left */
}

ul.horizontal a, ul.horizontal a:visited {
  display: block;
  cursor: pointer;
  cursor: hand;
  background-color: #d9d9ff; 	/* background */
  border: 1px solid #000088;	/* border */
  padding: 5px 15px 5px 4px;	/* was 5 18 5 7 */
  font: normal normal bold 0.7em tahoma, verdana, sans-serif;
  color: #000088;				/* text */
  text-decoration: none;
  letter-spacing: 1px;
}

ul.horizontal a:hover, ul.horizontal a:focus, ul.horizontal a:active,
ul.horizontal a.rollover:link, ul.horizontal a.rollover:visited {
  background: #e6e6ff;		/* highlighted background */
  color: #000000;			/* highlighted text */
}

/* submenu indicator arrows */
  /* background: "url(./graphics/down-green.gif) #ffc no-repeat 92% 50%"; */
ul.horizontal li.hasmenu > a:link, 
ul.horizontal li.hasmenu > a:visited {
  background-color:#d9d9ff;		/* background */
  background-image: url('http://www.metropolitanwinds.org/graphics/down-green.gif');
  background-repeat: no-repeat;
  background-position: 92% 50%;
}

  /* background: "url(./graphics/right-green.gif) #ffc no-repeat 95% 50%"; */
ul.horizontal ul li.hasmenu > a:link, 
ul.horizontal ul li.hasmenu > a:visited {
  background-color: #d9d9ff; 	/* background */
  background-image: url('http://www.metropolitanwinds.org/graphics/right-green.gif');
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

  /* background: "url(./graphics/down-red.gif) #ffefcf no-repeat 92% 50%";*/
ul.horizontal li.hasmenu > a:hover,
ul.horizontal li.hasmenu > a:focus,
ul.horizontal li.hasmenu > a:active,
ul.horizontal li.hasmenu > a.rollover,
ul.horizontal li.hasmenu > a.rollover:visited {
  background-color: #e6e6ff;	/* highlighted background */
  background-image: url('http://www.metropolitanwinds.org/graphics/down-red.gif');
  background-repeat: no-repeat;
  background-position: 92% 50%;
}

  /* background: "url(./graphics/right-red.gif) #ffefcf no-repeat 95% 50%"; */
ul.horizontal ul li.hasmenu > a:hover,
ul.horizontal ul li.hasmenu > a:focus,
ul.horizontal ul li.hasmenu > a:active,
ul.horizontal ul li.hasmenu > a.rollover,
ul.horizontal ul li.hasmenu > a.rollover:visited {
  background-color: #e6e6ff;		/* highlighted background */
  background-image: url('http://www.metropolitanwinds.org/graphics/right-red.gif');
  background-repeat: no-repeat;
  background-position: 95% 50%;
}

* html ul.horizontal li.hasmenu a,
* html ul.horizontal li.hasmenu a:visited {
   background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url('http://www.metropolitanwinds.org/graphics/down-green.gif') #d9d9ff no-repeat 92% 50%" : "#d9d9ff"); 
}
* html ul.horizontal ul li.hasmenu a,
* html ul.horizontal ul li.hasmenu a:visited {
  background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url('http://www.metropolitanwinds.org/graphics/right-green.gif') #d9d9ff no-repeat 95% 50%" : "#d9d9ff");
}

* html ul.horizontal li.hasmenu a:hover,
* html ul.horizontal li.hasmenu a:active,
* html ul.horizontal li.hasmenu a.rollover,
* html ul.horizontal li.hasmenu a.rollover:visited {
  background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url('http://www.metropolitanwinds.org/graphics/down-red.gif') #e6e6ff no-repeat 92% 50%" : "#e6e6ff"); 
}

* html ul.horizontal ul li.hasmenu a:hover,
* html ul.horizontal ul li.hasmenu a:active,
* html ul.horizontal ul li.hasmenu a.rollover,
* html ul.horizontal ul li.hasmenu a.rollover:visited {
  background: expression(/hasmenu/.test(this.parentNode.className)
      ? "url('http://www.metropolitanwinds.org/graphics/right-red.gif') #e6e6ff no-repeat 95% 50%" : "#e6e6ff");
}

/* browser hacks */
ul.horizontal a { float: left; }
@media Screen, Projection { ul.horizontal a { float: none; } }
ul.horizontal ul a { float: none !important; }
@media screen, projection {
  * html ul.horizontal li {
    display: inline;
    f\loat: left;
    background: #000000;
	color:#ffffff;
  }
}
* html ul.horizontal li { position: static; }
* html ul.horizontal a { position: relative; }

/* iframe layer */
ul iframe {
  position: absolute;
  z-index: 1010;
  border: none;
}
