/*  Grid View Set Up */

* {
    box-sizing: border-box;
}

.menu {
    width: 25%;
    float: left;
}
.main {
    width: 75%;
    float: left;
}

/* For mobile phones: */
/*
Math Required Here
But forget it.  It is close enough now
save for transition to bootstrap
*/

.col-1 {width: 0;}
.col-2 {width: 10%;}
.col-3 {width: 10%;}
.col-4 {width: 10%;}
.col-5 {width: 10%;}
.col-6 {width: 10%;}
.col-7 {width: 10%;}
.col-8 {width: 10%;}
.col-9 {width: 10%;}
.col-10 {width: 10%;}
.col-11 {width: 10%;}
.col-12 {width: 0%;}

@media only screen and (min-width: 768px) {
    /* For desktop: */
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
}

[class*="col-"] {
    float: left;
    padding: 15px;
 /* Only for diagnostics */
 /* border: 1px solid red; */
}

.row::after {
    content: "";
    clear: both;
    display: block;
}


/* End Grid View Set Up */

body {
	font-family: "Arial Black", Gadget, sans-serif;
	background-color: White;
	color: LightGrey; 
	text-align: center;
	}

a:link {
    color: Black; 
		text-decoration: none;
}
a:visited {
    color: Black;
		text-decoration: none; 
}
a:hover {
    color: SlateGrey ;
		text-decoration: underline;		
}
a:active {
    color: SlateGrey;
}

h1 {
	font-size: 60px;
	text-align: center;
	text-transform: uppercase;
	color: black;
	letter-spacing: 5px;
	}
	
h2 {
	font-size: 24px;
	text-align: Left;
	text-transform: uppercase;
	color: black;
	letter-spacing: 1px;		
	}

div.BodyMainContent  {
    padding:100px; 
  	color: black;
		font-size:  18px;
		text-align: left;
	}
	
div.HeaderMenu {
	font-size:  36px;
  }

div.FooterMenu {
	font-size:  12px;
  }

td.LoginBoxText {
	font-size:  14px;
	color: Black;
	font-style: normal;
	text-align: left;
	}