/*
 *  Module ArticleStyle v 0.0
 *  CSS Style Document
 */

.article {
    font-size: 11px;
    display: block;
    padding-left: 15px;
    padding-right: 15px;
    color: rgb(77, 62, 49);
}

.article h2 {
    margin-top: 15px;
    margin-bottom: 15px;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 20px;
    /*color: rgb(176, 28, 46);*/
    color: rgb(196, 18, 0);
}

.article h3 {
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    /*color: rgb(176, 28, 46);*/
    color: rgb(196, 18, 0);
}

.article h4 {
    margin-bottom: 0px;
    font-size: 13px;
    font-weight: bold;
    color: black;
}

.article p.first:first-letter {
    font-size: 16px;
    font-weight: bold;
    color: black;
}

.article .bold {
    font-weight: bold;
    color: black;
}

.article .italic {
    font-style: italic;
    color: rgb(107, 92, 79);
}

.article a {
    color: rgb(62, 98, 117);
}

.article a:hover {
    color: rgb(196, 18, 0);
}

.article img {
    border: 1px solid rgb(140, 140, 140);
    /*color: rgb(107, 92, 79);*/
}

.article table {
    margin-bottom: 15px;
    border-collapse: collapse;
    border: 1px solid rgb(140, 140, 140);
    background-color: rgb(245, 245, 245);
}

.article caption {
    text-align: left;
    font-weight: bold;
    font-size: 12px;
    color: black;
}

.article th {
    padding: 3px;
    border: 1px solid rgb(140, 140, 140);
    background-color: rgb(62, 98, 117);
    text-transform: uppercase;
    font-weight: bold;
    color: white;
}

.article td {
    padding: 3px;
    border: 1px solid rgb(140, 140, 140);
}



