/* Applies to everything in the Navigation */
.sf-menu, .sf-menu * {
	margin:			0;
	padding:		0;
	list-style:		none;
	z-index:        5;
}

/* Applies to the 1st level UL */
.sf-menu {	
	position:		relative;
	width:			900px;
}

/* Applies to the 1st level LI */
.sf-menu li {
	line-height:	24px;
	font-size: 		10pt;
	float:			left;
	width:			149px;
	background-image:	url('../images/mainmenu_buttontile.jpg');
	position:		static;
	border-right:	1px solid white;
}

/* fixes IE7 'sticky bug' */
.sf-menu li:hover {
	visibility:		inherit; 
}

/* Applies to the 2nd level UL */
.sf-menu ul {
	background-image:	url('../images/green_tab_tile.jpg');
	top:			-999em;
	position:		absolute;
	width:			900px;
}

/* Applies to the 2nd level LI */
.sf-menu li li {
	line-height:	20px;
	font-size: 		8pt;
	background-image:	url('../images/green_tab_tile.jpg');
/*	width:			150px;  */
    width:          auto;
	position:		static;
	border-right:	none;
	margin:         0px 20px;
}

/* Applies to the left offset for the Donate 2nd level LI */
.sf-menu li li.donate_offset {
}

/* Applies to the left offset for the Volunteer 2nd level LI */
.sf-menu li li.vol_offset {
}

/* Applies to the left offset for the Own A Home 2nd level LI */
.sf-menu li li.own_offset {
     margin-left:   185px;
}

/* Applies to the left offset for the Projects 2nd level LI */
.sf-menu li li.project_offset {
     margin-left:   250px;
}

/* Applies to the left offset for the About Us 2nd level LI */
.sf-menu li li.about_offset {
     margin-left:   242px;
}

/* Applies to the left offset for the Contact Us 2nd level LI */
.sf-menu li li.contact_offset {
     width:         870px;
}

/* Applies to the 3rd level UL */
.sf-menu ul ul {
	width:			200px;
}

/* Applies to the 3rd level LI */
.sf-menu li li li {
	line-height:	20px;
	background-image:	url('../images/mainmenu_buttontile.jpg');
	width:			100%;
	position:		static;
}

/* Applies to all the anchors */
.sf-menu a {
	display:		block;
	position:		relative;
	text-align:		center;
	color:			white;
	font-weight:	bold;
	text-decoration:none;
}

/* Applies to the anchors within the 3rd level LI */
.sf-menu li li li a{
	text-align:		left;
}

/* Sets the background color for the LI of the 1st level UL with the class  of 'current' */
.sf-menu li.current 
{
	background-image:	url('../images/mainmenu_buttontile.jpg');
}

/* What happens to the 2nd Level UL when it's parent LI is hovered over */
.sf-menu li:hover ul,
.sf-menu li.sfHover ul 
{
	left:			0;
	top:			24px; /* match top ul list item height */
	z-index:		99;
}

ul.sf-menu li:hover,
ul.sf-menu li.sfHover,
.sf-menu li li.current,
.sf-menu li a:focus, 
.sf-menu li a:hover, 
.sf-menu li a:active 
{
	background-image:	url('../images/green_tab_tile.jpg');
}

ul.sf-menu ul li:hover li,
ul.sf-menu ul li.sfHover li,
.sf-menu li li:hover,
.sf-menu li li.sfHover,
.sf-menu ul a:focus, 
.sf-menu ul a:hover, 
.sf-menu ul a:active 
{
	color:		#005596;
}

ul.sf-menu ul li:hover,
ul.sf-menu ul li.sfHover,
.sf-menu li li li:hover,
.sf-menu li li li.sfHover,
.sf-menu li li.current li.current,
.sf-menu li li li a:focus, 
.sf-menu li li li a:hover, 
.sf-menu li li li a:active 
{
	background-image:	url('../images/green_tab_tile.jpg');
}

ul.sf-menu .current ul 
{
	left:			0;
}

ul.sf-menu li:hover li ul,
ul.sf-menu li.sfHover li ul 
{
	top:			-999em;
}

ul.sf-menu li li:hover li ul,
ul.sf-menu li li.sfHover li ul 
{
	top:			-999em;
}

ul.sf-menu ul li:hover ul,
ul.sf-menu ul li.sfHover ul 
{
	top:			20px;
	left:			auto;
}

ul.sf-menu li li li:hover ul,
ul.sf-menu li li li.sfHover ul 
{
	top:			auto;
}

/*** arrows ***/
.sf-menu a.sf-with-ul {
	padding-right: 	    2.25em;
	padding-right:		10px;
	min-width:			1px; /* trigger IE7 hasLayout so spans position accurately */
}
.sf-sub-indicator {
	position:			absolute;
	display:			block;
	right:				.75em;
	top:				4px; 	/* IE6 only */
	top:				.5em;
	width:				10px;
	height:				10px;
	text-indent: 		-999em;
	overflow:			hidden;
	background:			url('../images/arrows-ffffff.png') no-repeat -10px -100px; /* 8-bit indexed alpha png. IE6 gets solid image only  */
}
a > .sf-sub-indicator {  /* give all except IE6 the correct values */
/*	top:			.8em;	*/
	top:				4px;
	background-position:0 -100px; /* use translucent arrow for modern browsers */
}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
	background-position:-10px -100px; /* arrow hovers for modern browsers */
}

/*** point all arrows down ***/
/* point right for anchors in subs */
.sf-menu ul .sf-sub-indicator { background-position: -10px -100px; }
.sf-menu ul a > .sf-sub-indicator { background-position: 0 -100px; }
/* apply hovers to modern browsers */
.sf-menu ul a:focus > .sf-sub-indicator,
.sf-menu ul a:hover > .sf-sub-indicator,
.sf-menu ul a:active > .sf-sub-indicator,
.sf-menu ul li:hover > a > .sf-sub-indicator,
.sf-menu ul li.sfHover > a > .sf-sub-indicator {
	background-position:-10px -100px; /* arrow hovers for modern browsers */
}