#top-row {
    height: 116px;
    background-image: url("../../resources/background/top_row_bg.jpg");
    background-position: center;

    display: flex;
    justify-content: center;

}

#separator {
    height: 8px;
    background-color: white;
}

#content {
    background-image: url("../../resources/background/content_bg.jpg");
    background-repeat: repeat-x;
    background-color: white;
}

.bannerImage {
    background: url("../background/banner_shadown_big.png") center bottom no-repeat;
    padding: 0 5px 5px 5px;
}

.bannerImage img {
    margin-bottom: 2px;
    margin-left: 2px;
}

#banner {
    display: flex;
    justify-content: center;
    position: relative;
    top: -95px;
}

.bannerItem {
}

.bannerItem h2 {
    font-family: 'MelbourneRegular', Arial, sans-serif;
    font-size: 24px;
    line-height: 1em;
    text-align: center;
    margin-top: 10px;
}

.bannerItem em {
    font-family: 'JournalRegular', 'Times New Roman', 'Times', serif;
    font-size: 33px;
    font-style: normal;
}

#footer {
    height: 170px;
    background-color: #dfdfdf;
}

#mainContent {
    display: flex;
    margin-left: 17px;
    margin-right: 17px;
    padding-bottom: 20px;
    color: #595959;
    position: relative;
    top: -60px;
}

.mainContentItem {
    flex: 1;
    border: 1px solid #d6d6d6;
    background-color: white;
    padding: 10px;
    margin: 0 10px;
}

.mainContentItem h2 {
    color: #444e69;
    background: url('../site/arrow.png') 0 3px no-repeat;
    font-family: 'MelbourneRegular', Arial, sans-serif;
    font-size: 23px;
    padding: 0 0 0 20px;
    margin: 10px 0 15px 0;
    line-height: 23px;
    font-weight: normal;
}

.mainContentItem li {
    margin-bottom: 10px;
    list-style: disc outside;
    font-size: 13px;
}

.mainContentItem a, .mainContentItem a:hover {
    background: url('../site/icon_plus.gif') 0 2px no-repeat;
    padding-left: 20px;
    font-family: 'MelbourneRegular', Arial, sans-serif;
    font-size: 15px;
    color: #3a96cc;
    text-decoration: unset;
}

.mainContentItem img {
    width: 100%;
    height: 185px;
}

@media (max-width: 600px) {
    #top-row {
        height: 50px;
    }

    #banner {
        top: -50px;
    }

    #mainContent {
        flex-direction: column;
    }

    .mainContentItem {
        margin-top: 20px;
    }
}

