* {
	margin: 0;
	padding: 0;
}
ul {
	list-style: none;
}
#wr {
	width: 100%;
	margin: 0px;
	position: relative;
	top: -10px;
}
/* 
	LEVEL ONE
*/
ul.dropdown {
	position: relative;
}
ul.dropdown li {
	font-weight: normal;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	color: #FEE7BE;
	text-align: left;
	float: left;
	zoom: 1;
	position: relative;
}
ul.dropdown a:hover {
	color: #192124;
	text-decoration: none;
	font-weight: normal;
}
ul.dropdown a:active {
	color: #FFFFFF;
	text-decoration: none;
	font-weight: normal;
}
ul.dropdown li a {
	color: #FEE7BE;
	text-decoration: none;
	font-weight: normal;
	display: block;
	padding-bottom: 5px;
	padding-top: 5px;
}
ul.dropdown li:last-child a {
	border-right: none;
} /* Doesn't work in IE */
ul.dropdown li.hover, ul.dropdown li:hover {
	color: #192124;
	position: relative;
	text-decoration: none;
	font-weight: normal;
}
ul.dropdown li.hover a {
	color: #192124;
	text-decoration: none;
	font-weight: normal;
}
/* 
	LEVEL TWO
*/
ul.dropdown ul {
	visibility: hidden;
	position: absolute;
	border-right-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-left-style: solid;
	border-right-color: #586978;
	border-left-color: #586978;
	font-weight: normal;
	background-color: #FE0000;
	width: 264px;
	top: 100%;
	left: -5px;
	margin: 0px;
}
ul.dropdown ul li {
	font-weight: normal;
	color: #192124;
	background-color: #FE0000;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #586978;
	float: none;
	padding-right: 5px;
	padding-left: 5px;
}
/* IE 6 & 7 Needs Inline Block */
ul.dropdown ul li a {
	border-right-style: none;
	border-bottom-style: none;
	text-decoration: none;
	font-weight: normal;
	display: inline-block;
	width: 100%;
}
/* 
	LEVEL THREE
*/
ul.dropdown ul ul {
	font-weight: normal;
	text-decoration: none;
	left: 100%;
	top: 0;
}
ul.dropdown li:hover > ul {
	visibility: visible;
	font-weight: normal;
	text-decoration: none;
}
