A:link {color:blue; text-decoration:none;}

.top-level-menu {
    list-style: none;
	border:1px solid #AAAAAA;
    padding: 0;
    margin: 0;
}
.top-level-menu > li {
	font-family: Arial, Verdana;
	font-size: 16px;
	display: block;
    position: relative;
    float: left;
/*    background: orange; */
}
.top-level-menu li a {
    display: block;
    text-decoration: none; 
    color: black; 
	border:1px solid #AAAAAA;
    padding: 0;
    background: #ffffff;
    margin-left: 1px;
    white-space: nowrap;
}
.top-level-menu li a:hover { background: orange; }
.top-level-menu li:hover > ul {
    /* On hover, display the next level's menu */
    display: inline;
}

/* Menu Link Styles */

.top-level-menu a  {
	/* Apply to all links inside the multi-level menu */
    display: block;
    text-decoration: none;
	color: black;
	border: 1px solid #AAAAAA;
    padding: 0;
	background: #ffffff;
	margin-left: 1px;
	white-space: nowrap;

    /* Make the link cover the entire list item-container */
    display: block;
/*    line-height: 30px; */
}
.top-level-menu a:hover { color: #000000; }

.second-level-menu {
    position: absolute;
    left: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}
.second-level-menu > li {
 	font-family: Arial, Verdana;
	font-size: 16px;
	display: block;
	position: relative;
	float: left;
	width: 100%;
}
.second-level-menu > li a:hover { background: lightgray; }
.second-level-menu li:hover > ul {
    /* On hover, display the next level's menu */
    display: inline;
}

.third-level-menu {
    position: absolute;
    top: 0;
    right: -150px;
    width: 150px;
    list-style: none;
    padding: 0;
    margin: 0;
    display: none;
}
.third-level-menu > li {
	font-family: Arial, Verdana;
	font-size: 16px;
	display: inline-block;
	position: relative;
	float: none;
	width: 245%;
}
.third-level-menu a  {
	/* Apply to all links inside the multi-level menu */
    display: block;
    text-decoration: none;
	color: black;
	border: 1px solid #AAAAAA;
    padding: 0;
	background: #ffffff;
	margin-left: 1px;
	white-space: nowrap;
    display: block;
}
.third-level-menu > li a:hover { background: lightgray; }

