﻿/* http://sperling.com/examples/menuh/ */

/* Begin CSS Drop Down Menu */

#Navigation	{
	width:700px;
    margin: 0px auto;
	text-align: center;
	font: bold 12px/24px Georgia;
}		
#Navigation a {
	text-align: center;
	display:block;
	white-space:nowrap;
	margin:0;
}	
#Navigation a, #Navigation a:visited {	/* menu at rest */	
	color: #010D98;
	background-color: #E7EEF1;
	text-decoration:none;
}
#Navigation ul ul a, #Navigation ul ul a:visited {	/* menu at rest */	
	background-color: white;
	font-weight: normal;
}
#Navigation a:hover	{ /* menu at mouse-over  */
	color:white; 
	background-color: #E25C1A;
	font-weight: bold;
}
#Navigation ul ul a:hover	{ /* menu at mouse-over  */
	color: #E25C1A; 
	background-color: White !important;
	font-weight: bolder;
	border-left: solid 4px #486C86;
	border-right: solid 4px #486C86;
}
#Navigation ul {
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:85px;	/* width of all menu boxes */
}
#Navigation ul ul { width: 86px; }
#Navigation li {
	position:relative;
    min-height: 1px; 	/* Sophie Dennis contribution for IE7 */
    vertical-align: bottom; /* Sophie Dennis contribution for IE7 */
    border-right: solid 1px #486C86; /*#010D98;*/
	border-bottom: solid 1px #486C86; /*#010D98;*/
	border-top: solid 1px #486C86; /*#010D98;*/
}
#Navigation ul ul { /* second-level lists */
    padding: 0;
	margin: 0;
	display: none;
	position: absolute;
	top: 24px;
	left: -1px;
	z-index:500;
	background-color: White !important;
    font: bold 9px/22px Verdana, Arial, Helvetica, sans-serif;
	border: solid 1px #486C86; 
}
#Navigation ul ul li {
    border-top: 0px;
    border-bottom: 0px;
    border-right: 0px;
    background-color: White;
}
div#Navigation li:hover {
	cursor:pointer;
	z-index:100;
}
#Navigation a.TopParent, #Navigation a.TopParent:hover { /* attaches down-arrow to all top-parents */ 
	/* background-image: url(navdown_white.gif);
	background-position: right center;
	background-repeat: no-repeat;*/
	border-left: solid 1px #010D98;
}	
#Navigation a.parent, #Navigation a.parent:hover 	/* attaches side-arrow to all parents */ {
	/* background-image: url(nav_white.gif);
	background-position: right center;
	background-repeat: no-repeat; */
}
div#Navigation li:hover ul ul,
div#Navigation li li:hover ul ul,
div#Navigation li li li:hover ul ul,
div#Navigation li li li li:hover ul ul
{display:none;}

div#Navigation li:hover ul,
div#Navigation li li:hover ul,
div#Navigation li li li:hover ul,
div#Navigation li li li li:hover ul
{display:block;}

/* End CSS Drop Down Menu */
#Navigation ul ul ul { /* second-level lists */
    padding: 0;
	margin: 0;
	display: none;
	position: absolute;
	top: 0px;
	left: 86px;
	z-index:999;
	background-color: White !important;
    font: bold 9px/22px Verdana, Arial, Helvetica, sans-serif;
	border: solid 1px #486C86; 
}
#Navigation ul ul ul li {
    border-top: 0px;
    border-bottom: 0px;
    border-right: 0px;
    background-color: White;
}