/* Start of CMSMS style sheet 'nav3' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_vert {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/


div#menu_vert2 {
margin-left: 12px;
padding-left: 18px;
width: 931px;
font-weight: bold;
font-family: helvetica, arial;

}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_vert2 ul {
   margin: 0;
   padding: 0;
   height:2.2em;
}


/* menu list items */
div#menu_vert2 li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   border-right: 0px solid #494949;
}


/* the links, that is each list item */
div#menu_vert2 a {
   padding: .6em .6em .6em 1.2em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #cfcfcf;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#menu_vert2 li a:hover {
color: #ffd800;
}
div#menu_vert2 a.activeparent:hover {
color: #ffd800
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_vert2 li.activeparent a {
   color: #ffd800;
}

div#menu_vert2 h3 {
   padding: .6em 1em .6em 1.4em; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #ffd800;
   display: block; /* IE has problems with this, fixed above */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
}

/* 
current pages in the default Menu Manager 
template are unclickable. This is for current page on first level 
*/
div#menu_vert2 ul h3 {
   display: block; 
   color: #ffd800;                              /* 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#menu_vert2 ul ul h3 {
   font-size: 100%;
   border-bottom: none;
   color: #fff;     
}

/* current page on third level, more padding */
div#menu_vert2 ul ul ul h3 {
}

/* section header */
div#menu_vert2 li.sectionheader {
   border-right: none;
   font-size: 100%;
   font-weight: bold;
   background-color: #fff;
   line-height: 1em;
   margin: 0;
   text-align:center;
}



div#menu_vert2 li.separator hr {
   display: none; /* this is for accessibility */
}

/* End of 'nav3' */


