/* Start of CMSMS style sheet 'left-navigation' */
/********************
MENU
*********************/
#secondary-navigation {
margin:0;
padding:0;
}

#secondary-navigation ul {
   list-style: none; 
   margin: 0; 
   padding: 0; 
}


/* menu li block */
#secondary-navigation li {
   list-style: none;
   margin: 0;
   display: block;
}

#secondary-navigation ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #secondary-navigation li a { height: 1%; } 
* html #secondary-navigation li hr { height: 1%; }
/** end fix **/

/* first level links */
div#secondary-navigation a {
   text-decoration:none; /* no underline for links */
   display: block; /* IE has problems with this, fixed above */
   padding: 3px 0px 3px 0px; /* some air for it */
   color: #6a6a6a; /* this will be link color for all levels */
   min-height:1em; /* Fixes IE7 whitespace bug */ 
   font-weight: bold;
outline: none; 
}

/* next level links, more padding and smaller font */
div#secondary-navigation ul ul a {
   font-size: 11px;
   padding: 3px 0px 3px 15px;
font-weight: normal;
outline: none; 
}

/* third level links, more padding */
div#secondary-navigation ul ul ul a {
   font-size: 11px;
   padding: 3px 0px 3px 20px;
font-weight: normal;
outline: none; 

}

/* hover state for all links */
div#secondary-navigation a:hover {
   color: #000;
outline: none; 
}
div#secondary-navigation a.activeparent:hover {
   color: #000;
outline: none; 
}

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
div#secondary-navigation li a.activeparent,
div#secondary-navigation li a.currentpage  {
   color: #000;
outline: none; 
}

div#secondary-navigation ul ul li a.activeparent {
   color: #000;
outline: none; 
}





/* section header */
div#secondary-navigation li.sectionheader {
   border-right: none;
   font-size: 130%;
   font-weight: bold;
   padding: 1.5em 0 0.8em 0;
   background-color: #000;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



/* separator */
div#secondary-navigation 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#secondary-navigation li.separator hr {
   display: none; /* this is for accessibility */
}
/* End of 'left-navigation' */

