.sidesmartmenu .ekmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(0, 0, 255);
    width: 138px;
    font-size: 1.0em;
    font-family: Helvetica,Arial,Verdana,sans-serif;
    /* shows up on left side, widens with nesting level */    
    /* margin-left: 25px; */
    height: 100%;
    white-space: normal;
}

.sidesmartmenu .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;
}

.sidesmartmenu .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;
}

.sidesmartmenu .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;
}

.sidesmartmenu .ekmenu_submenu_parent,
.sidesmartmenu .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;
 	height: 100%;
/*	width: 100%; July 3*/
	
}		

.sidesmartmenu .ekmenu_submenu,
.sidesmartmenu .ekmenu_submenu_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;
	height: 100%;

}

.sidesmartmenu .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: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
}

.sidesmartmenu .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: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
/*	width:100%; July 3 */
}

.sidesmartmenu .ekmenu_button_selected .ekmenu_accessible_submenu_btnlink, 
.sidesmartmenu .ekmenu_button_selected_hover .ekmenu_accessible_submenu_btnlink 
{
	/*  */
	/* Typical parent element: span.ekmenu_button */
  color: rgb(255, 255, 255); /* default text color */
  text-decoration: underline;
	margin: 0px 0px 0px 0px;
	padding-top: 0px;
	padding-left: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	/*width:100%; July 3*/
	
	height: 100%;
	
}

.sidesmartmenu .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;
}

.sidesmartmenu .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;
}

.sidesmartmenu .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;
}

.sidesmartmenu .ekmenu_submenu_items {
	/* DIV; container for menu lists. */
	/* Typical parent element: div.ekmenu (root level), div.ekmenu_submenu */
    overflow: hidden; /* truncate what cannot fit */
}

.sidesmartmenu .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 */
.sidesmartmenu .ekmenu_submenu_items .ekmenu_submenu_items
{
	/* 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: 15px; /* indents menu items, accumulating with each nesting level */
  border-bottom-width: 0px; /* prevents bottom border from accumulating, with each level of nesting */


/*  display: inline; */

    /*
    color: rgb(0, 0, 160); 
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;
    height: 100%;
    text-indent: 7px;
    width: 100%;
    border-bottom: 1px solid #ededed;
    */
    border-bottom: 1px solid #ededed;
} 

.sidesmartmenu .ekmenu_submenu_items .ekmenu_submenu_items_hidden, 
.sidesmartmenu .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 */
  
  /* height: 100%; */
}

/* Button menu items, controls visibility of associated sub-menus */
.sidesmartmenu .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;
    cursor:pointer;

    font-weight: normal;
    padding-left: 15px;    
    color: rgb(0, 0, 160); 
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;
    height: 100%;
    /* text-indent: 7px; newfindme*/
/*    width: 100%; */
    border-bottom: 1px solid #ededed;
    text-decoration: none;    
    /*fin. perf */
}
.sidesmartmenu .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. */
    display: block;
    cursor:pointer;
    font-weight: normal;
    padding-left: 15px;
    color: #ff9d33; 
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;
    height: 100%;
    /*text-indent: 7px; newfindme*/
    /* width: 100%; */
    border-bottom: 1px solid #ededed;
    text-decoration: none;   
    /*fin. perf */    
}
.sidesmartmenu .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. */
  display: block;
	cursor:pointer;
	padding-left: 15px;
	font-weight: normal;
	color: #ff9d33;  /* button-title text color */
	/*text-indent: 7px; newfindme*/
	/* width: 100%; capture on-click for entire row that the button occupies */
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;    

    border-bottom: 1px solid #ededed;
    height: 100%;
    text-decoration: underline;
}
.sidesmartmenu .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. */
    display: block;
    cursor:pointer;
    padding-left: 15px;
    font-weight: normal;
    color: #ff9d33; /* button-title text color */
    /*text-indent: 7px; newfindme */
    /* width: 100%; capture on-click for entire row that the button occupies */
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;    

    border-bottom: 1px solid #ededed;
    height: 100%;
    text-decoration: none;    
}

/* images */
.sidesmartmenu .ekmenu_submenu_items a img, 
.sidesmartmenu .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;
}
.sidesmartmenu .ekmenu_linkimage, 
.sidesmartmenu .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: 100%;
	overflow: hidden;
}
.sidesmartmenu .ekmenu_linkimage_hover, 
.sidesmartmenu .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: 100%;
	overflow: hidden;
    border-bottom: 1px solid #ededed;    	
}

/* Link menu items */
.sidesmartmenu .ekmenu_submenu_items a
.sidesmartmenu a.ekmenu_link, 
.sidesmartmenu a.ekmenu_link:link, 
.sidesmartmenu a.ekmenu_link:visited {
	/* A; link for individual menu item (CMS quicklink, external link, etc.). */
	/* Typical parent element: div.ekmenu_submenu_items, or else */
	/* li.ekmenu_unorderedlist_item if 508-Compliance is enabled. */
  padding-left: 15px; /*padding: 5px 0px; *//* set all to zero for images */
	/* text-indent: 7px; newfindme */
	color: rgb(0, 0, 160); /* link text color */
	background-color: transparent;
	text-decoration: none; /* remove underlines */
	display: block; /* force one link per row */
	/*width: 100%; July 3*/ /* fill entire row with link */
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;

   /* height: 26px; */
    border-bottom: 1px solid #ededed;
    position: relative;
}
/*.ekmenu_submenu_items a:hover */
.sidesmartmenu a.ekmenu_link:hover, 
.sidesmartmenu a.ekmenu_link:active, 
.sidesmartmenu 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-left: 15px; /*padding: 5px 0px; *//* set all to zero for images */
    /* text-indent: 7px; newfindme */
    color: #ff9d33;    /* hovered-link text color */
    background-color: transparent;
    text-decoration: none; 
		display: block; 
		/*width: 100%; July 3*/

}

.sidesmartmenu 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-left: 15px; /*padding: 5px 0px; *//* set all to zero for images */
    /* text-indent: 7px; newfindme */
		color: #ff9d33; /* on id display findme*/
    background-color: transparent;
    border-bottom: 1px solid #ededed;    
		display: block; 
		/*width: 100%; July 3*/
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;    
    text-decoration: underline;
    height: 100%;
    display: block;    
} 

.sidesmartmenu 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-left: 15px; /*padding: 5px 0px; *//* set all to zero for images */
   /*text-indent: 7px; newfindme */
		color: #ff9d33;
    background: transparent url(../images/menu/sub_arrow.gif) no-repeat 0px 4px;    
    		display: block; 
		/*width: 100%; July 3*/
    border-bottom: 1px solid #ededed;    
    height: 100%;		
    display: block;
    text-decoration: underline;    
}