/* navigation (horizontal subnavigation)
----------------------------------------------- */
/* LEVEL ONE */

#navcontainer{
	width:960px;
	height: 30px;
	margin-top:0;
	float:left;
	background-color: #FAFAFA;
	border-top:1px solid #CCC;
	border-bottom:1px solid #CCC;
}

ul.dropdown {
	position: relative;
	font-size:12px;
	list-style-type: none;
	font-weight:normal;
	height:auto;
	z-index:999;
	width:710px;
	float:left;
	padding:0;
	height: 30px;
}
ul.dropdown li {
	font-weight: normal;
	float: left;
	zoom: 1;
	padding:7px 20px 4px 20px;
	list-style-type: none;
	margin-left:0px;
	border-right:1px solid #CCC;
}
ul.dropdown a:active {
	color: #444;
}
ul.dropdown li a {
	display: block;
	color: red;
	font-size:12px; /*top-level menu items*/
	font-weight:bold;
	text-transform:uppercase;
	text-decoration:none;
}
ul.dropdown li:last-child {
	border-right: none;
} /* Doesn't work in IE */

ul.dropdown li.hover,  ul.dropdown li:hover {
	position: relative;
	padding:7px 20px 4px 20px;
	list-style-type: none;
	margin-left:0;
	background-color: #EEE;
}
ul.dropdown li.hover a,  ul.dropdown li:hover a {
	color: #444;
}

/* LEVEL TWO */
ul.dropdown ul {
	width: 220px;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	border:1px solid #CCC;
	background-color:#FAFAFA;
	padding:0;
}
ul.dropdown ul li {
	font-weight: normal;
	color: #444;
	border-bottom: 1px dotted #CCC;
	border-right:none;
	float: none;
	padding:5px 15px 3px;
	background:#EEE;
}
ul.dropdown ul li:hover {
	background:red;
	padding:5px 15px 3px;/*Remove this for depress/over effect*/
}
ul.dropdown ul li:hover a {
	color:white;
}
ul.dropdown ul li:last-child {
	border-bottom: 3px solid red;
	background-image:none;
	margin-bottom:0;
} 

ul.dropdown ul li a {
	border-right: none;
	text-transform:none;
	font-weight:normal;
	width: 100%;
	/* IE 6 & 7 Needs Inline Block */
	display: inline-block;
	color:#444;
	font-size:12px;
	padding-left:5px;
}

ul.dropdown ul li a:hover{
  text-decoration:none;

}
/* LEVEL THREE */
ul.dropdown ul ul {
	left: 100%;
	top: 0;
}
ul.dropdown li:hover > ul {
	visibility: visible;
}
ul.dropdown li.secondary {
	float:right;
	color:#444;
	background:transparent !important;
}
ul.dropdown li.secondary span.status {
	float:left;
	padding:0 1em;
	line-height:2.77em;
	height:2.77em;
  font-size:0.9em;
}
ul.dropdown li.secondary span.status a {
	float:none;
	display:inline;
	padding:0;
	height:auto;
	line-height:auto;
	color:#cde;
	background:transparent;
}
ul.dropdown li.secondary span.status a:hover {
	color:red;
	background:transparent;
}
ul.dropdown li.secondary span.status span {
	text-transform:capitalize;
}
ul.dropdown li.secondary:hover a {
	color:red;
	background:#666;
}
ul.dropdown li.secondary:hover a:hover {
	background:#555;
}
ul.dropdown li.secondary:hover a:active {background:#444;}
.flyout {background:transparent url(../img/arrow.gif) no-repeat scroll right center;}

.red {border:1px dotted red;}
