#lnav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

#lnav ul {
	background-color: #6699CC;
	list-style-type: none; /* get rid of the bullets */
	padding:0;             /* no padding */
	margin:0;              /* no margin for IE either */
	background-image: url(../images/nav-bkgrnd.gif);
}

#lnav ul li {
	margin: 0;
	padding: 0;
	background-color: #6699CC;
	display:block;
}

#lnav ul li a {
	display: block;         /* lines extend to right, make area clickable */
	color: white;
	background-color: #6699CC;
	margin:0;
	text-decoration: none;
	/* height:16px; */           /* hint for IE, alternatively remove whitespace from HTML */
	background-image: url(../images/nav/nav-bkgrnd.gif);
	padding-top: 6px;
	padding-right: 2px;
	padding-bottom: 6px;
	padding-left: 23px;
	font-weight: bold;
}

#lnav ul ul li a {
  margin-left: 20px;     /* indent level 1 */
}

#lnav ul ul ul li a {
  margin-left: 40px;     /* indent level 2 */
}

#lnav li ul, #lnav li.open li.closed ul {
  display: none;         /* collapse */
}

#lnav li.open ul {
  display: block;        /* expand */
}
 
#lnav ul li.open a {
	background-image: url(../images/nav/bullet_open1.gif);
	background-repeat: no-repeat;
}

#lnav ul li.closed a {
	background-image: url(../images/nav/bullet_closed1.gif);
	background-repeat: no-repeat;
}

#lnav ul li.leaf a {
	background-image: url(../images/nav/bullet_leaf1.gif);
	background-repeat: no-repeat;
}
 
#lnav li.active a {
	background-position: 0px -43px;
	color: #F9EFD2;            /* highlight text */
}
 
#lnav li.active li a {
  background-position: 0px 0px;
  color: white;          /* fix lower levels */
}

#lnav ul li a:hover {
	color: #F9EFD2;
	background-color: #316293; /* rollover effect */
}

