/* CSS Document */

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

body div#listmenu ul li ul
{
	display:none; /*--- Hides all drop down menus ---*/
}

div#listmenu /*--- Menu List Container ---*/
{
	float:left; /*--- Makes the div enclose the list ---*/
	padding:0px;
	width:586px;
	height:32px;
	margin:0px;
	padding:0px;
	font-family:"Myriad Web", "Lucida Grande", "Trebuchet MS", "Tahoma", "Helvetica", "Arial", sans-serif;
	font-style:normal;
	background-image:url(images/navBar.jpg);
	background-repeat:no-repeat;
}

div#listmenu ul
{
	margin:0px;
	padding:0px 0px 0px 0px;
	list-style-type: none;
}

div#listmenu li
{
	float:left; /*--- Causes the list to align horizontally instead of stack ---*/
	position:relative; /*--- Positioning context for the absolutely positioned drop-down ---*/
	list-style-type: none; /*--- Removes the bullet off list items ---*/	
	display:block;
	margin:0px;
}

div#listmenu ul li a  {
	text-decoration:none;
	display:block;
	color:black;
	font-size:15px;
	font-weight:bold;
	padding:7px 20px 8px 20px;
}
div#listmenu ul li a:hover {
	display:block;
	color:#660000;
}


/* DROPDOWNS */
div#listmenu ul li ul.services{
	width:150px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-top:-4px;
}


div#listmenu ul li ul.prop{
	width:150px; /*--- Sets the width of the menu; in combo with the li's 100% width, makes the menu stack ---*/
	margin-top:-4px;
}



div#listmenu ul li:hover ul  {
	background-color:white;
	display:block; /*--- Displays appropriate drop down menu ---*/
}

div#listmenu ul li ul li a.dropDown, div#listmenu ul li ul li a.dropDown:visited{
	text-decoration:none;
	color:#666666;
	display:block;
	font-size:13px;
	font-style:normal;
	font-weight:bold;
	text-align:left;
}
div#listmenu ul li ul li a.dropDown:hover, div#listmenu ul li ul li a.dropDown:active{
	text-decoration:none;
	display:block;
	font-size:13px;
	font-weight:bold;
	color:black;
	border:none;
}
div#listmenu ul li ul
{
	margin:0px; /*--- Prevents the temp margin on the ul from inheriting here ---*/
	position:absolute; /*--- Positions the drop-down ul in relation to its relatively positioned li parent ---*/
	left:0px; /*--- Aligns the drop-down exactly under the menu ---*/
	padding:0px;
	margin:0px;
	z-index:99;
	border-bottom:1px solid silver;
	border-right:1px solid silver;
	border-left:1px solid silver;
}
div#listmenu ul li ul li
{
	width:100%; /*--- Makes the list items fill the list containers (ul) ---*/
	padding:0px;
	margin:0px;
	background:none;
	background-image:none;
	background-color:white;
}
div#listmenu ul li ul li a:hover
{
	background-color:silver;
}
div#listmenu ul li ul li:hover {
	background-color:silver;
}

