@charset "UTF-8";
/* CSS Document */

body {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #666666;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	line-height: 22px;
	height: 100%;
	background-color: #CCC;
}

a:link {
	color: #996633;
	text-decoration: none;
}
a:visited {
	color: #996633;
	text-decoration: none;
}
a:hover {
	color: #996633;
	text-decoration: none;
	background-color: #FFFFCC;
}
a:active {
	color: #996633;
	text-decoration: none;
}

img {
	border: none;
}

a img {
	border: none;
}

a:hover img {
	border: none;
}

p {
}
