Velit esse cillum dolore quis nostrud exercitation ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, ullamco laboris nisi ut aliquip ex ea.

This image is floated left, the following CSS has been used. The class is then applied to the image in the html - see below

.imgleft {
	float: left;
	padding: 10px 10px 0px 10px;
}
The html looks like this:
<img src="79267-org.jpg" alt="" width="137" height="138" class="imgleft" />

To float to the right:

.imgright {
float: right;
padding: 10px 10px 0px 10px;
}