/*                                                                          */
/* 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.     */
/*                                                                          */

.list .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    /*width: 148px;*/
    z-index:100;
    position:relative;
}

.list .ekflexmenu_submenu,
.list .ekflexmenu_submenu_hover,
.list .ekflexmenu_submenu_parent,
.list .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	top: 0px;
	left: 0px;
}

.list UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	/*list-style: none;
	/*margin: 0px;
	padding: 0px;*/
	float:right;
}

.list LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	/*display:inline;
	margin: 0px;
	padding: 0px;*/
	display:inline;
}

.list .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
}
#header-kv div.list ul li.ekflexmenu_menu_level_1 ul
{
	position:absolute;	
	top:25px;
	left:265px;
    background:#e9e9e9;
    margin:0;
    padding-top:4px;
    padding-bottom:4px;
    width:131px;
}
#header-kv div.list ul li.ekflexmenu_menu_level_1 ul li
{
	display:block;
	background:none;
	padding-bottom:2px;
	padding-top:2px;
	padding-left:9px;
	padding-right:18px;	
}
#header-kv div.list ul li.ekflexmenu_menu_level_1 ul li a
{
	display:block;	
	white-space:nowrap;
}
#header-kv div.list ul li.ekflexmenu_menu_level_1 ul li a:link
{
	font-weight:normal;	
}
#header-kv div.list ul li.ekflexmenu_menu_level_1 ul li a:visited
{
	font-weight:normal;	
}
#header-kv div.list ul li.ekflexmenu_menu_level_1 ul li a:hover
{
	font-weight:normal;	
}
#header-kv div.list ul li.ekflexmenu_menu_level_1 ul li a:active
{
	font-weight:normal;	
}
.list .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;
}