﻿.LabelPreview
{
    border: medium outset #BFC1D1;
    display:block;
    background-color: #596B91;
    z-index:9998;
    position:absolute;
    width:350px;
    height:auto;
    overflow:auto;
    padding:10px 10px 10px 20px;
}
        
.MessagePopup
{
    border: medium outset #BFC1D1;
    display:block;
    background-color: #596B91;
    /*top:200px;
    left:365px;*/
    z-index:9998;
    /* absolute positioning on this introduces scrolling issues where submit button is at foot of a form - fixed makes it float!
    position:absolute;*/
    position:fixed;
    width:400px;
    min-height: 150px;
    max-height: 450px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 10px 20px 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5)  ; 
	-webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5)  ; 
	-moz-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5)  ;
}

.ConfirmationPopup
{
    border: medium outset #BFC1D1;
    display:block;
    background-color: #596B91;
    /*top:200px;
    left:365px;*/
    z-index:9999;
    position:absolute;
    width:400px;
    height:150px;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 10px 10px 20px 20px;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5)  ; 
	-webkit-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5)  ; 
	-moz-box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5)  ;
}

.FixedPreviewPopup
{
    border: thin outset #BFC1D1;
    display:block;
    position:relative;
    height:auto;
    overflow:auto;
    padding: 20px;
 }
 
/*
#MyDiv
{
    border: medium outset #BFC1D1;
    display:block;
    background-color: #596B91;
    z-index:9998;
    position:fixed;
    width:400px;
    height:auto;
    overflow:auto;
    padding: 25px;
}
*/