
#navparent {
	background-image: url(../i/nav-bg.jpg);
	background-repeat: no-repeat;
	height: 24px;
	margin:0;
	padding:0;
	font-size:12px;
}
/* 
http://www.alistapart.com/articles/dropdowns
http://htmldog.com/articles/suckerfish/dropdowns/
*/
#nav ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#nav a {
	color: white;
	text-decoration: none;
	text-transform:lowercase;
}

/* top-level navigation link attributes */
#nav li a {
    margin-left:.75em;
	margin-right:.75em;

}
/* top-level navigation rollover font color */
#nav li a:hover {
 color:black;
}
/* top-level navigation rollover background persistence */
#nav li:hover, 
#nav li.sfhover {
	background: #6CC8C7;
}

/* top-level navigation elements */
#nav li {
	float: left;
	position: relative;
	text-align: left;
	cursor: default;
	padding-top:4px;
	padding-bottom: 3px;
		
}


#nav li#first {
	margin-left: 10px;
}

#nav li#last {
 margin-right: 10px;
}

/* second level navigation container */
#nav li ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
	background-color: #6CC8C7;
	margin-top:2px;
	_margin-top:0;  /* IE hack */
	/* background: url(../i/nav-dd-bg.jpg) bottom left no-repeat; */
	/*
	margin:0;
	padding-bottom:5px;
	*/
	

}

#nav li>ul {
	top: auto;
	left: auto;
}

/* second level navigation attributes */
#nav li li {
	display: block;
	float: none;
	background-color: transparent;
	width:115px;
	margin:0;
	padding:0;
}

/* second level navigation link attributes */
#nav li li a {
	display: block;
	font-weight: normal;
	margin:0px;
	padding-top:4px;
	padding-bottom: 4px;
	padding-left:0.75em;
	color:black;
}
/* second level navigation link hover attributes */
#nav li li a:hover {
	margin:0px;
	/*
	padding-top:5px;
	padding-bottom: 5px;
	*/
	padding-left:0.75em;
	background-color: #432E19;
	color:white;
}


#nav li:hover ul, 
#nav li.sfhover ul { 
left: auto;
display: block;
}
