
 /*========================= TOP OF THE MENU CASCADE =========================*/

.menu {
	position:relative;        /* establish a menu-relative positioning context */
	float:left;                                     /* play nicely with others */
	margin:0;
	padding:0;
	border:0;
	height:28px;                                  /* the menu's overall height */
	width:100%;         /* we always want our menu to fill the available space */
	background:#002249;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:10px;         /* this (and also below) sets the menu's font size */
	z-index: 2000;
	margin-bottom: 2px;
}

.menu a {color: white; font-size: 10px; padding: 7px 0 0;}

.menu ul {
	padding:0;
	margin:0;
	border:0;
	list-style-type:none;          /* we don't want to view the list as a list */
	line-height:1em;           /* globally set the menu's item spacing. note */
}                               /* this must be 1.0 or 1.5 or 2.0 for Mozilla */

.menu li {
	float:left;    /* this creates the side-by-side array of top-level buttons */
	position:relative;    /* create local positioning contexts for each button */
	margin:0;
	padding: 0;
	line-height: 12px;
}

.menu ul li table {
	margin:0;               /* re-zero the table margins */
	border-collapse:collapse;      /* IE5 needs this for the sub-menus to work */
	font-size:10px;        /* this sets the base font size for our entire menu */
	text-align: center;
}

.drop {
	display:block;	       /* this sets the l/r margins for our menu item */
	margin:0;
	cursor:pointer;      /* IE tries to switch back to an I-beam, don't let it */
}


/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display:none;                  /* initially hide the entire list hierarchy */
}

.menu ul li a,
.menu ul li a:visited {                    /* unselected top-level menu items */
	display:block;
	float:left;
	text-decoration:none;
	height:14px;
	text-align: center;
	width: 100%;
	padding: 7px 0;
}

.menu ul li.tall a,
.menu ul li.tall a:visited {                    /* unselected top-level menu items */
	height:40px;							 /* containing 2 lines */
}

html>body div.menu ul li a,
html>body div.menu ul li a:visited {
height: 14px;
}

div#container div.menu ul li a:hover {text-decoration: none;}

html>body div.menu ul li.tall a,
html>body div.menu ul li.tall a:visited {
height: 26px;
}

.menu ul li:hover a,
.menu ul li a:hover {   
background: black;  }

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul,
.menu ul li a:hover ul {                           /* 2nd level drop-down box */
	display:block;
	position:absolute;
	left: 0;
	margin:0;
	top:28px;              /* place us just up underneath the top-level images */
	height:auto;      /* the drop-down height will be determiend by line count */
	color:white;                        /* this sets the unselected-text color */
	
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	padding:0; 		               /* this sets the unselected drop-down text color */
	background:#002963;					/* this sets the drop-down menu background color */
	color:white;
	border-top-style: solid;
	border-top-width: 1px;
	height: 14px; }
	
.menu ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover {
background-color: black; }

.menu ul li:hover ul.subpad li a,
.menu ul li a:hover ul.subpad li a,
.menu ul li:hover ul.subpad li a:hover,
.menu ul li a:hover ul.subpad li a:hover {     /* 2nd level un+selected items */
	padding: 7px 0;
}

.menu li.owners-sub { width: 182px; }


/*======================== 3RD LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul li ul,
.menu ul li a:hover ul li a ul {             /* hide inactive 3rd-level menus */
	visibility:hidden;
}
     
.menu ul li:hover ul li:hover ul,
.menu ul li a:hover ul li a:hover ul {             /* 3rd level drop-down box AVERAGE - EXCEPTIONS BELOW */
	visibility:visible;
	position:absolute;
	top:0;
	left:119px;
	width:175px;
}

.menu ul li#aboutus:hover ul li:hover ul,
.menu ul li#aboutus a:hover ul li a:hover ul {   /* 3rd level drop-down box-!!!ABOUTUS */
	visibility:visible;
	position:absolute;
	top:0;
	left:119px;
	width:175px;
}

.menu ul li#buyerssellers:hover ul li:hover ul,
.menu ul li#buyerssellers a:hover ul li a:hover ul {  /* 3rd level drop-down box-!!!BUYERS/SELLERS */
	left:127px;
}

.menu ul li:hover ul li:hover ul li a,
.menu ul li a:hover ul li a:hover ul li a {     /* 3rd level unselected items */
	margin-left: 1px;
	background:#002963;
	width:175px;
}

.menu ul li:hover ul li:hover ul li a:hover,
.menu ul li a:hover ul li a:hover ul li a:hover {    /* level3 selected items */
	width:175px;
	background:black;
}

#text {           /* the Mac's standard Safari browser will not see this code */
	height:1em;#           /* ...  but every other browser will and should */
} /* Safari barfs on the illegal pound sign (#) after the rule's property val */




/* THESE ARE MAIN MENU ITEM SPECS */
.menu li#home, .menu li#home ul li a { width: 57px; text-align: center; }
.menu li#search, .menu li#search ul li a { width: 138px; text-align: center; }
.menu li#buyerssellers, .menu li#buyerssellers ul li a { width: 128px; text-align: center; }
.menu li#aboutus, .menu li#aboutus ul li a { width: 74px; text-align: center; }
.menu li#communities, .menu li#communities ul li a { width: 141px; text-align: center; }
.menu li#localinfo, .menu li#localinfo ul li a { width: 84px; text-align: center; }
.menu li#contact, .menu li#contact ul li a { width: 87px; text-align: center; }
.menu li#blog, .menu li#blog ul li a { width: 51px; text-align: center; }


/* THESE ARE TO VARY WIDTH OF 1ST DROPDOWN LEVEL */
.menu ul li#communities ul li a {width: 141px;}
.menu ul li#aboutus ul li a {width: 120px;}
.menu ul li#localinfo ul li a {width: 120px;}


/* THESE ARE TO VARY WIDTH AND INDENT OF 2ND DROPDOWN LEVEL */
.menu ul li#communities:hover ul li:hover ul { left: 141px;}
.menu ul li#communities ul li ul li a {width: 187px;}
.menu ul li#aboutus:hover ul li:hover ul { left: 120px;}
.menu ul li#aboutus ul li ul li a {width: 175px;}
.menu ul li#buyerssellers:hover ul li:hover ul { left: 128px;}
.menu ul li#buyerssellers ul li ul li a {width: 165px;}
.menu ul li#localinfo:hover ul li:hover ul { left: 120px;}


.menu a:hover, .menu a:link, .menu a:active, .menu a:visited {	text-decoration: none;
	color: white;
}

