.menu {
	position:relative;
	float:left;
	margin:0;
	padding:0;
	border:0;
	height:18px;
	width:100%;
        z-index: 100;
}

.menu img {
	vertical-align: top;
    padding: 13px 0 14px 0;
}

.menu ul {
	margin:0;
	list-style-type:none;
	line-height:1.5em;
	padding: 0;
}

.menu li {
	float:left;
	position:relative;
	margin:0;
	padding: 0;
}

.menu ul li table {
	margin:-1px 0;
	m\argin:0;
	border-collapse:collapse;
	font-size:12px;
}

.drop {
	display:block;
	padding:0px 0.33em;
	margin:0;
	text-align:right;
	cursor:pointer;
	cursor:hand;
}

.drop span {
	float:left;
}

/*======================== TOP LEVEL MENU DEFINITIONS ========================*/

.menu ul li ul {
	display:none;
	padding:1px;
}

.menu ul li a,
.menu ul li a:visited {
        margin: 10px 0 10px 0;
        padding: 3px 19px 3px 19px;
        color: #ffffff;
	display:block;
	float:left;
	text-decoration:none;
	height:18px;
}

.menu ul li:hover a,
.menu ul li a:hover { 
	height:16px;
        color: #bfeeef;
        background-color: #1a44ae;
}

/*======================== 2ND LEVEL MENU DEFINITIONS ========================*/

.menu ul li:hover ul,
.menu ul li a:hover ul {
	display:block;
	position:absolute;
	margin:0;
	top:30px;
	left:-1px;
	height:auto;
	width:13.5em;
	color:black;
	background:black;
}

.menu ul li:hover ul.leftbutton,
.menu ul li a:hover ul.leftbutton {/* our first dropdown should not be skewed */
	left:0px;
}

.menu ul.rightmenu li:hover ul,
.menu ul.rightmenu li a:hover ul {    /* 2nd level neighborhood drop-down box */
	left:auto;
	right:0;         /* nudge the right menu right to line up under the border */
	width:400px;      /* with a 12px default font, this is 228px width (228/12) */
}

* html .menu ul.rightmenu li a:hover ul {         /* IE5/6 needs a tweak here */
	right:-1px;
}

.menu ul li:hover ul li a,
.menu ul li a:hover ul li a {                   /* 2nd level unselected items */
	border:0;
	margin:0;
	padding:0;
	height:auto;
	color:#000;               /* this sets the unselected drop-down text color */
	background:#d8d8d8;       /* this sets the drop-down menu background color */
	width:13.5em;
}

.menu ul li:hover ul li:hover a,
.menu ul li a:hover ul li a:hover {                /* 2nd level selected item */
	color:black;
	background:white;
}

/*======================== 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 */
	visibility:visible;
	position:absolute;
	margin-top:-1px;	      /* bring the top edge of the 3rd level menu up one */
	top:0;
	left:8.08333em;
	width:14em;
}

.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 */
	width:14em;
	background:#d8d8d8;
}

.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:14em;
	background:white;
}

#text {           /* the Mac's standard Safari browser will not see this code */
	height:1.215em;#           /* ...  but every other browser will and should */
} /* Safari barfs on the illegal pound sign (#) after the rule's property val */

