/* basic style sheet for site: font types, sizes, links, and colors */
/* set up basic text size; see http://www.alistapart.com/articles/elastic/ */

body {
	font-family: Arial, Helvetica, sans-serif;
	background-image: "images/home_back.gif"
}
a:link {
	color: #990000;
	text-decoration: none

}
a:visited {
	color: #CC6666;
	text-decoration: none

}
a:hover {
	color: #990000;
	text-decoration: underline
}
a:active {
	color: #990000;
	text-decoration: none;

}
h1 {
	font-size: 1.5em;
	font-weight: bold;
}
h2 {
	font-size: 1.35em;
	font-weight: bold;
}
h3 {
	font-size: 1.2em;
	font-weight: bold;
}
h4 {
	font-size: 1em;
	font-weight: bold;
}
p {
	font-weight: normal;
}
li {
	font-size: 1em;
	font-weight: normal;
}
td {
	font-size: 0.9em;
}
th {
	font-weight: bold;
}
.footer {
	font-size: 0.7em;
	color: #666666;
}
.list {
	list-style-type: upper-roman;
}
.small {
	font-size: 0.6em;
}
.center {
	text-align: center;
}
.right {
	text-align: right;
}
.left {
	text-align: left;
}
.container { /* centers container against a background */
	width: 50em;
	background: #eef;
	text-align: left;
	border: 1px solid #ccc;
	margin: 0 auto;
}
.content {
	clear: left;
}

.content a {
	color: #7C6240;
}

.content a:hover {
	text-decoration: none;
}

.underline {
  text-decoration: underline;
}