@CHARSET "UTF-8";

.flexiModal {
	position: fixed;
	z-index: 999999;
	top: 0; 
	left: 0; 
	display: table;
	height: 100%; 
	width: 100%;
	background: rgba(0,0,0,.3);
	vertical-align: middle;
}

.flexiModal .theBox {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}

.flexiModal .theMessage {
	position: relative;
	display: inline-block;
	margin: 0 auto;
	background: #eee url(../img/speckles_grey.gif);
	border-radius: 15px;

	box-shadow: 0 0 5px 3px rgba(0, 0, 0, .3);
}

.flexiModal .theMessage iframe {
	border: 0;
	border-radius: 15px;
	background: transparent;
}

.flexiModal .theMessage div.closer {
	position: absolute;
	right: -6px;
	top: -6px;
	width: 14px;
	height: 14px;
	background: #fff;
	border: 2px solid #fff;
	border-radius: 50%;
	cursor: pointer;
}

.flexiModal .theMessage div.closer:after {
	content: url(../img/remove-tag.gif);
	display: block;
	height: 100%;
	opacity: .7;
}

.flexiModal .theMessage div.closer:hover:after {
	opacity: 1;
}