/* - - - ADxMenu: BASIC styles - - - */
#navigationSidebarList, #navigationSidebarList ul {	/* remove all list stylings */
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}
#navigationSidebarList li {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	position: relative;	/* position each LI, thus creating potential IE.win overlap problem */
	z-index: 5;		/* thus we need to apply explicit z-index here... */
}
#navigationSidebarList 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 */
}
#navigationSidebarList 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 */
}
#navigationSidebarList li:hover>ul {
	visibility: visible;	/* display submenu them on hover */
	left: 100%;	/* and move them to the right of the item */
}
/* -- float.clear --
	force containment of floated LIs inside of UL */
#navigationSidebarList:after, #navigationSidebarList ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
#navigationSidebarList, #navigationSidebarList 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 "#navigationSidebarList UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
#navigationSidebarList ul {
	background-image: url(empty.gif);	/* required for sticky to work in IE6 and IE7 - due to their (different) hover bugs */
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
	/*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 - - - */
#navigationSidebarList {
	width: 156px;
}
#navigationSidebarList ul {
	width: 175px;
}
#navigationSidebarList li li {
	border-left: 2px solid #1D378B;
}
#navigationSidebarList li:hover>ul {	/* inset submenus, to show off overlapping */
	top: 0px;
	left: 140px;
}
/*---first & second level links---*/
#navigationSidebarList li:hover>a {
	background: #f2f3f8;
}
#navigationSidebarList a:link, #navigationSidebarList a:visited {
	text-decoration: none;
	color: #1D378B;
	padding: 5px;
	display: block;
}
#navigationSidebarList a:hover, #navigationSidebarList a:active {
	background: #f2f3f8;
}
#navigationSidebarList li li a:link, #navigationSidebarList li li a:visited {
	background: #cdd2e5;	
}
#navigationSidebarList li li a:hover, #navigationSidebarList li li a:active {
	background: #f2f3f8;	
}
/*---stay locked-in even when submenu is active---*/
#navigationSidebarList .current_page_ancestor a:link, #navigationSidebarList .current_page_ancestor a:visited {
	background: #f2f3f8;
}
#navigationSidebarList .current_page_ancestor a:hover, #navigationSidebarList .current_page_ancestor a:active {
	background: #f2f3f8;
}
/*---navigation without submenus---*/
#navigationSidebar .navigationDefault {
	margin: 0px 0px 16px 0px;
	list-style-type: none;
	padding: 0px 0px 4px 0px;
	border: 1px solid #CCD7ED;
}
#navigationSidebar .withoutHeadline {
	padding: 5px 0px;
	background-color: #CCD7ED;
	font-weight: bold;
}
#navigationSidebar .navigationDefault ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#navigationSidebar .navigationDefault li {
	margin: 0px 0px 5px;
	padding: 0px;
	width: 170px;
}
#navigationSidebar .navigationDefault li.page_item {
	margin: 0px;
	padding: 0px;
	width: 170px;
}
#navigationSidebar a {
	margin: 0px;
	text-decoration: none;
	display: block;
	color: #1D378B;
	padding: 2px 5px 2px 14px;
	background: url(images/arrow_blue.gif) no-repeat 5px 6px;
}
#navigationSidebar a:hover {
	background: url(images/arrow_blue.gif) no-repeat 5px 6px #f2f3f8;
}
#navigationSidebar .withoutHeadline a:hover {
	background: url(images/arrow_blue.gif) no-repeat 5px 6px #EFF2FB;
}

/*---menu lock-in---*/
/*
#navigationSidebarList .current_page_item a {
	background: #FFF;	
}
#navigationSidebarList .current_page_item a:hover {
	background: #FFF;	
}
#navigationSidebarList .current_page_item li a {
	background: #cdd2e5;
}
#navigationSidebarList .current_page_item li a:hover {
	background: #f2f3f8;
}
*/
#navigationSidebar .navigationDefault .current_page_item a {
	background: #FFF url(images/arrow_red.gif) no-repeat 5px 6px;
	color: #FE4343;
}
#navigationSidebar .navigationDefault .current_page_item a:hover {
	background: #f2f3f8 url(images/arrow_red.gif) no-repeat 5px 6px;
	color: #FE4343;
}
#navigationSidebar .withoutHeadline .current_page_item a {
	background: url(images/arrow_blue.gif) no-repeat 5px 6px #EFF2FB;
	color: #1D378B;
}
#navigationSidebar .withoutHeadline .current_page_item a:hover {
	background: url(images/arrow_blue.gif) no-repeat 5px 6px #EFF2FB;
	color: #1D378B;
}