﻿/*                                                                          */
/* 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.     */
/*                                                                          */

.ekflexmenu .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: #333;
    width: 98%; /* can be overridden in the primary div-containers (whose class = ekflexmenu) style */
    font-size: 12px;
	margin-top:10px;
    font-family: Sans-Serif;
    background: none; /* shows up on left side, widens with nesting level */
    
}

.ekflexmenu .ekflexmenu_submenu,
.ekflexmenu .ekflexmenu_submenu_hover,
.ekflexmenu .ekflexmenu_submenu_parent,
.ekflexmenu .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	position: relative;
	top: 0px;
	left: 0px;
}

.ekflexmenu UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding: 0px;
}

.ekflexmenu LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:inline;
	margin: 0px;
	padding: 0px;
}

.ekflexmenu .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
}

.ekflexmenu .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 */
.ekflexmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items, 
.ekflexmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.ekflexmenu .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 */
.ekflexmenu .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: none;
    padding: 2px 0px 0 0;
    border-bottom:#dfdfdf solid 1px;
    font-weight: normal;
    color: #333;
    background: none; /* color specified in case image unavailable */
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.ekflexmenu .ekflexmenu_button:focus,
.ekflexmenu .ekflexmenu_button:hover,
.ekflexmenu .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
    display: block;
    padding: 2px 0px 0 0;
    border-bottom:#dfdfdf solid 1px;
    font-weight: normal;
    color:#EB2227;
    background: none; /* color specified in case image unavailable */
    text-indent: 10px;
    text-decoration:none;
    width: 100%; /* capture on-click for entire row that the button occupies */
}
.ekflexmenu .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    font-size:20px;
   
	
    color:#EB2227;
    background: none; /* color specified in case image unavailable */
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies */

}
.ekflexmenu .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
    display: block;
    padding: 5px 0px;
    font-weight: bold;
    color: #EB2227;
    background: none; /* color specified in case image unavailable */
    text-indent: 10px;
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration:none;
}

/* images */
.ekflexmenu .ekflexmenu_submenu_items a img, 
.ekflexmenu .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 */
.ekflexmenu a.ekflexmenu_link, 
.ekflexmenu a.ekflexmenu_link:link, 
.ekflexmenu a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
    color: #333;
    font-size:11px;
    text-decoration: none;
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */
    border-bottom: 1px solid rgb(220, 220, 220);
}
/*.ekflexmenu_submenu_items a:hover */
.ekflexmenu a.ekflexmenu_link:hover, 
.ekflexmenu a.ekflexmenu_link:active, 
.ekflexmenu a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
    color: #EB2227;
    background : none;
    text-decoration: none;
	display: block; 
	width: 100%;
    
}
.ekflexmenu a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
	color: #EB2227;
    
	text-decoration: none;
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.ekflexmenu a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
    padding: 0px 0px 0px 0px;
    text-indent: 10px;
	color: #333;
    background: none;
    border-color : rgb(161, 141, 112);
	display: block; 
	width: 100%;
    border-bottom: 1px solid rgb(220, 220, 220);
}
.ekflexmenu .ekflexmenu_menu_level_1 a{color:#EB2227; text-decoration:none; font-size:12px; border-bottom: 1px solid rgb(220, 220, 220); text-indent:none;}
.ekflexmenu .ekflexmenu_menu_level_2 a{color:#EB2227; text-decoration:none; font-size:12px; font-weight:normal; border-bottom: 1px solid rgb(220, 220, 220);}
.ekflexmenu .ekflexmenu_menu_level_2 li a, .ekflexmenu .ekflexmenu_menu_level_2 li a:hover, .ekflexmenu .ekflexmenu_menu_level_2 li a:active{color:#EB2227; text-decoration:none; margin:0 0 0 10px; font-size:12px; border-bottom: 1px solid rgb(220, 220, 220); background: url('/images/templates/arrow_nav_bar_level_1.jpg') no-repeat -5px 0;}
.ekflexmenu .ekflexmenu_menu_level_2 li li a, .ekflexmenu .ekflexmenu_menu_level_2 li li a:hover{color:#EB2227; text-decoration:none; font-size:12px; border-bottom: 1px solid rgb(220, 220, 220); background: url('/images/templates/arrow_nav_bar_level_2.jpg') no-repeat -5px 0;}

