span.bold {
    font-style: normal;
    font-weight: bold;
}
span.italic {
    font-style: italic;
    font-weight: normal;
}
span.strikethrough {
    font-style: normal;
    font-weight: normal;
    text-decoration: line-through;
}
span.underline {
    font-style: normal;
    font-weight: normal;
    text-decoration: underline;
}
span.subscript {
    font-style: normal;
    font-weight: normal;
    vertical-align: sub;
    font-size: 58%;
}
span.superscript {
    font-style: normal;
    font-weight: normal;
    vertical-align: super;
    font-size: 58%;
}
span.allcaps {
    font-variant: normal;
    text-transform: uppercase;
}
span.smallcaps {
    font-variant: small-caps;
    text-transform: none;
}
img {
    max-width: 80%;
    max-height: 700px;
    margin: 20px;
}
/* LISTS */ 
/* Unordered Lists */ 
ul {
    padding-left: 1em;
    list-style-position: outside;
}
ul li {
    padding-left: 1em;
}
ul.list_disc {
    list-style-type: disc;
}
ul.list_circle {
    list-style-type: circle;
}
ul.list_square {
    list-style-type: square;
}
ul.list_none {
    list-style-type: none;
}
/* en dash + 2 spaces */ 
ul.list_u2013 {
    list-style-type: '\2013\0020\0020';
}
/* em dash  + hair space */
 
ul.list_u2014 {
    list-style-type: '\2014\200A';
}
/* Ordered Lists */ 
ol {
    list-style-position: outside;
}
ol li {
    padding-left: 1em;
}
ol.list_01,ol.list_001,ol.list_0001 {
    list-style-type: decimal-leading-zero;
}
ol.list_abjad {
    list-style-type: katakana;
}
ol.list_alif_ba_tah {
    list-style-type: katakana;
}
ol.list_katakana_modern {
    list-style-type: cjk-decimal;
}
ol.list_katakana_traditional {
    list-style-type: cjk-decimal;
}
ol.list_hebrew_biblical {
    list-style-type: hebrew;
}
ol.list_hebrew_non‑standard {
    list-style-type: hebrew;
}
