

.open{
	display: block !important;
}
.modalDialog {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(255,255,255,0.8);
	z-index: 9999999;
	display: none;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: auto;	
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
}

.modalDialog:target {
	display: block;
	pointer-events: auto;
}

.modalDialog > div {
	width: 400px;
	height: 515px;
	top: 0px;
	position: relative;
	margin: 10% auto;
	padding: 5px 0 13px 0;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
}

.close {
	color: #000;
	background: white;
	line-height: 25px;
	position: absolute;
	right: 6px;
	text-align: center;
	top: 6px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
/*
	-webkit-border-radius: 24px 24px 24px 24px;
  border-radius: 24px 24px 24px 24px;
*/
}

.close:hover { 
	color: #666;
/*	background: #efefef; */
	cursor: pointer;
}



.modalDialog h1 {
	font-size: 2em;
	text-transform: none;
	margin-bottom: 0;
}
.modalDialog h2 {
	font-size: 1.5em;
	color: #035ebb;
	text-transform: none;
}
.modalDialog h3 {
	font-size: 1em;
	color: #444;
}
.modalDialog p {
	font-size: 1em;
	color: #444;
	margin: 0 2em;
}
.modal-content {
	margin: 2em 0 0 0;
	text-align: center;
}
.modal-image {
	display: block;
	width: 100%;
	height: 200px;
	/*background: yellow;*/
}
.modal-desc {
	display: block;
	width: 100%;
	height: 140px;
	border-top: 1px solid #efefef;
	/*background: green;*/
}
.modal-btn {
	display: block;
	width: 100%;
	height: 60px;
	margin-top: 25px;
	/*background: green;*/
}

.modal-btn input[type="button"] {
	display: block;
	width: 150;
	height: 50px;
	margin: 0 auto;
	-webkit-border-radius: 25px 25px 25px 25px;
  border-radius: 25px 25px 25px 25px;
  padding: 0 40px;
  background: #f17100;
}

.modal-btn-shape {
	display: block;
	/*width: 150px;*/
	height: 50px;
	margin: 0 auto;
	-webkit-border-radius: 25px 25px 25px 25px;
  border-radius: 25px 25px 25px 25px;
  padding: 0 40px;
  background: #f17100;
  text-align: center;
  cursor: pointer;
}

.modal-btn-shape p {
	display: block;
  text-align: center;
  color: white;
  padding: 14px 0 0 0;
  text-transform: uppercase;
  margin: 0;
}









