.menu{
	font: bold 12px Arial;
	width: 800px;
	height: 30px;
}

.menu ul{
margin: 0;
padding: 0;
list-style-type: none;
}

/*Top level list items*/
.menu ul li{
position: relative;
display: inline;
float: left;
}

/*Top level menu link items style*/
.menu ul li a{
	display: block;
	/*background: #FFFFFF; /*background of tabs (default state)*/
	color: white;
	color: #971B1E;
	text-decoration: none;
	width: 114px;
	padding-bottom: 13px;
	padding-top: 10px;
	text-align: center;
	line-height: 1em;
}

* html .menu ul li a{ /*IE6 hack to get sub menu links to behave correctly*/
display: inline-block;
}

.menu ul li a:link, .menu ul li a:visited{
color: #000000;
}

.menu ul li a:hover{
background: #2E3192; /*tab link background during hover state*/
color: white;
}
	
/*1st sub level menu*/
.menu ul li ul{
	position: absolute;
	left: 0;
	display: block;
	visibility: hidden;
	text-align: left;
	
}

/*Sub level menu list items (undo style from Top level List Items)*/
.menu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels vertical offset after 1st level sub menu */
.menu ul li ul li ul{
top: 0;
}

/* Sub level menu links style */
.menu ul li ul li a{
	font: normal 13px Verdana;
	width: 104px; /*width of sub menus*/
	padding-left: 10px;
	padding-top: 4px;
	padding-bottom: 4px;
	margin: 0;
	border-top-width: 0;
	border-bottom: 1px solid #000000;
	text-align: left;
	background-color: #F0F0F0;
}

a.deceased{
	background-color: #E5C6C7 !important;
	color: #000000;
}
a:hover.deceased{
	background-color: #2E3192 !important;
}

.menuz ul li ul li a:hover{ /*sub menus hover style*/
background: #2E3192;
color: #FFFFFF;

}


/* ######### CSS classes applied to down and right arrow images  ######### */

.downarrowclass{
	position: absolute;
	top: 12px;
	right: 7px;
	height: 1px;
	width: 1px;
	background-image: url(../images/arrow-down.gif);
	background-repeat: no-repeat;
}

.rightarrowclass{
position: absolute;
top: 6px;
right: 5px;
}

