.third-level-menu {
	position: absolute;
	top: 0;
	right: -130px;
	width: 130px;
	list-style: none;
	display: none;
	background: #FFFFFF;
}

.third-level-menu > li.menu {
    height: 20px;
    background: #FFFFFF;
}
.third-level-menu > li.menu:hover { 
	background: #DDDDDD;
}

.second-level-menu {
    position: absolute;
    top: 40px;
    right: 0px;
    width: 150px;
    list-style: none;
    display: none;
	background: #FFFFFF;
}

.second-level-menu > li.menu {
    position: relative;
	left: 0px;    /* -10 Better for Level 2 */
    height: 20px;
    background: #FFFFFF;
}
.second-level-menu > li.menu:hover { 
	background: #DDDDDD;  
}

.top-level-menu {
    list-style: none;
	position: relative;
	width: 120px;
	margin-right: 20px;
}

li.menu {
	padding: 5px 0px 5px 0px;
}

.top-level-menu > li.menu {
    position: relative;
    height: 30px;
    width: 150px;
    background: #FFFFFF;
}
.top-level-menu > li.menu:hover { 
}

/* On hover, display the next level's menu */
.top-level-menu li.menu:hover > ul {
    display: inline;
	box-shadow: 8px 8px 10px 0px rgba(0,0,0,0.15);
}


/* Menu Link Styles */
/* Apply to all links inside the multi-level menu */
.top-level-menu a {
    font: bold 16px Arial, Helvetica, sans-serif;
/*    color: #666666;  See text style sheet */
	line-height: 24px;
    text-decoration: none;
	width: 100%;
    
/* Make the link cover the entire list item-container */
    display: block;
}  

a.drop:hover {
	background: #DDDDDD; 
	width: 100%;
}

