@charset "UTF-8";

/* SpryMenuBarHorizontal.css - Revision: Spry Preview Release 1.4 */

/* Copyright (c) 2006. Adobe Systems Incorporated. All rights reserved. */

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	cursor: default;
	width: auto;
	float: none;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	font-size: 100%;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 8.2em;
}

/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}


ul.MenuBarHorizontal li.li_services {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 5em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_portfolio {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 5em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_expertise {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 5.5em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_company {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 5.5em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_info {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 3em;
	float: left;
}

ul.MenuBarHorizontal li.li_funeral {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 7em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_interiors {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 5em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_cemetery {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 10em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_mausoleum {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 6.5em;
	float: left;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #008480;
}
ul.MenuBarHorizontal li.li_archimage {
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: center;
	cursor: pointer;
	width: 10em;
	float: left;
}



/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	padding: .1em .1em;
	color: #008480;
	text-decoration: none;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 100%;
	background-image: url(../graphics/main_layout/nav_bkgd_normal.png);
	background-repeat: repeat-x;
	background-position: top;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	color: #ccc;
	background-color: #40;
	background-image: url(../graphics/main_layout/nav_bkgd_highlight.png);
	background-repeat: repeat-x;
	background-position: top;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	background-color: #40;
	color: #ccc;
	background-image: url(../graphics/main_layout/nav_bkgd_highlight.png);
	background-repeat: repeat-x;
	background-position: top;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
}

