/* All <ul> tags in the menu including the first level */
.FlyoutMenu ul, .FlyoutMenu ul ul {
 margin: 0;
 padding: 0;
 width: 120px;
 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;
 top: -1px;
 left: 120px;
}

/*
 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;
	 padding: 3px;
	 padding-right: 10px;
}
.FlyoutMenu ul ul>li:last-child {
 margin-bottom: 1px; /* Mozilla fix */
}

.FlyoutMenu ul ul li {
	background-color:#FFFFFF;
	border: solid 1px #000000;
}
/* Links inside the menu */
.FlyoutMenu ul a {
	 display: block;
	 text-align:right;
	 font-weight:bold;
	 color: #000000;
	 text-decoration:none;
	 width:100%;
}
.FlyoutMenu ul ul a {
	text-decoration:none;
	margin:0px;
}

.FlyoutMenu ul ul a {
	text-align:left;
}
/*
 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: #C40404;
}
.FlyoutMenu ul a.highlighted {
	color: #C40404;
}

/* 'subind' submenu indicators, which are automatically prepended to 'A' tag contents. */
.FlyoutMenu ul a .subind {
	display:none;
}
.FlyoutMenu ul ul a .subind {
	text-decoration:none;
	display:block;
	float:right;
}