/* Start of CMSMS style sheet 'menu' */
/********************
MENU
*********************/
#menu_vert {
padding-left: 0;
  padding-top: 120px;
  margin-left: 1.3em;
  margin-bottom: 200px;
}

/* menu li block */
#menu_vert li {
  list-style: none;
  margin: 0;
  display: block;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a, div#menu_vert li.sectionheader {
  text-decoration:none; /* no underline for links */
  font-size:13px;
  letter-spacing: -1px;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  display: block; /* IE has problems with this, fixed above */
  padding: 0em 0.2em 0.2em 0.2em; /* some air for it */
  color: #000; /* this will be link color for all levels */
  line-height: 1.2em;
  min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#menu_vert ul ul a {
  font-size: 12px;
  color: #444;
  padding: 0em 0.2em 0.2em 1.3em;
}

/* hover state for all links */
div#menu_vert a:hover {
  color: #900;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#menu_vert li a.activeparent {
  color: #f00;
}

/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert ul h3 {
  display: block;
  font-family: Geneva, Arial, Helvetica, sans-serif;
  font-weight: normal;
  letter-spacing: -1px;
  line-height: 1.2em;
  padding: 0em 0.2em 0.2em 0.2em;  /* some air for it */
  color: #f00;                                 /* this will be link color for all levels */
  font-size: 13px;                           /* instead of the normal font size for <h3> */
  margin: 0;                                  /* as <h3> normally has some margin by default */
}

/* 
next level current pages, more padding, 
smaller font and no background color or bottom border 
*/
div#menu_vert ul ul h3 {
  font-weight: normal;
  font-size: 12px;
  padding: 0em 0.2em 0.2em 1.3em;
  color: #f00;     
}

/* section header */
div#menu_vert li.sectionheader {
   color: #666666;
   margin-bottom: 5px;
}

/* separator */
div#menu_vert li.separator {
   height: 1px!important;
   margin-bottom: 7px;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px;
   border-bottom-width: 1px;
   border-bottom-style: dotted;
   border-bottom-color: #666666;
   margin-top: 6px;
}

div#menu_vert li.separator hr {
  display: none; /* this is for accessibility */
}
/* End of 'menu' */

