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

.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;
}

.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;
}
.fltrt_fp {
	float: right;
	margin-left: 8px;
	padding-right: 10px;
	padding-top: 20px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.fltcenter {
	float: none;
}
.thumbnail {
	float: none;
	border: 1px solid #999999;
	padding: 8px;
}
.thumbnail_fllt {
	float: left;
	border: 1px solid #999999;
	padding: 8px;
	margin-right: 10px;
}

.lineabove {
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	padding-top: 6px;
}

