/*                                                                          */
/* 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.     */
/*                                                                          */

.subnav .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    width: 80%; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 13px;
    font-family: Sans-Serif;
    /*background:#EBE9DF; /* shows up on left side, widens with nesting level */
	border-bottom:2px solid #D2D0C8;
	border-top:2px solid #D2D0C8;
    margin:0 auto;
}


.ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    width: 80%; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 13px;
    font-family: Sans-Serif;
    /*background:#EBE9DF; /* shows up on left side, widens with nesting level 
	border-bottom:2px solid #D2D0C8;
	border-top:2px solid #D2D0C8;*/
    margin:0 auto;
}
.subnav .ekflexmenu_submenu,
.subnav .ekflexmenu_submenu_hover,
.subnav .ekflexmenu_submenu_parent,
.subnav .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	position: relative;
	top: 0px;
	left: 0px;
}

.subnav UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.subnav LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;


}

.subnav .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    
}
.tabnav .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    border-top:none;
}
.subnav .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 */
.subnav .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.subnav .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.subnav .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: 13px; /* indents menu items, accumulating with each nesting level */
    border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */
}
/*Used for main menu title*/
.subnav .ekflexmenu_menutitle
{
	padding: 5px 0px;  
    color:#3e2342;
	width: 100%; 
	text-align:center;
    text-decoration: none;

	background-image:url(bg_subnav2.jpg) repeat-x; 
	background-position:bottom left;
}
.subnav .ekflexmenu_img
{
	padding-right: 5px;  
}

/* Link menu items */

.subnav a.ekflexmenu_link, 
.subnav a.ekflexmenu_link:link, 
.subnav a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 0px 0px 80px 0px;
    /*text-indent: 15px;*/
    color:#466A82;    
    text-decoration: none;
	/*background-color:#EBE9DF;*/
	line-height:1.5em;
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */    
}
/*.ekflexmenu_submenu_items a:hover */


.subnav a.ekflexmenu_link:hover, 
.subnav a.ekflexmenu_link:active, 
.subnav a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    padding: 0px 0px 80px 0px;
    /*text-indent: 15px;*/
	line-height:1.5em;
    color:#466A82;
	/*font-weight:bold;*/
    text-decoration:underline;
	/*background-color:#EBE9DF;	*/
	display: block; 
	width: 100%;
}

.subnav a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    padding: 0px 0px 10px 0px;
    /*text-indent: 15px;*/
	line-height:1.5em;
	color:#D98129;
	display: block; 
	font-weight:bold;
	text-decoration:underline;
	width: 100%;
}
.subnav a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
   padding: 0px 0px 10px 0px;
    /*text-indent: 15px;*/
	line-height:1.5em;
    color:#466A82;
	/*font-weight:bold;*/
    text-decoration:underline;
	/*background-color:#EBE9DF;*/
	display: block; 
	width: 100%;
}
