/* NAVIGATION starts */

#sitenav
{
    padding: 0;
    width: 760px;
	height: 30px;
    background-color: #FFE292;
/*	border-bottom: 4px solid #79A5CC;
*/}

#sitenav #home
{
    width: 70px;
	font-weight: bold;
	text-align: center;

}

#sitenav #about
{
    width: 95px;
	font-weight: bold;
	text-align: center;
}

#sitenav #give
{
    width: 120px;
	font-weight: bold;
	text-align: center;
}

#sitenav #donor
{
    width: 160px;
	font-weight: bold;
    text-align: center;
}

#sitenav #events
{
    width: 80px;
	font-weight: bold;
    text-align: center;
}

#sitenav #testimonials
{
    width: 130px;
	font-weight: bold;
    text-align: center;
}

#sitenav #contact
{
    width: 105px;
	font-weight: bold;
    text-align: center;
}

.suckertreemenu ul{
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: left;
	border-bottom: 1px solid #79A5CC;
}

/*Top level list items*/
.suckertreemenu ul li{
position: relative;
display: inline;
float: left;
background-color: #FFE292; /*overall menu background color*/
font-weight: normal;
color: #79A5CC;
}

/*Top level menu link items style*/
.suckertreemenu ul li a{
display: block;
padding: 6px 6px;
letter-spacing: .08em;
font-size: 95%;
width: auto;
border: 1px solid #FFE292;
border-left-width: 0;
text-decoration: none;
color: #0066cc;
}
	
/*1st sub level menu*/
.suckertreemenu ul li ul{
left: 0;
position: absolute;
top: 1em; /* no need to change, as true value set by script */
display: block;
visibility: hidden;
}

/*Sub level menu list items (undo style from Top level List Items)*/
.suckertreemenu ul li ul li{
display: list-item;
float: none;
}

/*All subsequent sub menu levels offset after 1st level sub menu */
.suckertreemenu ul li ul li ul{ 
left: 170px; /* no need to change, as true value set by script */
top: 0;
}

/* Sub level menu links style */
.suckertreemenu ul li ul li a{
display: block;
width: 170px; /*width of sub menu levels*/
text-decoration: none;
border: 1px solid #ccc;
}

.suckertreemenu ul li a:hover{
background-color: #79A5CC;
color: white;
}

/*Background image for top level menu list links */
.suckertreemenu .mainfoldericon{
background: #FFE292 url(media/arrow-down.gif) no-repeat center right;
}

/*Background image for subsequent level menu list links */
.suckertreemenu .subfoldericon{
background: #F3F3F3 url(media/arrow-right.gif) no-repeat center right;
}
	
/* Holly Hack for IE \*/
* html .suckertreemenu ul li { float: left; height: 1%; }
* html .suckertreemenu ul li a { height: 1%; }
/* End */