/* DynamicMenu Container */
.DynamicMenuContainer {
	
	padding: 2px 2px 2px 2px;
	margin: 0px;
	float: left;
	clear: both;
	
}
.DynamicMenuContainer a, .DynamicMenuContainer a:visited {
	text-decoration: none;
	background: inherit;
}

/* All <ul> tags in the menu including the first level */
.DynamicMenu, .DynamicMenu ul {
	font: bold 11px, arial;
	float: left;
	list-style: none;
	margin: 0;
	font-size: 10px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.DynamicMenu ul {
	/*border: solid 1px #bbd990;*/
	font: 11px, Arial;
	font-size: 11px;
	display: none;
	position: absolute;
	top: 1.1em;
	margin-top: 13px; /* I'm using ems and px to allow people to zoom their font */
	z-index: -1;
}

/* Second and third etc. level submenus - position across from parent instead */
.DynamicMenu ul ul {
	margin-top: 0;
	top: 0px;
	left: 0px;
	width: 0px;
	font-size: 11px;
}

/*
 All menu items (<li> tags). 'float: left' lines them up horizontally, and they are
 positioned relatively to correctly offset submenus. Also, they have overlapping borders.
*/
.DynamicMenu li {
	float: left;
	display: block;
	position: relative;
	font-size: 11px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.DynamicMenu ul li {
	background-color: #EBEBEB;
	text-align: left;
	font-size: 11px;
	
	
}
.DynamicMenu ul li a, .DynamicMenu ul li a:visited {
	background: #3366CC;
	border-top: solid 1px #3366CC;
	border-bottom: solid 1px #3366CC;
	padding-left:5px;
	
	color: #ffffff;
	width: 200px;
	font-size: 11px;
}
.DynamicMenu ul > li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
	font-size: 10px;
}

/* Links inside the menu */
.DynamicMenu a {
	display: block;
	text-decoration: none;
	
	color: #FFFFFF;
	text-align:left;
	font-size: 11px;
	
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.DynamicMenu a:hover, .DynamicMenu a:focus {
	
	color: #F20000;
	font-size: 12px;
	text-decoration: none;
}
.DynamicMenu ul li a:hover, .DynamicMenu ul li a:focus {
	background: #000000;
	border-top: solid 1px #E9E9E9;
	border-bottom: solid 1px #bbd990;
	cursor: hand;
	font-size: 11px;
	text-decoration: none;
	
}
.DynamicMenu a.Highlighted, .DynamicMenu a:visited.Highlighted, .DynamicMenu a:focus.Highlighted {
	
	color: #FFFFFF;
	font-size: 11px;
}

.DynamicMenu .Highlighted a, .DynamicMenu .Highlighted a:visited {
	
	color: #FFFFFF;
	font-size: 11px;
	
}
.DynamicMenu ul li .Highlighted, .DynamicMenu ul li a:visited.Highlighted {
	background: #3366CC;
	border-top: solid 0px #bbd990;
	border-bottom: solid 0px #bbd990;
	font-size: 11px;
}

.DynamicMenu a:hover, .DynamicMenu a:focus {
	
	color: #F20000;
	font-size: 11px;
	text-decoration: none;
}
.DynamicMenu ul a:hover, .DynamicMenu ul a:focus {
	background-color: #3366CC;
	color: #F20000;
	font-size: 11px;
	text-decoration: none;
}
.DynamicMenu ul li a:hover, .DynamicMenu ul li a:focus {
	background: #013571;
	border-top: solid 1px #013571;
	border-bottom: solid 1px #013571;
	cursor: hand;
	font-size: 11px;
	text-decoration: none;
}

.DynamicMenu ul li a .Arrow 
{
	
}