/* 

  Original CSS and graphics found found at 
  http://www.sitepoint.com/test/pullquote.htm, no author quoted. 

	- modified for potential different sizings (default is standard)
	- added pushleft and pushright for ease of alignment
	- added small and large versions (TODO: format quote graphics)
	
	Dallas Vogels, 2006-06-29

*/

blockquote.pushright {
  float:right;
}

blockquote.pushleft {
  float:left;
}

blockquote.standard {
  width: 30%;
  font-size:125%;
  line-height:140%;
  margin:10px;
  background: url("/resources/images/closequote.gif") no-repeat bottom right !important;
  background /**/:url(); /* removing quote graphic in IE5+ */
  padding:0px 25px 5px 0px;
}

blockquote.standard:first-letter {
  background: url("/resources/images/openquote.gif") no-repeat left top !important;
  padding:5px 2px 10px 35px!important;
  padding /**/:0px;   /* resetting padding in IE5+ */
  background /**/: url(); /* removing quote graphic in IE5+ */
}

blockquote.small {
  width: 30%;
  font-size:110%;
  line-height:140%;
  margin:10px;
  background: url("/resources/images/closequote.gif") no-repeat bottom right !important;
  background /**/:url(); /* removing quote graphic in IE5+ */
  padding:0px 25px 5px 0px;
}

blockquote.small:first-letter {
  background: url("/resources/images/openquote.gif") no-repeat left top !important;
  padding:5px 2px 10px 35px!important;
  padding /**/:0px;   /* resetting padding in IE5+ */
  background /**/: url(); /* removing quote graphic in IE5+ */
}

blockquote.large {
  width: 30%;
  font-size:150%;
  line-height:140%;
  margin:10px;
  background: url("/resources/images/closequote.gif") no-repeat bottom right !important;
  background /**/:url(); /* removing quote graphic in IE5+ */
  padding:0px 25px 5px 0px;
}

blockquote.large:first-letter {
  background: url("/resources/images/openquote.gif") no-repeat left top !important;
  padding:5px 2px 10px 35px!important;
  padding /**/:0px;   /* resetting padding in IE5+ */
  background /**/: url(); /* removing quote graphic in IE5+ */
}
