.modalDialog5 {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(180,180,180,0.8);
    line-height: 1.6;
	z-index: 99999;
	opacity:0;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	pointer-events: none;
}

.modalDialog5:target {
	opacity:1;
	pointer-events: auto;
}

.modalDialog5 > div {
	width: 270px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
}

.modalDialog5 .cancel {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: default;
}

.close {
	background: #666666;
	color: #FFFFFF;
	line-height: 30px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 28px;
    font-size:1.8em;
    font-weight:normal;
	text-decoration: none;
	-webkit-border-radius: 15px;
	-moz-border-radius: 15px;
	border-radius: 15px;
	-moz-box-shadow: 1px 1px 3px #666;
	-webkit-box-shadow: 1px 1px 3px #666;
	box-shadow: 1px 1px 3px #666;
}


.close:link { background: #666666;
               text-decoration: none;
               color:#ffffff;}
               
.close:visited { background: #666666;
               text-decoration: none;
               color:#ffffff;}
                   
.close:hover { background: #0066ff;
               text-decoration: none;
               color:#ffffff;}
                    
.close:active { background: #0066ff;
               text-decoration: none;
               color:#ffffff;}
