/**
 * CSS for staff Popup Windows
 *
 */


.popup.overlay
{
	z-index: 99999;
	position: absolute;
	position: fixed;
	top: 0px;
	left: 0px;
	bottom: 0px;
	right: 0px;

	background-color: rgba(0, 0, 0, 0.1);
}


.popup.overlay .window
{
	z-index: 100000;
	position: absolute;
	padding: 8px;
	left: 50%;
	top: 50%;
	background-color: #246AA7;
	background: -moz-linear-gradient(center top , #0F91CA, #246AA7) repeat scroll 0 0 #246AA7;
	background: -webkit-linear-gradient(center top , #0F91CA, #246AA7) repeat scroll 0 0 #246AA7;
	background: -o-linear-gradient(center top , #0F91CA, #246AA7) repeat scroll 0 0 #246AA7;
	background: -ms-linear-gradient(center top , #0F91CA, #246AA7) repeat scroll 0 0 #246AA7;
	background: linear-gradient(center top , #0F91CA, #246AA7) repeat scroll 0 0 #246AA7;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	-o-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow: 4px 4px 4px #000;
	-o-box-shadow: 4px 4px 4px #000;
	-moz-box-shadow: 4px 4px 4px #000;
	-ms-box-shadow: 4px 4px 4px #000;
	box-shadow: 4px 4px 4px #000;
	overflow: hidden;
}

.popup.overlay .content
{
	background: #ffffff;
	background: -moz-linear-gradient(top, #ffffff 0%, #ffffff 50%, #f0f0ff 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(50%,#ffffff), color-stop(100%,#f0f0ff));
	background: -webkit-linear-gradient(top, #ffffff 0%,#ffffff 50%,#f0f0ff 100%);
	background: -o-linear-gradient(top, #ffffff 0%,#ffffff 50%,#f0f0ff 100%);
	background: -ms-linear-gradient(top, #ffffff 0%,#ffffff 50%,#f0f0ff 100%);
	background: linear-gradient(top, #ffffff 0%,#ffffff 50%,#f0f0ff 100%);
	border:1px inset #246AA7;
	padding:8px;
	color:black;
}

.popup.overlay h1, .popup.overlay .title
{
    color:white;
    font-size: 1em;
    font-weight: bold;
    margin-bottom: 4px;
    padding-bottom: 4px;
}

.popup.overlay p
{
    font-size: 1em;
    margin-bottom: 0.5em;
}

.popup.overlay .close
{
	cursor: pointer;
	color:white;
	font-weight: bold;
}

.popup.overlay .content .loading
{
	background-image: url('img/ajax-loader-large.gif');
	background-position: center center;
	background-repeat: no-repeat;
	background-attachment: scroll;
	height: 64px;
}