@charset "utf-8";
.fltrtimage { /* this class can be used to float typically an image element right in your page. The floated element must precede the element it should be next to on the page. This class can be redefined in a CSS selected for handheld devices so that it is invisible, for instance */
	float: right;
	margin-left: 8px;
	margin-right: 8px;
	padding: 1em 2em;
	display: inline;	/* Work around doubled float margin bug in IE6 */
}
.fltlftimage { /* this class can be used to float typically an image element left in your page */
	float: left;
	margin-left: 8px;
	margin-right: 8px;
	padding: 1em 2em;
	display: inline;	/* Work around doubled float margin bug in IE6 */
}
.fltlftimageminpadding {
	float: left;
	margin-left: 0px;	/* Bug workaround not required as zero margins */
	margin-right: 0px;
	padding-top: 1em;
	padding-right: 7em;
	padding-bottom: 1em;
	padding-left: 1em;
}
