/* Start of CMSMS style sheet 'menuTwo' */
/********************
CSS for "menu2" in Menu manager.  
One-level navigation only
Color of links are set in the Master CSS file
*********************/

/** fix stupid ie bug with display:block; **/
* html #menuTwo li a { height: 1%; } 
* html #menuTwo li hr { height: 1%; }
/** end fix **/


#menuTwoContainer { 
}


/********* LEVEL 1 *********/

/* level 1/menu container format */
#menuTwo {
padding-left: 0;
margin-left: 0;
}

/* level 1 label format */
#menuTwo ul {
margin:0;
padding:0;
}

#menuTwo li {
list-style:none;
margin:0;
font-size:1.2em;
line-height:1.1em;
}

/* level 1 label link */
#menuTwo a {
padding:2px 20px 2px 0;
display: block; /* IE has problems with this, fixed above */
min-height:1em; /* Fixes IE7 whitespace bug */ 
}



/********* LEVEL 2 *********/

/* level 2 container format */
#menuTwo ul {
}

/* level 2 label format: no borders */
#menuTwo ul li {
font-size:0.95em;
}

/* level 2 label link */
#menuTwo ul a {
}


/********* LEVEL 3 *********/
/* Not used on this site */

/* level 3 container format */
#menuTwo ul ul {
/* We let level 2 cascades */
}

/* level 3 label format */
#menuTwo ul ul li {
/* We let level 2 cascades */
}

/* level 3 label link */
#menuTwo ul ul a {
}


/********* HOVER *********/
/* set in the Master CSS file */

/* hover state for all links */
#menuTwo a:hover, #menuTwo a.currentPage:hover, #menuTwo a.activeParent:hover {
}

/* hover state for level 1 */
#menuTwo a:hover { 
}
/* hover state for level 2 */
#menuTwo ul ul a:hover { 
}
/* hover state for level 3 */
#menuTwo ul ul ul a:hover { 
}

/* hover state for active parent */
div#menuTwo a.activeParent:hover {
}

/* hover state for current page */
div#menuTwo a.currentPage:hover {
}



/********* ACTIVE PARENT *********/

/* 
active parent, that is the first-level parent 
of a child page that is the current page 
*/
#menuTwo li.activeParent span {
display:none;
}

#menuTwo li a.activeParent {
}

#menuTwo ul ul li a.activeParent {
}



/********* CURRENT PAGES *********/

/* Highlight of current page */ 

/* Current page label: level 1 */
#menuTwo li.currentPage {
background-image:url(site_global/images/icon_menuSelect.gif);
background-position:right center;
background-repeat:no-repeat;
}

/* Current page label: level 2 */
#menuTwo ul ul li.currentPage {
}

/* Current page label: level 3 */
#menuTwo ul ul ul li.currentPage {
}


/********* SECTION HEADER *********/

/* section header */
/* Not clickable? */
/* Not used on this site */

#menuTwo li.sectionHeader span {
display:none;
}

/********* SEPARATOR *********/

/* separator */
/* Adds a divider effect below a parent label */
/* Not used on this site */

#menuTwo 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 */
}

/********* ACCESSIBILITY *********/

#menuTwo li.separator hr {
   display: none; /* this is for accessibility */
}



/* End of 'menuTwo' */

