/********************
MENU
*********************/

/* hack for Internet Explorer */
* html div#menu_horiz {
   /* 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_horiz {
   width:400px;
   margin: 0;
   padding: 0;
}

/* 
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:20px;
}


/* menu list items */
div#menu_horiz li {
   float: left; /* makes the list horizontal */
   list-style: none; /* hides the list bullet */ 
   margin: 0;
   text-decoration: none;
   padding:0;
   padding-left:27px;
}


/* the links, that is each list item */
div#menu_horiz a {
   padding: 0; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */

   
   color: #b4271d;
   display: block; /* IE has problems with this, fixed above */
   font:16px Impact, sans-serif;
   font-weight:normal;
   text-decoration: none; /* no underline for links */
}

div#menu_horiz a:link {
	color:#b4271d;
   text-decoration: none;
}

div#menu_horiz a:visited {
	color:#b4271d;
   text-decoration: none;
}

div#menu_horiz a:active {
	color:#b4271d;
   text-decoration: none;
}

/* hover state for links */
div#menu_horiz li a:hover {
   color:#383838;
   text-decoration: none;
}
div#menu_horiz a.activeparent:hover {
   color:#383838;
	text-decoration: none;
}

/* active parent, that is the first-level parent of a child page that is the current page */
div#menu_horiz li.activeparent a {
   color:#383838;
	text-decoration: none;
}

div#menu_horiz h3 {
   padding: 0; /* padding inside the list item box */
   margin: 0; /* margin outside each list item box */
   text-decoration: none; /* no underline for links */
   font:16px Impact, sans-serif;
   font-weight:normal;
   color:#383838;
   text-decoration: none;                          /* instead of the normal font size for <h3> */
   display: block; /* IE has problems with this, fixed above */
}

