/*                                                                          */
/* 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.     */
/*                                                                          */

.sidemenu 
{
    margin-top:5px;
    padding-bottom:6px;
    background:#623409 url(/images/bg_sidenav_bottom.gif) bottom no-repeat;
    width:173px;
    
}

.sidemenu .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: #ffffff;
    width: 173px; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 11px;
    line-height:12px;
    font-family:Verdana,Arial,Helvetica,sans-serif;
    background: #623409 url(/images/bg_sidenav_top.gif) top no-repeat;
    padding-top:2px;
    padding-bottom:8px;
}

.sidemenu .ekflexmenu_submenu,
.sidemenu .ekflexmenu_submenu_hover,
.sidemenu .ekflexmenu_submenu_parent,
.sidemenu .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	
}

.sidemenu UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.sidemenu LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:block;
	margin: 7px 0px 0px 10px;
	padding: 0px 0px 0px 1.1em;
	background-image:url("/images/bullet_sidenav.gif");
    background-position:0 0.2em;
    background-repeat:no-repeat;
}

.sidemenu .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
}

.sidemenu .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 */
.sidemenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.sidemenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.sidemenu .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 */
}

/* images */
.sidemenu .ekflexmenu_submenu_items a img, 
.sidemenu .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 */
.sidemenu a.ekflexmenu_link, 
.sidemenu a.ekflexmenu_link:link, 
.sidemenu a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 0px 0px 0px 0px;
    color: #ffffff;
    background: none;
    text-decoration: none;
    width: 100%; /* fill entire row with link */
    border:none;
}
/*.ekflexmenu_submenu_items a:hover */
.sidemenu a.ekflexmenu_link:hover, 
.sidemenu a.ekflexmenu_link:active, 
.sidemenu a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    background: none;
    text-decoration: underline;
    border:none;
	width: 100%;
}

.sidemenu a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
	color: #F7EB7B;
    background: none;
    border:none;
	width: 100%;
	text-decoration:none;
}
.sidemenu a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    background: none;
    border:none;
	width: 100%;
	text-decoration:underline;
}

/* make only the first level bold */
.sidemenu .ekflexmenu_startlevel a.ekflexmenu_link,
.sidemenu .ekflexmenu_startlevel a.ekflexmenu_link_selected 
{
    font-weight:bold;
}
.sidemenu .ekflexmenu_startlevel .ekflexmenu_submenu_items a.ekflexmenu_link,
.sidemenu .ekflexmenu_startlevel .ekflexmenu_submenu_items a.ekflexmenu_link_selected
{
    font-weight:normal;
}
