/* CSS Document */

body {
	background-color:#F7F0DF;
}

h2 {
	font-size:1em;
	text-align: center;
	font-variant:small-caps;
	margin-top:.5em;
	margin-bottom:.5em;
	font-family:arial, verdana, sans-serif;
	color:#960;
}

#footer {
	font-size:1em;  /* sets the font size of all links */
	text-align:center; /* centers the ul elements in the div */
}

#footer ul {
	margin:10px 0; /* vertical spacing between the lists */
}

#footer li {
	display:inline; /* the key CSS - makes the lists display horizontally */
	color:#960; /* sets the color of the vertical lines  - links colored below */
	border-left:1px solid; /* creates the vertical line to the left of each list items */
	color:#960; /* sets the color of the vertical lines  - links colored below */
	padding: 0 20px 0 20px; /* horiz space between links and vert lines - needed diff l & r values to center */
}

#footer li:first-child {
	border-left: 0; /* removes the left border of the first list item - IDWIMIE */
}

#footer ul li a {
 	text-decoration:none; /* removes the underlining off the links */
 	color:#960; /* the color of the links */
}

#footer ul li a:hover {
	text-decoration:underline; color:#663300 /* underlines the links when hovered */
}

#footer ul.fineprint li {color:#fff799; /* color for copyright and vert dividers on last row */
}

#footer ul.fineprint li a {color:#fff799; /* had to explicitly color these or they inherit from div#footer li */
}

#footer ul.fineprint li a:hover {color:#960;/* turns bottom row white when hovered */
} 

/* default link style - needed to make the :active work correctly in IE */
a, a:visited, a:hover, a:active {
color:#000;
}
