
/* Main Menu settings*/
#Nav li 
{
	float: left;
	position: relative;
	height: 17px;
	text-align: left;
	background-image: url(../Images/MenuBackground.gif);
	background-repeat: no-repeat;
	font-size: 12px;
	width: 100px;
	background-attachment: fixed;
	useless: none; /* Leave this in, to fix a bug in FireFox with the 
                  previous line(background-attachment: fixed). FireFox 
                  doesn't display the BG Image when the "fixed" is followed by a ;*/
}

/* Position the main menu */
#Nav, #Nav ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}


/* Hover of Main Menu items*/
#Nav a:hover
{
    color: #ec1e33;
}

/* Links in all menu items */
#Nav li a
{
	font-weight: bold;
	color: #fbf1b3;
    text-decoration: none;
	display: block;
	width: 121px;
	height: 17px;
	padding-left: 10px;

}

#Nav li
{
	height: 17px;
	padding-top: 3px;
}

#Nav li li
{
    display: block;
    background-color: #0066cc;
    background-image: none;
    width: 121px;
    padding-top: 0;
    padding-bottom: 0;
    border: 1px solid #ece8dd;
    border-bottom: none;
}

/* Links in Sub Menus*/
#Nav li li a
{
    display: block;
    font-weight: normal;
    color: black;
    background-color: #0066cc;
    font-size: 12px;
    padding-top: 2px;
}

/* Hover of Sub Menus*/
#Nav li li a:hover
{
    border-color: #f57b21;
    border-color: #000;
    border-width: 1px;
    color: #fbf1b3;
    background-color: #0078ae;
}

/*Text align of Sub Menus */
#Nav ul li 
{
	text-align: left;
}

li ul
{
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	font-weight: normal;
    padding: 0;
}

/* Display the sub menus on hover of the main menu*/
#Nav li:hover ul, li.over ul
{
	display: block;
}


li#First, li#First a
{
	background-image: none;
	padding: 0;
	width: 88px;
	height: 20px;
}


li#Last, li#Last a
{
	background-image: none;
	width: 54px;
	padding: 0;
	height: 20px;
}

