/* Makes pull quote look like a post-it note. Tim Cimbura 3/30/12 */

.simplePullQuote {

  font-family:"Reenie Beanie",arial,sans-serif; /* Google handwriting type if available */
  text-decoration:none;
  text-indent:0px;
  font-size:150%;
  font-weight:normal;
  line-height:100%;
  text-align:center;

  color:#000;
  background:#ffc; /* Yellow */
  float:right;
  padding:20px;
  border:0px;

  display:block;
  height:6em;
  width:12em;

  position:relative;
  top:-10px;
  margin:10px 10px 10px 10px; /* From the surrounding text */

  -moz-box-shadow:5px 5px 7px rgba(33,33,33,1); /* Drop shadow */
  -webkit-box-shadow: 5px 5px 7px rgba(33,33,33,.7);
  box-shadow: 5px 5px 7px rgba(33,33,33,.7);

  -o-transform:rotate(2deg); /* Rotate the note a few degrees to the right */
  -webkit-transform:rotate(2deg);
  -moz-transform:rotate(2deg);
}