/*                                                                          */
/* 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.     */
/*                                                                          */

.leftmenu .ekflexmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    width:195px;
    margin:3px 0 0px 5px; padding:0;
		font-size:13px;letter-spacing:-1px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background: #fff;	/*color:#e89b40;*/ /* shows up on left side, widens with nesting level */
  border:0;
}

.leftmenu .ekflexmenu_submenu,
.leftmenu .ekflexmenu_submenu_hover,
.leftmenu .ekflexmenu_submenu_parent,
.leftmenu .ekflexmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	background-color: Transparent;
	border: 0px;
	float: left;
	display: block;
	clear: both;
	width: 190px;
	
}

.leftmenu UL 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	list-style: none;
	margin: 0px;
	padding: 0px;

}

.leftmenu LI
{
	/* LI; container for menu items (typically either links or sub-menus). */
	display:block;
	margin: 0px;
	padding: 0px;
	float: left;
	clear: both;

}

.leftmenu .ekflexmenu_submenu_items {
	/* DIV; container for menu lists. */
    overflow: hidden; /* truncate what cannot fit */
    /*border-bottom: solid 2px rgb(71, 71, 71);*/
	margin-top: 0px;
	margin-bottom: 0px;
	font-weight: bold;
}



/* Nested menu items */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items,
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items_hidden, 
.leftmenu .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: 0px; /* indents menu items, accumulating with each nesting level */
    border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */
}

.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items UL
{
	/* Rule is applied to nested submenus. Hidden included in-case */
	/* Javascript is not supported and hidden submenus are made visible. */
	margin-left: 0px; /* 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 */
.leftmenu .ekflexmenu_button,
.leftmenu a.ekflexmenu_link, 
.leftmenu a.ekflexmenu_link:link, 
.leftmenu a.ekflexmenu_link:visited,
.leftmenu .ekflexmenu_button:focus,
.leftmenu .ekflexmenu_button:hover,
.leftmenu .ekflexmenu_button_hover
{
	/* 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). */
	font-family:Arial, Verdana;
	background-image: url('/images/rightBulletBlueLight.jpg');
	background-repeat: no-repeat;
	background-position: center right;
	padding-right: 15px;    font-size:11px;
    letter-spacing:0px;
  /*  width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}

.leftmenu .ekflexmenu_button,
.leftmenu .ekflexmenu_button:focus,
.leftmenu .ekflexmenu_button:hover,
.leftmenu .ekflexmenu_button_hover,
.ekflexmenu_link,
.ekflexmenu_link:link,
.ekflexmenu_link:visited
{
    color: #3183bb;
}

.ekflexmenu_menu_level_1 a.ekflexmenu_link, 
.ekflexmenu_menu_level_1 a.ekflexmenu_link:link, 
.ekflexmenu_menu_level_1 a.ekflexmenu_link:visited{
	color: #EEA437;
}



.leftmenu .ekflexmenu_button_selected,
.leftmenu .ekflexmenu_button_selected_hover
{
	/* A; selected version of .ekflexmenu_button, see above... */
	font-family:Arial, Verdana;
    display: block;
    padding: 2px 0;   
	margin:0;
    font-weight: bold;font-size:11px;
    color: Orange;
 /*   color: #eea437;  /* 0A9C6A */ 
    letter-spacing:0px;
  /* background: transparent url(/images/arrow-subnavon.gif) no-repeat .65em .45em  ; /* color specified in case image unavailable */
/*    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
}
    
 
/*.ekflexmenu_submenu_items a:hover */
.leftmenu a.ekflexmenu_link:hover, 
.leftmenu a.ekflexmenu_link:active, 
.leftmenu a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
/*   font-family:Arial, Verdana;
    display: block;
        padding: 2px 0 2px 18px;   margin:0;
    font-weight: bold;
    color: #FA9A00;  
    font-size:11px;
    letter-spacing:0px;
    background: #fff; */
    /*width: 100%; */
    text-decoration: none;

}

.ekflexmenu_menu_level_2 .ekflexmenu_button,
.ekflexmenu_menu_level_2 .ekflexmenu_button:focus,
.ekflexmenu_menu_level_2 .ekflexmenu_button:hover,
.ekflexmenu_menu_level_2 .ekflexmenu_button_hover,
.ekflexmenu_menu_level_2_hover .ekflexmenu_button,
.ekflexmenu_menu_level_2_hover .ekflexmenu_button:focus,
.ekflexmenu_menu_level_2_hover .ekflexmenu_button:hover,
.ekflexmenu_menu_level_2_hover .ekflexmenu_button_hover
{
		color: #EEA437;
}


.leftmenu a.ekflexmenu_link_selected {
 font-family:Arial, Verdana;
    display: block;
    padding: 2px 0; 
	margin:0;
    font-weight: bold;
    color: #eea437;  
    font-size:11px;
    letter-spacing:0px;
    background: #fff; 
    text-decoration: none;}
    

.sub-menu a.ekflexmenu_link_selected:hover {
	/* A; selected and hovered version of ekflexmenu_link, see above... */
   display: block;
    padding: 2px 0 2px 18px;margin:0;
    font-weight: bold;
    color: #eea437; /* 0A9C6A */
    background: #fff ; /* color specified in case image unavailable */
    width: 100%; /* capture on-click for entire row that the button occupies */
    text-decoration: none;
    }

    
 

/* images */
.leftmenu .ekflexmenu_submenu_items a img, 
.leftmenu .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;
}

/***************** 2 Button menu items, 
*********************** controls visibility of associated sub-menus */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .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: block;
    padding: 3px 0 3px 11px; margin:0 10px 0 19px;width:150px;
    /*color:#e89b40;*/ font-size:11px;font-weight:normal;line-height:12px;
  /* background: transparent url(/images/arrow-subnav.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
   background-image: none !important;
   text-decoration: none;
}

.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button:focus,
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button:hover,
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
     display: block;
   padding: 3px 0 3px 11px; margin:0 10px 0 19px;width:150px;
    /*color: #eea437;*/
     font-size:11px;font-weight:normal;line-height:12px;
 /*  background: transparent url(/images/arrow-subnavon.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
 background-image: none !important;
   text-decoration: none;
}
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
     display: block;
   padding: 3px 0 3px 11px; margin:0 10px 0 19px;width:150px;
    color: #eea437; font-size:11px;font-weight:normal;line-height:12px;
/*   background: transparent url(/images/arrow-subnavon.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
background-image: none !important;
   text-decoration: none;
   }
   
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
     display: block;
  padding: 3px 0 3px 11px; margin:0 10px 0 19px;width:150px;
    color: #eea437; font-size:11px;font-weight:normal;line-height:12px;
 /*  background: transparent url(/images/arrow-subnavon.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
 background-image: none !important;
   text-decoration: none;
}/*end*/


/********* Link menu items level 2 */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:link, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
   padding: 3px 0 3px 0; margin:0 10px 0 30px;width:150px;
   /*color:#e89b40;*/ font-size:11px;font-weight:normal;line-height:12px;
   background: #fff; text-decoration: none;  display: block; /* force one link per row */
 
   
   
}
/*.ekflexmenu_submenu_items a:hover */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:hover, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:active, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
     padding: 3px 0 3px 0; margin:0 10px 0 30px;width:150px;
   color: #eea437; /* 0A9C6A */
   font-size:11px;font-weight: normal;line-height:12px;
  background: #fff; text-decoration: none;  display: block; /* force one link per row */
  
   

}

.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
   padding: 3px 0 3px 0; margin:0 10px 0 30px;width:150px;
   color: Orange; /* 0A9C6A */
   font-size:11px;font-weight:bold;line-height:12px;
   background: #fff; text-decoration: none;  display: block; /* force one link per row */
    
}
/*** end level 2 links */

/********* Link menu items level 3 */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:link, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
   padding: 3px 0 3px 0; margin:0 10px 0 40px;width:130px;
   /*color:#e89b40;*/ font-size:11px;font-weight:normal;line-height:12px;
   background: #fff; text-decoration: none;  display: block; /* force one link per row */
   
}
/*.ekflexmenu_submenu_items a:hover */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:hover, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:active, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
     padding: 3px 0 3px 0; margin:0 10px 0 40px;width:130px;
   color: #eea437; /* 0A9C6A */
   font-size:11px;font-weight: normal;line-height:12px;
  background: #fff; text-decoration: none;  display: block; /* force one link per row */
 }

.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
   padding: 3px 0 3px 0; margin:0 10px 0 40px;width:130px;
   color: #eea437; /* 0A9C6A */
   font-size:11px;font-weight:bold;line-height:12px;
   background: #fff; text-decoration: none;  display: block; /* force one link per row */
    
}
/*** end level 3 links */

/********* Link menu items level 4 */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:link, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
   padding: 3px 0 3px 0; margin:0 10px 0 50px;width:120px;
   /*color:#e89b40;*/ font-size:11px;font-weight:normal;line-height:12px;
   background: #fff; text-decoration: none;  display: block; /* force one link per row */
   
}
/*.ekflexmenu_submenu_items a:hover */
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:hover, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:active, 
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link:focus  {
	/* A; hovered version of ekflexmenu_link, see above... */
     padding: 3px 0 3px 0; margin:0 10px 0 50px;width:120px;
   color: #eea437; /* 0A9C6A */
   font-size:11px;font-weight: normal;line-height:12px;
  background: #fff; text-decoration: none;  display: block; /* force one link per row */
 }

.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items a.ekflexmenu_link_selected {
	/* A; selected version of ekflexmenu_link, see above... */
   padding: 3px 0 3px 0; margin:0 10px 0 50px;width:120px;
   color: #eea437; /* 0A9C6A */
   font-size:11px;font-weight:normal;line-height:12px;
   background: #fff; text-decoration: none;  display: block; /* force one link per row */
    
}
/*** end level 4 links */

.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .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: block;
    padding: 3px 0 3px 11px; margin:0 10px 0 30px;width:140px;
    /*color:#e89b40;*/ font-size:11px;font-weight:normal;line-height:12px;
   background: transparent url(/images/arrow-subnav.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
   text-decoration: none;
}

.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button:focus,
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button:hover,
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button_hover
{
	/* A; hovered version of .ekflexmenu_button, see above... */
     display: block;
   padding: 3px 0 3px 11px; margin:0 10px 0 30px;width:140px;
    color: #eea437; font-size:11px;font-weight:normal;line-height:12px;
   background: transparent url(/images/arrow-subnavon.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
   text-decoration: none;
}
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button_selected
{
	/* A; selected version of .ekflexmenu_button, see above... */
     display: block;
   padding: 3px 0 3px 11px; margin:0 10px 0 30px;width:140px;
    color: #eea437; font-size:11px;font-weight:normal;line-height:12px;
   background: transparent url(/images/arrow-subnavon.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
   text-decoration: none;
   }
   
.leftmenu .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_submenu_items .ekflexmenu_button_selected_hover
{
	/* A; hovered version of .ekflexmenu_button_selected, see above... */
     display: block;
  padding: 3px 0 3px 11px; margin:0 10px 0 30px;width:140px;
    color: #eea437; font-size:11px;font-weight:normal;line-height:12px;
   background: transparent url(/images/arrow-subnavon.gif) no-repeat 0em .45em  ; /* color specified in case image unavailable */
   text-decoration: none;
}/*end*/


.leftmenu .ekmenu_unorderedlist_item
{
    background-color: Red;   
}

.leftmenu .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;
	color: Orange !important;
	background-image: none !important;
	padding-left: 20px;
}

.ekflexmenu_link
{
  /*  color: #eea437 !important;*/
    background-image: none;
}

.ekflexmenu_submenu_items_hidden a
{
    background-image: none !important;
}
.ekflexmenu_submenu_items_hidden li
{
	width: 170px;
}