@charset "UTF-8";

html,body {
	margin: 0;
	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;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	height:100%;
	background-color: #FFFFFF;
}
p {
	margin-top: 0px;
	margin-bottom: 10px;
}

h1 {
	font-size: 18px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
h2 {
	font-size: 16px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
h3 {
	font-size: 14px;
	font-weight: bold;
	margin: 0px;
	padding: 0px;
}
a:link, a:visited {
	color: #339900;
}
a:hover {
	text-decoration: none;
	color: red;
}
img {
	border: none;
}

.photos {
	border: 1px solid #000000;
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
.photoCaption {
	font-size: 10px;
	color: #663300;
}

