<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    Document   : formlocked
    Created on : 18 Nov 2013, 5:04:21 PM
    Author     : Salman Noor : School of Electrical and Information Engineering
    Description:
        Purpose of the stylesheet follows.
*/
.form-locked-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2000;
    background-color: #143D52;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    visibility: visible;
}
#lockedMessageContainer{
 position: fixed;
    top: 20%;
    width: 100%;
    height: auto;
    z-index: 3000;
    color:white;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
 
}
#lockedMessageContainer *{
    text-align: center;
}
#lockedMessageContainer h2{
    font-size: 46px;
 
}
#lockedMessageContainer div{
    margin-top: 2%;
    font-size: 18px;
    font-family: 'Lato',Arial,sans-serif;
 
}
#lockedMessageContainer div .zahrahFormButton{
    float:none !important;
    margin: auto;
    /*text-align: center;*/
}</pre></body></html>