
/** Dropcap Only The First Paragraph **/
.guide-dropcap-01 {
  p:first-of-type:first-letter {
    color: #B91646;
    float: left;
    font-weight: bold;
    font-size: 2em;
    line-height: 1.9em;
    padding-right: 0.1em;
    margin-top: -0.1em;
  } 
} 

/** Dropcap All Paragraphs **/
.guide-dropcap-02 {
  p:first-child:first-letter {
    color: #B91646;
    float: left;
    font-weight: bold;
    font-size: 2em;
    line-height: 1.9em;
    padding-right: 0.1em;
    margin-top: -0.1em;
  }
}

/** Just this Class will receive a dropcap **/
.dropme:first-letter {
  color: #B91646;
  float: left;
  font-weight: bold;
  font-size: 2em;
  line-height: 1.9em;
  padding-right: 0.1em;
  margin-top: -0.1em;
}
