

	
	
		/*

 CSS for jquery-plugin modal

 This file is part of the OpenWGA server platform.
 (c) Innovation Gate

*/ 

body .body-mask{
	position: fixed;
	top: 0px;
	bottom: 0px;
	left: 0px;
	right: 0px;
	background: black;
	opacity: .7;
	filter: alpha(opacity = 70);
	display: none;
	z-index: 101;
}
body .modal-popup{
	position: fixed;
	z-index: 102;
	width: 600px;
	margin-left: -300px;
	top: 10%;
	left: 50%;
	max-height: 80%;
	background: white;
	padding: 0px;
	box-shadow: 0 0 20px black;
	-ms-box-shadow: 0 0 20px black;
	-moz-box-shadow: 0 0 20px black;
	-webkit-box-shadow: 0 0 20px black;
	display: none;
}
html.small body .modal-popup {
	width: 90% !important;
	margin-left: -45% !important;
	top: 5%;
}
body .modal-popup .header{
	padding: 10px 15px;
	border-bottom: solid #efefef 1px;
	font-size: 2em;
}
body .modal-popup .header a[data-modal='hide']{
	float: right;
	cursor: pointer;
	text-decoration: none;
}
body .modal-popup .content{
	padding: 15px;
}
body .modal-popup .footer{
	text-align: right;
	background: #efefef;
	border-top: solid #dddddd 1px;
	padding: 15px;
}
body .modal-popup .close{
	background-image: url('/plugin-wga-app-framework/file/images/apple-close.png');
	position: absolute;
	cursor: pointer;
	opacity: 1;
	z-index: 1;
	left: -14px;
	top: -12px;
	height: 28px;
	width: 28px;
}

	
