/* - - - ADxMenu: BASIC styles [ MANDATORY ] - - - */

/* remove all list stylings */
.menu2 {
	width: 750px !important;
	width: 750px;
	/*font-weight: normal !Important;
	font-weight: normal;*/
	/*margin-left: 150px;*/
}

.menu2, .menu2 ul {
	margin: 0;
	padding: 0;
	border: 0;
	list-style-type: none;
	display: block;
}

.menu2 li {
	margin: 0;
	padding: 0;
	/*padding-right: 13px !important;
	padding-right: 20px;*/
	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... */
}

.menu2 li.need {
	padding-left: 27px;
	padding-top: 5px;
}

.menu2 li.agencies {
	padding-left: 9px;
	padding-top: 5px;
}

.menu2 li.fundraising {
	padding-left: 27px;
	padding-top: 5px;
}

.menu2 li.volunteer {
	padding-left: 50px;
	padding-top: 5px;
}

.menu2 li.locations {
	padding-left: 55px;
	padding-top: 5px;
}

.menu2 li:hover {
	z-index: 10000;	/* ...and here. this makes sure active item is always above anything else in the menu2 */
	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 */
}

.menu2 li li {
	float: none;/* items of the nested menu2s are kept on separate lines */
}

.menu2 ul {
	visibility: hidden;	/* initially hide all submenu2s. */
	position: absolute;
	z-index: 99;
	left: 0;	/* while hidden, always keep them at the top left corner, */
	top: 0;		/* 		to avoid scrollbars as much as possible */
}

.menu2 li:hover>ul {
	visibility: visible;	/* display submenu2 them on hover */
	top: 100%;	/* 1st level go below their parent item */
}

.menu2 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 */
.menu2:after, .menu2 ul:after {
	content: ".";
	height: 0;
	display: block;
	visibility: hidden;
	overflow: hidden;
	clear: both;
}
.menu2, .menu2 ul {	/* IE7 float clear: */
	min-height: 0;
}
/* -- float.clear.END --  */

/* -- sticky.submenu2 --
	it should not disappear when your mouse moves a bit outside the submenu2
	YOU SHOULD NOT STYLE the background of the ".menu2 UL" or this feature may not work properly!
	if you do it, make sure you 110% know what you do */
.menu2 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 */
}
.menu2 ul ul {
	padding: 30px 30px 30px 10px;
	margin: -30px 0 0 -10px;
}
/* -- sticky.submenu2.END -- */


/* - - - ADxMenu: DESIGN styles [ OPTIONAL, design your heart out :) ] - - - */

.menu2, .menu2 ul li {
	color: #000;
	/*background: #234;
	background: #fff;*/
}

.menu2 ul {
	width: 13em;
}

.menu2 a {
	text-decoration: none;
	color: #000;
	display: block;
	position: relative;
	font-size: 85%;
	font-weight: bold;
}

.menu2 li li a {
	text-decoration: none;
	color: #000;
	padding: .4em .9em;
	display: block;
	position: relative;
	/*font-size: 80%; !important*/
	font-size: 85%;
	font-weight: bold;
}



.menu2 a:hover, .menu2 li:hover>a {
	/*color: #fc3;*/
	color: #aeaeae;
	/*background-color: #eee;*/
}

.menu2 a:visited {
	color: #000;
}

.menu2 li li {	/* create borders around each item */
	background-color: #f4de74;	
	/*border-left: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	border-right: 1px solid #eeeeee;*/
}

.menu2 ul>li + li {	/* and remove the top border on all but first item in the list */
	border-top: 0;
}

.menu2 li li:hover>ul {	/* inset 2nd+ submenu2s, to show off overlapping */
	top: 10px;
	left: 90%;
}

/* special colouring for "Main menu2:", and for "xx submenu2" items in ADxMenu
	placed here to clarify the terminology I use when referencing submenu2s in posts */
	
/*.menu2>li:first-child>a, .menu2 li + li + li li:first-child>a {
	color: #567;
}*/

/* Fix for IE5/Mac \*//*/
.menu2 a {
	float: left;
}
/* End Fix */


/* - - - ADxMenu: IE6 BASIC styles [MANDATORY] - - - */

.menu2, .menu2 ul {	/* float.clear */
	zoom: 1;
}

.menu2 li.adxmhover {
	z-index: 10000;
}

.menu2 .adxmhoverUL {	/* li:hover>ul selector */
	visibility: visible;
}

.menu2 .adxmhoverUL {	/* 1st-level submenu2 go below their parent item */
	top: 100%;
	left: 0;
}

.menu2 .adxmhoverUL .adxmhoverUL {	/* 2nd+ levels go on the right side of the parent item */
	top: 0;
	left: 100%;
}

/* - - - ADxMenu: DESIGN styles - - - */

.menu2 ul a {	/* fix clickability-area problem */
	zoom: 1;
}

.menu2 li li {	/* fix white gap problem */
	float: left;
	width: 100%;
}

.menu2 li li {	/* prevent double-line between items */
	margin-top: -1px;
}

.menu2 a:hover, .menu2 .adxmhoverA {		/* li:hover>a selector */
	color: #aeaeae;
	/*color: #fc3;
	background-color: #000;*/
}

.menu2 .adxmhoverUL .adxmhoverUL {	/* inset 2nd+ submenu2s, to show off overlapping */
	top: 5px;
	left: 90%;
}

