/* CSS Document */
#multi-level {
height:35px;
position:relative;
z-index:100;
}

#multi-level .pad {
float:left;
}

.menu, .menu ul {
list-style-type:none; 
padding:0;
margin:0; 
font-family: Arial, Helvetica, sans-serif;
font-size: 11px;
color: #000000;
}

/* Set up the top level list items and float left to place inline */
.menu li.top {
float:left;
display: block;
position:relative;
}

/* Style and position the table so it takes no part in the menu function. The font size is necessary for IE5.5 */
.menu table {
border-collapse:collapse;
width:0;
height:0;
position:absolute; 
top:0; 
left:0;
}

/* Default top link link styling */
.menu li.top a.top_link {
display:block;
float:left;
height: 35px;
}

.menu li.top a span {
position:absolute;
left:-9999px; 
top:0; 
z-index:0; 
font-size:10px;
} /* move the link text off screen */

/* pre-load the hover images into the lists */
.menu li.home {
background-image: url(images/nav_home1.gif);
width: 59px;
height: 35px;
}

.menu li.about {
background-image: url(images/nav_about1.gif);
width: 61px;
height: 35px;
}

.menu li.propertysearch {
background-image: url(images/nav_property1.gif);
width: 130px;
height: 35px;
}

.menu li.debblog {
background-image: url(images/nav_debblog1.gif);
width: 87px;
height: 35px;
}

.menu li.areainfo {
background-image: url(images/nav_area1.gif);
width: 82px;
height: 35px;
}

.menu li.contact {
background-image: url(images/nav_contact1.gif);
width: 81px;
height: 35px;
}

/* set up the normal unhovered images in the links */
.menu a#home {
background-image: url(images/nav_home.gif);
width: 59px;
height: 35px;
}

.menu a#about {
background-image: url(images/nav_about.gif);
width: 61px;
height: 35px;
}

.menu a#propertysearch {
background-image: url(images/nav_property.gif);
width: 130px;
height: 35px;
}

.menu a#debblog {
background-image: url(images/nav_debblog.gif);
width: 87px;
height: 35px;
}

.menu a#areainfo {
background-image: url(images/nav_area.gif);
width: 82px;
height: 35px;
}

.menu a#contact {
background-image: url(images/nav_contact.gif);
width: 81px;
height: 35px;
}

/* Style the list OR link hover. Depends on which browser is used */
.menu a:hover {
visibility:visible;
} 

/* for IE6 */
.menu li:hover { 
position:relative;
z-index:200;
} /* for IE7 */

/* make the links transparent on hover so that the hover images in the lists show through (no flicker) */
.menu li a#home:hover, .menu li:hover a#home,
.menu li a#about:hover, .menu li:hover a#about,
.menu li a#propertysearch:hover, .menu li:hover a#propertysearch,
.menu li a#debblog:hover, .menu li:hover a#debblog,
.menu li a#areainfo:hover, .menu li:hover a#areainfo,
.menu li a#contact:hover, .menu li:hover a#contact {
background:transparent;
}

/* keep the 'next' level invisible by placing it off screen. */
.menu ul, 
.menu :hover ul ul, 
.menu :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul ul,
.menu :hover ul :hover ul :hover ul :hover ul ul {
position:absolute;
left:-9999px;
top:-9999px; 
width:0; 
height:0;
}

/* set up the first drop down sub level */
.menu :hover ul.sub {
background-color: #FFFFFF;
left:0;
top:34px;
white-space:nowrap;
height:auto;
width: 190px;
}

.menu :hover ul.sub li {
display: block;
position:relative;
float:left;
background-color: #333333;
line-height:25px;
font-size:11px;
width: 190px;
text-indent: 8px;
border: 1px solid #FFFFFF;
}

.menu :hover ul.sub li a {
text-decoration: none;
background-color: #333333;
display:block;
color:#ffffff;
width: 190px;
}

.menu :hover ul.sub li a:hover {
text-decoration: none;
background-color: #666666;
display:block;
color: #FFFFFF;
width: 190px;
}

.menu :hover ul.sub li a.fly {
background:#002078 url(images/arrow_over.gif) no-repeat 200px 10px;
color:#ffffff;
}

.menu :hover ul.sub li a.fly:hover {
background:#0a37a3 url(images/arrow_over.gif) no-repeat 200px 10px; 
color:#FFFFFF;
}

.menu :hover ul li:hover > a.fly {
background:#002078 url(images/arrow_over.gif) no-repeat 200px 10px;
color:#ffffff;
} 

/* set up the flyout levels when hovering */
.menu :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul,
.menu :hover ul :hover ul :hover ul :hover ul :hover ul {
background-color: #FFFFFF;
left:190px;
top: 0px;
white-space:nowrap;
width: 190px;
z-index:200;
z-index:400;
height:auto;
}
