/*                                                                          */
/* NOTICE:                                                                  */
/*    To support more than one-single FlexMenu server control per page     */
/*    the CSS files' name is used as a class and is prefixed to all of      */
/*    the selectors (without the path or extension).                        */
/*                                                                          */
/*    The server control will automatically wrap the entire FlexMenu        */
/*    within a div-tag, whose class-name will be derived from the filename. */
/*                                                                          */
/*    *** THESE MUST BE ENTIRELY IN LOWER CASE! ***                         */
/*    The server control will cast these filenames to lower before use!     */
/*                                                                          */
/*    Only the base ASCII character set is supported.                       */
/*                                                                          */
/*    Also, spaces and periods before the extension will be converted       */
/*    into underscores, as these are not permitted within the selector.     */
/*
                                                                          */

.flyout .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: #FFF;
    width: 158px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 10px;
    font-family: Sans-Serif;
	margin:0px;
	padding:0px;
	border: solid 1px #b2becf;
	vertical-align: top;
	background-image: url(images/master_images/FPA_leftnavheaderbg_menu.jpg);
	
    /* shows up on left side, widens with nesting level */
}


.flyout .ekflexmenu_submenu,
.flyout .ekflexmenu_submenu_hover,
.flyout .ekflexmenu_submenu_parent,
.flyout .ekflexmenu_submenu_parent_hover
{
	top: 0px;
	left: 0px;
	position: relative;
	z-index: 1;
}

.flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
	border-width:0px;
}

.flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	
	position: relative;
	margin: 0px;
	padding: 0px;
	width: 113px;
}

.flyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    
    display: block; 
    position: relative;
    top: 0px;
	left: 0px;
	background-image:url(images/master_images/FPA_leftnavheaderbg_menu.jpg);
	background-color: #e2ebf6;
}

.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;
}

.flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
    position: relative;
	top: -1px;
	left: 158px;
	width: 100%;
	
}
.flyout .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items
{
    position: relative;
	top: -1px;
	left: 200px;
	width: 100%;
	
}
.flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items UL
{
    border: solid 1px #b2becf;
	background-color: #FFF;
	position: absolute;
	width: 200px;
}
.flyout .ekflexmenu_menu_level_0 .ekflexmenu_submenu_items UL li a
{
	width: 170px !important;
}


/* 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;
    width: 128px; /* capture on-click for entire row that the button occupies */
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	padding-right: 25px;
    text-decoration: none;
	background:  url(images/master_images/sidenavarrow_nobg.gif) no-repeat; /* color specified in case image unavailable */
	background-position: right top;
	color: #838697;
	border-bottom: 1px solid rgb(255, 255, 255);
	margin: 0px;
}

.flyout .ekflexmenu_button:focus,
.flyout .ekflexmenu_button:hover,
.flyout .ekflexmenu_button_hover
{
    background:  url(images/master_images/sidenavarrow_nobg.gif) no-repeat; /* color specified in case image unavailable */
	background-position: right top;
	color: #838697;
	border-bottom: 1px solid rgb(255, 255, 255);
	margin: 0px;
}
.flyout .ekflexmenu_button_selected
{
    background:  url(images/master_images/sidenavarrow_nobg.gif) no-repeat; /* color specified in case image unavailable */
	background-position: right top;
	color: #838697;
	border-bottom: 1px solid rgb(255, 255, 255);
	margin: 0px;
}
.flyout .ekflexmenu_button_selected_hover
{
    background:  url(images/master_images/sidenavarrow_nobg.gif) no-repeat; /* color specified in case image unavailable */
	background-position: right top;
	color: #838697;
	border-bottom: 1px solid rgb(255, 255, 255);
	margin: 0px;
}

.flyout img 
{
	border-width: 0px; /* make all images borderless */
}

/* Link menu items */
.flyout a.ekflexmenu_link,
.flyout a.ekflexmenu_link_selected 
{
    padding-left: 5px;
    display: block; /* force one link per row */
    width: 128px; /* fill entire row with link */
    border-bottom: 1px solid rgb(255, 255, 255);
	padding-right: 25px;
	color:#FFF;
}
.flyout a.ekflexmenu_link, 
.flyout a.ekflexmenu_link:link, 
.flyout a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: #838697;
    text-decoration: none;
	padding-top: 3px;
	padding-bottom: 3px;
}
/*.ekflexmenu_submenu_items a:hover */
.flyout a.ekflexmenu_link:hover, 
.flyout a.ekflexmenu_link:active, 
.flyout a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    background: #d8dbe2;
	padding-top: 3px;
	padding-bottom: 3px;
}

.flyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    color: #FFFFFF;
	background: #868e9a;
	padding-top: 3px;
	padding-bottom: 3px;
	
}
.flyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	color: #FFFFFF;
    background: #868e9a;
	padding-top: 3px;
	padding-bottom: 3px;
}