/*File: menu.css
Created By: Seamus P. H. Leahy

This is the stylesheet for  example 1 for the Horizontal Menu Bar.
*/

#menu1 ul{
	padding : 0px;
	margin : 0;
        width : 955px;
	white-space : nowrap;
	background-color : #32CD32;
	color : #FFFF00;
}
#menu1 ul li{
	display : inline;
}
#menu1 ul li a{
	padding-left : 3px;
	padding-right : 3px;
	background-color : #006400;
	color : #FFFF00;
	font-weight : bold;
        font-size : 10px;
        font-family : verdana, arial;
	text-decoration : none;
}
#menu1 ul li a:hover{
	background-color : #FFFF00;
	color : #000066;
}
