﻿/*&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&Popup Code&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&*/

.PopupBackGround {
    position: fixed;
    background-color: #222222;
    filter: alpha(opacity=70);
    opacity: 0.7;
    -moz-opacity: 0.7;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    z-index: 20000000;
    /*display:none;*/
}
.PopupContainer {
    position: fixed;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    white-space: nowrap;
    text-align: center;
    z-index: 20000001;
    /*display:none;*/
    
    overflow: auto;
}
.PopupContents {
    height: auto;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    white-space: normal;
}
.PopupCenterVertically {
    display: inline-block;
    vertical-align: middle;
    height: 100%;
}
.PopupHeader {
    width: 100%;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    padding: 3px 0px 3px 0px;
}
.PopupOuter {
    height: auto;
    width: 450px;
    -webkit-border-radius: 5px !important;
    -moz-border-radius: 5px !important;
    border-radius: 5px !important;
    -moz-box-shadow: 0 0 2px 1px #000;
    -webkit-box-shadow: 0 0 2px 1px #000;
    box-shadow: 0 0 2px 1px #000;
    display: inline-block;
    padding: 0px 7px 5px 5px
}
.PopupInner {
    height: auto;
    width: 100%;
    background-color: #ffffff !important;
    display: inline-block;
    padding: 15px 0px 15px 0px;
    border: 1px solid #222;
    position: relative;
}
.lblPopupHead {
    color: #fff;
    font-family: inherit;
    font-weight: bold;
    font-size: 16px;
    margin: 0px 0px 0px 8px;
}
.PopupButtons {
    width: 100%;
    position: relative;
    bottom: 0;
    padding: 3px 0px 13px 0px;
    text-align: center;
    display: inline-block;
}