/* NAVIGATION -------------------------------------------------------------------------------------*/
#NavBanner {
	text-align: left;
	font: bold 100% Arial, Helvetica, sans-serif;
	padding: 76px 0 0 60px;
	}

#NavBanner ul{
	display: inline;
	}

#NavBanner ul li{/*This is an example of turning a bullet list into a horizontal list without bullets. The key is the display inline attribute.*/
	color: #FFFFFF;
	display: inline;
	text-decoration: none;
	padding: 5px 10px 5px 0;
	}

#NavBanner ul li a{/*Since we did not specify a width, the default behavior is to extend 100%*/
	font-size: 90%; /*Scales the font size back to 80% from the body tag*/
	color: #FFFFFF;
	padding: 0 8px 0 0; /*This extends the area of the item to create a button style.*/
	text-align:center;/*This is a correction for IE 5*/
	text-decoration: none;
	/*width: 5em;*/
	}

#NavBanner ul li a:hover, #nav ul li a:focus{/*We have added focus in case a user is using the tab key or a pointing device other than a mouse.*/
	background-color:#CCCCCC;
	color: #000000;
	}


/* NAVIGATION -------------------------------------------------------------------------------------*/
#Nav {
	text-align: left;
	font: bold 100% Arial, Helvetica, sans-serif;
	padding: 45px 0 0 300px;
	}

#Nav ul{
	display: inline;
	}

#Nav ul li{/*This is an example of turning a bullet list into a horizontal list without bullets. The key is the display inline attribute.*/
	color: #FFFFFF;
	display: inline;
	text-decoration: none;
	background: url(../images/button.jpg) no-repeat left;
	padding: 5px 0 5px 23px;
	}

#Nav ul li a{/*Since we did not specify a width, the default behavior is to extend 100%*/
	font-size: 90%; /*Scales the font size back to 80% from the body tag*/
	color: #FFFFFF;
	padding: 0 8px 0 8px; /*This extends the area of the item to create a button style.*/
	text-align:center;/*This is a correction for IE 5*/
	text-decoration: none;
	/*width: 5em;*/
	}

#Nav ul li a:hover, #nav ul li a:focus{/*We have added focus in case a user is using the tab key or a pointing device other than a mouse.*/
	background-color:#CCCCCC;
	color: #000000;
	}

.imageNav {
	vertical-align: middle;
	}
