body { background-color:white; margin:20px; 	padding:0px; font:11px verdana, arial, helvetica, sans-serif;}

h1 {margin:0px 0px 15px 0px; padding:0px; font-size:28px; font-weight:900; color:#394c5f; text-align:center;}

h2 {font:bold 12px/14px verdana, arial, helvetica, sans-serif; margin:0px 0px 5px 0px; padding:0px; }

p {font:11px/20px verdana, arial, helvetica, sans-serif; margin:0px 0px 16px 0px; padding:5px; }

div.header {margin:0; padding:0.5em; color:#394c5f; background-color:#99ccff; clear:left; width: 100%; text-align:center; position:relative;}

div.footer {position:relative; width:auto; min-width:120px; margin:10px 230px 20px 240px; padding:0.5em; color:#394c5f; background-color:#99ccff; z-index:3; text-align:center;}

.Content>p {margin:0px;}

.Content>p+p {text-indent:30px;}


/* All the content boxes belong to the content class. */
.content {
	position:relative; /* Position is declared "relative" to gain control of stacking order (z-index). */
	width:auto;
	min-width:120px;
	margin:10px 230px 20px 240px;
	border:1px solid black;
	background-color:white;
	padding:10px;
	z-index:3; /* This allows the content to overlap the right menu in narrow windows in good browsers. */
	}

#navAlpha {
	text-align:center;
	position:absolute;
	width: 210px;
	top:160px;
	left:20px;
	/*border:1px dashed black;*/
	background-color:#eee;
	padding:10px;
	z-index:2;
	}

		
#navBeta {
	text-align:center;
	position:absolute;
	width:210px;
	top:160px;
	right:10px;
	/*border:1px dashed black;*/
	background-color:#eee;
	padding:10px;
	z-index:1;
	}

/*--- Image Boxes ---*/	
.leftPicBox{ background-color: #ffcc99; width: 175px; padding: 1px; float:left; margin-right:10px; margin-bottom:10px; text-align:center;}
.leftPicBox a:link { }
.leftPicBox img{width: 175px;}
.imgCaption{ margin: 0 15px; padding-bottom: 5px;}

.rightPicBox{ background-color: #ffcc99; width: 175px; padding: 1px; float:right; margin-left:10px; margin-bottom:10px; text-align:center;}
.rightPicBox a:link { }
.rightPicBox img{width: 175px;}


/*--- Video Boxes ---*/	
.vidBox{ background-color: silver;width: 210px; padding: 1px; float:left; margin-right:10px; margin-bottom:10px; margin-top:10px;}
.vidBox img{width: 210px; }
.vidBoxCaption{ margin: 0 15px; padding-bottom: 5px;}

h2 { width : 450px; height : 75px; margin : 0; padding : 0; background: url('h2.png') no-repeat; text-indent : -999px; clear: left;}


/*--- Main Menu ---*/

#mainMenu{
	list-style:none;
	font-weight:bold;
	margin-bottom:10px;
	/* Clear floats */
	/* Bring the mainMenu above everything else--uncomment if needed.*/
	position:relative;
	left: 195px;
    bottom: 20px;
	z-index:5;
}

#mainMenu li{
	float:left;
	margin-right:10px;
	position:relative;
}

#mainMenu a{
	display:block;
	padding:5px;
	color:#fff;
	background:#394c5f;
	text-decoration:none;
}

#mainMenu a:hover{
	color:#000;
	text-decoration:underline;
}

/*--- DROPDOWN ---*/

#mainMenu ul{
	background:#fff; /* Adding a background makes the dropdown work properly in IE7+. Make this as close to your page's background as possible (i.e. white page == white background). */

	background:rgba(255,255,255,0); /* But! Let's make the background fully transparent where we can, we don't actually want to see it if we can help it... */
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
}

#mainMenu ul li{
	padding-top:1px; /* Introducing a padding between the li and the a give the illusion spaced items */
	float:none;
}

#mainMenu ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
}

#mainMenu li:hover ul{ /* Display the dropdown on hover */
	left:-35px; /* Bring back on-screen when needed */
}

#mainMenu li:hover a{ /* These create persistent hover states, meaning the top-most link stays 'hovered' even when your cursor has moved down the list. */
	background:#9ffcf8;
	color:#000;
	text-decoration:none;
}

#mainMenu li:hover ul a{ /* The persistent hover state does however create a global style for links even before they're hovered. Here we undo these effects. */
	text-decoration:none;
}

#mainMenu li:hover ul li a:hover{ /* Here we define the most explicit hover states--what happens when you hover each individual link. */
	background:#394c5f;
	color:#fff;
}



.clear{clear: both; height: 0;/* only necessary for IE */ margin: 0; padding: 0;}