﻿/* File Created: februari 25, 2014 */

body {
    background: #EEEEEE;
    font: 13px Arial;
    margin: 0 auto;
}

#header {
    background: url('../images/header.png');
    height: 80px;
    position: relative;
}

    #header #flags {
        position: absolute;
        right: 10px;
        top: 7.9em;
    }

        #header #flags select {
            width: 13em;
        }

        #header #flags a img {
            border: none;
        }

#content {
    padding: 0 33px;
    width: 19em;
    margin: 0 auto;
    margin-top: 50px;
}

    #content .error {
        height: 35px;
        color: Red;
        text-align: right;
    }

    #content .row {
        height: 40px;
    }

        #content .row .label,
        #content .row .input {
            height: 26px;
            line-height: 26px;
        }

        #content .row .label {
            width: 140px;
            float: left;
        }

        #content .row .input {
            float: right;
        }

            #content .row .input input[type=text], #content .row .input input[type=password] {
                width: 250px;
            }

            #content .row .input input[type=submit] {
                width: 150px;
            }

#footer {
    background: url('../images/footer.png');
    height: 2.063em;
    width: 100%;
    line-height: 2.063em;
    text-align: center;
    font-size: 11px;
    color: #7A7A81;
    margin-top: 4.5em;
    bottom: 0px;
    /*position: fixed;*/
}

    #footer a {
        color: #E98500;
        text-decoration: none;
    }

        #footer a:hover {
            text-decoration: underline;
        }


/* Responsive style */
@media (min-width:26.6em) {
    body {
        width: 100%;
        margin: 0 auto;
    }

    #form1 {
        width: 450px;
        margin: 0 auto;
    }

    #header #flags{
        position: absolute;
        right: 10px;
        top: 45px;
    }

    #header #flags select {
        width: 237px;
    }

    #content {
        width:auto;
        height: 250px;
        padding: 0 25px;
        border: 1px solid #DDDDDD;
        margin-top:0px;
    }

    #footer {
        background: url('../images/footer.png');
        height: 2.063em;
        width: 450px;
        line-height: 2.063em;
        text-align: center;
        font-size: 11px;
        color: #7A7A81;
        margin-top: 0em;
        position: initial;
    }
}



