

/* formatting the menubar table itself */
.menubar {
	cursor: pointer;
	/* user options below */
	background-color: #D3D3D3;
	color: black;  /* default text color for menu names and items */
	font-family: Verdana;
	font-size: 10pt;
	border: 1px silver outset;
}

/* formatting the menu headers div */
.menuheader {
	/* user options below */
	width: 160px;
	height: 25px;
	line-height: 2;  /* vertically positions the menu names */
	text-indent: 50px;
	background-color: #D3D3D3;  /* can override the menubar background */
	background-image: url(../perite/img/menutriangledown2.gif);
	background-repeat: no-repeat;
	background-position: 33px 12px;  /* L T */
}

/* formatting the drop-down menu container */
.menu {
	visibility: hidden;
	position: absolute;
	list-style-type: none;
	
	/* user options below */
	background-color: #DCDCDC;  /* normally set same as the menuHeaderRollover variable */
	width:160px;
	line-height: 27px;
	margin-top: 0px;
	text-indent: 15px;
	padding: 0px;
	/* border: 1px #A9A9A9 inset; */ 

}

/* formatting the menu list items */
.menuitem {
	border-bottom: 1px #C0C0C0 solid;
	font-size: 9pt;
}

body {
	margin-top: 0px;
	margin-left: 0px;
}

/* formatting the body div below the menus */
.bodycontent {
	width: 800px;
	margin-left: 10px;
}