@charset "utf-8";

*
{
    box-sizing :border-box;
}

body
{
    margin: 0px;
    background-image: linear-gradient(to right, #00758a 0%, #0a4883 15%, #0a4883 85%, #00758a 100%);
}

header
{
    margin-bottom: 60px;
    height: 90px;
    border-bottom: 4px solid #0000d8A0;
    background-color: #0a0a6f;
}

#menu_image
{
    display: none;
    margin: 0px 10px 0px 20px;
    width: 50px;
    vertical-align: middle;
    cursor: pointer;
}

header h1
{
    display: inline-block;
    margin: 0px 0px 0px 40px;
    color: #ceb91c;
    font-family: 'Time New Roman';
    font-size: 40px;
    line-height: 90px;
}

nav
{
    display: block;
    float: right;
}

nav ul
{
    list-style-type: none;
    display: inline-block;
    margin: 0px 40px 0px 0px;
    padding: 0px;
}

nav li
{
    display: inline-block;
    margin: 0px 10px;
}

nav li a:link, nav li a:visited
{
    display: inline-block;
    padding: 0px 20px;
    color: yellow;
    font-family: Arial;
    font-size: 18px;
    text-decoration: none;
    line-height: 90px;
}

nav li a:hover, nav li a:active
{
    background-color: #0000d8A0;
}

.content_block
{
    margin: 0px auto 60px;
    width: 960px;
}

.content_block p
{
    margin: 10px 0px;
    color: #d3d3d3;
    font-family: Arial;
    font-size: 18px;
    line-height: 1.5;
    word-break: break-word;
}

.content_block a:link, .content_block a:visited
{
    color: #d3d3d3;
    border-bottom: 1px solid #d3d3d380;
    text-decoration: none;
}

.content_block a:hover
{
    border-bottom: 1px solid #d3d3d3c0;
}

.content_block a:active
{
    color: #ffffff;
    border-bottom: 1px solid #ffffff;
}

footer
{
    padding: 10px 0px 40px;
    background-color: #0a0a6f;
}

footer p
{
    color: #979797;
    font-family: 'Times New Roman';
    font-size: 16px;
    text-align: center;
}

footer a:link, footer a:visited
{
    color: #979797;
    border-bottom: 1px solid #97979780;
    text-decoration: none;
}

footer a:hover
{
    border-bottom: 1px solid #979797c0;
}

footer a:active
{
    color: #bdbdbd;
    border-bottom: 1px solid #bdbdbd;
}

.largeSpace_block
{
    height: 100px;
}

@media only screen and (max-width:1000px)
{
    .content_block
    {
        width: 90%;
    }
}

@media only screen and (max-width:760px)
{
    header
    {
        height: auto;
    }

    header h1
    {
        margin: 0px;
    }

    #menu_image
    {
        display: inline-block;
    }

    nav
    {
        display: none;
        float: none;
    }

    nav ul
    {
        margin: 0px;
    }

    nav li
    {
        display: block;
        margin: 10px 0px 10px 80px;
        line-height: auto;
    }

    nav li a:link, nav li a:visited
    {
        padding: 0px 10px;
        line-height: 45px;
    }

    nav li a:hover, nav li a:active
    {
        /* Empty. */
    }
}

