body
{
    margin: 0px;
    padding: 0px;
    font-family: 'Open Sans', sans-serif;
    background-image: url('../images/bgBoxes.png');
    background-repeat: repeat-x repeat-y;
}
img
{
    border: 0px none;
}
a
{
    color: #333;
    text-decoration: none;
}
a:hover
{
    color: #c16d23;
    text-decoration: none;
}
#navContainer
{
    display: flex; /* or inline-flex */
    flex-flow: row nowrap; /* is default: columns along the main-axis (row) and no wrapping to next lines */
    justify-content: flex-end; /* align horizontal */
    align-items: flex-end; /* bottom */
}
/* MAIN MENU */
ul.topnav
{
    float: right;
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
}
ul.topnav li
{
    float: left;
}
ul.topnav li a
{
    display: block;
    color: #242424;
    text-transform: uppercase;
    font-size: 20px;
    text-align: center;
    padding: 0 0 0 0;
    text-decoration: none;
    margin-left: 30px;
    border-bottom: 2px solid rgba(0,0,0,0);
}
ul.topnav li a:hover:not(.active)
{
    border-bottom: 2px solid #c16d23;
}
ul.topnav li a.active
{
    border-bottom: 2px solid #242424;
}
@media screen and (max-width: 600px)
{
    ul.topnav li
    {
        float: none;
    }
    ul.topnav li a
    {
        margin-bottom: 10px;
    }
    #navContainer
    {
        justify-content: center;
        margin-top: 20px;
    }
    .footerItem
    {
        margin-top: 30px;
    }
}
@media screen and (max-width: 768px)
{
    .footerItem
    {
        margin-top: 30px;
    }
}
/* / MAIN MENU */
.contentMain
{
    text-align: left;
    font-size: 16px;
}
.txtMega
{
    font-size: 32px;
}
.txtLarge
{
    font-size: 22px;
}
.txtMedium
{
    font-size: 20px;
}
.txtSmall
{
    font-size: 14px;
}
.boxesFooter
{
    float: right;
}
.txtCenter
{
    text-align: center;
}