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

.pullquote-container {
  position: relative;
}

.pullquote-quote {
  z-index:0;
  background: white;
  border-left: 5px solid #AAA;
  color: #333;
  float: right;
  font: italic 2em Georgia, "Times New Roman", Times, serif;
  line-height: 1.7em;
  margin: 1em 0 0.4em 1em;
  padding: 1em;
  width: 30%;
}

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

/* inserts quotation marks around pullquoted text */
.pullquote-quote:before {
  content: open-quote;
  font-size: 120px;
  position: relative;
  top: 15px;
  color: gray;
}
.pullquote-quote:after {
  content: close-quote;
  font-size: 50px;
  position: relative;
  padding: 0em;
  top: 0px;
  color: gray;
}
