/* Start of CMSMS style sheet 'Navigation: Simple - Horizontal' */
/********************
MENU
*********************/

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#menu_horiz {
   background-color: white;  /* background color for the entire menu row */
   width: 100%;
   margin: 0;
   border-bottom: 6px solid black;
   overflow: auto;
}

/* 
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;
   height: 2.2em;
   font-weight: bold;
   font-family: Georgia, 'times new roman', times, serif;
   float: right;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   display: block;
   list-style: none; /* hides the list bullet */ 
   margin: 0;
}


/* the links, that is each list item */
div#menu_horiz a {
   padding: .6em 0 .6em 2.2em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: black;
   display: block;
}


/* hover state for links */
div#menu_horiz li a:hover {
   background-color: white;
   color: #ccc;
}
div#menu_horiz a.activeparent:hover {
   color: #ccc;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   color: #ccc;
}

div#menu_horiz h3 {
   padding: .6em 0 .6em 2.2em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #ccc;
   display: block;
   font-size: 1em; /* instead of the normal font size for <h3> */
}

/* End of 'Navigation: Simple - Horizontal' */

