/*                                                                          */
/* 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.     */
/*                                                                          */




.side_expand .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    background: inherit;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    border: none;
    width: 153px;
}

.side_expand .ekflexmenu_submenu,
.side_expand .ekflexmenu_submenu_hover,
.side_expand .ekflexmenu_submenu_parent,
.side_expand .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
    font-weight: bold;

}

.side_expand UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
    list-style: none;
}

.side_expand LI a
{
	/* LI; container for menu items (typically either links or sub-menus). */
   display: block;
}

.side_expand .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
      
}

.side_expand .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). */

}

/* Nested menu items */
.side_expand .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.side_expand .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.side_expand .ekflexmenu_submenu_items_hidden .ekflexmenu_submenu_items_hidden
{
	/* Rule is applied to nested submenus. Hidden included in-case */
    margin-left: 0px;
    
}

/* Button menu items, controls visibility of associated sub-menus */
.side_expand .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: black;
	border-bottom: #e5e5e5 1px solid;

	padding: 4px 0px 4px 7px;
}

.side_expand .ekflexmenu_button:focus,
.side_expand .ekflexmenu_button:hover,
.side_expand .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
    color: black;
    background: #EFF3F7;
    border-bottom: #e5e5e5 1px solid;
    padding: 4px 0px 4px 7px;

}
.side_expand .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
color: black;
background: #EFF3F7;
text-decoration: none;
border-bottom: #e5e5e5 1px solid;
padding: 4px 0px 4px 7px;

}
.side_expand .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
color: black;
background: #EFF3F7;
 border-bottom: #e5e5e5 1px solid;
padding: 4px 0px 4px 7px;
}

/* images */
.side_expand .ekflexmenu_submenu_items a img, 
.side_expand .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. */

}

/* Link menu items */
.side_expand a.ekflexmenu_link, 
.side_expand a.ekflexmenu_link:link, 
.side_expand a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    color: black;
    background: inherit;
    border-bottom: #e5e5e5 1px solid;
padding: 4px 0px 4px 7px;
}
/*.ekflexmenu_submenu_items a:hover */
.side_expand a.ekflexmenu_link:hover, 
.side_expand a.ekflexmenu_link:active, 
.side_expand a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
  background: #EFF3F7;  
    text-decoration: underline;
}

.side_expand a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    color: black;
    background: #EFF3F7;
    border-bottom: #e5e5e5 1px solid;
padding: 4px 0px 4px 7px;
}
.side_expand a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    color: black;

    background: #EFF3F7;
    border-bottom: #e5e5e5 1px solid;
padding: 4px 0px 4px 7px;
}