/*This style will be applied to the div element holding the menu*/
body {
	margin: 0;
	padding: 0px;
	}

.style2 {	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: #999999;
}
.style3 {	font-size: 28px;
	font-weight: bold;
	color: #000000;
}
.style4 {font-family: Arial, Helvetica, sans-serif}
.style6 {	color: #6DB34F;
	font-weight: bold;
	font-size: 24px;
	font-family: Arial, Helvetica, sans-serif;
}
.style7 {font-size: 14px}
.style8 {font-size: 14px; font-family: Arial, Helvetica, sans-serif; }



#box {
padding: 5px;
text-align: left;
}

#style1 {	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #003366;
}
#style11 {font-family: Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #333380; }

#style12 {	color: #6DB34F;
	font-size: 10px;
	font-weight: bold;
}

#menuContainer {
  background-color: ;
  width: 15em;
  padding: 0px;
  font-weight: bold;/* added by jen*/
  font-size: 12px;/* added by jen*/
  font-family: arial, helvetica, sans-serif bold;/* added by jen*/
}

/* Link styles*/

#menuContainer a {
  text-decoration: none;
  color: #333380;

}

#menuContainer a:hover {
  text-decoration: none;
  color: #7CB34E;
  
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 5;
  
  width:10em; /* added by jen*/
  top: 20px; /* added by jen*/
  font-weight: normal;/* added by jen*/
  font-size: 11px;/* added by jen*/
  font-family: arial, helvetica, sans-serif bold;/* added by jen*/
}

/* Set li styles*/

#menuContainer li {
  background-color: #;
  border: 0px solid #;
  

  /* this is to make the submenus position relative to this li */
  position: relative; 
  font-weight: normal;/* added by jen*/
  font-size: 11px;/* added by jen*/
  font-family: arial, helvetica, sans-serif bold;/* added by jen*/
  
 
}

/* Mouseover li style*/
#menuContainer li:hover {
  border: 0px solid #;   
  background-color: #;

}

/*Initially hide second level (or higher) pop-up*/
#menuContainer ul ul {
  position: absolute;
  left: -15em;
  top: 0;
  visibility: hidden;
  background-color: #B6DEEB;
width:15em; /* added by jen*/
 
}

/*Mouseover: display second level (or higher) pop-up*/
#menuContainer li:hover > ul {
  visibility: visible;
background-color: #;
  
}

