﻿.foo {} /* W3C CSS validator likes CSS files to start with a class rather than a comment. Soooooo.... */

.quote
{
  margin: 0px;
  padding:    5px   20px   10px  25px;
  font-size: 88%;
  font-style: italic;
  background: url('images/quotes-16.gif') no-repeat  2px 0;
  }

.photo-float-left {
    float: left;     /* allows the text to flow to the right */
    margin: 5px 5px 5px 5px;  /* top right bottom left        */
    padding: 0px 0px 0px 0px;  /* top right bottom left        */
}                            /* spacing of text around photo */
.photo-float-right {
    float: right;     /* allows the text to flow to the left */
    margin: 5px 5px 5px 5px;  /* top right bottom left        */
    padding: 0px 0px 0px 0px;   /* top right bottom left */
}

