﻿/*
 * ------------------------------------------------------------------------------------------------
 * © Copyright 2012 SunGard K-12 Education, All Rights Reserved.
 * This program is PROPRIETARY and CONFIDENTIAL information of SunGard K-12 Education, and may not
 * be disclosed or used except as expressly authorized in a license agreement controlling such use
 * and disclosure.  Unauthorized use of this program will result in legal proceedings, civil
 * damages, and possible criminal prosecution.
 * ------------------------------------------------------------------------------------------------
 * System Name: Teacher Access Center
 * ------------------------------------------------------------------------------------------------
 * File Name: SessionTracking.css
 * ------------------------------------------------------------------------------------------------
 * File Description:
 *   CSS settings that are applied for displaying the Session Timeout Warning window.
 * ------------------------------------------------------------------------------------------------
 *  SOURCE
 * CHG-SET*  DATE/TIME   MODIFIED BY           COMMENTS
 * ========  ==========  ====================  ====================================================
 *    34939  04/26/2012  Eric.Weist            Updated Authentication screens to use the latest
 *           07:53:28 P                        graphics and layout design.
 * $log$
 * * SOURCE CHG-SET refers to the TFS Changeset that the changes were applied to.
 * ------------------------------------------------------------------------------------------------
 */

/* When combined with the jQuery fadeTo command, the entire screen is grayed out and disabled */
#session-block 
{
    background-color: Black;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    position: fixed;
    z-index: 10000;
}

/* Formatting to make the window appear in the middle of the screen */
#session-container 
{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30em;
    margin-left: -15em;
    margin-top: -7em;
    font-weight: bold;
    z-index: 100000;
}

/* Formatting for the portion of the window where the message will be displayed */
#session-background 
{
    background-color: White;
    text-align: left;
}
