
/* file  extpullquote.css  */
/* For "Creating  CSS pull quotes" p.94 - 1st try (see "Take two" on p.96)  */


body {
padding: 10px;   /* note orig body padding was 10px */
     }

p {
  font:   Georgia, "Times New Roman", serif;
  margin-top: 0;
             /*  line-height: 1.3em; */
  }


.pullQuote {
  float: left;    /*  Ed:  here you can set the pullquote left or right */
  width: 180px;
  margin:  0 20px 15px 10px;   /* margins around the Pull Quote, separates from other content */
  font: italic bold 110% Arial, Helvetica, sans-serif;
  padding: 10px;
  border-top:     10px solid #666666;
  border-bottom:  10px solid #666666;   /* note: don't need background for this 1st pull quote */
            }


.pullQuoteR {
  float: right;    /*  Ed:  here we set the pullquote to the right */
  width: 180px;
  margin:  0 20px 15px 10px;   /* margins around the Pull Quote, separates from other content */
  font: italic bold 110% Arial, Helvetica, sans-serif;
  padding: 10px;
  border-top:     10px solid #666666;
  border-bottom:  10px solid #666666;   /* note: don't need background for this 1st pull quote */
            }


