/* Start of CMSMS style sheet 'Navigation: Simple - Horizontal' */
/********************
MENU
*********************/
div#footernavigation {
width: 970px;
margin-left: 
}

div#footernavigation li {
float: left;
padding-right:8px;
list-style: none;
} 

div#footernavigation a.activeparent {
display: none;
}

/* hack for Internet Explorer */
* html div#menu_bottom {
   /* 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_bottom {

   width: 100%;
   margin: 0px;
   padding:0px;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_bottom ul {
   margin: 0px;
   padding: 0px;
   height:1.5em;
}


/* menu list items */
div#menu_bottom li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0px;
}


/* the links, that is each list item */
div#menu_bottom a {
   padding: 0px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #ccc;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#menu_bottom li a:hover {

}
div#menu_bottom a.activeparent:hover {

}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_bottom li.activeparent a {

   color: #ccc;
}

div#menu_bottom h3 {
   padding: 3px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #ccc;
   display: none; /* IE has problems with this, fixed above */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
}
div#menu_bottom a,
div#menu_bottom a:link,
div#menu_bottom a:visited {
   text-decoration: none;
   color: #c2c2c2;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
   background-color: inherit; 
}

div#menu_bottom a:hover {
   text-decoration: underline;
   background-color: inherit;
  color: #dde6bb;                /* a different color can be used for visited links */
}
/* End of 'Navigation: Simple - Horizontal' */

