/* DynamicMenu Container */
.DynamicMenuContainer
{
	padding: 2px 2px 2px 2px;
	margin: 0px;
	float: left;
	clear: both;
	border: solid 1 grey;
}
.DynamicMenuContainer a, .DynamicMenuContainer a:visited
{
	text-decoration: none;
	background: inherit;
}

/* All <ul> tags in the menu including the first level */
.DynamicMenu, .DynamicMenu ul
{
	font: 12.5px, tahoma;
	float: right;
	list-style: none;
	margin: 0;
	/*font-weight: bold;*/
	font-size: 12px;
}

/* Submenus (<ul> tags) are hidden and absolutely positioned downwards from their parent */
.DynamicMenu ul
{
	/*border: solid 1px #bbd990; here are the borders!*/
	font-family: Tahoma;
	/*font-size: 13px;*/
	display: none;
	position: absolute;
	top: 1.0em;
	/*font-weight: bold;*/
	margin-left: 5px;
	margin-top: 7px; /* I'm using ems and px to allow people to zoom their font */
}

/* Second and third etc. level submenus - position across from parent instead */
.DynamicMenu ul ul
{
	margin-top: 0;
	top: 2px;
	left: 2px;
	width: 2px;
	font-size: 12px;
}

/*
 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: 12px;
}

/* Items in submenus - override float/border/margin from above, restoring default vertical style */
.DynamicMenu ul li
{
	text-align: left;
	font-size: 12px;
}
.DynamicMenu ul li a, .DynamicMenu ul li a:visited
{
	/*background: #CCCC33; 	padding-left: 5px; 	padding-right: 5px; font-weight: bold;*/
	color: #000000;
	width: 143px;
	font-size: 12px;
	margin-left: 12px;
	margin-right: 5px;
    text-align: left;
    font-family: Tahoma, Verdana, Arial;
    /*font-weight: bold;*/
}
.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: 12px;
	/*font-weight: bold;*/
}

/* Lit  items: 'hover' is mouseover, 'highlighted' are parent items to visible menus */
.DynamicMenu a:hover, .DynamicMenu a:focus
{
	color: #CFD446;
	font-size: 12px;
	text-decoration: none;
}
.DynamicMenu ul li a:hover, .DynamicMenu ul li a:focus
{
	background: #CCCC33; /*#94979B;*/
	border-top: solid 0px #E9E9E9;
	border-bottom: solid 0px #bbd990;
	cursor: hand;
	font-size: 12px;
	text-decoration: none;
}
.DynamicMenu a.Highlighted, .DynamicMenu a:visited.Highlighted, .DynamicMenu a:focus.Highlighted
{
	color: #CFD446;
	font-size: 12px;
}

.DynamicMenu .Highlighted a, .DynamicMenu .Highlighted a:visited
{
	color: #FFFFFF;
	font-size: 12px;
}
.DynamicMenu ul li .Highlighted, .DynamicMenu ul li a:visited.Highlighted
{
	background: #94979B;			
	border-top: solid 0px #bbd990;
	border-bottom: solid 0px #bbd990;
	font-size: 12px;
}

.DynamicMenu a:hover, .DynamicMenu a:focus
{
	color: #CFD446;
	font-size: 12px;
	text-decoration: none;
}
.DynamicMenu ul a:hover, .DynamicMenu ul a:focus
{
	background-color: #3366CC;
	color: #000000;
	font-size: 12px;
	text-decoration: none;
}
/*Highlight background of menu navigation*/
.DynamicMenu ul li a:hover, .DynamicMenu ul li a:focus
{
	/*background: #363636;*/
	border-top: solid 0px #013571;
	border-bottom: solid 0px #013571;
	cursor: hand;
	font-size: 12px;
	text-decoration: none;
}

.DynamicMenu ul li a .Arrow
{
}

