/* Start of CMSMS style sheet 'menu' */
/********************
MENU
*********************/



/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
  text-align: center;
   margin: 0;
  WIDTH: 780px;

}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 0;
 
  WIDTH: 780px;

}



/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   border-top: 1px solid #CCCC99;
   border-bottom: 1px solid #CCCC99;
   background-color: #E2630F;

}

div#menu_horiz ul ul{
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   border-top: 1px solid #CCCC99;
   border-bottom: 1px solid #CCCC99;
   background: #E3FAE7; 
}
div#menu_horiz li  li{
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   border-top: 1px solid #CCCC99;
   border-bottom: 1px solid #CCCC99;
   background: #E3FAE7; 
}
div#menu_horiz ul li{
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   border-top: 1px solid #CCCC99;
   border-right: 1px solid #CCCC99;
   background: #E3FAE7; 
}

/* the links, that is each list item */
div#menu_horiz a {
   padding:10px 0px 10px 0px; /* padding inside the list item box */

   text-decoration: none; /* no underline for links */
   color: #fff;
  WIDTH: 155px;
   background: #E2630F;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#menu_horiz li a:hover {
   background-color: #E3FAE7;
   color: #E2630F;
}
div#menu_horiz a.activeparent:hover {
   background-color: #E3FAE7;
   font-weight: bold;
   color: #18507C;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   background: #E3FAE7; 
   color: #325884;
   font-weight: bold;
}

div#menu_horiz h3 {
padding: 10px 0px 10px 0px; /* padding inside the list item box */
WIDTH: 155px;
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #325884;
   background: #E3FAE7; 
   display: block; /* IE has problems with this, fixed above */
   font-size: 12px;                           /* instead of the normal font size for <h3> */
}
/* Set the width of the menu elements at second level. Leaving first level flexible. */
#primary-nav li li li{ 
   width: 84px; 
}
div#menu_horiz ul li ul li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   background: #E3FAE7; 



}
div#menu_horiz ul li ul li a{
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
  text-align: center;

   color:#325884;
   border-right: 1px solid #E2630F;
  WIDTH: 84px;
   background: #E3FAE7; 
}

div#menu_horiz ul li ul li a:hover {
   background-color: #E3FAE7;
   color: #E2630F;
  WIDTH: 84px;
  text-align: center;

}
div#menu_horiz ul li ul li h3 {
   background-color: #CCCC99;
   font-weight: bold;
   color: #18507C;
  WIDTH: 84px;
  text-align: center;

}

/* End of 'menu' */

