/*
use case
---------------------------
<section class="letter-content">
    <figure class="quote">
        <blockquote class="curly-quotes" cite="http://www.youtube.com/watch?v=qYLrc9hy0t0">
        The same wind blows on us all.
        The difference in arrival is not
        the blowing of the wind,
        but the set of the sail.
        </blockquote>
        <figcaption class="quote-by">— Jim Rohn</figcaption>
    </figure>
</section>
*/
.letter-content {
  word-wrap: break-word;
  word-break: normal;
  position: relative;
  padding: 29px 20px 20px 45px;
  line-height: 30px;
  color: #6a5f49;
  text-shadow: 0 1px 1px white;
  background-color: #f2f6c1;
  background-image: -webkit-radial-gradient(
      center,
      cover,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.1) 90%
    ),
    -webkit-repeating-linear-gradient(top, transparent, transparent 29px, rgba(
            239,
            207,
            173,
            0.7
          )
          29px, rgba(239, 207, 173, 0.7) 30px);
  background-image: -moz-radial-gradient(
      center,
      cover,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.1) 90%
    ),
    -moz-repeating-linear-gradient(top, transparent, transparent 29px, rgba(
            239,
            207,
            173,
            0.7
          )
          29px, rgba(239, 207, 173, 0.7) 30px);
  background-image: -o-radial-gradient(
      center,
      cover,
      rgba(255, 255, 255, 0.7),
      rgba(255, 255, 255, 0.1) 90%
    ),
    -o-repeating-linear-gradient(top, transparent, transparent 29px, rgba(
            239,
            207,
            173,
            0.7
          )
          29px, rgba(239, 207, 173, 0.7) 30px);
  border: 1px solid #c3baaa;
  border-color: rgba(195, 186, 170, 0.9);
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px rgba(255, 255, 255, 0.5),
    inset 0 0 5px #d8e071, 0 0 1px rgba(0, 0, 0, 0.1), 0 2px rgba(0, 0, 0, 0.02);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.5), inset 0 0 5px #d8e071,
    0 0 1px rgba(0, 0, 0, 0.1), 0 2px rgba(0, 0, 0, 0.02);
}
.letter-content:before,
.letter-content:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}
.letter-content:before {
  left: 28px;
  width: 2px;
  border: solid #efcfad;
  border-color: rgba(239, 207, 173, 0.9);
  border-width: 0 1px;
}
.letter-content:after {
/*   z-index: -1;
  left: 0;
  right: 0;
  background: rgba(242, 246, 193, 0.9);
  border: 1px solid rgba(170, 157, 134, 0.7);
  -webkit-transform: rotate(2deg);
  -moz-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  -o-transform: rotate(2deg);
  transform: rotate(2deg); */
}
.letter-content pre {
  word-wrap: break-word;
  word-break: normal;
  white-space:pre-wrap; /* css3.0 */ 
  white-space:-moz-pre-wrap; /* Firefox */ 
  white-space:-pre-wrap; /* Opera 4-6 */ 
  white-space:-o-pre-wrap; /* Opera 7 */ 
  word-wrap:break-word; /* Internet Explorer 5.5+ */ 
}
.quote {
  font-family: Georgia, serif;
  font-size: 14px;
}

.curly-quotes:before,
.curly-quotes:after {
  display: inline-block;
  vertical-align: top;
  height: 30px;
  line-height: 48px;
  font-size: 50px;
  opacity: 0.2;
}
.curly-quotes:before {
  content: "\201C";
  margin-right: 4px;
  margin-left: -8px;
}
.curly-quotes:after {
  content: "\201D";
  margin-left: 4px;
  margin-right: -8px;
}

.quote-by {
  display: block;
  padding-right: 10px;
  text-align: right;
  font-size: 13px;
  font-style: italic;
  color: #84775c;
}

.lt-ie8 .letter-content {
  padding: 15px 25px;
}

.letter-content .heading > h1 {
  line-height: 2em;
  font-size: 1.5em;
  text-align: center;
  text-shadow: 0 -1px rgba(0, 0, 0, 0.7);
  margin-top: 0;
}