﻿/*
/ Code for the age verification
*/
html {height: 100%;} 
body { 
	height:100%; /* this is the key! */ 
	margin: 0 auto; 
	width: 100%; 
} 
#ageverification {
	font-family:Arial, Helvetica, sans-serif;
	font-size:10pt;
	width: 644px;
	height: 464px;
	text-align: center;
	border: 3px solid #000;
/*	background-color: white;*/
	background: url("/swagmedia/ageverificationscreen.jpg") repeat center top;
	color: #fff;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -325px; 
	/* Half the width of the DIV tag which is 50 pixels */
	margin-top: -235px; 
	/* Half the height of the DIV tag which is also 50 pixels */
	filter:alpha(opacity=100);
	-moz-opacity:1.0;
	-khtml-opacity: 1.0;
	opacity: 1.0;
	z-index:200;
	visibility:hidden;
}
#contentmask { 
	height:100%; 
	width:100%;
	background: #000; 
	position:absolute;
	top:0;
	left:0;
	float:left;
	z-index:100;
	filter:alpha(opacity=85);
	-moz-opacity:0.85;
	-khtml-opacity: 0.85;
	opacity: 0.85;
	visibility:hidden;
} 
#greybutton {
	font-family: Arial;
	background-color:#eeeeee;
	color:000000;
	border-color:#eeeeee;
	}
