/*                                                                          */
/* 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.     */
/*                                                                          */

.expand1_508 .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    /*width: 243px;  can be overridden in the primary div-containers (whose class = ekflexmenu) style */
	margin: 0;
	width: 100%;
}

.expand1_508 .ekflexmenu_accessible_menu_start,
.expand1_508 .ekflexmenu_accessible_menu_startheading,
.expand1_508 .ekflexmenu_accessible_menu_startlink,
.expand1_508 .ekflexmenu_accessible_submenu_selected_message,
.expand1_508 .ekflexmenu_accessible_menuitem_selected_message,
.expand1_508 .ekflexmenu_accessible_menu_end,
.expand1_508 .ekflexmenu_accessible_menu_endlink
{
	/* These items support 508-Compliance, and are normally hidden, but */
	/* are visible to page readers and text-browsers for accessibility). */
	position: absolute;
	overflow: hidden;
	top: -10000px;
	left: -10000px;
	height: 1px;
	width: 1px;
}

.expand1_508 .ekflexmenu_submenu,
.expand1_508 .ekflexmenu_submenu_hover,
.expand1_508 .ekflexmenu_submenu_parent,
.expand1_508 .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	position: relative;
	top: 0px;
	left: 0px;
}

.expand1_508 UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.expand1_508 LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.expand1_508 .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
}

.expand1_508 .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;
}

/* Nested menu items */
.expand1_508 .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.expand1_508 .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.expand1_508 .ekflexmenu_submenu_items_hidden .ekflexmenu_submenu_items_hidden
{
	/* Rule is applied to nested submenus. Hidden included in-case */
	/* Javascript is not supported and hidden submenus are made visible. */
	margin-left: 0px; /* indents menu items, accumulating with each nesting level */
    border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */
    margin-top: -7px;
	margin-bottom: -7px;
}

/* Button menu items, controls visibility of associated sub-menus */
.expand1_508 .ekflexmenu_button
{
	/* 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). */
	color: #2a3e5a;
	text-decoration: none;
	font-weight: normal;
	font-size: 13px;
    display: block;
	padding:  0 20px 5px 0;
	margin: 10px 0;
    text-decoration: none;
}

.expand1_508 .ekflexmenu_button:focus,
.expand1_508 .ekflexmenu_button:hover,
.expand1_508 .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
	color: #152634;
	text-decoration: none;
	font-weight: normal;
	font-size: 13px;
    display: block;
	padding:  0 20px 5px 0;
	margin: 10px 0;
    text-decoration: none;
}
.expand1_508 .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
	color: #152634;
	text-decoration: none;
	font-weight: normal;
	font-size: 13px;
    display: block;
	padding:  0 20px 5px 0;
	margin: 10px 0;
    text-decoration: none;
}
.expand1_508 .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
	color: #152634;
	text-decoration: none;
	font-weight: normal;
	font-size: 13px;
    display: block;
	padding:  0 20px 5px 0;
	margin: 10px 0;
    text-decoration: none;
}

/* images */
.expand1_508 .ekflexmenu_submenu_items a img, 
.expand1_508 .ekflexmenu_submenu_items_hidden a img {
	/* IMG; menu-item image, selected by CMS, can be used */
	/* with or in place of the textual title of the link. */
	border-width: 0px;
}

/* Link menu items */
.expand1_508 a.ekflexmenu_link, 
.expand1_508 a.ekflexmenu_link:link, 
.expand1_508 a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
	font-weight: normal;
	padding:  0 20px 5px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;    
}
/*.ekflexmenu_submenu_items a:hover */
.expand1_508 a.ekflexmenu_link:hover, 
.expand1_508 a.ekflexmenu_link:active, 
.expand1_508 a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
	font-weight: normal;
	padding:  0 20px 5px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;     
}

.expand1_508 a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	font-weight: normal;
	padding:  0 20px 5px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;     
}
.expand1_508 a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	font-weight: normal;
	padding:  0 20px 5px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;   
}

/* Link menu items */
.expand1_508 a.ekflexmenu_link_last, 
.expand1_508 a.ekflexmenu_link_last:link, 
.expand1_508 a.ekflexmenu_link_last:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
	font-weight: normal;
	padding:  0 20px 12px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;    
}
/*.ekflexmenu_submenu_items a:hover */
.expand1_508 a.ekflexmenu_link_last:hover, 
.expand1_508 a.ekflexmenu_link_last:active, 
.expand1_508 a.ekflexmenu_link_last:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
	font-weight: normal;
	padding:  0 20px 12px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;     
}

.expand1_508 a.ekflexmenu_link_last_selected {
	/* A; selected version of ekflexmenu_link, see above... */
	font-weight: normal;
	padding:  0 20px 12px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;     
}
.expand1_508 a.ekflexmenu_link_last_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
	font-weight: normal;
	padding:  0 20px 12px 0;
	margin: 0;
	font-size: 11px;
	line-height: 13px;
   	color: #152634;    
    display: block; /* force one link per row */
    margin: 0;
    text-decoration: none;   
}