/* -- sticky.submenu --
	it should not disappear when your mouse moves a bit outside the submenu
	YOU SHOULD NOT STYLE the background of the ".menu UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 10px 30px 30px 30px;
	margin: -10px 0 0 -30px;
	/*background: #f00;*/	/* uncomment this if you want to see the "safe" area.
								you can also use to adjust the safe area to your requirement */
}
.menu ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */


/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu, .menu ul li {
	background: #FFF;
}

.menu ul {
	width: 11em;
}

.menu a {
	text-decoration: none;
	padding: .4em 1em;
	display: block;
	border:none;
	font-family: verdana,arial,sans-serif;
    font-size: 12px;
    font-weight:normal;
    color: #385F95;
    letter-spacing: -1px;
}

.menu p {
	text-decoration: none;
	padding: .4em 1em;
	display: block;
	border:none;
	font-family: verdana,arial,sans-serif;
    font-size: 12px;
    font-weight:normal;
    color: #385F95;
    letter-spacing: -1px;
}

.menu a:hover, .menu li:hover>a {
	color:#ffe400;
	background-color:#599dc1;
}

.menu li li {	/* create borders around each item */
	border: 1px solid #d4d4d4;
}
.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
{
    cursor: default;
	color: #72a8da;
}

/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
/* End Fix */

/*]]>*/