body
{
	margin: 0px;
	padding: 0px;
	background-color: #000000;
}

/* CONTROLS FOR THE BG SPACEMAN IMAGE. */
#PrimaryBodyDiv
{
	position: fixed;
	top: -50%;
	left: -50%;
	width: 200%;
	height: 200%;
}
#PrimaryBodyDiv img
{
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	margin: auto;
	min-width: 50%;
	min-height: 50%;
}
/* END CONTROLS FOR THE BG SPACEMAN IMAGE. */

/* BOX DIV HIERARCHY
buttonContainerBase (id)
	=> hCenterDiv (c)
		=> backgroundBoxDiv (c)
			=> elementContainerDiv (c)
				=> logoContainerDiv (c)
				=> dividingLineDiv (c)
				=> buttonContainerDiv (c)
					=> InstructorLogin => CustomButton (c)
				=> buttonContainerDiv (c) studentLoginDiv (id)
					=> StudentLogin => CustomButton (c)
				=> dividingLineDiv (c)
				=> buttonContainerDiv (c)
					=> InstructionalVideos => CustomButton (c)
******************************/
#buttonContainerBase
{
	position: absolute;
	left: 0px;
	width: 100%;
	height: 100%;
}
.hCenterDiv
{
	width: 370px;
	margin-left: auto;
	margin-right: auto;
}
.backgroundBoxDiv
{
	/* Positioning definitions */
	position: absolute;
	height: 388px;
	width: 370px;
	top: calc(50% - 231px);
	margin-left: 0px;
	overflow: auto;
	text-align: center;

	/* Graphic definitions */
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	opacity: 0.85;
	filter: alpha(opacity=95); 
	background: -moz-linear-gradient(top, #FFFFFF 45%, #F5F5F5 75%);
	background: -webkit-gradient(linear, top, bottom, color-stop(45%,#FFFFFF), color-stop(75%,#F5F5F5));
	background: linear-gradient(180deg, #FFFFFF 45%, #F5F5F5 75%);
	box-shadow: 2px 2px 4px #244260;
}
.logoContainerDiv
{
	width: 225px; /*344px;*/
	height: 205px;
	margin-top: 10px;
	margin-bottom: 10px;
	display: inline-block;
	background-image: url("./Images/wessex_logo.png");
	background-repeat: no-repeat;
}
.dividingLineDiv
{
	height: 2px;
	width: 370px;
	background-color: #335B84;
}

#CogneroLogo
{
	position: absolute;
	top: 5px;
	left: 5px;
	width: 257px;
	height: 73px;
}

/******** BUTTONS *********/
.customButton
{
	padding: 0px;
	width: 225px;
	height:34px;
	border: solid 2px #FFFFFF;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	border-style: outset;
	background-color: #f5f5f5;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 18px;
	cursor: pointer;
}
.customButton:hover
{
	border: solid 2px #f5f5f5;
	border-style: inset;
	background-color: #f2f2f2;
}
.customButton:active
{
	border: solid 4px #F5F5F5;
	border-style: inset;
	background-color: #D1D1D1;
}
/*
input[type="button"]{
   outline:none;
}
input[type="button"]::-moz-focus-inner {
   border: 0;
}
*/
/****** END BUTTONS *******/

/******** BUTTON CONTAINING DIVS *********/
.buttonContainerDiv
{
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;
}
#studentLoginDiv
{
	margin-bottom: 10px;
}
/****** END BUTTON CONTAINING DIVS *******/

/******** MEDIA QUERIES *********/
@media (max-height: 623px)
{
	.backgroundBoxDiv
	{
		top: 80px;
	}
}
/****** MEDIA QUERIES *******/






/******** RELICS, NO LONGER USED *********/
#contentWrapper
{
	min-height: 300px;
}
.elementContainerDiv
{

}
/****** END RELICS, NO LONGER USED *******/




















