/* - - - ADxMenu: BASIC styles - - - */

/* remove all list stylings */
.menu, .menu ul {
	margin: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

/* move all list items into one row, by floating them */
.menu li {
	margin: 0;
	display: block;
	float: left;
}

/* 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: 100%;
}

/* 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%;
	margin-top:-30px;
}

/* initialy hide all sub menus */
.menu ul {
	visibility: hidden;
	position: absolute;
	z-index: 10;
}

/* display them on hover */
.menu li:hover>ul {
	visibility: visible;
}
/* -- 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 div" 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 */
}


/* - - - ADxMenu: DESIGN styles - - - */

.menu {
	color: #eee;
}

.menu ul {
	width: 200px;
	border: 1px solid #FFFFFF;
}
.menu li {
	background-color: #4B6E81;
	padding: 0;
	background-image: url(../images/menu_hr.gif);
	background-repeat: no-repeat;
	background-position: right top;
}
.menu li:last-child { border-right-style:none; }
.menu li:hover {
	background-color: #426171;
}
.menu li:hover>a {
	color: #fc3;
}
.menu li li {
	background-image:none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #47687A;
}
.menu a {
	text-decoration: none;
	color: #eee;
	display: block;
	padding-top: 8px;
	padding-right: 15px;
	padding-left: 15px;
	padding-bottom: 4px;
	font-size: 16px;
	margin-right: 1px;
	background-image: url(blueprint/blank.gif);
	background-repeat: repeat;
}

.menu a:hover {
	color: #fc3;
}
.menu li a.parent {
	background-image:url(../images/bg_nav_li.gif);
	background-repeat: no-repeat;
	background-position: right 18px;
	padding-right: 24px;
}
.menu li li a.parent {
	background-image: url(../images/bg_nav_li2.gif);
	background-repeat: no-repeat;
	background-position: right 12px;
}
.menu li li a { 
margin-right:0px;
padding-top:6px;
padding-bottom:2px;
font-size:14px;
}


/* Fix for IE5/Mac \*//*/
.menu a {
	float: left;
}
.menu {
	display: inline-block;
}
/* End Fix */

