HTML 
{ 
	height: 100%; 
	margin-bottom: 1px
}  /*This forces a constant vertical scroll bar to prevent unwanted screen shifting -- the theory anyway*/

/*This styles the specific tag <a> but is limited to one Class "SectionLink" and so will not affect all the <a> tags*/

.Hand {
	cursor: pointer
} /* Affects any tag that is given the Class="Red" */
.Red {
	
	color: #FF0000
}

.Center {
	
	text-align:center;
	margin-left:auto;
	margin-right:auto
}
.Left {
	text-align:left;
	margin:auto;
}
.CellsCenter {
	
	vertical-align: middle; 
	text-align:center; 
	margin:auto
}
.CellsLeft {
	
	vertical-align:middle; 
	text-align: left; 
	margin:auto
}
.GrayFrame {
	
	width:80%; 
	border: outset; 
	
}

#table
{  
    border:solid;
	border-color:#03294A;
	border-width:2px;
	background-color:#83B1DB;
	font-family:"Book Antiqua";
	font-size:small; 
	font-weight: bold;
	left: auto; 
}

.SectionContents { 

	margin-left: auto;
	margin-right:auto;
	text-align:center;

}
.SectionHeader { 

	padding: 10px;
	width: 80%;
	text-align:center;
	margin-left:auto;
	margin-right: auto;
}

.SectionLink { 

	color:#03294A;
	text-decoration:underline;
	cursor:pointer;	
}

.SectionLink:hover {
	background-color:#FFB449;
}
