#Menu {
    background-color: #FF7F00;
    margin-top: 3px;
    height: 18px;
    padding-left: 122px;
}

#Menu ul { /* all lists */
	padding: 0;
	margin: 0;
    list-style-image: none;
    list-style-position: outside;
    list-style-type: none;
}

#Menu li { /* all list items */
    list-style: none;
    padding: 0 5px 0 5px;
    /*background-color: #e1ddd2;*/
    border-left: 1px solid #FFFFFF;
	float: left;
	position: relative;
	width: 127px;
    height: 18px;
    line-height: 18px;
    text-align: center;
    font-size: 0.8em;
    font-weight: bold;    
    text-transform: uppercase;
}

#Menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	left: 0;
}

#Menu li ul li {
    border-bottom: 1px solid #FFFFFF;
    width: 135px;
    height: 18px;
    line-height: 18px;
    text-align: left;
    font-size: 1.2em;
    font-weight: normal;
    text-transform: none;
    background-color: #FF7F00;
}


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

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

#Menu li:hover  {
	background-color: #ca6d00;
}

#Menu li ul li:hover  {
	background-color: #ca6d00;
    color: #ffff00;
}


#Menu ul a {
    color: #000000;
    text-decoration: none;
    display: inline-block;
    width:100%;
}
