/*                                                                          */
/* 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.     */
/*                                                                          */

.sub_menu .ekmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    width: 960;
    height:27px; /* can be overridden in the primary div-containers (whose class = ekmenu) style */
    font-family: verdana;
font-size:11px;position:relative;
margin:0px;
}

.sub_menu .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;
}

.sub_menu .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;
}

.sub_menu .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;
}

.sub_menu .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 */
}

.sub_menu .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 */
}

.sub_menu .ekmenu_submenu,
.sub_menu .ekmenu_submenu_hover,
.sub_menu .ekmenu_submenu_parent,
.sub_menu .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;
	display: inline; /* make menu render all on one-line */
    background: rgb(50, 50, 50);
}

.sub_menu .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;
}

.sub_menu .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%;
}

.sub_menu .ekmenu_button_selected .ekmenu_accessible_submenu_btnlink, 
.sub_menu .ekmenu_button_selected_hover .ekmenu_accessible_submenu_btnlink 
{
	/*  */
	/* Typical parent element: span.ekmenu_button */
    color: rgb(255, 255, 255); /* default text color */
	font-size: 1em;
    text-decoration: underline;
	margin: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	width:100%;
}

.sub_menu .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;
}

.sub_menu .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;
}

.sub_menu .ekmenu_unorderedlist_item 
{
	/* LI; container for menu items (typically either links or sub-menus). */
	/* Typical parent element: ul.ekmenu_unorderedlist */
	display:block;float:left;
	margin: 0px;
	padding: 0px;
}

.sub_menu .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);*/
}

.sub_menu .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 */
.sub_menu .ekmenu_submenu_items .ekmenu_submenu_items, 
.sub_menu .ekmenu_submenu_items .ekmenu_submenu_items_hidden, 
.sub_menu .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) */
    display: block;float:left;
    border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */
}

/* Button menu items, controls visibility of associated sub-menus */
.sub_menu .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. */
	font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
		position: relative;
		float:left;
	padding-left: 8px; 
	padding-right:10px;   
	height:29px;
	line-height:29px;
    text-decoration: none!important; /* remove underlines */
     /* fill entire row with link */
     white-space:nowrap;
    background:url(navborder.gif) right no-repeat;
    cursor:hand;}
.sub_menu .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. */
	font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
    text-decoration: none; /* remove underlines */
	display: block; 
			float:left;
		padding-left: 9px;    
		padding-right:8px;   


			font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#004990;
			height:29px;
	line-height:29px;

position: relative;
     white-space:nowrap;
     background-color:#fff;
     background-image:none;
         cursor:hand;
         	border-right:1px solid #4b90cd;


     left:-1px;}
.sub_menu .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. */
font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
			float:left;
			text-decoration: none;
	padding-left: 9px;    
		padding-right:8px;   

			font-family:Arial;
		font-size:12px;
		    cursor:hand;

		font-weight:bold;
		color:#fff;
position: relative;
		color:#004990;

     white-space:nowrap;
     background-color:#fff;
     background-image:none;
     left:-1px;
     	height:29px;
	line-height:29px;
		border-right:1px solid #4b90cd;}
.sub_menu .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. */
font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
			float:left;
			text-decoration: none;
	padding-left: 9px;    
		padding-right:8px;   
		    cursor:hand;

position: relative;
			font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;

		color:#004990;

     white-space:nowrap;
     background-color:#fff;
     background-image:none;
     left:-1px;
     	height:29px;
	line-height:29px;
	border-right:1px solid #4b90cd;

}


.sub_menu .ekmenu_buttonlast
{
	/* 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. */
	font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
		position: relative;
		float:left;
	padding-left: 8px; 
	padding-right:10px;   
	height:29px;
	line-height:29px;
    text-decoration: none; /* remove underlines */
     /* fill entire row with link */
     white-space:nowrap;
    background:none;
    cursor:hand;}
.sub_menu .ekmenu_buttonlast_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. */
	font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
    text-decoration: none; /* remove underlines */
	display: block; 
			float:left;
		padding-left: 9px;    
		padding-right:8px;   


			font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#004990;
			height:29px;
	line-height:29px;

position: relative;
     white-space:nowrap;
     background-color:#fff;
     background-image:none;
         cursor:hand;
         	border-right:0px solid #4b90cd;


     left:-1px;}
.sub_menu .ekmenu_buttonlast_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. */
font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
			float:left;
			text-decoration: none;
	padding-left: 9px;    
		padding-right:8px;   

			font-family:Arial;
		font-size:12px;
		    cursor:hand;

		font-weight:bold;
		color:#fff;
position: relative;
		color:#004990;

     white-space:nowrap;
     background-color:#fff;
     background-image:none;
     left:-1px;
     	height:29px;
	line-height:29px;
		border-right:0px solid #4b90cd;}
.sub_menu .ekmenu_buttonlast_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. */
font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
			float:left;
			text-decoration: none;
	padding-left: 9px;    
		padding-right:8px;   
		    cursor:hand;

position: relative;
			font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;

		color:#004990;

     white-space:nowrap;
     background-color:#fff;
     background-image:none;
     left:-1px;
     	height:29px;
	line-height:29px;
	border-right:0px solid #4b90cd;

}


/* images */
.sub_menu .ekmenu_submenu_items a img, 
.sub_menu .ekmenu_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. */
	/* Typical parent element: a.ekmenu_link */
    display: inline;	
	border-width: 0px;
}
.sub_menu .ekmenu_linkimage, 
.sub_menu .ekmenu_linkimage_selected
{
	/* SPAN; supports rollover-images, where a single image is scrolled */
	/* to show the desired effect for the given action-event. Separate the */
	/* .ekmenu_linkimage and .ekmenu_linkimage_selected classes for more images */
	/* Typical parent element: a.ekmenu_link */
    display: inline;
	position: relative;
	background-position: 0px 0px;
	background-repeat:no-repeat;
	height: 30px;
	overflow: hidden;
}
.sub_menu .ekmenu_linkimage_hover, 
.sub_menu .ekmenu_linkimage_selected_hover
{
	/* SPAN; hovered version of ekmenu_linkimage. Supports rollover-images, */
	/* where a single image is scrolled to show the desired effect for the */
	/* given action-event. Separate the .ekmenu_linkimage_hover and */
	/* .ekmenu_linkimage_selected_hover classes to control more images */
	/* Typical parent element: a.ekmenu_link */
    display: inline;
	position: relative;
	background-position: 0px -30px;
	background-repeat:no-repeat;
	height: 30px;
	overflow: hidden;
}

/* Link menu items */
.sub_menu a.ekmenu_link, 
.sub_menu a.ekmenu_link:link, 
.sub_menu a.ekmenu_link:visited {
/* 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. */
	font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
		position: relative;
		float:left;
	padding-left: 8px; 
	padding-right:10px;   
	height:29px;
	line-height:29px;
    text-decoration: none; /* remove underlines */
     /* fill entire row with link */
     white-space:nowrap;
    background:url(navborder.gif) right no-repeat;
    cursor:hand;}
/*.ekmenu_submenu_items a:hover */
.sub_menu a.ekmenu_link:hover, 
.sub_menu a.ekmenu_link:active, 
.sub_menu a.ekmenu_link:focus  {
	/* 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. */
	font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#fff;
    text-decoration: none; /* remove underlines */
	display: block; 
			float:left;
		padding-left: 9px;    
		padding-right:8px;   


			font-family:Arial;
		font-size:12px;
		font-weight:bold;
		color:#004990;
			height:29px;
	line-height:29px;

position: relative;
     white-space:nowrap;
     background-color:#fff;
     background-image:none;
         cursor:hand;
         	border-right:1px solid #4b90cd;


     left:-1px;}

.sub_menu 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. */
    color: #be1e2d; /* link text color */
    text-decoration: none; /* remove underlines */
    display: inline; /* force one link per row */
    width: auto; /* fill entire row with link */
	float:left; padding:0px;margin:0px;	line-height:17px;
		border-right:1px solid #aeaeaf;		padding-right:12px;
		margin-right:12px;


}
.sub_menu 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:0px;margin:0px;
    color: #be1e2d; /* link text color */
    text-decoration: none; /* remove underlines */
    display: inline; /* force one link per row */
    width: auto; /* fill entire row with link */
	float:left;	line-height:17px;
		border-right:1px solid #aeaeaf;
		padding-right:12px;
		margin-right:12px;
}

/* Link menu items */
.sub_menu a.ekmenu_linklast, 
.sub_menu a.ekmenu_linklast:link, 
.sub_menu a.ekmenu_linklast: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. */
    color: #4d4d4f; /* link text color */
    text-decoration: none; /* remove underlines */
    display: inline; /* force one link per row */
    width: auto; /* fill entire row with link */
	float:left; padding:0px;margin:0px;
	line-height:17px;
		border-right:0px solid #aeaeaf;		padding-right:12px;
		margin-right:12px;

}
/*.ekmenu_submenu_items a:hover */
.sub_menu a.ekmenu_linklast:hover, 
.sub_menu a.ekmenu_linklast:active, 
.sub_menu a.ekmenu_linklast: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. */
   
    color: #be1e2d; /* link text color */
    text-decoration: none; /* remove underlines */
    display: inline; /* force one link per row */
    width: auto; /* fill entire row with link */
	float:left; padding:0px;margin:0px;	line-height:17px;
		border-right:0px solid #aeaeaf;		padding-right:12px;
		margin-right:12px;

}

.sub_menu a.ekmenu_linklast_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. */
    color: #be1e2d; /* link text color */
    text-decoration: none; /* remove underlines */
    display: inline; /* force one link per row */
    width: auto; /* fill entire row with link */
	float:left; padding:0px;margin:0px;	line-height:17px;
		border-right:0px solid #aeaeaf;		padding-right:12px;
		margin-right:12px;


}
.sub_menu a.ekmenu_linklast_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:0px;margin:0px;
    color: #be1e2d; /* link text color */
    text-decoration: none; /* remove underlines */
    display: inline; /* force one link per row */
    width: auto; /* fill entire row with link */
	float:left;	line-height:17px;
		border-right:0px solid #aeaeaf;
		padding-right:12px;
		margin-right:12px;
}

/*                                                                          */
/* 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.     */
/*                                                                          */

.left_menu .ekmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    width:181px; /* can be overridden in the primary div-containers (whose class = ekmenu) style */
	    border-right:1px solid #4b90cd;
    border-bottom:1px solid #4b90cd;

}

.left_menu .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;

}

.left_menu .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;
}

.left_menu .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;
}

.left_menu .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 */
}

.left_menu .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 */
}

.left_menu .ekmenu_submenu,
.left_menu .ekmenu_submenu_hover,
.left_menu .ekmenu_submenu_parent,
.left_menu .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;
}

.left_menu .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;
}

.left_menu .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%;
}

.left_menu .ekmenu_button_selected .ekmenu_accessible_submenu_btnlink, 
.left_menu .ekmenu_button_selected_hover .ekmenu_accessible_submenu_btnlink 
{
	/*  */
	/* Typical parent element: span.ekmenu_button */
    color: rgb(255, 255, 255); /* default text color */
	font-size: 1em;
    text-decoration: underline;
	margin: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	width:100%;
}

.left_menu .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;
}

.left_menu .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;
}

.left_menu .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;
}

.left_menu .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);*/
}

.left_menu .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 */
.left_menu .ekmenu_submenu_items .ekmenu_submenu_items, 
.left_menu .ekmenu_submenu_items .ekmenu_submenu_items_hidden, 
.left_menu .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: 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 */
.left_menu .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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:30px;
    line-height:30px;
    padding: 0px 0px; /*padding: 5px 0px; *//* set all to zero for images */
    text-indent: 27px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#d6ecff url(leftnav-arrow.gif) left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 100%; /* fill entire row with link */
}
.left_menu .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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:30px;
    line-height:30px;
    padding: 0px 0px; /*padding: 5px 0px; *//* set all to zero for images */
    text-indent: 27px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#fff url(leftnav-arrow-wt.gif) left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 134px; /* fill entire row with link */
	padding-right:20px;
}
.left_menu .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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:30px;
    line-height:30px;
    padding: 0px 0px; /*padding: 5px 0px; *//* set all to zero for images */
    text-indent: 27px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#fff url(leftnav-arrow-wt.gif) left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 134px; /* fill entire row with link */
	padding-right:20px;
}
.left_menu .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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:30px;
    line-height:30px;
    padding: 0px 0px; /*padding: 5px 0px; *//* set all to zero for images */
    text-indent: 27px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#fff url(leftnav-arrow-wt.gif) left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 134px; /* fill entire row with link */
	padding-right:20px;
}

/* images */
.left_menu .ekmenu_submenu_items a img, 
.left_menu .ekmenu_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. */
	/* Typical parent element: a.ekmenu_link */
	border-width: 0px;
}
.left_menu .ekmenu_linkimage, 
.left_menu .ekmenu_linkimage_selected
{
	/* SPAN; supports rollover-images, where a single image is scrolled */
	/* to show the desired effect for the given action-event. Separate the */
	/* .ekmenu_linkimage and .ekmenu_linkimage_selected classes for more images */
	/* Typical parent element: a.ekmenu_link */
    display: block;
	position: relative;
	background-position: 0px 0px;
	background-repeat:no-repeat;
	height: 30px;
	overflow: hidden;
}
.left_menu .ekmenu_linkimage_hover, 
.left_menu .ekmenu_linkimage_selected_hover
{
	/* SPAN; hovered version of ekmenu_linkimage. Supports rollover-images, */
	/* where a single image is scrolled to show the desired effect for the */
	/* given action-event. Separate the .ekmenu_linkimage_hover and */
	/* .ekmenu_linkimage_selected_hover classes to control more images */
	/* Typical parent element: a.ekmenu_link */
    display: block;
	position: relative;
	background-position: 0px -30px;
	background-repeat:no-repeat;
	height: 30px;
	overflow: hidden;
}

/* Link menu items */
.left_menu a.ekmenu_link, 
.left_menu a.ekmenu_link:link, 
.left_menu 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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:auto;
padding-left:27px;
padding-top:6px;
padding-bottom:6px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#d6ecff url(leftnav-arrow.gif) top left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 134px; /* fill entire row with link */
	padding-right:20px;

}
/*.ekmenu_submenu_items a:hover */
.left_menu a.ekmenu_link:hover, 
.left_menu a.ekmenu_link:active, 
.left_menu 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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:auto;
padding-left:27px;
padding-top:6px;
padding-bottom:6px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#fff url(leftnav-arrow-wt.gif) top left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 134px; /* fill entire row with link */
	padding-right:20px;
}

.left_menu 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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:auto;
padding-left:27px;
padding-top:6px;
padding-bottom:6px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#fff url(leftnav-arrow-wt.gif) top left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 134px; /* fill entire row with link */
	padding-right:20px;
}
.left_menu 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. */
    font-family:Arial;
    font-size:12px;
    font-weight:bold;
    height:auto;
padding-left:27px;
padding-top:6px;
padding-bottom:6px;
    color: #004990; /* link text color */
    border-top:1px solid #4b90cd;
    border-left:1px solid #4b90cd;
    border-right:1px solid #4b90cd;
    background:#fff url(leftnav-arrow-wt.gif) top left no-repeat;
    text-decoration: none; /* remove underlines */
    display: block; /* force one link per row */
    width: 134px; /* fill entire row with link */
	padding-right:20px;
}

/*                                                                          */
/* 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.     */
/*                                                                          */

.rollover .ekmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
}

.rollover .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;
}

.rollover .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;
}

.rollover .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;
}

.rollover .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 */
}

.rollover .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 */
}

.rollover .ekmenu_submenu,
.rollover .ekmenu_submenu_hover,
.rollover .ekmenu_submenu_parent,
.rollover .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;
}

.rollover .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;
}

.rollover .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 */
	margin: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}

.rollover .ekmenu_button_selected .ekmenu_accessible_submenu_btnlink, 
.rollover .ekmenu_button_selected_hover .ekmenu_accessible_submenu_btnlink 
{
	/*  */
	/* Typical parent element: span.ekmenu_button */
	margin: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
}

.rollover .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;
}

.rollover .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;
}

.rollover .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;
}

.rollover .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);*/
}

.rollover .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 */
.rollover .ekmenu_submenu_items .ekmenu_submenu_items, 
.rollover .ekmenu_submenu_items .ekmenu_submenu_items_hidden, 
.rollover .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) */
display:none;}

/* Button menu items, controls visibility of associated sub-menus */
.rollover .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. */
}
.rollover .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. */
}
.rollover .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. */
}
.rollover .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. */
}

/* images */
.rollover .ekmenu_submenu_items a img, 
.rollover .ekmenu_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. */
	/* Typical parent element: a.ekmenu_link */
	border-width: 0px;
}
.rollover .ekmenu_linkimage, 
.rollover .ekmenu_linkimage_selected
{
	/* SPAN; supports rollover-images, where a single image is scrolled */
	/* to show the desired effect for the given action-event. Separate the */
	/* .ekmenu_linkimage and .ekmenu_linkimage_selected classes for more images */
	/* Typical parent element: a.ekmenu_link */
    display: block;
	position: relative;
	background-position: 0px 0px;
	background-repeat:no-repeat;
	height: 0px;
	overflow: hidden;
}
.rollover .ekmenu_linkimage_hover, 
.rollover .ekmenu_linkimage_selected_hover
{
	/* SPAN; hovered version of ekmenu_linkimage. Supports rollover-images, */
	/* where a single image is scrolled to show the desired effect for the */
	/* given action-event. Separate the .ekmenu_linkimage_hover and */
	/* .ekmenu_linkimage_selected_hover classes to control more images */
	/* Typical parent element: a.ekmenu_link */
    display: block;
	position: relative;
	background-position: 0px -30px;
	background-repeat:no-repeat;
	height: 0px;
	overflow: hidden;
}

/* Link menu items */
.rollover a.ekmenu_link, 
.rollover a.ekmenu_link:link, 
.rollover 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. */

}
/*.ekmenu_submenu_items a:hover */
.rollover a.ekmenu_link:hover, 
.rollover a.ekmenu_link:active, 
.rollover 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. */
}

.rollover 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. */
}
.rollover 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. */
}

.sub_menu a.ekmenu_submenu_btnlink, 
.sub_menu a.ekmenu_submenu_btnlink:link, 
.sub_menu a.ekmenu_submenu_btnlink:visited{
text-decoration:none!important;}
