/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* hide ie/mac \*/
   height: 1%;
   /* end hide */
}

div#menu_horiz {
   width: 100%;
   margin: 20px 0 20px 20px;
}

/* 
the menu ul box has top and left border, 
right border is provided by the li elements 
*/
div#menu_horiz ul {
   margin: 0;
   padding: 0;
   height:18px;
   border-left: 1px dotted #00c;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0;
   border-right: 1px dotted #00c;
}


/* the links, that is each list item */
div#menu_horiz a {
   padding: 3px 12px 3px 12px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #00c;
   background: url(../images/cms/blanco.gif) no-repeat 6px center; ;
   display: block; /* IE has problems with this, fixed above */
}


/* hover state for links */
div#menu_horiz li a:hover {
   color: #f90;
}

div#menu_horiz a.activeparent:hover {
   color: #f90;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   background:  url(../images/cms/blanco.gif) no-repeat 6px center; 
   color: #f90;
}

div#menu_horiz h3 {
   padding: 3px 12px 3px 12px; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   color: #f90;
   background: url(../images/cms/blanco.gif) no-repeat 6px center;
   display: block; /* IE has problems with this, fixed above */
   font-size: 1em;                           /* instead of the normal font size for <h3> */
}
