.photo_menu .ekmenu 
{
	/* DIV; wraps the entire menu */
	/* (the outer-most non-user container element) */
    color: rgb(255, 255, 255); /* default text color */
    background-color: #F7F7F7; /* shows up on left side, widens with nesting level */
    /*border-right: solid 1px rgb(71, 71, 71);*/
    width: 180px;
	min-width: 187px;
	text-decoration: none;
	margin: 0;
	padding-bottom: 0px;
  
}

.photo_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;
}

.photo_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;
}

.photo_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;
}

.photo_menu .ekmenu_submenu_parent,
.photo_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;
	border-top: 1px solid #000000;
}		

.photo_menu .ekmenu_submenu,
.photo_menu .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;
	
}

.photo_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;
}



.photo_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;
}

.photo_menu .ekmenu_unorderedlist 
{
	/* UL; a container for menu list items (useful for non-graphical browsers). */
	/* Typical parent element: div.ekmenu_submenu_items */
	margin: 0px;
	padding: 0px;	
}

.photo_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;
}

.photo_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);*/
}

.photo_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;
}

.photo_menu .ekmenu_submenu_items a img, 
.photo_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;
}

.photo_menu a.ekmenu_link, 
.photo_menu a.ekmenu_link:link, 
.photo_menu a.ekmenu_link:visited {
  text-decoration: none; /* remove underlines */
	display: block; /* force one link per row */
	width: 100%;
	background: #FBFCFD url('images/menu_normal.png') no-repeat top left; 
    padding-top: 7px;
    padding-bottom: 7px;
    color: #5c83aa; 
    font: bold 11px arial;
	padding-left: 8px;
	border-bottom: solid 1px rgb(255, 255, 255);
	
}

.photo_menu a.ekmenu_link:hover, 
.photo_menu a.ekmenu_link:active, 
.photo_menu a.ekmenu_link:focus  {
  text-decoration: none; /* remove underlines */
	display: block; /* force one link per row */
	width: 100%; 
	background: #FBFCFD url('images/menu_rollover.png') no-repeat top left; 
    padding-top: 7px;
    padding-bottom: 7px;
    color: #5c83aa; 
    font: bold 11px arial;
	padding-left: 8px;
	border-bottom: solid 1px rgb(255, 255, 255);
}

.photo_menu a.ekmenu_link_selected {
  text-decoration: none; /* remove underlines */
	display: block; /* force one link per row */
	width: 100%; 
	background: #FBFCFD url('images/menu_selected.png') no-repeat top left; 
    padding-top: 7px;
    padding-bottom: 7px;
    color: #5c83aa; 
    font: bold 11px arial;
	padding-left: 8px;
	border-bottom: solid 1px rgb(255, 255, 255);
}



