
BODY { 
	background: url(ice-blue.jpg) fixed
	color: black; 
}

ul.navbar {
	list-style-type: none;		/* type of character before the items in a list, ie bullet point */
	margin: 10px;			/* gap between exterior and next closest item */
	position: static;		/* location on the page */
	/* width: 100%;	*/		/* width of table */
	padding: 5px 5px 5px 5px;	/* gap between text and the cell border, top-right-bottom-left */
	/* float: left; */
}

ul.navbar li {
	background: #C0C0C0;		/* background color of the list item */
	margin: 2px;
	padding: 5px 5px 5px 9px;	/* gap between text and the cell border, top-right-bottom-left */
	border: 2px solid #808080
}

ul.navbar li a:hover {
	color: red;
}

ul.navbar a { text-decoration: none }

a:link { color: blue }

a:visited { color: purple }

a:hover { color: red }

li.inline { display: inline }

li.last { display: inline; } 

