/* Start of CMSMS style sheet 'Topmenu' */
/********************
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 
*/
div#topmenu {
   position: absolute;
   width: 190px;
   height: 27px;
   
   margin-top: 4px;
   margin-left: 786px;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#topmenu ul {
   margin-left: 5px;
   margin-top: 4px;
   padding-left: 0;
   border-left:  1px solid #B3B3B3;
   height: 1.5em;
}


/* menu list items */
div#topmenu li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin:0;
   border-right: 1px solid #B3B3B3;
   height: 1.5em;
}


/* the links, that is each list item */
div#topmenu 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#topmenu li a:hover {
   text-decoration: underline;
   color: #0975A6;
}
div#topmenu a.activeparent:hover {
   text-decoration: underline;
   color: #0975A6;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#topmenu li.activeparent a {
   text-decoration: underline;
   color: #0975A6;
}

div#topmenu 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: #0975A6;
   display: block; /* IE has problems with this, fixed above */
   font-size: 12px;                           /* instead of the normal font size for <h3> */
   cursor: pointer;
}
/* End of 'Topmenu' */

