@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #335d2d;
	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: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the 
#container selector */
	color: #000000;
	background-repeat: repeat-y;
	min-width: 800px;
}
#container {
	width: 780px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/background.jpg);
	margin-left: auto;
	margin-right: auto;
	border-right-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-right-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
link {
    color: #0000FF;
}
vlink {
    color: #0000FF;
} 
.fltLeft {
	float: left;
	margin: 10px;
}
.fltRt {
	float: right;
	padding: 0px;
	margin: 10px;
}

