.menu2	{
	 /* Spans the width of the page */
	height: 37px; 
	margin: 0; /* Ensures there is no space between sides of the screen and the menu */
	z-index: 99; /* Makes sure that your menu remains on top of other page elements */
	position: relative; 
	background-color: #3f3f3f;
	float:left;
	}

.navbar	{
	height: 37px;
    padding: 0;
	margin: 0;
	position: relative; /* Ensures that the menu doesn’t affect other elements */ 
	}
	
	.navbar li 	{
			height: auto;
			width: 74px;  /* Each menu item is 150px wide */
			float: left;  /* This lines up the menu items horizontally */
			text-align: center;  /* All text is placed in the center of the box */
			list-style: none;  /* Removes the default styling (bullets) for the list */
			font-family: 'icomoon';
			font: bold 12px  Arial, Verdana;  
			padding: 7px 0px 0px 0px;
			margin: 0;
			background-color: #3f3f3f;
                        }
						
	.navbar a	{							
		padding: 7px 0;  /* Adds a padding on the top and bottom so the text appears centered vertically */
		text-decoration: none;  /* Removes the default hyperlink styling. */
		color: white; /* Text color is white */
		display: block;
		}
		
.navbar li:hover, .navbar a:hover {background-color: #5b5d5e;} 

.navbar li ul 	{
		display: none;  /* Hides the drop-down menu */
		height: auto;	
		margin: 0; /* Aligns drop-down box underneath the menu item */
		padding: 0; /* Aligns drop-down box underneath the menu item */			
		}				

.navbar li:hover ul 	{
                        display: block; /* Displays the drop-down box when the menu item is hovered over */
                        }

.navbar li ul li {background-color: #5b5d5e;} 
.navbar li ul li:hover	{background-color: #3f3f3f;}
.navbar li ul li a:hover	{background-color: #3f3f3f;}