
/* ----------------- wrapper div ----------------- */ 
#dynamicmenu {
	position:relative;
	margin:0 auto;
	padding:5px 10px 0 0;
	width:100%;
	oheight:30px;
	text-align:center;
	z-index:100;
}





/* ----------------- main links ----------------- */ 
#dynamicmenu ul {
	font:normal 15px Arial;
	color:#fff;
	text-decoration:none;
	text-align:center;
	margin: 0;
	padding: 0;
	oborder-left:1px dashed #b4c986;
}
#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... */
	oborder-right:1px dashed #b4c986;
}

#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 a {
	padding:0 5px;
	text-decoration: none;
	color: #fff;
	display: block;
	position: relative;
	font: bold 12px Arial;
}
#dynamicmenu ul li a:hover, #dynamicmenu ul li:hover>a {
	color:#fff; 
	display: block;
}






/* -- 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 --  */



