/*=============================
MODAL
=================================*/
.modalDialog{
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/*overflow: scroll;*/
	background: #000;
	background: rgba(0, 0, 0, 0.85);
	z-index: 99999;
	opacity: 0;
	pointer-events: none;

	/* IE 8 and below */
       display: none;
}

.modalDialog div#addModal{
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	top: -62px;
}

.modalDialog div#addModal div#target,
.modalDialog div#addModal div#targetPH{
	display: block;
	padding: 0;
	width: 100%;
	margin: 0 auto;
}

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

a#close{
	display: block;
	background: url('../images/close-black.png') no-repeat center;
	background-size: 100%;
	overflow: hidden;
	text-indent: -9999px;
	width: 20px;
	height: 20px;
	position: absolute;
	right: 20px;
	top: 20px;
	z-index: 1;
}

a#close:hover{ 
	opacity: 0.6;

    /* For IE8 and below */
    filter: alpha(opacity=60);
}


/*===================
RESPONSIVE
====================*/
@media screen and (min-width: 801px){
	a#close{
		background: url('../images/close-white.png') no-repeat center;
		background-size: 100%;
		top: 20px;
		right: 30px;
	}
}





