@font-face {
    font-family: 'SSPWebfont';
    src: url('ssp-bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}
@font-face {
    font-family: 'SSPWebfont';
    src: url('ssp-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

* {
    border: 0;
    margin: 0;
    outline: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #313131;
    font-size: 16px;
    font-family: SSPWebfont, "Trebuchet MS", Verdana, Tahoma, Helvetica, Arial, sans-serif;
    min-width: 320px;
    position: relative;
}

p {
    font-size: 1rem;
    padding-bottom: 10px;
}

.headbg {
    background: #00979c url("topback.png");
    height: 92px;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 2;
}
.header {
    height: 100%;
    position: relative;
}
.header a {
    text-decoration: none;
}
.header h1 {
    font-size: 1rem;
    font-weight: normal;
    height: 100%;
    margin: 0;
    padding: 0;
}
.header span {
    display: block;
    color: #fff;
    left: 23px;
    position: relative;
    top: -27px;
}
.header img {
    position: relative;
    top: -7px;
    left: 20px;
}

article {
    background: rgba(255, 255, 255, 0.7);
    min-height: 100vh;
    padding: 125px 25px 55px;
    position: relative;
    z-index: 1;
}
article ul {
    margin: -5px 0 10px 20px;
}
article a {
    color: #00828a;
    text-decoration: none;
}
article a:hover {
    color: #6a144e;
}

.intro {
    font-size: 18px;
}
.intro em {
    font-style: normal;
    font-weight: bold;
}

.cite {
    background: #f0f0f0;
    border: 4px solid #00828a;
    position: relative;
    margin-bottom: 50px;
}
.cite:before,
.cite:after {
    background: #f0f0f0;
    content: "";
    height: 25px;
    position: absolute;
    width: 35px;
}
.cite:before {
    bottom: -4px;
    left: -4px;
}
.cite:after {
    right: -4px;
    top: -4px;
}
.cite blockquote {
    margin: 20px 25px 40px;
    color: #6a144e;
}
.cite blockquote p {
    font-size: 25px;
}
.cite blockquote:before,
.cite blockquote:after {
    color: #6a144e;
    font-size: 95px;
    font-weight: bold;
    position: absolute;
    z-index: 3;
}
.cite blockquote:before {
    bottom: -27px;
    content: "\201E";
    left: -20px;
}
.cite blockquote:after {
    content: "\201C";
    right: -20px;
    top: -46px;
}
.cite blockquote span:last-child {
    text-align: right;
}

.cite figcaption {
    position: absolute;
    bottom: 20px;
    right: 20px;
}
.cite cite {
    font-style: normal;
}

.footerbg {
    background: #00979c url("topback.png");
    bottom: 0;
    height: 36px;
    position: absolute;
    width: 100%;
    z-index: 2;
}
footer {
    padding-top: 8px;
    position: relative;
    text-align: right;
}
footer ul {
    margin-right: 25px;
}
footer li {
    display: inline-block;
    list-style-type: none;
}
footer li:after {
    content: "|";
    color: #fff;
}
footer li:last-child:after {
    display: none;
    content: none;
}
footer li a {
    color: #fff;
    text-decoration: none;
}
footer li a:hover {
    color: #6a144e;
}


@media screen and (min-width: 600px) {
    body {
        background-color: #313131;
        background-image: url("background.png");
    }

    .headbg {
        height: 70px;
    }
    .header {
        margin: 0 auto;
        max-width: 1000px;
        width: 80%;
    }
    .header img {
        left: 13px;
    }
    .header span {
        display: inline;
        left: 40px;
        top: -29px;
    }

    article {
        background: rgba(255, 255, 255, 0.7);
        margin: 0 auto;
        padding: 135px 60px 90px;
        width: 90%;
    }

    .cite {
        margin-bottom: 65px;
    }
    .cite blockquote p {
        font-size: 32px;
    }

    footer {
        margin: 0 auto;
        width: 90%;
    }
    footer ul {
        margin-right: 15px;
    }
}

@media screen and (min-width: 1024px) {
    article {
        max-width: 1000px;
        padding: 150px 80px 106px;
        width: 80%;
    }

    .cite blockquote span {
        display: block;
    }

    footer {
        max-width: 1000px;
        width: 80%;
    }
}