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

#nav li { /* all list items */
	float: left;
	position: relative;
	width: 151px;
	background-color: white;
	border-left: 1px solid #7d6340;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	left: 0;
  background-color:white;
}

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;
}

#nav li a, #nav li .menu_no_link {
	display:block;
  padding: 5px 0 5px 5px; 
  width: 151px
  }

#content {
	clear: left;
}