     #overlayCover{
        filter:alpha(opacity=50); /* IE's opacity*/
        opacity:0.50; /* CSS2 Compliant browsers understand this */
	background:#000000 none repeat scroll 0 0;
	height:100%; /* have to set a height to contain the text */
        /* set a position for the transparent background over the image */
	position: absolute;
	left:0px;
	top:0px; /* picture height minus height of this element */
	width:100%; /* width to match the photo */
	margin: 0px;
	padding: 0px;
	z-index: 1000000;
     }
     #overlayContainer{
	height: 100%; /* have to set a height to contain the text */
	width: 98%; /* width to match the photo */
        filter:alpha(opacity=100); /* Make IE understand that this is not transparent */
        opacity:1; /* Make CSS compliant browsers understand this is not transparent */
        position: absolute;
        top: 0px; /* whatever puts the text where you need it */
        left: 0px;
        text-align: center;
        padding: 100px 0px 0px 0px;
        margin: 0px;
	z-index: 1000001;
     }
     
     
     #overlayContent{
	width:630px; /* width to match the photo */
        filter:alpha(opacity=100); /* Make IE understand that this is not transparent */
        opacity:1; /* Make CSS compliant browsers understand this is not transparent */
        	margin:0px auto;
		border: 3px solid black;
		padding: 15px;
		text-align:left;
		background: #ffffff;
		font-family: arial;
		font-size: 14px;
	z-index: 1000002;
     }
     .overlayHeader{
     	font-size: 16px;
     	font-weight: bold;
     	margin: 0px 0px 10px 0px;
     	}
     .redTextBig{
     	color: red;
     	font-weight: bold;
     	font-size: 20px;
     	}
     	
     .overlayContinueButton{
     	margin: 15px 0px 10px 0px;
     	padding: 4px 0px 4px 0px;
     	width: 120px;
     	font-weight: bold;
     	color: white;
     	background: blue;
     	text-align: center;
		border: 2px solid black;
		cursor: pointer;
     	}
     .bold{
     	font-weight: bold;
     	}
     .boldTall{
     	font-weight: bold;
     	margin-top: 8px;
     	}
     .normalWeight{
     	font-weight: normal;
     	}
