/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */
/* remove all list stylings */
#menuList, #menuList ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}
#menuList li {
	margin: 0;
	padding: 0px;
	border: 0;
	display: block;
	float: left;	/* move all main list items into one row, by floating them */
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}
#menuList li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu */
	white-space: normal;/* required to resolve IE7 :hover bug (z-index above is ignored if this is not present)
							see http://www.tanfa.co.uk/css/articles/pure-css-popups-bug.asp for other stuff that work */
}
#menuList li li {
	float: none;/* items of the nested menus are kept on separate lines */
	padding: 0px;
}
#menuList ul {
	visibility: hidden;	/* initially hide all submenus. */
	position: absolute;
	z-index: 10;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}
#menuList li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	top: 100%;	/* 1st level go below their parent item */
}
#menuList li li:hover>ul {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}
/* -- float.clear --
	force containment of floated LIs inside of UL */
#menuList:after, #menuList ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
#menuList, #menuList ul {	/* IE7 float clear: */
	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 "#menuList UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
#menuList ul {
	background-image: url(images/empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 1px 30px 30px 30px;
	margin: 0px 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 */
}
#menuList ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu.END -- */
/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */
#menuList {
	background:url(images/bg_navigationMain-tel.gif) no-repeat right top;
	padding-left: 10px;
}
#menu {
	font-size: 11px;
	background: url(images/bg_navigationMain.jpg) repeat-x left top;
}
#menuList ul {
	width: 175px;
}
/*---first level links---*/
#menuList li a {
	text-decoration: none;
	color: #FFFFFF;
	display: block;
	position: relative;
	font-weight: bold;
	padding-top: 4px;
	padding-right: 12px;
	padding-bottom: 5px;
	padding-left: 14px;	
}
#menuList li a:hover {
	background-image: url(images/bg_navigationMain-invert.gif);
	background-repeat: repeat-x;
	background-position: 0px 0px;
}
/*---first level menu lock-in---*/
#menuList .current_page_item a {
	background-image: url(images/arrow_white.gif);
	background-repeat: no-repeat;
	background-position: 5px 9px;
}
/*---stay locked-in even when submenu is active---*/
#menuList .current_page_ancestor a {
	background-image: url(images/arrow_white.gif);
	background-repeat: no-repeat;
	background-position: 5px 9px;
}
/*---second level links---*/
#menuList li li {
	border-left: 1px solid #1E1284;
}
#menuList li li a {
	font-weight: normal;
	padding-top: 5px;
	padding-bottom: 5px;
	background-color: #6a7fbb;
	background-image: none;
	color: #FFFFFF;
	border-right: 0px none;
}
#menuList li li a:hover {
	background-color: #CCD7ED;
	background-image:none;
	color: #1E1284;
}
/*---remove background from 2nd level---*/
/*---first level is active---*/
#menuList .current_page_item li a:link, #menuList .current_page_item li a:visited {
	background-color: #6a7fbb;
	background-image: none;
	color: #FFFFFF;
}
#menuList .current_page_item li a:hover, #menuList .current_page_item li a:active {
	background-color: #CCD7ED;
	color: #1E1284;
}
/*---second level is active---*/
#menuList .current_page_ancestor li a:link, #menuList .current_page_ancestor li a:visited {
	background-color: #6a7fbb;
	background-image: none;
	color: #FFFFFF;
}
#menuList .current_page_ancestor li a:hover, #menuList .current_page_ancestor li a:active {
	background-color: #CCD7ED;
	color: #1E1284;
}
/*---second level menu lock-in---*/
#menuList .current_page_ancestor .current_page_item a:link, #menuList .current_page_ancestor .current_page_item a:visited {
	background: #8193c3 url(images/arrow_submenu.gif) no-repeat left center;
}
#menuList .current_page_ancestor .current_page_item a:hover, #menuList .current_page_ancestor .current_page_item a:active {
	background: #CCD7ED url(images/arrow_submenu.gif) no-repeat left center;
}
#menuList li.contactLink {
	float: right;
}
#menuList li.contactLink a{
	color: transparent;
	border: 0px none;
}
#menuList li.contactLink a:hover{
	color: transparent;
	background: none;
}