.textheader{
font-size:45px;
}

.smtextheader{
font-size:25px;
}

/*Modal popup */
.modalDialog { 
	position:fixed;
	font-family: Arial, Helvetica, sans-serif;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(0,0,0,0.8);
	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;
}

/*Change the dialog to absolute*/
@media handheld, screen and (max-width: 480px) {
	.modalDialog { 
		position:absolute;
		font-family: Arial, Helvetica, sans-serif;
		top: -7%;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0,0,0,0.8);
		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;
	}
}

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

.modalDialog > div {
	width: 65%;
	position: relative;
	margin: 10% auto;
	padding: 15px 20px 13px 20px;
	border-radius: 10px;
	background: #fff;
	background: -moz-linear-gradient(#fff, #999);
	background: -webkit-linear-gradient(#fff, #999);
	background: -o-linear-gradient(#fff, #999);
}
.close {
	background: rgba(173, 173, 173, 0.62);;
	color: #606061;
	line-height: 24px;
	position: absolute;
	right: -12px;
	text-align: center;
	opacity:1;
	top: -10px;
	width: 24px;
	text-decoration: none;
	font-weight: bold;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	border-radius: 12px;
	-moz-box-shadow: 1px 1px 3px #000;
	-webkit-box-shadow: 1px 1px 3px #000;
	box-shadow: 1px 1px 3px #000;
}

.close:hover { background: #00d9ff; }

/*video#bgVideo {
  position: absolute; // Play the video in full screen mode
  
  top: 0px; 
  left: 0px; 
  margin-top:-500px;
  margin-left:-2em;
  max-width: 105%; 
  min-height: 150%;
  z-index: -1; // Put the video behind all other elements
}*/