﻿/*
PopupContainers.css - definitions for containers of Popup Pages

A Popup Container contains a Popup Page within an iframe. A Popup Container
has a specific DOM structure, and is opened/closed/moved around with
JavaScript. Popup Containers exist on various full aspx pages.
*/

.popupFrame 
{
    border-width: 1px;
    border-style: outset;
    position: absolute;
    display: none;
    z-index: 2000;
    /* these are default values. the PopupContainer class will auto-center */
    left: 0;
    top: 0;
    border-radius: 7px;
}
        
.popupIframe 
{
    height: 100%;
    width: 100%;
    -moz-box-sizing:    border-box;
    -webkit-box-sizing: border-box;
    box-sizing:        border-box;
    
}
        
.popupHandle 
{
    font-weight: 700;
    height: 20px;
    padding: 3px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

.popupHandleTitle 
{
    float: left;
    position: relative;
    top: 3px;
}

.popupClose
{
    float: right;
    background: #003366;
    vertical-align: middle;
    height: 20px;
    width: 20px;
    background: url('Images/close.png');
    cursor: pointer;
}