.flyout .ekflexmenu 
{
    color: #ffffff;
    font-size: 14px;
    font-family: "Trebuchet MS", Geneva, sans-serif;
    width: 116px;
    text-align: left;
    white-space: nowrap;
    margin: 0px auto;
}

.flyout .ekflexmenu_submenu,
.flyout .ekflexmenu_submenu_hover,
.flyout .ekflexmenu_submenu_parent,
.flyout .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    display: block;
	top: 0px;
	left: 0px;
	position: relative;
}

.flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 116px;
	height: 37px;
	white-space: nowrap;
}

.flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display: inline;
	margin: 0px;
	padding: 0px;
	width: 116px;
	height: 37px;
	white-space: nowrap;
}

.flyout .ekflexmenu_submenu_items {
    display: block;
	position: relative;
	top: 0px;
	right: 0px;
}

.flyout .ekflexmenu_submenu_items_hidden 
{
	/* DIV; normally hidden container for menu lists (becomes visible if */
	/* user clicks on related submenu button, or if Javascript/CSS not supported). */
	display: none;
}

.flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items
{
    display: block;
    width: 116px;
}

.flyout .ekflexmenu LI
{
    display: block;
}

.flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	top: 0px;
	right: 110%;
	width: 240px;
	height: auto;
	background: #6a6a6a;
	padding: 12px 0px 0px 12px;
}

/* Button menu items, controls visibility of associated sub-menus */
.flyout .ekflexmenu_button,
.flyout .ekflexmenu_button_hover,
.flyout .ekflexmenu_button_selected,
.flyout .ekflexmenu_button_selected_hover
{
	/* A; holds the title of the associated submenu, and typically acts as a */
	/* button (or folder) for the submenu. Can also hold images (background, etc). */
    display: block;
    padding: 15px 0px;
    color: #ffffff;
    text-align: center;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.flyout .ekflexmenu_button
{
    background: url("navBtn.png") 0px 0px no-repeat;
    height: 37px;
    width: 116px;
}

.flyout .ekflexmenu_button:focus,
.flyout .ekflexmenu_button:hover,
.flyout .ekflexmenu_button_hover
{
    background: url("navBtn.png") -116px 0px no-repeat;
}
.flyout .ekflexmenu_button_selected
{
    background: url("navBtn.png") -232px 0px no-repeat;
}
.flyout .ekflexmenu_button_selected_hover
{
    background: url("navBtn.png") -349px 0px no-repeat;
}

.flyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.flyout a.ekflexmenu_link,
.flyout a.ekflexmenu_link_selected 
{
    padding: 0px 0px 0px 0px;
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */
    text-decoration: none;
}
.flyout a.ekflexmenu_link, 
.flyout a.ekflexmenu_link:link, 
.flyout a.ekflexmenu_link:visited {
	background: #6a6a6a;
	color: #ffffff;
}
/*.ekflexmenu_submenu_items a:hover */
.flyout a.ekflexmenu_link:hover, 
.flyout a.ekflexmenu_link:active, 
.flyout a.ekflexmenu_link:focus  {
	background: #6a6a6a;
	color: #ff8901;
}

.flyout a.ekflexmenu_link_selected {
	background: #6a6a6a;
	color: #ffffff;
}
.flyout a.ekflexmenu_link_selected:hover {
	background: #6a6a6a;
	color: #ff8901;
}