#menu a img {
	vertical-align: bottom;
}

#menu {
	height: 2ex;
	z-index: 1;
	padding: 0px;
	margin: 0px;
	position: relative;
}

#menu a {
	text-decoration: none;
	margin: 0;
	padding: 0;
}

#menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

#menu li { /* all list items */
	float: left;
	position: relative;
	width: 20%;
}

#menu li ul { /* second-level lists */
 	display: none;
 	position: absolute;
	margin-left: 20px; /* Get the left side of the dropdown to come in under the main crayon body and not the crayon tip */
	width: 121px; /* The width of the image (145px) less the left margin (20px) less 4px to make the right side shifted a bit to the left */
	background: url(menubackground.gif) repeat-x top left;
	padding-bottom: 1ex;
	padding-top: 1ex;
	border-bottom: 5px solid black;
	border-left: 1px solid black;
	border-right: 1px solid black;
	overflow: hidden;
	left: 0;
	top: 23px;
}

#menu ul>a {
	display: block;
	position: relative;
}

#menu li ul li {
	width: 112px; /* The width from "#menu li ul" above (121px) less the padding-left (7px) less the left and right borders from "#menu li ul" above (2 borders @ 1px each = 2px) */
	text-align: left;
	font-size: 80%;
	padding-left: 7px;
	padding-top: 0.25ex;
	padding-bottom: 0.25ex;
}

#menu li:hover ul, #menu li.over ul { /* lists nested under hovered list items */
	display: block;
}

#menu li ul li:hover {
	border-left: 2px solid black;
	border-right: 2px solid black;
	padding-left: 5px;
}