/* Root = Horizontal, Secondary = Vertical */
ul#menu {
  margin: 0;
  border: 0 none;
  padding: 0;
  width: auto !important;
  list-style: none;
  float: left;
  border-top: 1px solid #142b44;
}

	ul#menu li {
	  border: 0 none;
	  list-style: none;
	  position: relative;
	  margin-top: 1px;
	  margin-bottom: 1px;
	  float: left;
	}

		ul#menu ul {
		  margin: 0;
		  border: 0 none;
		  padding: 0;
		  width: 220px;
		  list-style: none;
		  display: none;
		  position: absolute;
		  top: -1px;
		  left: 220px;
		  z-index: 50;
		  padding-left: 20px;
		  background-color: #13253A;
		}

		ul#menu ul:after /*From IE 7 lack of compliance*/{
		  clear: both;
		  display: block;
		  font: 1px/0px serif;
		  content: ".";
		  height: 0;
		  visibility: hidden;
		}

			ul#menu ul li {
			  width: 220px;
			  display: block !important;
			  height: 33px;
			}

/* Root Menu */

ul#menu a {
  padding: 0;
  display: block;
  color: #eee;
  text-decoration: none;
  width: 200px;
  height: auto !important;
  height: 1%; /*For IE*/
  line-height: 33px;
  font-size: 1em;
  font-weight: bold;
  cursor: hand;
  cursor: pointer;
  padding-left: 20px;
  background: transparent url(../img/bg-navigation-item.gif) no-repeat 195px 15px;
}

/* Root Menu Hover Persistence */

ul#menu a.active,
ul#menu a:hover,
ul#menu li:hover a,
ul#menu li.iehover a {
  color: #88ccff;
  background: #142b44 url(../img/bg-navigation-item-over.gif) no-repeat 195px 15px;
}

ul#menu ul li a {
  background: none !important;
}

/* 2nd Menu */
ul#menu li:hover li a,
ul#menu li.iehover li a {
  float: none;
  color: #eee;
}

/* 2nd Menu Hover Persistence */
ul#menu li:hover li a:hover,
ul#menu li:hover li:hover a,
ul#menu li.iehover li a:hover,
ul#menu li.iehover li.iehover a {
	color: #88ccff;
}

/* Do Not Move - Must Come Before display:block for Gecko */
ul#menu li:hover ul ul,
ul#menu li:hover ul ul ul,
ul#menu li.iehover ul ul,
ul#menu li.iehover ul ul ul {
  display: none;
}

ul#menu li:hover ul,
ul#menu ul li:hover ul,
ul#menu ul ul li:hover ul,
ul#menu li.iehover ul,
ul#menu ul li.iehover ul,
ul#menu ul ul li.iehover ul {
  display: block;
}

ul#menu li.navigation-separator {
	width: 220px;
	height: 1px;
	line-height: 1px;
  padding: 0;
  margin: 0;
  font-size: 0px;
  background-color: #142b44;
}
