@charset "utf-8";
/* CSS Document */
/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	padding-top: 100px; /* Location of the box */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}
/* Modal Content */
.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	width: 50%;
}
/* The Close Button */
.close {
	color: #C00;
	float: right;
	font-size: 28px;
	line-height:30px;
	font-weight: bold;
	z-index: 99999;
	position: absolute;
	right: 5px;
	background-color: #FFF;
	padding: 0px 7px 0px 7px;
	border-radius: 50%;
	font-family: calibri;
	top: 4px;
}
.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}
.modalDialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99999;
	display:none;
	opacity: 1;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	-webkit-transform: translate(0,0);
	-ms-transform: translate(0,0);
	-o-transform: translate(0,0);
	transform: translate(0,0);
	background-image:url(images/back-ground.png);
	background-repeat:repeat;
}
.modalDialog > div {
	width:50%;
	position: relative;
	margin: 2% auto;
	/*padding: 5px 20px 20px 20px;*/
	border-radius: 15px;
	background: #fff;
	color:#333;
	height:610px;
	overflow-y:scroll;
	box-shadow: 0px 4px 5px 3px rgba(61,61,61,0.55);
	-webkit-box-shadow: 0px 4px 5px 3px rgba(61,61,61,0.55);
	-moz-box-shadow: 0px 4px 5px 3px rgba(61,61,61,0.55);
}
.modalDialog > div img {
	width:100%;
	float:left;
	height:auto;
	overflow:hidden;
}
@media only screen and (max-width: 600px) {
	.modalDialog > div {
		width:90%;
		height:auto;
		overflow-y:hidden;
	}
}


