/* This is a comment in CSS */
/* The next line tell us the font to look for.  The last line is a generic */
/* font family (serif, sans-serif, monospace)*/
body {font-family: arial, helvetica, "Times New Roman", sans-serif; 
	  background: #F5F5DC;
	  color: teal;
	  font-size: 90%;	/* try different percentages */					  
}

a:link {
	color: blue;	
}

a:visited {
	color:purple;
}

a:hover {
	color: red;
}

a:active {
	color: gray;
}

h1 {
	color: gray;
}

pre {
	color: gray;
	font-style: italic;
	text-align: center;
}

strong {
	color: red;
}

ol {
	list-style-type: lower-latin; /* try lower-roman, upper-roman, upper-latin */
}

ul {
	color: maroon;
	list-style-image: url(bus.gif); 
	/* list-style-type: circle;  /* try disc, square, none */
}

table {
	background-color: black;   /* try commenting this out */
	border-collapse: separate; /* try collapse */
	border-style: double; /* try solid, dashed, groove, ridge, inset, outset */ 
	border-color: red;
	text-align: center; /* try left, right */
}

th {
	background-color: #F5DEB3;
	padding: 8px;
}

td {
	background-color: white;
}
