/* Start of CMSMS style sheet 'pfc :: menuhorizontal' */
/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#navBar {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

/* 
background-color for the entire menu row, 
covering 100% of the width and text center-aligned 
*/
div#navBar {
   text-align:center;
   font-weight:bold;

height:31px;

}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#navBar ul {
   margin: 0;
   padding: 0;
   height:2.2em;
border-left: 0px solid #C0C0C0;
}


/* menu list items */
div#navBar li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0 ;
   border-right: 0px solid #C0C0C0;
}


/* the links, that is each list item */
div#navBar a {
   padding: 7px 7px 6px 7px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #fff;
font-size:0.9em;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#navBar li a:hover {
   background-color: #8DB2D0;
color:#eee;
}
div#navBar a.activeparent:hover {
   background-color: #C3D4DF;
   color: #000;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#navBar li.activeparent a {
   
   color: #666;
}

div#navBar 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: #fff;
    display: block; /* IE has problems with this, fixed above */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
}

/* End of 'pfc :: menuhorizontal' */

