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

li { /* all list items */
	float: right;
	position: relative;
}
.container_li {
	float:right;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 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;
	border: 1px solid #CC9900;
	background-color:#FFF;
}

#content {
	clear: left;
}
.padding_and_width {
	width:100px;
	margin-left:20px;
	padding-left:5px;
}
html>body .padding_and_width {
	margin-left:0px;
}
a.link_drop_down {
	color:#666666;
	font-family: Tahoma, Arial, Helvetica;
	font-size:12px;
	text-decoration:none;
	background:url(../img/arrow_top_menu.jpg) no-repeat;
	background-position:left;
	padding-left:10px;
	border-bottom: 1px solid #CCCCCC;
}
