/*****
** Copyright APS Group 2012
** Created by Rico Lemmert
*****/

/* Environment */
@media screen {

    .environment-test,
    .environment-qa,
    .environment-dev,
    .environment-demo {
        position: fixed;
        top: 0px;
        left: 0px;
        width: 28px;
        height: 100%;
        color: white;
        font-size: 0pt;
        line-height: 0pt;
        -webkit-box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
        -moz-box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
        box-shadow: 2px 2px 2px rgba(0,0,0,0.3);
        z-index: 996;
        opacity: 0.8;
    }

    .environment-test {
        background: url('../images/main/environment-test.png') no-repeat 0 40px #ed8700;
    }

    .environment-qa {
        background: url('../images/main/environment-qa.png') no-repeat 0 40px #0574d7;
    }

    .environment-demo {
        background: url('../images/main/environment-demo.png') no-repeat 0 40px #078a4b;
    }

    .environment-dev {
        background: url('../images/main/environment-dev.png') no-repeat 0 40px #df0303;
    }
}