.modalDialog {
	position: fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
  	visibility:hidden;
  	opacity:0;
  	transition:visibility 0s ease-in 0.4s,opacity 0.4s ease-in;
}
.modalDialog:target {
  visibility:visible;
  opacity:1;
  -webkit-transition-delay: 0s; /* Safari */
  transition-delay: 0s;
}
.modalDialog > div {
	width: 400px;
	position: relative;
	margin: 10% auto;
	padding: 5px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
}
.modalDialog a.store {    
	border-bottom:1px solid #e5e5e5;
    padding: 10px 10px 10px 0; 
    display:block;
}
.modalDialog a.store:first-child {
	border-top:1px solid #e5e5e5
}
.modalDialog a.store:before {
    width:17px;
    height:12px;
    margin-right:10px;
    content:'';
    display:inline-block;
}
.modalDialog a.uk:before {
	background: transparent url(http://lsop.cochlear-europe.com/consumer/images/flag_uk.png) no-repeat;
}
.modalDialog a.ie:before {
	background: transparent url(http://lsop.cochlear-europe.com/consumer/images/flag_irl.png) no-repeat;
}
a.close {
	background: #606061;
	color: #FFFFFF;
	line-height: 25px;
	position: absolute;
	right: -12px;
	text-align: center;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	border-radius: 12px;
	box-shadow: 1px 1px 3px #000;
}
a.close:visited {
	color:#fff;
}
a.close:hover { 
	background: #00d9ff; 
}