/* LEVEL ONE*/ul.dropdown {	position: relative;	z-index: 99999;}ul.dropdown li {	font-weight: bold;	float: left;	border: none;}ul.dropdown a:hover {	color: #000;}ul.dropdown a:active {	height: 20px;	color: aqua;}ul.dropdown li a {	border: none;	display: block;}ul.dropdown li:last-child a {	}/* Doesn't work in IE */ul.dropdown li.hover,ul.dropdown li:hover {	border: none;	position: relative;}ul.dropdown li.hover a {	color: black;}/* LEVEL TWO*/ul.dropdown ul {	visibility: hidden;	position: absolute;	top: 100%;	left: 0;	text-align: left;	min-height: 100px;	width: 220px;	padding: 0px;	font-size: 12px;	z-index: 1;	margin: 0;	background: url(/img/sub_bg.png) repeat}ul.dropdown ul li {	font-weight: normal;	color: #000;	text-align: left;	position: relative;	float: left;	margin: 0;	width: 100%;	height: 20px;	clear: both;}/* IE 6 & 7 Needs Inline Block */ul.dropdown #subscribe a {	background:url("/img/subscribe-bg.gif") no-repeat ;	color: white; padding-top : 7px;	margin-top: 25px;	-moz-border-radius-topright: 10px;	border-top-right-radius: 10px;	-moz-border-radius-topleft: 10px;	border-top-left-radius: 10px;	background: -webkit-gradient(linear, 0 0, 0 bottom, from(#b0c1da),		to(#909cb0) );	background: -moz-linear-gradient(#b0c1da, #909cb0);	background: linear-gradient(#b0c1da, #909cb0);	padding-top: 7px;}ul.dropdown #subscribe.hover {	position: static;}ul.dropdown ul li a {	width: 210px;	display: inline-block;	background: none;	padding: 0;	margin: 0;	font-size: 12px;	text-align: left;	height: 20px;	padding-left: 10px;	border-bottom: 1px dashed white;	float: left;}ul.dropdown ul li a:hover {	width: 210px;	display: inline-block;	padding: 0;	margin: 0;	font-size: 12px;	text-align: left;	background: url(/img/sub_bg_active.png) repeat;	color: white;	border-bottom: 1px dashed white;	text-indent: 10px;}/* LEVEL THREE*/ul.dropdown ul ul {	top: 0;	background-color: #949496;	margin-left: 220px;	width: 200px;	min-height: 20px;	-moz-opacity: 1;	opacity: 1;	filter: alpha(opacity =   80)}ul.dropdown ul ul li {	border: none;	padding: 0;}ul.dropdown ul ul li a {	padding: 0;	color: black;	width: 190px;	padding-left: 10px;}ul.dropdown ul ul li a:hover {	background: url(/img/sub_bg_inner_active.png) repeat;	padding: 0;	color: black;	width: 200px;}ul.dropdown li:hover>ul {	visibility: visible;}.top_navigation li ul li a:active {	background: none !important;	padding-top: 0px !important;	font-size: 12px;	font-weight: normal;	width: 220px;}.top_navigation li ul li a:hover {	width: 220px;}#subscribe_box {	background: #D9D9D9;	background: rgba(228, 228, 228, 0.95);	position: absolute;	top: 57px;	right: 7px;	display: none;	width: 300px;	height: 100px;	text-align: left;	padding: 5px;	font-size: 12px;	padding-top: 20px;		-moz-box-shadow: 0px 2px 5px #6a6a6a;	-webkit-box-shadow: 0px 0px 5px #6a6a6a;	box-shadow: 0px 0px 5px #6a6a6a;}#subscribe_box .submit{	background-color:#8EC33A;	padding:5px 10px 5px 10px;	color:black;	float:right;	cursor:pointer;}#subscribe_box .header {	font-size: 14px;	line-height: 22px;}#subscribe_box .footer {	text-align:center;	margin-top: 30px;	border-top: 1px dashed #716F6E;	padding-top: 10px;	font-weight: bold;	display:none;}
