﻿#navbar
{
	margin: 0;
	padding: 0;
	height: 25px;
	width: 850px;
}

#navbar li
{
	list-style: none;
	float: left;
}

/*set the:
font-family for the main menu items
font-size for the main menu items
font-color for the main menu items
background color of the main menu items
width of the nav bar by changing the 2nd padding here*/
#navbar li a
{
	display: block;
	padding: 3px 15px;
	background-color: #950c1e;
	font-family: Calibri;
	font-size: 15px;
	color: #FFF;
	text-decoration: none;
}

/*set the font-family for the dropDown menu items here*/
/*set the width of the dropDown menu here*/
#navbar li ul 
{
	display: none;
	width: 13em;
	font-family: Calibri;
}

#navbar li:hover ul, #navbar li.hover ul  
{
	display: block;
	position: absolute;
	margin: 0;
	padding: 0;
}

#navbar li:hover li, #navbar li.hover li
{
	float: none;
}

/*set the background color for the dropDown menu items here*/
/*set the font color for the dropDown menu items here*/
#navbar li:hover li a, #navbar li.hover li a 
{
	background-color: #950c1e;
	border-bottom: 1px solid #000;
	color: #000; 
}

/*set the rollover for the main menu items here*/
/*set the rollover font-color for the main menu items here*/
#navbar li a:hover 
{
	background-color: #000000;
	color: #FFF;
}

/*set the rollover for the dropDown menu items here*/
/*set the rollover font-color for the dropDown menu items here*/
#navbar li li a:hover 
{
	background-color: #000000;
	color: #ffffff;
}