.menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

.menu li { /* all list items */
	width: 185px;
	height: 27px;
	background: url(img/but.jpg);
	margin-bottom: 1px;
	font-size: 15px; 
	color: #ffffff;
	padding: 3px 0 0 42px;
}

.menu li ul { /* second-level lists */
	display: none;
	width: 180px;
	margin-left: 185px;
	margin-top: -23px
}

.menu li li {
	background: url(img/but.png);
	width: 185px;
	height: 27px;
	padding: 3px 0 1px 42px;
	margin-bottom: 0;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#content {
	clear: left;
}
