/* Body
----------------------------------------------------------------------------------------------------*/
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; *behavior: url(/js/boxsizing.htc);
}

html, body {
    height: 100%;
}

body {
    background: #333;
	text-align: center;
    font-size: 14px;
    line-height: 20px;
    overflow-x: hidden;
}

body, h1, h2, h3, h4, h5, h6 {
    font-family: 'Open Sans', Helvetica, Helvetica Neue, Arial;
    font-weight: 300;
    color: #fff;
}

strong {
    font-weight: 600;
}

/* Container & common
----------------------------------------------------------------------------------------------------*/
.inner,
.content-container {
	width: 960px;
	margin: 0 auto;
	text-align: left;
	position: relative;
}

h1 {
    font-size: 22px;
    line-height: 24px;
    color: #ff8400;
}

h2 {
    font-size: 16px;
    line-height: 20px;
    color: #ff8400;
    margin: 0;
}

a, a:hover {
    color: #fff;
    font-style: italic;
	text-decoration: none;
}

    a:hover {
        color: #ff8400;
    }

/* Header
----------------------------------------------------------------------------------------------------*/
header,
.header-helper {
    width: 50%;
    min-width: 480px;
    height: 115px;
    position: fixed;
    top: 50px;
    left: 0;
    right: 50%;
    padding: 17px 0 16px;
    background: #ff6800;
    background: rgba(255,104,0,0.8);
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    z-index: 200;
}

    .header-helper {
        width: auto;
        top: 50px;
        left: 50%;
        right: 0;
        margin-left: 480px;
    }

    @media screen and (max-width: 960px) {

        body {
            overflow-x: auto;
        }

        .header-helper {
            display: none;
        }
    }

    header .inner {
        width: 480px;
        float: right;
    }

    header .logo {
        float: left;
    }

        header .logo a {
        	display: block;
        	height: 82px;
        	padding-left: 106px;
        	background: url(../img/general/logo.png) no-repeat left center; /*@2x*/
            font-size: 22px;
            line-height: 82px;
            font-style: normal;
            color: #fff;
        }

            header .logo a:focus {
                -moz-outline: none;
                outline: none;
            }

nav {
    position: absolute;
    top: 206px;
    left: 0;
}

    nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
        width: 150px;
    }

        nav ul li {
            float: left;
            width: 150px;
            height: 40px;
            margin: 0 0 10px;
        }

        nav ul li a {
            display: block;
            text-align: center;
            font-size: 14px;
            line-height: 40px;
            font-style: normal !important;
            color: #000;
            background: #fff;
            background: rgba(255,255,255,0.8);
        }

            nav ul li a.active, nav ul li a.active-child, nav ul li a:hover {
                background: #ff6800;
                background: rgba(255,104,0,0.8);
                color: #fff;
            }

            nav ul li a.login-active {
                background: #000;
                background: rgba(0,0,0,0.8);
                color: #fff;
            }

nav form.login {
    float: left;
    width: 100%;
    display: none;
}

    nav form.login .login-field {
        float: left;
        display: inline-block;
        width: 216px;
        height: 40px;
        text-align: center;
        font-size: 14px;
        line-height: 40px;
        color: #000;
        background: #fff;
        background: rgba(255,255,255,0.8);
        border: none;
        padding: 0;
    }

    nav form.login .login-submit {
        float: left;
        display: inline-block;
        width: 80px;
        height: 40px;
        text-align: center;
        font-size: 14px;
        line-height: 40px;
        color: #fff;
        background: #000;
        background: rgba(0,0,0,0.8);
        border: none;
        padding: 0;
        cursor: pointer;
        position: relative;
    }

        nav form.login .login-submit:active {
            top: 1px;
        }

/* Content
----------------------------------------------------------------------------------------------------*/
.content-container {
    min-height: 100%;
    height: auto !important;
    height: 100%;
}

    .content {
        position: absolute;
        top: 0;
        right: 0;
        width: 50%;
        min-height: 100%;
        height: auto !important;
        height: 100%;
        padding: 52px 36px 20px;
        background: #323232;
        background: rgba(0,0,0,0.8);
        z-index: 100;
    }

        .content h1 {
            padding: 45px 0 30px;
        }

        .content img[style*="left"] {
             margin: 0 10px 0 0;
        }

        .content img[style*="right"] {
             margin: 0 0 0 10px;
        }

        .content p + ul, .content p + ol {
            margin-top: -1em;
        }

        .content table p, .content table ul, .content table ol {
            margin-bottom: 0;
        }

            .content table p + ul, .content table p + ol {
                margin-top: 0;
            }

        .content ul.addresses {
            list-style: none;
            margin-left: 0;
        }

            .content .addresses a {
                font-style: normal;
            }

                .content .addresses a span {
                    display: inline-block;
                    width: 186px;
                    color: #ff8400;
                }

    footer {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        text-shadow: 0 0 5px #000000;
    }

        footer p {
            width: 350px;
        }

/* Retina backgrounds
----------------------------------------------------------------------------------------------------*/
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and ( min--moz-device-pixel-ratio: 2), only screen and ( -o-min-device-pixel-ratio: 2/1), only screen and ( min-device-pixel-ratio: 2), only screen and ( min-resolution: 192dpi), only screen and ( min-resolution: 2dppx) {

    header .logo a {
        background: url(../img/general/logo@2x.png) no-repeat left center;
        background-size: 80px 82px;
    }
}