
/*This style will be applied to the div element holding the menu*/
body {
	background-image:url('images/site_bg.jpg');
	background-color: #fff;
	margin: 0;
	padding: 0px;
}

#menuContainer {
  background-color: white;
  width: 10em;
  padding: 0px;
}

/* Link styles*/

#menuContainer a {
  text-decoration: none;
  color: #630;
  font-size: 9pt;
  font-family: Trebuchet MS, Georgia, sans-serif;
  padding:5px 5px 5px 0px;
  }

#menuContainer a:hover {
  color: #000000;
}

/* Hide bullets in unordered list*/
#menuContainer ul { 
  list-style-type: none;
  margin: 0;
  padding: 0;
}

/* Set li styles*/

#menuContainer li {
  background-color: #f6eedc;
  border: 1px solid #fff;
  width: 10em;
  padding-left:5px;
  left:5px;
  
  /* this is to make the submenus position relative to this li */
  position: relative; 
}

/* Mouseover li style*/
#menuContainer li:hover {
  border: 1px solid #E9D5AA;   
  background-color: #eddcba;
}

/*Initially hide second level (or higher) pop-up*/
#menuContainer ul ul {
  position: absolute;
  left: 10em;
  top: 0;
  visibility: hidden;
}

/*Mouseover: display second level (or higher) pop-up*/
#menuContainer li:hover > ul {
  visibility: visible;
}

.note {
font-family: Trebuchet MS, Georgia, sans-serif;
font-size: 11px;
color: #874431;
}

.bodyBrown {
font-family: Trebuchet MS, Georgia, sans-serif;
font-size: 14px;
color: 874431;
}

.body {
font-family: Trebuchet MS, Georgia, sans-serif;
font-size: 12px;
color: 000000;
}

.EMbody {
font-family: Trebuchet MS, Georgia, sans-serif;
font-size: 14px;
color: 874431;
font-weight: bold;
}

h1 { font-family: Trebuchet MS, Georgia, sans-serif; font-size: 20px; color: #874431}
h2 { font-family: Trebuchet MS, Georgia, sans-serif; font-size: 18px; color: #000000}
h3 { font-family: Trebuchet MS, Georgia, sans-serif; font-size: 14px; color: #874431}

hr{ color:black; noshade; width:100%; height:1px; }

a { font-family: Trebuchet MS, Georgia, sans-serif; font-size: 12px; color: #874431; text-decoration: underline}

a:hover { font-family: Trebuchet MS, Georgia,sans-serif; font-size: 12px; color: #000000; text-decoration: none}
