

/**
 * When publishing to html, descriptions go in a div with the class 
 * user-content. But since all text sizes are in em (which are relative)
 * we need to make sure that the base font size is 16px.
 * In the editor this is always true because the document size is 16, but
 * in the published material we put the user-content div inside another
 * div with the class user-content-base.
 */   
.user-content-base {
    font-size: 16px;
}

.user-content div, .user-content span, .user-content applet, .user-content object,
.user-content iframe, .user-content h1, .user-content h2, .user-content h3, 
.user-content h4, .user-content h5, .user-content h6, .user-content p, 
.user-content blockquote, .user-content pre,.user-content a, .user-content abbr,
.user-content acronym, .user-content address, .user-content big,
.user-content cite, .user-content code,.user-content del, .user-content dfn,
.user-content em, .user-content font, .user-content img, .user-content ins,
.user-content kbd, .user-content q, .user-content s, .user-content samp,
.user-content small, .user-content strike, .user-content strong, .user-content sub,
.user-content sup, .user-content tt, .user-content var, .user-content b,
.user-content u, .user-content i, .user-content center, .user-content dl,
.user-content dt, .user-content dd, .user-content ol, .user-content ul,
.user-content li, .user-content fieldset, .user-content form, .user-content label,
.user-content legend, .user-content table, .user-content caption,
.user-content tbody, .user-content tfoot, .user-content thead, .user-content tr,
.user-content th, .user-content td {
}

.user-content {
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    color: #000;
    text-shadow: none;
    float: none;
    position: static;
    width: auto;
    height: auto;
    cursor: inherit;
    text-align: left;
    font-size: 0.9em;
    font-family: Arial,Arial,sans-serif;
    color: #000000;        
    line-height: 1.2;
    font-weight: normal;
    font-variant: normal;
    white-space: normal;
    font-kerning: normal;
    text-indent: 0px;
    
    direction: ltr;
    max-width: none;
}
 
.user-content h1 {
    /* top | right | bottom | left */
    margin: 0.5em 0 0.5em 0;
    font-family: Arial,Arial,sans-serif;
    font-weight: bold;
    font-size: 1.4em;
    color: #3c3c3c;
}

.user-content h2 {
    margin: 0.5em 0 0.5em 0;
    font-family: Arial,Arial,sans-serif;
    font-weight: bold;
    font-size: 1.3em;
    color: #3c3c3c;
}

.user-content h3 {
    margin: 0.5em 0 0.5em 0;
    font-family: Arial,Arial,sans-serif;
    font-weight: bold;
    font-size: 1.2em;
    color: #3c3c3c;
}

.user-content h4 {
    margin: 0.5em 0 0.5em 0;
    font-family: Trebuchet MS,Arial,sans-serif;
    font-weight: bold;
    font-size: 1.1em;
    color: #000000;
}

.user-content h5 {
    margin: 0.5em 0 0.5em 0;
    font-family: Trebuchet MS,Arial,sans-serif;
    font-weight: bold;
    font-size: 1.0em;
    color: #000000;
}

.user-content h6 {
    margin: 0.5em 0 0.5em 0;
    font-family: Trebuchet MS,Arial,sans-serif;
    font-weight: bold;
    font-size: 1.0em;
    color: #000000;
}
    
.user-content p {
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0;
    margin-top: 1em;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}

.user-content p:first-child {
    margin-top: 0;
}

.user-content ul {
    list-style-position: outside;
    display: block;
    list-style-type: disc;
    padding-left: 4em;
    margin: 1em 0 1em 0;
    font-size: 16px;
}
    
.user-content ul ul {
    list-style-position: outside;
    display: block;
    list-style-type: circle;
    padding-left: 4em;
    margin: 1em 0 1em 0;
}
    
.user-content ul ul ul {
    list-style-position: outside;
    display: block;
    list-style-type: square;
    padding-left: 4em;
    margin: 1em 0 1em 0;
}
    
.user-content ol {
    list-style-position: outside;
    display: block;
    list-style-type: decimal;
    padding-left: 4em;
    margin: 1em 0 1em 0;
    font-size: 16px;
}
    
.user-content ol ol {
    list-style-position: outside;
    display: block;
    list-style-type: upper-alpha;
    padding-left: 4em;
    margin: 1em 0 1em 0;
}
    
.user-content ol ol ol {
    list-style-position: outside;
    display: block;
    list-style-type: lower-alpha;
    padding-left: 4em;
    margin: 1em 0 1em 0;
}
  
    
      
.user-content li {
    font-size: 0.9em;
    font-family: Arial,Arial,sans-serif;
    color: #000000;        
}
    

.user-content a:not(hover)/*, .user-content a:not(hover) span*/ {
    text-decoration: none;
    font-family: Arial,Arial,sans-serif;
    font-weight: normal;
    color: #;
}

.user-content a:hover/*, .user-content a:hover span*/ {
    text-decoration: none;
    font-family: Arial,Arial,sans-serif;
    font-weight: normal;
    color: #007981;
}
    
.user-content td {
    display: table-cell;
    vertical-align: top;
    font-size: 0.9em;
    font-family: Arial,Arial,sans-serif;
    color: #000000;        
}
   

.user-content table {
    font-size: 16px;
}
    
    
