/* 
	Organix Drop Down Menu
	-----------------------------------------------------------------------------
	Written by Dana Woodman <dana@organixdesign.com>
	Released under a Creative Commons Licence <http://creativecommons.org/licenses/by/3.0/>
	-----------------------------------------------------------------------------
	You are free to modify, share, copy, distribute and transmit this work, under the following conditions:
	You must attribute the work in the manner specified by the author or licensor 
	(but not in any way that suggests that they endorse you or your use of the work).
*/

#menu-bg {
	text-align: left;
	margin: 0px auto 0px 0px;
	width: 980px; height:50px; padding:0px 0px 0px 0px; 
	background:#FFF; 
}

/* Menu
---------------------------------------------------------------------------------------- */
#menu {
	
	float:right;
	
	list-style: none;

	border-top: 0px solid #071AA6;
	border-right: 0px solid #071AA6;
	border-bottom: 0px solid #071AA6;
	
	background: URL("../images/menubg.gif")#FFF; width:920px; height:50px;
	
	font-family: Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#cce4f8; padding:0px 30px 0px 30px;
}
#menu li {
	float: left;
	margin: 0;
	padding: 0;
	position: relative;
}
#menu a {
	float: left;
	display: block;
	padding: 15px 15px 15px 15px;
	text-decoration: none;
	color: #FFF;
	font-weight: bold;
	border-right: 0px solid #FAFBF7;
	border-left: 0px solid #DEE7C2; background:url(../images/menuline.png) no-repeat right;
}
#menu a:hover {background:; /*border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	behavior: url(js/PIE.htc);
	position:relative;*/ color:#01FCFF; }
/* The Drop Down: */
#menu .parent a {background:url(../images/menuline.png) no-repeat right;}
#menu .activeParent a {
	color: #01FCFF;
	background:; 
	/*border-radius:8px;
	-moz-border-radius:8px;
	-webkit-border-radius:8px;
	behavior: url(js/PIE.htc);
	position:relative;*/
}
#menu .parent ul {display: none;} /* Hides the dropdown */
#menu .activeParent ul {
	float: left;
	width: 215px; /* The width of the dropdown */
	margin: 0;
	padding: 0;
	position: absolute;
	top: 2.9em !important; /* For Standard Compliant Browsers */
	top: 2.9em; /* For IE */
	left: 0;
	list-style: none;
	z-index: 1000; color: #FFF; font-weight:normal;
	background: #0C20AA;
}
#menu .activeParent li {
	float: left;
	margin: 0;
	padding: 0;
}
#menu .activeParent li a {
	float: left;
	width: 200px; /* The width of the dropdown */
	margin: 0;
	padding: 7px 9px 7px 9px;
	color: #FFF; font-weight:normal; 
	display: block;
	background: URL("../images/menudrop.gif")#071AA6;
	font-size: 12px; font-weight:none;
	border-bottom: 1px solid #2A36A6;
	border-right: 1px solid #2A36A6;
	border-left: 1px solid #2A36A6;
}
#menu .activeParent li a:hover {
	background: #2A36A6;
	color: #FFF; width: 200px; /* The width of the dropdown */
	padding: 5px 8px 5px 8px;
}