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


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

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

}

/* the links, that is each list item */
div#menu_horiz a {
   padding: .3em 1em .6em .6em; /* padding inside the list item box */
   text-decoration: none; /* no underline for links */
   color: #ffffff;
   display: block; /* IE has problems with this, fixed above */
}



