/* part 1 of the IE CSS fix */
body
{
	behavior: url(/csshover.htc);
}

/* CSS Document */
.menu_td
{
	width: 920px;
	height: 24px;
	background-image: url("/images/subpage_menu.gif");
}

#menu
{
	position: relative;
	top: 0px;
	left: 0px;
	width: auto;
	float: left;
	text-align: left;
	z-index: 101;
}

#menu ul
{
	list-style: none;
	margin: 0px;
	padding: 0px;
	width: 180px;
	float: left;
	position: absolute;
	z-index: 500;
}

#menu ul ul
{
	position: absolute;
	left: 0px;
	margin: 0px;
	height: 0px;
	float: left;
}

/* sets size and image for the 'Home' header */
#menu #home
{
	position: relative;
	left: 32px;
	top: 0px;
	width: 67px;
	height: 24px;
	background-image: url("/images/menu/home.gif");
	background-repeat: no-repeat;
	background-position: 0px 0px;
	cursor: pointer;
}

#menu #home:hover
{
	background-position: 0px -24px;
}

#menu.home #_home
{
	background-position: 0px -48px;
}
/* end size and image for 'Home' header */

/* sets size and image for the 'Find a Home' header */
#menu #find_a_home
{
	position: relative;
	left: 74px;
	top: 0px;
	width: 123px;
	height: 24px;
	background-image: url("/images/menu/find.gif");
	background-repeat: no-repeat;
	background-position: 0px 0px;
	cursor: pointer;
}

#menu #find_a_home:hover
{
	background-position: 0px -24px;
}

#menu.find_a_home #find_a_home
{
	background-position: 0px -48px;
}
/* end size and image for 'Find a Home' header */

/* sets size and image for the 'Customer Service' header */
#menu #customer_service
{
	position: relative;
	left: 116px;
	top: 0px;
	width: 174px;
	height: 24px;
	background-image: url("/images/menu/cust_serv.gif");
	background-repeat: no-repeat;
	background-position: 0px 0px;
	cursor: pointer;
}

#menu #customer_service:hover
{
	background-position: 0px -24px;
}

#menu.customer_service #customer_service
{
	background-position: 0px -48px;
}
/* end size and image for 'Customer Service' header */

/* sets size and image for the 'About Us' header */
#menu #about_us
{
	position: relative;
	left: 158px;
	top: 0px;
	width: 97px;
	height: 24px;
	background-image: url("/images/menu/about.gif");
	background-repeat: no-repeat;
	background-position: 0px 0px;
	cursor: pointer;
}

#menu #about_us:hover
{
	background-position: 0px -24px;
}

#menu.about_us #about_us
{
	background-position: 0px -48px;
}
/* end size and image for 'About Us' header */

/* sets size and image for the 'Kids Corner' header */
#menu #buyer_info
{
	position: relative;
	left: 200px;
	top: 0px;
	width: 126px;
	height: 24px;
	background-image: url("/images/menu/buyer_info.gif");
	background-repeat: no-repeat;
	background-position: 0px 0px;
	cursor: pointer;
}

#menu #buyer_info:hover
{
	background-position: 0px -24px;
}

#menu.buyer_info #buyer_info
{
	background-position: 0px -48px;
}
/* end size and image for 'Kids Corner' header */

/* sets size and image for the 'Finance' header */
#menu #blog
{
	position: relative;
	left: 242px;
	top: 0px;
	width: 61px;
	height: 24px;
	background-image: url("/images/menu/blog.gif");
	background-repeat: no-repeat;
	background-position: 0px 0px;
	cursor: pointer;
}

#menu #blog:hover
{
	background-position: 0px -24px;
}

#menu.blog #blog
{
	background-position: 0px -48px;
}
/* end size and image for 'Finance' header */

#menu h2
{
	font-family: Univers, Arial, Helvetica, sans-serif;
	font-size: 10px;
	display: block;
	position: relative;
	margin: 0px;
	padding: 0px;
	color: #ffffff;
	text-transform: uppercase;
	height: 24px;
}

#menu a
{
	position: relative;
	top: 0px;
	left: 2px;
	color: #000000;
	background: #e6edf3;
	text-decoration: none;
	text-indent: 8px;
}

#menu a:hover
{
	color: #000000;
	background: #ffffff;
}

#menu ul ul a,
#menu ul ul a:hover
{
	height: 16px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #69859A;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #69859A;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #69859A;
}

#menu ul ul a.bottom,
#menu ul ul a.bottom:hover
{
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #69859A;
}

#menu li
{
	position: relative;
}

#menu ul ul ul
{
	position: absolute;
	top: 0px;
	left: 100%;
}

#menu ul ul
{
	top: 0px;
	position: absolute;
	z-index: 1000;
}

#menu ul#find_a_home ul,
#menu ul#customer_service ul,
#menu ul#blog ul,
#menu ul#about_us ul,
#menu ul#buyer_info ul
{
	top: 23px;
	position: absolute;
	z-index: 1000;
}

#menu ul ul a
{
	display: block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 100;
	text-indent: 8px;
	padding-top: 3px;
	padding-bottom: 3px;
	list-style: none;
}

/* fix height in Safari */
#menu ul ul li a
{
	height: 16px; 
}

div#menu ul ul, 
div#menu ul li:hover ul ul, 
div#menu ul ul li:hover ul ul
{
	display: none
}

div#menu ul li:hover ul,
div#menu ul ul li:hover ul,
div#menu ul ul ul li:hover ul
{
	display: block;
}

/* part 2 of the IE CSS fix */
<!--[if IE]>
<style type="text/css" media="screen">
body
{
	behavior: url(/csshover.htc);
	font-size: 100%;
}

#menu ul li
{
	float: left;
	width: 100%;
}

#menu ul li a
{
	height: 1px;
}

#menu a,
#menu h2
{
	font: bold 11px/16px Verdana, Arial, Helvetica, sans-serif;
}
</style>
<![endif]-->