/*
 * This should be linked after main.css
 *
 * <div class="poem">
 *      Print-like paragraphs with indents and no spaces
 *      Useful for narrative blank verse.
 *
 * <div class="stanza">
 *      Normal web-like paragraphs
 *      Useful for well-delineated stanzas
 *
 * <div class="song">
 *      Similar to ".stanza" but in italics and every
 *      line is indented
 *
 * <div class="... terza-rima">
 *      First line flush, second and later lines are indented
 *
 * <div class="verseline vsong">
 *      For making a <p> out of every line, best leave this
 *      task for auto-generators
 */

article p, .content p, .verseline {
  font-family: Georgia, serif;
}

div.poem  p {
  text-indent: 3%;
  margin-bottom: 0em;
  line-height: 1.5rem;
}

div.verseline p {
  margin-left: 2rem;
  text-indent: -2rem;
  margin-bottom: 0em;
  line-height: 1.5rem;
}

div.vsong p {
  font-style: italic;
  margin-left: 3rem;
}

div.vsong {
  margin-bottom: 1.5rem;
}

div.poem  p.halfline,
div.stanza p.halfline {
  text-indent: 8rem;
  line-height: 1.5rem;
}

div.poem p.qline,
div.stanza p.qline {
  text-indent: 4rem;
  line-height: 1.5rem;
}

div.preface  p {
  font-family: sans-serif;
  line-height: 1.5rem;
}

div.song p, div.song {
  font-style: italic;
  margin-left: 3rem;
  margin-top: .5rem;
  margin-bottom: 1rem;
  text-indent: 0;
  line-height: 1.5rem;
}

.content p.arg {
  font-weight: bold;
  text-align: justify;
  margin-left: 2em;
  margin-right: 2em;
  margin-bottom: 1.5em;
  font-style: italic;
  text-indent: 0;
}

div.poem p.pfirst, div.verseline p.pfirst {
  text-indent: 0;
}

span.dropcap {
  float: left;
  margin: 0 0.1em 0 0;
  line-height: .8;
  font-size: 4em;
  font-style: normal;
}

span.qdropcap {
  float: left;
  margin: 0 0 0 0;
  line-height: .8;
  font-size: 1.5em;
  font-style: normal;
}

.stanza p {
  line-height: 1.5;
  text-indent: default;
  margin-bottom: 1rem;
  padding: default;
}

div.terza-rima p {
  margin-left: 2rem;
  text-indent: -2rem;
}

