1/* Styler */
2div.styler-box {
3    border: 1px solid #9C8A63;
4    padding: 1em;
5}
6
7div.styler-background {
8    background-color: #ECE8DE;
9}
10
11div.styler-float-left {
12    float: left;
13    margin: 0 1em 0.5em 1em;
14}
15
16div.styler-float-right {
17    float: right;
18    margin: 0 1em 0.5em 1em;
19}
20
21div.styler-left {
22    text-align: left;
23}
24
25div.styler-right {
26    text-align: right;
27}
28
29div.styler-center {
30    text-align: center;
31}
32
33div.styler-justify {
34    text-align: justify;
35}
36
37/* Verse */
38div.verse {
39    border: none;
40    padding: 1em 3em;
41}
42
43div.verse pre {
44    font-family: 'Courier New', Courier, monospace;
45    color: black;
46    font-weight: normal;
47    font-style: normal;
48    line-height: 1.5em;
49}
50
51div.verse pre span {
52    color: #006600;
53    font-style: italic;
54}
55
56/* epigraph */
57div.epigraph {
58    margin-left: 60%;
59    margin-top: 1em;
60    margin-bottom: 1em;
61    padding-left: 1em;
62    font-family: Times New Roman, Georgia, Garamond, Times, serif;
63    font-style: italic;
64}
65
66/* quote */
67div.styler-quote {
68    margin-left: 3em;
69    border: 1px dotted #BBAC8C;
70    background: #F8F5EE url(images/blockquote.gif) no-repeat 0.3em 0.3em;
71    padding: 1em;
72}
73