

/************************************************
				DEVELOPMENT / STAGING / LIVE
 ************************************************/
html {
    min-height: 100%;
}
body {
    min-height: 100%;
}
.live-server body {
    border:4px solid #67fab5;
    padding-bottom:30px;
}
.staging-server body {
    border: 4px solid #f9433c;
    padding-bottom:30px;
}
#staging-server-notice:before {
    display: none;
    padding:10px;
    text-align:center;
    font-weight:bold;
    letter-spacing: 3px;
    position:fixed;
    right:0;
    bottom:0;
    left:0;
    z-index: 100000;
}
.live-server #staging-server-notice:before {
    display: block;
    background:#67fab5;
    color:#065631;
    content: 'LIVE SERVER';
}
.staging-server #staging-server-notice:before {
    display: block;
    background:#f9433c;
    color: #800505;
    content: 'STAGING SERVER';
}

