#main-menu{
   width:500px;
   margin-top:15px;
   margin-left:120px;
}
.menu, .menu ul li {
	color: #6699CC;
	background: transparent;
}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	color: #006699;
	font-weight:900;
	padding: .4em 1em;
	display: block;
	position: relative;
}

.menu a:hover, .menu li:hover>a {
	color: #000;
}

.menu li li {	/* create borders around each item */
	
}
.menu ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu li li:hover>ul {	/* inset 2nd+ submenus, to show off overlapping */
	top: 5px;
	left: 90%;
}

/* special colouring for "Main menu:", and for "xx submenu" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenus in posts */
/*.menu>li:first-child>a, .menu li + li + li li:first-child>a {
	color: #fff;
}*/