#dropdown1, #dropdown1 ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
	line-height: 1;
	border-right:1px solid #fff;
	position:absolute;
}

#dropdown1 a {
	display: block;
	width: 138px;
	padding:5px 0 5px 5px;
}

#dropdown1 li { /* all list items */
	float: left;
	width: 143px; /* width needed or else Opera goes nuts */
	border-left: 1px solid #fff;
}

#dropdown1 li ul { /* second-level lists */
	position: absolute;
	width: 143px;
	left: -999em; /* using left instead of display to hide menus because display: none isn't read by screen readers */
}

#dropdown1 li ul ul { /* third-and-above-level lists */
	margin: -2em 0 0 143px;
}



#dropdown1 li:hover ul ul, #dropdown1 li:hover ul ul ul, #dropdown1 li:hover ul ul ul ul, #dropdown1 li.sfhover ul ul, #dropdown1 li.sfhover ul ul ul, #dropdown1 li.sfhover ul ul ul ul {
    left: -999em;
}


#dropdown1 li:hover ul, #dropdown1 li li:hover ul, #dropdown1 li li li:hover ul, #dropdown1 li li li li:hover ul, #dropdown1 li.sfhover ul, #dropdown1 li li.sfhover ul, #dropdown1 li li li.sfhover ul, #dropdown1 li li li li.sfhover ul {
    left: auto;
}


/* deco */

#dropdown1 a:hover{background-color: #06c;}

.haschild{background-image:url("../images/dropdown/a0.gif");  background-position: 135px;  background-repeat: no-repeat;  }
.haschild:hover{background-image:url("../images/dropdown/a1.gif")}

.child {background-color: #ccc;font-weight:normal;color: #000;border-bottom: 1px solid #fff;border-right:1px solid #fff;}
.child:hover {color: #fff;background-color: #06c;font-weight:bold;}

.parent {background: #039;font-weight:bold;color:#fff;}
.parent:hover{background:#06c;color: #fff;}