
/* ----------------- wrapper div ----------------- */ 
#dynamicmenu {
	width:224px;
	position:relative;
	font-weight:normal;
	font-size:13px;
	margin:0;
	padding:0;
	z-index:5;
	clear:both;
	display:block;
}





/* ----------------- main links ----------------- */ 
#dynamicmenu ul {
	font-size:13px;
	font-family:Georgia, "Times New Roman", Times, serif;
	font-weight:normal;
	line-height:30px;
	color:#013e6a;
	text-decoration:none;
	margin: 0;
	padding: 0;
	z-index: 5;	
}
#dynamicmenu ul li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	float:right;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
	font-size:13px;
	line-height:30px;
	color:#013e6a;
	text-align:right;
}

#dynamicmenu ul li:hover {
	z-index: 5;		/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */ 
}
#dynamicmenu ul a {
	margin:0; 
	width:188px;
	padding:1px 24px 1px 0;
	text-decoration: none;
	color:#013e6a; 
	display: block;
	position: relative;
	z-index: 5;
	text-transform:uppercase;
}
#dynamicmenu ul a:hover, #dynamicmenu ul li:hover>a {
	color:#fff;
	background:#013e6a url(../images/bg-nav-hover.png) right top repeat-y; 
	padding:0 24px 0 0;
	border-top:1px solid #013e6a;
	border-bottom:1px solid #013e6a;
	z-index: 5;	
}





/* ----------------- level 2 links ----------------- */ 
#dynamicmenu ul ul {
	font-family:"Helvetica Neue", Helvetica, Arial, sans-serif;
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 5;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
	width:200px;
	font-size:13px;
	line-height:20px;
	display: block;
	text-align:left;
	border:1px solid #aaa;
	margin:0 0 0 1px;
	padding:0;
	filter:alpha(opacity=90);
	-moz-opacity:0.9;
	-khtml-opacity: 0.9;
	opacity: 0.9;
	background:#fff url(../images/bg-nav-flyout.png) 0 0 repeat-y;
}
#dynamicmenu ul li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* 1st level go below their parent item */
}

#dynamicmenu ul ul li {
	font-size:13px;
	line-height:20px;
	background:none;
	color:#fff;
	text-decoration:none;
	text-align:left;
	float: none;
}
#dynamicmenu ul li li a {	/* create borders around each item */
	width:190px;
	display:block; 
	color:#013e6a;
	text-indent:0;
	margin:0;
	padding:5px;
	font-size:13px;
	line-height:20px;
	text-align:left;
	border:none;
	text-transform:none;
}
#dynamicmenu ul ul a:hover, #dynamicmenu ul ul li:hover>a {
	background:#013e6a; 
	color:#fff;
	border:none;
	margin:0;
	padding:5px;
	width:190px;
}






/* ----------------- level 3 links ----------------- */ 
#dynamicmenu ul li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping *//*
	top: 5px;
	left: 90%;
	display:none;*/
	visibility:visible;
}















/* -- float.clear -- force containment of floated LIs inside of UL 
#dynamicmenu ul:after, #dynamicmenu ul ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
#dynamicmenu ul, #dynamicmenu ul ul {	*//* sticky submenu: *//*
	min-height: 0;
}
/* -- float.clear.END --  */


