/**
 * @file
 * Styles for pullquote module.
 */

.pullquote-container {
  position: relative;
}

.pullquote-quote {
  z-index:1;
  background: #F5F5F5;
  border-left: 0.8em solid #ccc;
  border-right: 0.8em solid #ccc;
  float: right;
  font: italic 120% Georgia, "Times New Roman", Times, serif;
  padding: 0.75em;
  font-size:1.4em;
  line-height: 125%;
  margin: 1em 0 0.4em 1em;
  width: 30%;
}

/* inserts quotation marks around pullquoted text */
.pullquote-quote .pullquote-content:before {
  content: open-quote;
}

.pullquote-quote .pullquote-content:after {
  content: close-quote;
}

.pullquote-quote.pullquote-left {
  float: left;
  margin-left: 0;
  margin-right: 1em;
}

.pullquote-quote .attribution {
  float: right;
  padding-top: 15px;
}

.pullquote-quote .attribution:before {
  content: "\2014";
}
