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

.pullquote-container {
  position: relative;
}

.pullquote-quote {
  background: #E8E8E8;
  border: 1px solid #AAA;
  color: #333;
  float: right;
  font: italic 1em 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 */
span.pullquote-quote:before {
  content: open-quote;
}
span.pullquote-quote:after {
  content: close-quote;
}
