﻿/* Root = Horizontal, Secondary = Vertical */
ul.popupmenu {
  margin: 0;
  border: 0 none;
  padding: 21px 0px 0px 0px;
 /* width: 700px;*/ /*For KHTML*/
  list-style: none;
  height: 24px auto;
	z-index: 2;
	position: relative;
}

ul.popupmenu li {
  margin: 0;
  border: 0 none;
  padding: 0;
  float: left; /*For Gecko*/
  display: inline;
  list-style: none;
  position: relative;
	width: auto;
	white-space: nowrap;
}

ul.popupmenu ul {
	margin: 0;
	border: 0 none;
	padding: 7px;
	list-style: none;
	display: none;
	position: absolute;
	top: 27px;
	left: 0;
	z-index: 3;
	background-color: #ffffff;
	border: 1px solid #e7e7e7;
}

ul.popupmenu ul:after /*From IE 7 lack of compliance*/{
  clear: both;
  display: block;
  font: 1px/0px serif;
  content: ".";
  height: 0;
  visibility: hidden;
}

ul.popupmenu ul li {
  
  float: left; /*For IE 7 lack of compliance*/
  display: block !important;
  display: inline; /*For IE*/
}

/* Root Menu */
ul.popupmenu a { 
	float: none !important; /*For Opera*/
	float: left; /*For IE*/
	display: block;
	height: 27px;
	line-height: 27px;
	font-size: 11px;
	color: #5a7b8c;
	font-weight: normal;
	height: auto !important;
	height: 1%; /*For IE*/
	width: auto;
	padding-right: 5px;
}

/* Root Menu Hover Persistence */
ul.popupmenu a:hover,
ul.popupmenu li:hover a,
ul.popupmenu li.iehover a 
{
	color: #e51b24;	
}

/* 2nd Menu */
ul.popupmenu li:hover li a,
ul.popupmenu li.iehover li a {
	float: none;
	color: #ffffff;
	height: 18px;
	line-height: 18px;
	text-indent: 0px;
	font-weight: normal;
	font-size: 13px;
	text-decoration: none;
	color: #e61a23;
	background-image: url(images/bullet_sq2.gif);
	background-repeat: no-repeat;
	background-position: left center;
	padding-left: 10px;
}

/* 2nd Menu Hover Persistence */
ul.popupmenu li:hover li a:hover,
ul.popupmenu li:hover li:hover a,
ul.popupmenu li.iehover li a:hover,
ul.popupmenu li.iehover li.iehover a {
	color: #587c8c;
	background-image: url(images/bullet_sq2_over.gif);
}

/* Do Not Move - Must Come Before display:block for Gecko */
ul.popupmenu li:hover ul ul,
ul.popupmenu li:hover ul ul ul,
ul.popupmenu li.iehover ul ul,
ul.popupmenu li.iehover ul ul ul {
  display: none;
}

ul.popupmenu li:hover ul,
ul.popupmenu ul li:hover ul,
ul.popupmenu ul ul li:hover ul,
ul.popupmenu li.iehover ul,
ul.popupmenu ul li.iehover ul,
ul.popupmenu ul ul li.iehover ul {
  display: block;
}