/* All <ul> tags in the menu including the first level */
.FlyoutMenu ul, .FlyoutMenu ul ul {
	margin: 0;
	padding: 0;
	width: 151px;
	list-style: none;
}

/*
 Submenus (<ul> tags) are hidden and absolutely positioned across from their parent.
 They don't *have* to touch their parent menus, but is' a good idea as CSS-only fallback
 mode requires menus to touch/overlap (when JS is disabled in the browser).
*/
.FlyoutMenu ul ul {
	display: none;
	position: absolute;
	margin-top: -29px;
	left: 151px;
}

/*
 All menu items (<li> tags) are relatively positioned to correctly offset their submenus.
 They have borders that are slightly overlaid on one another to avoid doubling up.
*/
.FlyoutMenu ul li {
	position: relative;
	margin-bottom: -1px;
	display:inline;
}
.FlyoutMenu ul ul>li:last-child {
	margin-bottom: 1px; /* Mozilla fix */
}

.FlyoutMenu ul ul li {
margin-top: 0px;
	padding: 0;
}
/* Links inside the menu */
.FlyoutMenu ul a {
	display: block;
	width:121px;
	height:20px;
	margin-top:0px;
	margin-bottom: 5px;
	padding:2px 10px 2px 20px;
	background-image:url(Image/button.jpg);
	background-repeat:no-repeat;
	color: #3C3C3C;
	text-decoration:none;
	font-size:12px;
}
/*
 List items: 'hover' is mouseover, 'highlighted' are parent items to visible menus.
*/
.FlyoutMenu ul a:hover, .FlyoutMenu ul a.highlighted:hover, .FlyoutMenu ul a:focus {
	color: #3C3C3C;
	background-image:url(Image/button_over.jpg);
}
.FlyoutMenu ul a.highlighted {
}
.FlyoutMenu ul ul a {
	width:145px;
	height:auto;
	margin-top:0px;
	margin-bottom:1px;
	padding:3px 3px;
	background-image:none;
	background-color:#B76EB7;
	color:#FFFFFF;
}

.FlyoutMenu ul ul a:hover, .FlyoutMenu ul ul a.highlighted:hover, .FlyoutMenu ul ul a:focus {
	background-image:none;
	background-color:#800080;
	color:#FFFFFF;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.FlyoutMenu ul a .subind {
	text-decoration:none;
	display:block;
	float:right;
	cursor:pointer;
}