
body {
    /* Location of the image */
    background-image: url(../Images/background-photo.jpg);
    /* Image is centered vertically and horizontally at all times */
    background-position: center center;
    /* Image doesn't repeat */
    background-repeat: no-repeat;
    /* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
    background-attachment: fixed;
    /* This is what makes the background image rescale based on its container's size */
    background-size: cover;
    /* Pick a solid background color that will be displayed while the background image is loading */
    background-color: #464646;
    /* SHORTHAND CSS NOTATION
   * background: url(background-photo.jpg) center center cover no-repeat fixed;
   */
}

/* For mobile devices */
@media only screen and (max-width: 767px) {
    body {
        /* The file size of this background image is 93% smaller
     * to improve page load speed on mobile internet connections */
        background-image: url(../Images/background-photo-mobile-devices.jpg);
    }
}

html, body, .container {
    height: 100%;
}

/* Reset */
html, body, h1, p, a, div, section {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font: inherit;
}

/* Basic */
body {
    font: 18px/23px "Cantarell", sans-serif;
    color: #ffffff;
}

h1 {
    color: #efecec;
    text-transform: uppercase;
    font-size: 40px;
    line-height: 50px;
    font-weight: 400;
    margin-top: 20px;
}

a {
    color: #ffffff;
}

p {
    margin: 0 0 15px 0;
}

strong {
    font-weight: 700;
}

.buttonGreen {
    BORDER-RIGHT: #ffffff 1px solid;
    BORDER-TOP: #ffffff 1px solid;
    FONT-SIZE: 14px;
    BORDER-LEFT: #ffffff 1px solid;
    CURSOR: default;
    COLOR: #ffffff;
    BORDER-BOTTOM: #ffffff 1px solid;
    HEIGHT: 25px;
    width: 100px;
    text-align: center;
    BACKGROUND-COLOR: #289cbc;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    TEXT-ALIGN: center;
}

    .buttonGreen:hover {
        cursor: pointer;
        border-right: #71ccd5 1px solid;
        border-top: #71ccd5 1px solid;
        border-left: #71ccd5 1px solid;
        color: #fff;
        border-bottom: #71ccd5 1px solid;
        background-color: #71ccd5;
    }
/* Layout */

.navbar {
    width: 100%;
    height: 40px;
    z-index: 9999;
    position: fixed;
}

.inner {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.navbar a {
    display: inline-block;
    color: #289cbc;
    font-weight: bold;
    text-decoration: none;
    margin-top: 25px;
}

.navbar span {
    display: inline-block;
    color: #289cbc;
    font-weight: bold;
    font-size: 50px;
    text-decoration: none;
    margin-top: 25px;
}


.container {
    display: table;
    padding-top: 80px;
    width: 100%;
}

.content {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

/* Special */
.sub-title {
    margin: 50px auto;
    font-size: 18px;
    line-height: 23px;
    text-transform: uppercase;
}

.button {
    display: inline-block;
    padding: 6px 10px;
    color: #cafaea;
    border: 1px solid #cafaea;
    border-radius: 3px;
    font-weight: 700;
    line-height: normal;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
}

#more-content {
    display: none;
}

/* Media Queries */
@media only screen and (max-width: 340px) {

    .container {
        position: relative;
        display: block;
        float: left;
        vertical-align: baseline;
        margin: 0 auto;
        padding: 80px 0 0 0;
    }

    #more-content {
        float: left;
        margin-right: 10px;
    }

    body h1 {
        font-size: 18px;
        line-height: 23px;
    }

    .sub-title {
        font-size: 14px;
        line-height: 21px;
    }

    .button, p {
        max-width: 150px;
        margin: 0 auto;
        font-size: 15px;
        line-height: 20px;
    }

    html, body, .container {
        height: auto;
    }
}

.loginTextbox {
    border-bottom: thin;
    border-top: thin;
    border-left: thin;
    border-right: thin;
    border-radius: 5px;
    border-bottom-color: #289cbc;
    border-top-color: #289cbc;
    border-left-color: #289cbc;
    border-right-color: #289cbc;
}

.navFooter {
    position: fixed;
    bottom: 0;
    width: 100%;
    font-size: small;
}

