/*float left*/
.left
{
        float: left; /*left in our text*/
        margin: 8px; /*space around the image*/
}

/*float right*/
.right
{
	float: right; /*right in our text*/
	margin: 4px; /*space around the image*/
	clear: right;
}

