/**
 * 100% height layout with header and footer
 * ----------------------------------------------
 */

html,body {
	margin:0 auto;
	padding:0;
	height:100%; /* needed for container min-height */
	font-family:Arial, Helvetica, sans-serif;
/*		font-size:small; */
	color:#000;
	}

#flash-background{
	width:100%;
	height:100%;
	text-align:left;
	margin:0px auto;
	position:absolute;
	z-index:-1000;
	left: 0;
	top: 0;
	}

#wrapper {
	position: relative;
  	width:900px;
	height:100%;
	text-align:center;
	margin:0px auto;
}

#flashBG-alt {
   height: 100%;
   position:fixed;
   top: 0;
   width: 100%;
}

h1 { 
	font:1.5em georgia,serif; 
	margin:0px;
}

h2 {
	font:1.25em georgia,serif; 
	margin:0 0 0em;
}
	h1, h2, a {
		color:#999999;
	}

p { 
	line-height:1.5; 
	margin:0 0 0em;
}


div#header {
	padding:0em;
	/*background:#ddd url("../csslayout.gif") 98% 10px no-repeat;
	border-bottom:6px double black;*/
}
div#header p {
		font-style:italic;
		font-size:1.1em;
		margin:0;
	}

div#content {
	padding:0px; /* bottom padding for footer */
	z-index:600;
}

div#content p {
		text-align:justify;
		padding:0 0em;
	}

div#footer {
	position:relative;
	width:100%;
	top:-40px;
	float: left;
	margin: 0px;
	border: 0px;
	padding:0px;
	/*bottom:50px;
	background:#ddd; 
	border-top:6px double black;*/
}
div#footer p {
		padding:0em;
		margin:0;
	}
	
.black_overlay{
			display: none;
			position: absolute;
			top: 0%;
			left: 0%;
			width: 100%;
			height: 100%;
			background-color: black;
			z-index:2000;
			-moz-opacity: 0.8;
			opacity:.80;
			filter: alpha(opacity=80);
		}
.white_content {
			display: none;
			position: absolute;
			top: 25%;
			left: 25%;
			width: 640px;
			height: 500px;
			padding: 16px;
			border: 1px solid;
			border-color:#FF9900;
			background-color: white;
			z-index: 2002;
			overflow: auto;
		}
