/*                                                                          */
/* 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.     */
/*                                                                          */

.business .ekflexmenu 
{ 
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
     /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-family: Arial, Helvetica, sans-serif;
    font-weight:normal;
    
    
}

.business .ekflexmenu_submenu,
.business .ekflexmenu_submenu_hover,
.business .ekflexmenu_submenu_parent,
.business .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	margin-left:0px;
	
}

.business ul , .business ol 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	margin: 0px;	
}


body .business li 
{
	list-style: none;
	list-style-image: none;
}

body .business li li
{
	/* LI; container for menu items (typically either links or sub-menus). */
	
	margin:0 0 0 15px;               
	padding: 0;
	list-style: none;
	list-style-image: url(../images/bullet_black.gif);
   
}

.business .ekflexmenu_submenu_items{
	/* DIV; container for menu lists. */
    /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
   /* margin:10px 0 15px 0;*/
   list-style-type:decimal;
   margin-bottom:10px;
}

.business .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 */
.business .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.business .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.business .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: 5px; /* indents menu items, accumulating with each nesting level */
    /*border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */
}

/* Button menu items, controls visibility of associated sub-menus */
.business .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). */
    display: block;
    padding: 0px 0px 10px 0;
    color:black;
    font-size:14px;
    font-weight:bold;
    text-decoration:none;
}

.business .ekflexmenu_button:focus,
.business .ekflexmenu_button:hover,
.business .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
	display: block;
    padding: 0px 0px 10px 0;
    color:black;
    font-size:14px;
    font-weight:bold;
    text-decoration:none;
	}
	
	
.business .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
    display: block;
    padding: 0px 0px;
    font-size:13px;
    color:#999999;
    text-indent:0px;
}
.business .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
    display: block;
    padding: 0px 0px;
    color:#999999;
    text-indent: 0px;

}

/* images */
.business .ekflexmenu_submenu_items a img, 
.business .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 */
.business a.ekflexmenu_link, 
.business a.ekflexmenu_link:link, 
.business a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 0px 0px 0px 0px;
    text-indent:0px;
    color:#5e7392;
    display: block; /* force one link per row */
	font-size:12px;
	text-decoration:none;
	margin: 0 0 0 15px;               
}
/*.ekflexmenu_submenu_items a:hover */
.business a.ekflexmenu_link:hover, .business a.ekflexmenu_link:active, .business a.ekflexmenu_link:focus
{
	/* A; hovered version of ekflexmenu_link, see above... */
    text-indent: 0px;
    color:Black;/* orange; #5e7392;*/
    display: block; /* force one link per row */
	font-size:12px;

}

.business a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    text-indent: 0px;
    color:#5e7392;
    display: block; /* force one link per row */
	font-size:12px;
	text-decoration:none;
}
.business a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    text-indent: 0px;
    color:#5e7392;   
    display: block; /* force one link per row */
    font-size:12px;
    text-decoration:none;

}



