/*=============================
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;
}

.modalDialog div#addModal div#target,
.modalDialog div#addModal div#targetPH{
	display: block;
	padding: 5% 0 42px;
	max-width: 834px;
	margin: 0 auto;
}

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

.modalDialog h1,
.modalDialog p,
.modalDialog li{
	color: #fff;
	margin: 1% auto;
    display: block;
}

.modalDialog h1,
.modalDialog p{
	text-align: center;
}

.modalDialog h1{
	text-transform: uppercase;
	width: 80%;
    padding: 0 10%; /*20px / 800px*/
    line-height: 100%;
}

.modalDialog p{
	font-size: .875em;
	width: 95%;
    padding: 0 2.5%; /*20px / 800px*/
    margin: 1% auto 4%;
}


a#close{
	display: block;
	background: url('../Assets/cross.png') no-repeat center;
	background-size: 30px;
	overflow: hidden;
	text-indent: -9999px;
	width: 30px;
	height: 30px;
	position: absolute;
	right: 10px;
	top: 10px;
}

a#close:hover{ 
	opacity: 0.6;

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


/*===================
RESPONSIVE
====================*/
@media screen and (min-width: 800px){
	a#close{
		width: 40px;
		height: 40px;
		top: 20px;
		right: 20px;
		background-size: 40px;
	}
}





