 
/**
 * @file
 * Styles for pullquote module.
 * 
 * based on Style 2
 */

.pullquote-container {
  position: relative;
}

.pullquote-quote {
  z-index:1;
  background: black;
/*  border-left: 0.8em solid #ccc;*/
  border: 7px double darkred;
  border-width: 0 5px;
  color: white;
  float: left;
  position: absolute;
  left: -40%;
  font: italic 120% Georgia, "Times New Roman", Times, serif;
  line-height: 1.7em;
  margin: 1em 0 0.4em 1em;
  padding: 0.75em;
  width: 35%;
}

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

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

.pullquote-quote:first-letter {
  font-size: 250%;
  font-weight: bold;
}

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