/* 
	LEVEL ONE
*/
ul.dropdown {
	position: relative;
	float:left;
	padding-left:0px !important;
	margin-left:0px !important;
}
ul.dropdown li {
	font-weight: bold;
	float: left;
	zoom: 1;
	list-style-type: none;
	padding:6px;
}
ul.dropdown a:hover {
	color:#003399;
}
ul.dropdown a:active {
	color: #0000FF;
}
ul.dropdown li a {
	font-family: TwCenMT-Condensed;
	font-size: 24px;
	font-weight: normal;
	color: #575757;
	text-decoration: none;
	text-transform: uppercase;
	display: inline;
	list-style-type: none;
	float:left;
	text-align:left;
	margin-right:15px;
	margin-right:15px;
	padding-left:10px;
}
ul.dropdown li:last-child a {
	border-right: none;
} /* Doesn't work in IE */
ul.dropdown li.hover, ul.dropdown li:hover {
	color: black;
	position: relative;
}
ul.dropdown li.hover a {
	color: black;
}
/* 
	LEVEL TWO
*/
ul.dropdown ul {
	width: 180px;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	z-index:999999;
}
ul.dropdown ul li {
	font-weight: normal;
	background: #0000FF;
	color: #000;
	border-bottom: dashed 1px #ffffff;
	float: none;
	text-align:left;
	margin-left:-30px;

}
ul.dropdown ul li:hover {
	background: #214e69;
}
/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a {
	font-weight: normal;
	color: #ffffff;
	float: none;
	text-align:left;
	margin-left:0px;
	font-family: TwCenMT-Condensed !important;
	font-size:20px;
	padding-top:0px;
}
ul.dropdown ul li a:hover {
	font-size:20px;
	color:#FFFF66 !important;
}
/* 
	LEVEL THREE
*/
ul.dropdown ul ul {
	left: 100%;
	top: 0;
}
ul.dropdown li:hover > ul {
	visibility: visible;
}
.dropdown span {
	font-size:30px;
	color: #ababab;
	font-family:Arial, Helvetica, sans-serif !important;
	font-style: normal;
	font-weight: lighter !important;
	text-decoration: none;
}