/*
    Document   : timeoutWarning
    Created on : May 17, 2010, 11:12:15 AM
    Author     : rwrisley
    Description:
        CSS for timeout warning popup
*/
.timeoutWarningPopUpWinOn {
    display: block;
}

.timeoutWarningPopUpWinOff {
    display: none;
}

div.transparentTimeout {
    background-color: #000000;
    filter: alpha(opacity=40);
    opacity: 0.4;
    z-index: 900;
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

div.timeoutCloud {
    z-index: 1000 !important;
    opacity: 1;
    /*IE opacity ranges from 0 to 100 so an opacity of 1 is nearly invisble used 100 for no transparency*/
    filter: alpha(opacity=100);
    position: fixed;
    text-align: center;
    left: 50%;
    top: 12vh;
    margin-left: -196px;
    width: 392px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
}

.timeoutCloudSpacing {
    padding: 20px;
    text-align: left;
    border-top: 1px solid #CCC;
}

input.continueButton {
    cursor: pointer;
}

#messageArea {
    font-size: 14px;
    font-family: Arial, Helvetica, sans-serif;
    padding: 20px 0px;
}