/* titles */
#page_content_container h1, h2, h3, h4, h5, h6 {
    background-color: #824c00;
}

/* links */
a:link { color:white; }
a:visited { color: silver; }
a:hover { text-decoration-color: white;}

/* text decoration colors */
.emphasized_div {
    border-left: 0.3rem dotted #824c00;
}

.emphasized_text {
    text-decoration-color: #824c00;
}

/*table row colors*/
/*odd*/
.table_column p {
    background-color: #824c00;
}
/*even*/
.table_column p:nth-of-type(even) {
    background-color: #663c00; /* ~ -5% in w3schools color picker */
}

.table_column p:hover {
    background-color: #b36800;
}