/*                                                                          */
/* 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: rgb(255, 255, 255);
    width: 166px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 1em;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    background: rgb(100,100,150); /* shows up on left side, widens with nesting level */
	margin: 1px 1px 0px 2px;
	z-index: 2;
}

.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;
	/* height: 100%; added for IE6 */
}

.flyout UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    display: block;
	list-style: none;
	margin: 0px;
	padding: 0px;
    border-right: 1px solid #f8f2e3;
}

.flyout LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.flyout .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
    display: block;
	position: relative;
	top: 0px;
	left: 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;
}

.ekflexmenu_submenu_items li 
{
    z-index: 1;  
}

.ekflexmenu_menu_level_0
{
    z-index: 2;
}

.flyout .ekflexmenu LI
{
    display: block;
}

.flyout .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	position: absolute;
	top: 0; /* was -1px */
	left: 176px; /* was 100% */
	width: 100%;
	height: 100%;
}

/* 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: 5px;
    font-weight: normal;
    color: #FFFFFF;
    background: #134473 url(/images/nav.gif) repeat-x; /* color specified in case image unavailable */
    width: 100%; /* capture on-click for entire row that the button occupies */
	border-bottom: 1px solid rgb(220, 220, 220); /* link row seperators */
    text-decoration: none;
}

.flyout .ekflexmenu_button
{
    background: #134473 url(/images/nav.gif) repeat-x; /* color specified in case image unavailable */
}

.flyout .ekflexmenu_button:focus,
.flyout .ekflexmenu_button:hover,
.flyout .ekflexmenu_button_hover
{
    background: #134473 url(/images/nav_hover.gif) repeat-x; /* color specified in case image unavailable */
}
.flyout .ekflexmenu_button_selected
{
    background: #134473 url(/images/nav_hover.gif) repeat-x; /* color specified in case image unavailable */
}
.flyout .ekflexmenu_button_selected_hover
{
    background: #134473 url(/images/nav.gif) repeat-x; /* color specified in case image unavailable */
}

.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 */
    border-bottom: 1px solid rgb(220, 220, 220);
    border-right: 1px solid rgb(220, 220, 220); /* added to fill gap between submenus */
}
.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.). */
    padding: 5px; /*padding: 5px 0px; *//* set all to zero for images */
    color: #FFFFFF; /* link text color */
    background: #134473 url(/images/nav.gif) repeat-x; /* color specified in case image unavailable */
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */
    border-bottom: 1px solid rgb(220, 220, 220); /* link row seperators */
}
/*.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... */
    padding: 5px; /*padding: 5px 0px; *//* set all to zero for images */
    color: #FFFF66;  /* hovered-link text color */
    background: #134473 url(/images/nav_hover.gif) repeat-x; /* color specified in case image unavailable */
    text-decoration: none; /* remove underlines */
    border-color: rgb(181, 166, 132);
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220); /* link row seperators */
}

.flyout a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    padding: 5px; /*padding: 5px 0px; */ /* set all to zero for images */
	color: #FFFF66;
    background: #134473 url(/images/nav_hover.gif) repeat-x; /* color specified in case image unavailable */
    text-decoration: none; /* remove underlines */
    border-color : rgb(206, 190, 140);
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220); /* link row seperators */
}
.flyout a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    padding: 5px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #FFFF66;
    background: #134473 url(/images/nav_hover.gif) repeat-x; /* color specified in case image unavailable */
    border-color : rgb(161, 141, 112);
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220); /* link row seperators */
}


.flyout a.ekflexmenu_imglnk {
  background-color: #FFF3E7;
  border-style: none;
  display: block;
  /*padding: 0.5em 0;*/
}
