/* Start of CMSMS style sheet 'Submenu' */
/********************
Topmenu
*********************/

/* hack for Internet Explorer */
* html div#topmenu {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#submenu ul {
   margin-left: 10px;
   margin-top: 0px;
   padding-left: 0px;
   padding-top: 7px;
   height: 1.5em;
}


/* menu list items */
div#submenu li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin:0;
   height: 1.5em;
}


/* the links, that is each list item */
div#submenu a {
   padding: 0em 1em 0em 1em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #B3B3B3;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#submenu li a:hover {
   text-decoration: underline;
   color: #fff;
}
div#submenu a.activeparent:hover {
   text-decoration: underline;
   color: #fff;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#submenu li.activeparent a {
   text-decoration: underline;
   color: #fff;
}

div#submenu h3 {
   padding: 0em 1em 0em 1em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #fff;
   display: block; /* IE has problems with this, fixed above */
   font-size: 12px;                           /* instead of the normal font size for <h3> */
   cursor: pointer;
}
/* End of 'Submenu' */

