/* - - - ADxMenu: BASIC styles - - - */

/* remove all list stylings */
.menu
{
	width: 100%;
	margin: -12px 0 0 0;
	padding: 0;
	background: url(tab5.gif); background-repeat: repeat-x;
	height: 30px;
}
html>body .menu
{
	margin-top: 1px;
}
.menu ul 
{
	list-style-type: none;
	display: block;
}

/* move all list items into one row, by floating them */
.menu li {
	margin: 0px;
	padding: 0px;
	border: 0px;
	display: block;
	float: left;
	text-align: center;
}

/* define new starting point for the nested UL, thus making positioning it a piece of cake */
.menu li:hover 
{
	position: relative;
}

/* force the submenu items into separate rows, while still keeping float:left (which resolves IE6 white-gap problem) */
.menu li li 
{
	width: 150px;
}

/* fix the position for 2nd level submenus.
	first make sure no horizontal scrollbars are visible on initial page load by sliding them all into top-left corner  */
.menu li li ul {
	top: 0;
	left: 0;
}

/* ...and then place the submenu where it should be when shown */
.menu li li:hover ul {
	left: 100%;
}

/* initialy hide all sub menus */
.menu ul {
	display: none;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
.menu li:hover>ul {
	display: block;
}

/* -- float.clear -- force containment of floated LIs inside of UL */
.menu:after, .menu ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
/* IE7 float clear: */
.menu, .menu ul {
	min-height: 0;
}

/* -- float.clear.END --  */

/* 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 {
	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 */
}


/* - - - ADxMenu: DESIGN styles - - - */
.menu .submenu {}
.menu, .menu ul li {}
.menu ul {
	width: 11em;
}
.menu li:hover>a 
{
}
.menu a 
{
	border-left: solid 1px #7E9CB9;
	border-right: solid 1px #34526F;
	display: block;
	text-decoration: none;
	color: #FFF;
	padding: 6px 0px 8px;
	font-weight: bold;
	font-size: 13px;
	font-family: Arial;
	padding-left: 10px;
	padding-right: 10px;
}
.menu a:link.active, .menu a:visited.active
{
	color: #EEE;
}
.menu li a:active
{
	color: #CB0D07;
}
.menu a:hover 
{
	background-color: #3e6891;
}
.menu li li a
{
	margin-left: 0px;
	padding-left: 5px;
	text-align:left;
	width: 150px;
	color: #FFF;
	background: #3e6891;
	border: solid 0px pink;
}
.menu li li a:hover
{
	color: #BBB;
}
/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
.menu {
	display: inline-block;
}
/* End Fix */