/* Start of CMSMS style sheet 'submenu' */
/********************
MENU
*********************/
#menu_vert {
}

/* third level has some padding to have it stand out */
div#menu_vert ul ul ul {

}

/* menu li block */
#menu_vert li {
   list-style: none;
   margin: 0;
   display: block;
}

#menu_vert ul ul li {
   border: none;
   margin-top: 1px;
}

#menu_vert ul { 
   list-style: none; 
   margin: 0px; 
   padding: 0px; 
}


/** 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 {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 5px 5px;  /* some air for it */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
   color: #000;
   border-bottom:1px dashed #CCCCCC;
}

div#menu_vert h3 {
   font: 1.0em "Trebuchet MS", Verdana, Arial, sans-serif;
   font-weight: bold; 
   border-bottom:1px dashed #CCCCCC;
}


/* next level links*/
div#menu_vert ul ul a {
   padding: 5px 5px;
   border-bottom:1px dashed #CCCCCC;
}

/* third level links, more padding */
div#menu_vert ul ul ul a {
   padding: 5px 5px;
   border-bottom:1px dashed #CCCCCC;
}

/* hover state for all links */
div#menu_vert a:hover {
}

div#menu_vert a.activeparent:hover {
font-weight: bold;
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/

div#menu_vert li a.activeparent {
border-bottom:1px dashed #CCCCCC;
}

div#menu_vert ul ul li a.activeparent {
color: #9ecc3b;
}


.currentpage ul {
padding: 2px 5px 2px 5px;
color: #9ecc3b;
border-bottom:1px dashed #CCCCCC;
}


/* 
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; 
padding: 5px 5px;                                                     /* some air for it */
color: #9ecc3b;                                                       /* this will be link color for all levels */
font: 1.0em "Trebuchet MS", Verdana, Arial, sans-serif;  /* instead of the normal font size for <h3> */
margin: 0;                                                      /* as <h3> normally has some margin by default */
   font-weight: bold; 
}

/* 
next level current pages
*/
div#menu_vert ul ul h3 {
   font: 1.0em "Trebuchet MS", Verdana, Arial, sans-serif;
   color: #9ecc3b;
   font-weight: bold; 
   padding: 5px 5px;
   border-bottom: none;
   border-bottom:1px dashed #CCCCCC;
}

/* current page on third level, more padding */
div#menu_vert ul ul ul h3 {
   padding: 5px 5px;
}


/* section header */
div#menu_vert li.sectionheader {
   border-right: none;
   padding: 3px 5px 3px 5px;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
}

/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'submenu' */

