/* ************************************************************
  * CSS to override the default in the Simple Pullquotes Plugin
  * Implements the postit style pullquotes as per this article
  *   http://cimbura.com/tech/2012/04/01/wordpress-post-it-note-pull-quotes
  *   
************************************************************** */          

.simplePullQuote{

font-family:"Reenie Beanie",arial,sans-serif; 
/* Google handwriting type if available */
 text-decoration:none;
 text-indent:0px;
 font-size:150%;
 line-height:160%;
 font-weight:normal;
 text-align:center;
 color:#000;
 background:#ffc; /* Yellow */
 float:right;
 padding: 10px 10px 0px 10px;
 border:0px;

/* display:block;*/
/* height:6em; */
/* width:12em;*/

 position:relative;
 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);

}

.simplePullQuote p {
  margin-bottom: 0;
  font-family:"Reenie Beanie",arial,sans-serif; 
  /* Google handwriting type if available */
  font-size:150%;
}