/* ----------------- wrapper div ----------------- */ 
#dynamicmenu {/*
	position:absolute;
	top:111px;
	right:0;*/
	clear:both;
	margin:0 15px 2px;
	padding:0 5px 0 0;
	width:935px;
	height:60px;
	display:block;
	text-align:left;
	z-index:100;
	background:url(../images/bg-nav-vert-line.jpg) top right no-repeat;
}





/* ----------------- main links ----------------- */ 
#dynamicmenu ul {
	font:bold 15px Helvetica;
	line-height:18px;
	text-decoration:none;
	text-align:left;
	margin: 0;
	padding: 0;
	position:relative;
}
#dynamicmenu ul li {
	margin: 0;
	padding: 0;
	display: block;
	float: left;	/* 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: 100;		/* thus we need to apply explicit z-index here... */
	background:url(../images/bg-nav-vert-line.jpg) top left no-repeat;
}

#dynamicmenu ul li:hover {
	z-index: 100;	/* ...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 */
	margin-top:0;
	padding-top:0;
}
#dynamicmenu ul li a {
	padding:12px 0 12px 10px;
	width:177px;
	text-decoration: none;
	display: block;
	position: relative;
	color:#fff;
	font-weight:normal;
}
#dynamicmenu ul li a em {
	color:#ffe28c;
}
#dynamicmenu ul li a span {
	color:#fff;
	font-weight:bold;
	text-transform:uppercase;
}
#dynamicmenu ul li a:hover, #dynamicmenu ul li:hover>a {
	display: block;
	line-height:18px;
	background:url(../images/bg-nav-over.jpg) top left no-repeat;
}





/* ----------------- level 2 links ----------------- */ 
#dynamicmenu ul ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 100;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}
#dynamicmenu ul ul {
	width:165px;
	position:absolute;
	border:1px solid #a5a5a5;
	font:normal 12px Helvetica;
	line-height:16px;
	display: block;
	text-align:left;
	background:#fff;
	z-index:100;
}
#dynamicmenu ul li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

#dynamicmenu ul ul li {
	font:normal 12px Helvetica;
	line-height:16px;
	color:#fff;
	text-decoration:none;
	text-align:left;
	border:none;
	background-image:none;
}
#dynamicmenu ul li li {
	float: none;/* items of the nested menus are kept on separate lines */
}
#dynamicmenu ul li li a {	/* create borders around each item */
	width:150px;
	display:block; 
	color:#1f3e5d;
	text-indent:0;
	padding:5px 5px 5px 10px;
	font-size:12px;
	line-height:16px;
	text-align:left;
}
#dynamicmenu ul ul a:hover, #dynamicmenu ul ul li:hover>a {
	background:#1f3e5d;
	color:#fff;
	font-size:12px;
	line-height:16px;
}






/* ----------------- level 3 links ----------------- */ 
#dynamicmenu ul li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping *//*
	top: 5px;
	left: 90%;*/
	display:none;
	visibility:hidden;
}








/* -- 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 {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */