/*menu damariscotta hardward /////////////////////////////////*/

#menu   { 
    margin-top: 103px;
    padding-left: 20px;
    padding-top: 10px;
    width: 800px;
    height: 30px;
	z-index: 2500;
	position: absolute;
}

#menu ul  { 
	line-height: 2; 
	background-repeat: repeat; 
	list-style: none; 
	margin-right: 0; 
	padding: 0 
}

#menu a {
 	display: block; 
	text-align: center;
 	color: #fff; 
	font-size: 11px;
	font-family: helvetica, Trebuchet MS, Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; 	
	font-weight: bold; 
	text-decoration: none; 
	margin: 0pt;
	line-height: 18px;

 }

#menu a:hover  { 
	color: #c2c2c2; 
	font-size: 11px;
	font-family: helvetica, Trebuchet MS, Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; 	
	font-weight: bold; 
	line-height: 18px; 
	text-decoration: none; 
	background-position: 0 bottom; 
	text-align: center; 
	display: block; 
	margin-bottom: 0 
}

#menu li li {
	padding-bottom: 7px;
	color: #fff; 
	text-decoration: none; 
	text-align: left;
}

#menu li li a {
	padding-top: 0px;
	padding-bottom: 7px;
	color: #152C5C; 
	font-size: 10px; 
	font-family: helvetica, Trebuchet MS, Helvetica, Geneva, Arial, SunSans-Regular, sans-serif; 	
	font-weight: bold; 
	text-decoration: none; 
	text-align: left;
	line-height: 13px;
}

#menu li li a:hover  { 
	color: #c2c2c2; 
	font-size: 10px; 
	font-family: arial, helvetica, sans-serif; 
	font-weight: bold; 
	line-height: 13px; 
	text-decoration: none; 
	text-align: left; padding-top: 0; padding-bottom: 7px 
}

#menu li { /* all list items */
	float: left;
	z-index: 3000;
	margin-right: 8px;
}

#menu li li { /* second  list items */
	width: 125px;
}
	
#menu li ul { /* second-level lists */
	border-top: solid 5pt #FE0601;
	border-left: solid 1pt #152C5C;
	border-right: solid 1pt #152C5C;
	border-bottom: solid 1pt #152C5C;
	position: absolute;
	display: none;
	background: #fff;	
	margin-top: -2px;
	width: 125px;
	padding: 10px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

/* added to make menus work in IE */
#menu li:hover ul { display: block;}

#menu li > ul {
	top: auto;
	left: auto;
}
#menu li:hover, #menu li.hover {position: static }

#menu li ul ul { /* third-and-above-level lists */
	border: 0;
	margin: -2em 0 0 7em;
	background: #FED002;
}

#menu li:hover ul ul, #nav li.sfhover ul ul {
	left: -999em;
}

/* lists nested under hovered list items */
#menu li:hover ul, #nav li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul { 
	left: auto;
}

