/*                                                                          */
/* 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.     */
/*                                                                          */

.sidenav .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255);
    width: 110px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 11px;
    font-family: Arial;
    background: #FFFFFF; /* shows up on left side, widens with nesting level */
}
.sidenav a
{
	text-decoration: none;
}
.sidenav a:hover
{
	text-decoration: none;
}

.sidenav div.ekflexmenu_submenu,
.sidenav .ekflexmenu_submenu_hover,
.sidenav .ekflexmenu_submenu_parent,
.sidenav .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	position: relative;
	top: 0px;
	left: 0px;
}

.sidenav UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	display:inline;
	margin: 0px;
	padding: 0px;
}

.sidenav LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
	line-height:12px;	
}

.sidenav .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
}

.sidenav .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 */
.sidenav .ekflexmenu_menu_level_3 .ekflexmenu_submenu_items, 
.sidenav LI.ekflexmenu_startlevel,
.sidenav .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.sidenav .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: 10px; /* 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 */
.sidenav a.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). 
	text-indent: 10px;
	*/
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    /*color: #868686;*/color: #333333;
    background: #ffffff;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none; 
    /* 
    background-image:url(../images/menu_closed.png);
    background-position:left center;
    background-repeat:no-repeat;
	*/
    border-bottom: 1px solid #CCCCCC;
   
}

.sidenav a.ekflexmenu_button:focus,
.sidenav a.ekflexmenu_button:hover,
.sidenav a.ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... 
	text-indent: 10px;
	*/
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    /*color: #3971BD;*/color: #3B73B9;
    background: #FFFFFF;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration:none;
    /* 
    background-image:url(../images/menu_closed.png);
    background-position:left center;
    background-repeat:no-repeat;
	*/
    border-bottom: 1px solid #CCCCCC;
}
.sidenav a.ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... 
	text-indent: 10px;
	*/
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    /*color: #3971BD;*/color: #3B73B9;
    background: #FFFFFF;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
    /* 
    background-image:url(../images/menu_closed.png);
    background-position:left center;
    background-repeat:no-repeat;
	*/
    border-bottom: 1px solid #CCCCCC;
}
.sidenav a.ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... 
	text-indent: 10px;
	*/
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    /*color: #3971BD;*/color: #3B73B9;
    background: #FFFFFF;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
    /* 
    background-image:url(../images/menu_closed.png);
    background-position:left center;
    background-repeat:no-repeat;
	*/
    border-bottom: 1px solid #CCCCCC;
}

/* images */
.sidenav a.ekflexmenu_submenu_items a img, 
.sidenav a.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 */
.sidenav a.ekflexmenu_link, 
.sidenav a.ekflexmenu_link:link, 
.sidenav a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). 
	text-indent: 20px;
	*/
    padding: 4px 0px 4px 0px;
    /*margin-left:10px;*/
    /*color: #868686;*/color: #333333;
    background: #FFFFFF;
    text-decoration: none;
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */
    border-bottom: 1px dotted #CCCCCC;
    
}
/*.ekflexmenu_submenu_items a:hover */
.sidenav a.ekflexmenu_link:hover, 
.sidenav a.ekflexmenu_link:active, 
.sidenav a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above...  
	text-indent: 20px;
	*/
    padding: 4px 0px 4px 0px;
    /*margin-left:10px;*/
    /*color: #3971BD;*/color: #3B73B9;
    background : #FFFFFF;
    text-decoration: none;
	display: block; 
	width: 100%;
    border-bottom: 1px dotted #CCCCCC;
}

.sidenav a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above...  
	text-indent: 20px;
	*/
    padding: 4px 0px 4px 0px;
    /*margin-left:10px;*/
	/*color: #3971BD;*/color: #3B73B9;
    background: #FFFFFF;
	display: block; 
	width: 100%;
    border-bottom: 1px dotted #CCCCCC;
    text-decoration:none;
}
.sidenav a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above...  
	text-indent: 20px;
	*/
    padding: 4px 0px 4px 0px;
    /*margin-left:10px;*/
	/*color: #3971BD;*/color: #3B73B9;
    background: #FFFFFF;
	display: block; 
	width: 100%;
    border-bottom: 1px dotted #CCCCCC;
    text-decoration:none;
}

.sidenav .ekflexmenu_menu_level_1 .ekflexmenu_submenu_items
{
	margin:0px;
	padding:0px;
	font-weight:bold;
}


/*indent all non top level links and sub menus*/
.sidenav .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items a,
.sidenav .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items a:hover,
.sidenav .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items a:focus,
.sidenav .ekflexmenu_menu_level_2 .ekflexmenu_submenu_items a:visited,
.sidenav .ekflexmenu_menu_level_3 .ekflexmenu_submenu_items a,
.sidenav .ekflexmenu_menu_level_3 .ekflexmenu_submenu_items a:hover,
.sidenav .ekflexmenu_menu_level_3 .ekflexmenu_submenu_items a:focus,
.sidenav .ekflexmenu_menu_level_3 .ekflexmenu_submenu_items a:visited
{
	font-weight:normal;
	padding-left:10px;
}