#nav {
	font-family: Calibri, Trebuchet MS; 
	
}

div#nav ul {
  list-style-type: none; /* get rid of the bullets */
  padding:0;             /* no padding */
  margin:0;              /* no margin for IE either */
}

div#nav ul ul li {border-top: 0;}

div#nav ul li {
  margin: 0;
  padding: 0;
  display:block;
  border-bottom: 1px solid Black; /* lines */
}

div#nav ul li a {
  display: block;         /* lines extend to right, make area clickable */
  color: #CC6633;
  background-color: #White;
  padding: 5px 1em 5px 1em;
  margin:0;
  text-decoration: none;
  font-size: 125%;
  font-weight: normal;
  _height:18px;           /* hint for IE, alternatively remove whitespace from HTML */
}

div#nav ul ul li a {
  padding-left: 2em;     /* indent level 1 */
	background-color: #;
	font-size: 100%;
}

div#nav ul ul ul li a {
  padding-left: 3em;     /* indent level 2 */
  background-color: #E1ECEC;
}

div#nav li ul, div#nav li.open li.closed ul {
  display: none;         /* collapse */
}

div#nav li.open ul {
  display: block;        /* expand */
  border-top: 2px solid black;
}
 
div#nav ul li.open a {
  background-image: url(../images/bullet_open.gif);
  background-repeat: no-repeat;
  background-position: right;
  border-top: 1px solid black;
}

div#nav ul li.closed a {
  background-image: url(../images/bullet_closed.gif);
  background-repeat: no-repeat;
  background-position: right;
}

div#nav ul li.leaf a {
  background-image: url(../images/bullet_leaf.gif);
  background-repeat: no-repeat;
  background-position: right;
  border-top: 0;
}
 
div#nav li.active a {
  background-position: right;
            /* highlight text */
  font-weight: bold;
  
}
 
div#nav li.active li a {
  background-position: right;         /* fix lower levels */
  
  font-weight: Normal;
  border-top: 0;
}

div#nav li li.active li a {
  background-position: right;        /* fix lower levels */
  font-weight: Normal;

}

div#nav ul li a:hover {
  color: #FFF;
  background-color: #CC6633; /* rollover effect */
}