/*                                                                          */
/* NOTICE:                                                                  */
/*    To support more than one-single SmartMenu 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 SmartMenu       */
/*    within a div-tag, whose class-name will be derived from the filename. */
/*                                                                          */
/*    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.     */
/*                                                                          */

.wu_smart_dropdown .ekmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
	/*The background color of the entire menu changes (the left line color basically)*/
	color: #000; /* default text color */
	font-size: 14px;
	font-family: 'Raleway', Arial, sans-serif;
	background: #fff; /* shows up on left side, widens with nesting level */
	overflow:hidden;
	width:190px;    
		
}

.wu_smart_dropdown .ekmenu_start 
{
	/* DIV; wraps the menu-start link (normally hidden, but visible */
	/* to page readers and text-browsers for accessibility). */
	/* Only added if 508-Compliance is enabled. */
	/* Typical parent element: div.ekmenu */
	position: absolute;
	overflow: hidden;
	top: -10000px;
	left: -10000px;
	height: 1px;
	width: 1px;
	
}

.wu_smart_dropdown .ekmenu_end
{
	/* DIV; wraps the menu-end page-anchor (normally hidden, but */
	/* visible to page readers and text-browsers for accessibility). */
	/* Only added if 508-Compliance is enabled. */
	/* Typical parent element: div.ekmenu */
	position: absolute;
	overflow: hidden;
	top: -10000px;
	left: -10000px;
	height: 1px;
	width: 1px;
}

.wu_smart_dropdown .ekmenu_accessible_menu_startheading
{
	/* H2; wraps the skip-menu with a navigation-heading (normally hidden, */
	/* but available to page readers and text-browsers for accessibility). */
	/* Only added if 508-Compliance is enabled. */
	/* Typical parent element: div.ekmenu_start */
	position: absolute;
	overflow: hidden;
	top: -10000px;
	left: -10000px;
	height: 1px;
	width: 1px;
}

.wu_smart_dropdown .ekmenu_accessible_menu_startlink 
{
	/* A; wraps the skip-menu text with a navigation-link (normally hidden, */
	/* but available to page readers and text-browsers for accessibility). */
	/* Only added if 508-Compliance is enabled. */
	/* Typical parent element: h2.ekmenu_accessible_menu_startheading */
}

.wu_smart_dropdown .ekmenu_accessible_menu_endlink
{
	/* A; acts as a destination page anchor for the skip-menu */
	/* text with a navigation-link (normally hidden, but available */
	/* to page readers and text-browsers for accessibility). */
	/* Only added if 508-Compliance is enabled. */
	/* Typical parent element: h2.ekmenu_accessible_menu_startheading */
}

.wu_smart_dropdown .ekmenu_submenu,
.wu_smart_dropdown .ekmenu_submenu_hover,
.wu_smart_dropdown .ekmenu_submenu_parent,
.wu_smart_dropdown .ekmenu_submenu_parent_hover
{
	/* DIV; holds submenu items, such as a submenu title and links. */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	position: relative;
	top: 0px;
	left: 0px;
	cursor: pointer; 
	cursor: hand;
	
}

.wu_smart_dropdown .ekmenu_accessible_submenu_navheading
{
	/* H3; wraps each menu button title with a navigation-heading (normally hidden, */
	/* but available to page readers and text-browsers for accessibility). */
	/* Only added if 508-Compliance is enabled. */
	/* Typical parent element: div.ekmenu_submenu */
	font-weight: normal;
	font-size: 1em;
	margin: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}

.wu_smart_dropdown .ekmenu_accessible_submenu_btnlink
{
	/* A; wraps each menu button title with a navigation-anchor */
	/* (useful to page readers and text-browsers for accessibility). */
	/* Only added if 508-Compliance is enabled. */
	/* Typical parent element: span.ekmenu_button */
    	color: rgb(255, 255, 255); /* default text color */
	font-size: 1em;
	text-decoration: none;
	margin: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	width:100%;
	
}

.wu_smart_dropdown .ekmenu_button_selected .ekmenu_accessible_submenu_btnlink, 
.wu_smart_dropdown .ekmenu_button_selected_hover .ekmenu_accessible_submenu_btnlink 
{
	/*  */
	/* Typical parent element: span.ekmenu_button */
	color: #810101; /* default text color */
	font-size: 1em;
	text-decoration: none;
	margin: 0px 0px 0px 0px;
	
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	width:100%;
}

.wu_smart_dropdown .ekmenu_accessibility_hidden_text{
	/* SPAN; wraps text that should normally be hidden, but made */
	/* visible to page readers and text-browsers for accessibility). */
	/* Typical parent element: a.ekmenu_link_selected, and others... */
	position: absolute;
	overflow: hidden;
	top: -10000px;
	left: -10000px;
	height: 1px;
	width: 1px;
}

.wu_smart_dropdown .ekmenu_unorderedlist 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	/* Typical parent element: div.ekmenu_submenu_items */
	list-style: none;
	margin: 0px;
	padding: 0px;

	
}

.wu_smart_dropdown .ekmenu_unorderedlist_item 
{
	/* LI; container for menu items (typically either links or sub-menus). */
	/* Typical parent element: ul.ekmenu_unorderedlist */
	display:inline;
	margin: 0px;
	padding: 0px;
	
}

.wu_smart_dropdown .ekmenu_submenu_items {
	/* DIV; container for menu lists. */
	/* Typical parent element: div.ekmenu (root level), div.ekmenu_submenu */
    	/*overflow: hidden;  truncate what cannot fit */
    	/*border-bottom: solid 2px rgb(71, 71, 71);*/
    	width: 100%;/*This manages the width of the links within submenus*/
        
}

.wu_smart_dropdown .ekmenu_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). */
	/* Typical parent element: div.ekmenu (root level), div.ekmenu_submenu */
	display: none;
}

/* Nested menu items */
.wu_smart_dropdown .ekmenu_submenu_items .ekmenu_submenu_items, 
.wu_smart_dropdown .ekmenu_submenu_items .ekmenu_submenu_items_hidden, 
.wu_smart_dropdown .ekmenu_submenu_items_hidden .ekmenu_submenu_items_hidden
{
	/* Rule is applied to nested submenus. Hidden included in-case */
	/* Javascript is not supported and hidden submenus are made visible. */
	/* Typical parent element: (not applicable) */
	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 */
	padding-right: 0px;

}

/* Button menu items, controls visibility of associated sub-menus */
.wu_smart_dropdown .ekmenu_button
{
	/* SPAN; holds the title of the associated submenu, and typically acts as a */
	/* button (or folder) for the submenu. Can also hold images (background, etc). */
	/* Typical parent element: div.ekmenu_submenu, or else */
	/* h3.ekmenu_accessible_submenu_navheading if 508-Compliance is enabled. */
	display: block;
	padding: 5px 20px 5px 20px;
	
	
	font-weight: normal;
	color: #000; /* button-title text color */
	background: #FFCC33 url(../../cmsimages/SidebarMenu/firstLevel.gif) repeat-y; /* color specified in case image unavailable */
	border-bottom: 0px solid #FFF; /* link row seperators */
	width: 168px; 
    *width: 159px;  /*IE7*/
	 _width: 159px;   /*IE6*/
	text-decoration:none;
	
    	
}
.wu_smart_dropdown .ekmenu_button_hover
{
	/* SPAN; hovered version of .ekmenu_button, see above... */
	/* Typical parent element: div.ekmenu_submenu, or else */
	/* h3.ekmenu_accessible_submenu_navheading if 508-Compliance is enabled. */
	/*The background here changes the hover color of the main menu*/
	display: block;
	padding: 5px 20px 5px 20px;
	
	font-weight:normal;
	color: #000; /* button-title text color */
	background: #FFCC33 url(../../cmsimages/SidebarMenu/firstLevelHover.gif); /* color specified in case image unavailable */
	/*border-bottom: 1px solid #810101;  link row seperators */
	width: 168px; 
*width: 159px;  /*IE7*/
_width: 159px;   /*IE6*/  
	border-bottom: 0px solid #FFF;
	text-decoration:none;
	
 }
.wu_smart_dropdown .ekmenu_button_selected
{
	/* SPAN; selected version of .ekmenu_button, see above... */
	/* Typical parent element: div.ekmenu_submenu, or else */
	/* h3.ekmenu_accessible_submenu_navheading if 508-Compliance is enabled. */
	/*The background here changes the selected color of the main menu */
	display: block;
	padding: 5px 20px 5px 20px;
	
	font-weight:normal;
	color: #000; /* button-title text color */
	background: #FFCC33 url(../../cmsimages/SidebarMenu/firstLevelHover.gif) repeat-y; /* color specified in case image unavailable */
	width: 168px; 
*width: 159px;  /*IE7*/
_width: 159px;   /*IE6*/    	
text-decoration: none;
   	border-bottom: 0px solid #FFF;
	
}

.wu_smart_dropdown .ekmenu_button_selected_hover
{
	/* SPAN; hovered version of .ekmenu_button_selected, see above... */
	/* Typical parent element: div.ekmenu_submenu, or else */
	/* h3.ekmenu_accessible_submenu_navheading if 508-Compliance is enabled. */
	/*The background here changes the hover color of the main menu  */
	display: block;
	padding: 5px 20px 5px 20px;
	
	font-weight:normal;
	color: #000; /* button-title text color */
	background: #FFCC33 url(../../cmsimages/SidebarMenu/firstLevelHover.gif) repeat-y; /* color specified in case image unavailable */
	width: 168px; 
*width: 159px;  /*IE7*/
_width: 159px;   /*IE6*/  
  	text-decoration: none;
	cursor: pointer; 
	cursor: hand;
	border-bottom: 0px solid #FFF;
}


.wu_smart_dropdown .ekmenu_submenu_items .ekmenu_submenu_items .ekmenu_button_selected_hover,
.wu_smart_dropdown .ekmenu_submenu_items .ekmenu_submenu_items .ekmenu_button_hover
 {
	/*This changes the submenu hover and selected color*/
	display: block;
	padding: 5px 20px 5px 20px;
	font-weight:normal;
	color: #fff; /* button-title text color */
	background: #975c4f url(../../cmsimages/SidebarMenu/firstLevelSubHover.gif) repeat-y; /* color specified in case image unavailable */
	border-bottom: 0px solid #fff;
	text-decoration: none;
	width: 168px; 
}

.wu_smart_dropdown .ekmenu_submenu_items .ekmenu_submenu_items .ekmenu_button_selected


{
	/*This changes the submenu hover and selected color*/
	display: block;
	padding: 5px 20px 5px 20px;
	font-weight:normal;
	color: #fff; /* button-title text color */
	background: #975c4f url(../../cmsimages/SidebarMenu/firstLevelSubHover.gif) repeat-y; /* color specified in case image unavailable */
	border-bottom: 0px solid #fff;
	text-decoration: none;
	width: 168px; 
} 

.wu_smart_dropdown .ekmenu_submenu_items .ekmenu_submenu_items .ekmenu_button

{
	/*This changes the background color of the submenu*/
	padding: 5px 20px 5px 20px;
	background: #975c4f url(../../cmsimages/SidebarMenu/firstLevelSub.gif) repeat-y; /* color specified in case image unavailable */
	color: #fff;
	width: 168px; 
	border-bottom: 0px solid #fff;
}

/***** 1ST LEVEL MENU *****/
.wu_smart_dropdown .ekmenu_menu_level_0
{
	color: #000;
	font-weight:normal;
	width:190px;
	text-decoration: none;
	
	padding-bottom: 3px;
	
}
/* Link menu items    */
.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link, 
.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link:link, 
.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; 
	color: #000; /* link text color */
	background: #FFCC33 url(../../cmsimages/SidebarMenu/firstLevel.gif) repeat-y;
	text-decoration: none; /* remove underlines */
	display: block; /* force one link per row */
	border-bottom: 0px solid #fff;  /*link row seperators */
	font-weight:normal;
	width:168px;
	
    	
}

/*.ekmenu_submenu_items a:hover */
.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link:hover, 
.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link:active,
.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link:focus  {
	/* A; hovered version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px ; 
	color: #000;  /* hovered-link text color */
	background: #843031 url(../../cmsimages/SidebarMenu/firstLevelHover.gif) repeat-y; /* color specified in case image unavailable */
	text-decoration: none; 
	font-weight:normal;
	display: block; 
	border-bottom: 0px solid #fff;  /*link row seperators */
	width:168px;
	
}

.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link_selected {
	/* A; selected version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px ; 
	color: #000;
	background: #843031 url(../../cmsimages/SidebarMenu/firstLevelHover.gif) repeat-y; /* color specified in case image unavailable */
	font-weight:normal;
	display: block; 	
	border-bottom: 0px solid #fff; /* link row seperators */
	width:168px;
	text-decoration: none; 
	
}
.wu_smart_dropdown .ekmenu_menu_level_0 a.ekmenu_link_selected:hover {
	/* A; selected and hovered version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; 
	color: #000;
	background: #843031 url(../../cmsimages/SidebarMenu/firstLevelHover.gif) repeat-y; /* color specified in case image unavailable */
	font-weight:normal;
	display: block; 
	border-bottom: 0px solid #fff; /* link row seperators */
	width:168px;
	text-decoration: none; 
	
}


/***** 2RD LEVEL MENU *****/
.wu_smart_dropdown .ekmenu_menu_level_1
{
	color: #975c4f;
	font-weight:normal;
	display: inline; 
	width:190px;
	text-decoration: none; 
	
}

.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link, 
.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link:link, 
.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #fff; /* link text color */
	background: #975c4f url(../../cmsimages/SidebarMenu/firstLevelSub.gif) repeat-y; /* color specified in case image unavailable */
	text-decoration: none; /* remove underlines */
	display: block; /* force one link per row */
	border-bottom: 0px solid #fff;  /*link row seperators */
	font-weight:normal;
	width:168px; /* variance from 159 is due to padding - corrects wrapping text */
	margin-top: 0px; /* 2nd level menu but actually it's the first level sub menu -J.R. */
	
    	
}
.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link:hover, 
.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link:active,
.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link:focus  {
	/* A; hovered version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #fff;  /* hovered-link text color */
	background: #975c4f url(../../cmsimages/SidebarMenu/firstLevelSubHover.gif) repeat-y; /* color specified in case image unavailable */ 
	text-decoration: none; 
	font-weight:normal;
	display: block; 
	border-bottom: 0px solid #fff;  /*link row seperators */
	width:168px;
	
}

.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link_selected {
	/* A; selected version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #fff;
	background: #975c4f url(../../cmsimages/SidebarMenu/firstLevelSubHover.gif) repeat-y;/* color specified in case image unavailable */ 
	font-weight:normal;
	display: block; 	
	border-bottom: 0px solid #fff; /* link row seperators */
	width:168px;
	text-decoration: none; 
}
.wu_smart_dropdown .ekmenu_menu_level_1 a.ekmenu_link_selected:hover {
	/* A; selected and hovered version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #fff;
	background: #975c4f url(../../cmsimages/SidebarMenu/firstLevelSubHover.gif) repeat-y; /* color specified in case image unavailable */ 
	font-weight:normal;
	display: block; 
	border-bottom: 0px solid #fff; /* link row seperators */
	width:168px;
	text-decoration: none; 
}

/***** 3RD LEVEL MENU *****/

.wu_smart_dropdown .ekmenu_menu_level_2
{
	color: #1b3664;
	font-weight:normal;
	display: inline; 
	width:190px;
	text-decoration: none; 
}

.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link, 
.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link:link, 
.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link:visited {
	/* A; link for individual menu items (CMS quicklink, external link, etc.). */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px ; /*padding: 5px 0px; *//* set all to zero for images */
	color: #000; /* link text color */
	background: #cccccc url(../../cmsimages/SidebarMenu/secondLevelSub2018.gif) repeat-y;/* color specified in case image unavailable */
	text-decoration: none; /* remove underlines */
	display: block; /* force one link per row */
	border-bottom: 0px solid #fff;  /*link row seperators */
	font-weight:normal;
	width:168px;
	align="top";
}

/*.ekmenu_submenu_items a:hover */
.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link:hover, 
.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link:active,
.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link:focus  {
	/* A; hovered version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #fff;  /* hovered-link text color */
	background: #cccccc  url(../../cmsimages/SidebarMenu/secondLevelSubHover2018.gif) repeat-y; /*color specified in case image unavailable */
	text-decoration: none; 
	font-weight:normal;
	display: block; 
	border-bottom: 0px solid #fff;  /*link row seperators */
	width:168px;
}

.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link_selected {
	/* A; selected version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #fff;
	background: #cccccc url(../../cmsimages/SidebarMenu/secondLevelSubHover2018.gif) repeat-y; /* color specified in case image unavailable */
	font-weight:normal;
	display: block; 	
	border-bottom: 0px solid #fff; /* link row seperators */
	width:168px;
	text-decoration: none; 
}
.wu_smart_dropdown .ekmenu_menu_level_2 a.ekmenu_link_selected:hover {
	/* A; selected and hovered version of ekmenu_link, see above... */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
	padding: 5px 20px 5px 20px; /*padding: 5px 0px; *//* set all to zero for images */
	color: #fff;
	background: #cccccc url(../../cmsimages/SidebarMenu/secondLevelSubHOver2018.gif) repeat-y; /* color specified in case image unavailable */
	font-weight:normal;
	display: block; 
	border-bottom: 0px solid #fff; /* link row seperators */
	width:168px;
	text-decoration: none; 
}

/*
.ekmenu_menu_seperator {
	background: #cccccc url(../../cmsimages/SidebarMenu/secondLevelSub.gif) repeat-y;*/ /* color specified in case image unavailable */
/*}*/
