/* MODAL */

.modalDialog {
		position: fixed;
		font-family: 'Roboto Slab', serif;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.8);
		z-index: 99999;
		-webkit-transition: opacity 400ms ease-in;
		-moz-transition: opacity 400ms ease-in;
		transition: opacity 400ms ease-in;
		display: none;

	}

	.modalDialog:target {
		display: block;
		pointer-events: auto;
	}

	.modalDialog > div {
		width: 400px;
		position: relative;
		margin: 10% auto;
		padding: 5px 20px 13px 20px;
		background: #5ec58e;
		color: #fff;
		text-align: center;
	}

	.modalDialog .close {
		line-height: 25px;
		position: absolute;
		right: 1px;
		text-align: center;
		top: 1px;
		width: 24px;
		height: 24px;
		display: block;
		background: url('../img/fancybox_sprite.png') -5px -5px ;
	}

/* POPUP */

.modalPopup {
	position: absolute;
	font-family: 'Roboto Slab', serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	z-index: 99999;
	-webkit-transition: opacity 400ms ease-in;
	-moz-transition: opacity 400ms ease-in;
	transition: opacity 400ms ease-in;
	display: none;
}

.modalPopup .title {
	color: #fff;
	background: #0083ea;
	padding: 20px 0;
	text-transform: uppercase;
	text-align: center;
	font: 24px 'Roboto Slab', serif;
}

.modalPopup:target {
	display: block;
	pointer-events: auto;
}

.modalPopup > div {
	width: 60%;
	position: relative;
	margin: 15% auto;
	color: #000;
	text-align: justify;
	background: #fff;
}

.modalPopup .close {
	line-height: 25px;
	position: absolute;
	right: 5px;
	text-align: center;
	top: 5px;
	width: 24px;
	height: 24px;
	cursor: pointer;
	display: block;
	background: url('../img/fancybox_sprite.png') -5px -5px ;
}

.oform {
	margin: 0 auto; 
	padding: 40px 0;
}

.oform td {
	color: #0083ea;
	font: 14px 'Roboto Slab', serif;
	padding: 10px 0;
}

.oform td input {
	width: 100%;
	border: 1px solid #0083ea;
	padding: 4px;
	color: #0083ea;
	font: 14px "OpenSans-Regular";
	background: #fff;
}

.oform button {
	font: 14px 'Roboto Slab', serif;
	background: #0083ea;
	border: none;
	padding: 10px 40px;
	color: #fff;
	text-transform: uppercase;
	cursor: pointer;
}

.color2 button {
	opacity: 0.6 !important;
	cursor: pointer;
}

.color2 button:hover {
	opacity: 1 !important;
}

.msg {
	font: 14px 'Roboto Slab', serif;
	color: #0083ea;
	padding-bottom: 40px;
	text-align: center;
}