/* Start of CMSMS style sheet 'Navigation: Simple - Vertical' */
/********************
MENU
*********************/

/* menu li block */
#navigation li {
   list-style: none;
   margin: 0;
   display: block;
  border-bottom:1px solid #FFF;
font-family:"Bookman Old Style", times, serif;
font-weight:bold;
}

#navigation ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #navigation li a { height: 1%; } 
* html #navigation li hr { height: 1%; }
/** end fix **/

/* first level links */
div#navigation a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 0.5em 0.5em 0.5em 10px; /* some air for it */
   color: #FFF; /* this will be link color for all levels */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
}

/* next level links, more padding and smaller font */
div#navigation ul ul a {
   padding: 0.5em 0.5em 0.5em 20px;
}

/* hover state for all links */
div#navigation a:hover, div#navigation a.activeparent:hover {
   text-decoration:underline;
}



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

div#navigation ul ul li a.activeparent {
   color: #FFF;
font-weight:bold;
}


/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#navigation ul h3 {
   display: block; 
   padding: 0.8em 0.5em 0.8em 10px;  /* some air for it */
   color: #FFF;                                 /* this will be link color for all levels */
   font-size: 1em;                           /* 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#navigation ul ul h3 {
   padding: 0.3em 0.5em 0.3em 20px;
   background-color: transparent;
   border-bottom: none;
   color: #FFF;     
}

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

