/* Begin CSS Drop Down Menu */
#nav
	{
	width:940px;
	margin:0 auto;
	position:relative;
	top:0;
	left:0;
	}
		
#nav a
	{
	text-align: center;
	display:block;
	white-space: pre-wrap;       /* css-3 */
 	white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 	white-space: -pre-wrap;      /* Opera 4-6 */
 	white-space: -o-pre-wrap;    /* Opera 7 */
 	word-wrap: break-word;       /* Internet Explorer 5.5+ */
	color:#CC9900;
	}
#nav #nav_main li ul li a	/* menu at rest CHANGE WIDTH */
	{
	color: #027ca5;
	background-color:#c3edfb;
	text-decoration:none;
	margin:0;
	padding:15px;
	width:150px;
	height:auto;
	font-size:.8em;
	text-align:center;
	text-indent:inherit;
	/* white-space: pre-wrap;       /* css-3 */
 	/* white-space: -moz-pre-wrap;  /* Mozilla, since 1999 */
 	/* white-space: -pre-wrap;      /* Opera 4-6 */
 	/* white-space: -o-pre-wrap;    /* Opera 7 */
 	/* word-wrap: break-word;       /* Internet Explorer 5.5+ */
	}
		
#nav #nav_main li ul li a:hover	/* menu at mouse-over CHANGE WIDTH */
	{
	color: #c3edfb;
	padding:15px;
	background-color: #027ca5;
	text-decoration:none;
	width:150px;
	height:auto;
	}	

#nav ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:157px;	/* width of all menu boxes */
	width:auto;
	letter-spacing:.11em;
	color:#FEDE58;
	}
#nav ul ul
	{
	line-height:13px;
	height:auto;
	height:35px;
	}

#nav ul li ul li
	{
	height:auto;
	}
	
#nav li
	{
	position:relative;
    min-height: 1px; 			/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
	}
#nav ul #subrefi { margin-left:-25px; }
#nav ul ul
	{
	position:absolute;
	z-index:500;
	font-size:.9em;
	top:auto;
	left:0;
	width:200px;
	display:none;
	padding:0;
	margin:0;
	float:left;
	}

#nav ul ul ul
	{
	top:0;
	left:100%;
	}

div#nav li:hover
	{
	cursor:pointer;
	z-index:100;
	}

div#nav li:hover ul ul,
div#nav li li:hover ul ul,
div#nav li li li:hover ul ul,
div#nav li li li li:hover ul ul
{display:none;}

div#nav li:hover ul,
div#nav li li:hover ul,
div#nav li li li:hover ul,
div#nav li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */