/* zeros out all margins and padding and sets font for body */
body{
	margin:0;
	padding: 0;
	font-size: 12pt;
	font-family: arial, times, "times new roman", serif;
	background: url("images/background.gif") repeat;
	text-align: left;
	color: #000;
}

a:link{
color: #036;
}

a:visited{
color: #066;
}

a:hover, a:active{
color: maroon;
}

/* sets width of banner */

div#banner{
color:#fff;
width: 760px;
margin-left: auto;
margin-right: auto;

}

div#banner img{
border: none;
}

/*starting navigation*/
div#navigation{
float: left;
width: 768px;
height: 35px;
}



/*setups the ul for the navigation*/
div#navigation ul{
list-style-type: none;
margin: 0 auto;
padding: 0;
margin: 0;
text-align: center;
padding-bottom: 6px;
padding-left: 2px;
}

/*floats all li within the ul so they sit right next to eachother*/
div#navigation ul li{
display: block;
float: left;
font-size: 8pt;
padding: 6px 0;
border-right: 3px lightblue solid;
}

/*removes the border from the last link in the navigation*/
div#navigation ul li.lastlink{
border: none;
}

#navigation ul li a{
padding: 9px 12px 9px 13px;
text-decoration: none;
color: #fff;
background: url("images/button-bg.gif") repeat-x;
}


#navigation ul li a:visited{
color: lightgrey;
background: url("images/button-bg.gif") repeat-x;
}


#navigation ul li a:hover{
color: navy;
background: #ccc url("images/button-hover.gif") repeat-x;
}

#navigation ul li a:active{
color: #fff;
background: #ccc url("images/button-hover.gif") repeat-x;
}

#navigation ul li a.activelink{
color: white;
background: url("images/button-hover.gif") repeat-x;
}
