html {
    background-color:#fff;
    }
* {
	margin:0px;
	padding:0px;
	box-sizing:border-box;
	border:0px;    
    }
#testSite {
	padding:5px 10px;
	font-size:12px;
	color:#000;
	font-weight:bold;
	text-align:center;
	background-color:#ffff00;
	z-index:999999;
	position:fixed;
	top:0px;
	text-transform:uppercase;
	white-space:nowrap;
    }
body {
	font-family:"Franklin Gothic Book", Arial, Helvetica, sans-serif, Arial, Helvetica, sans-serif;
	font-weight:300;
	font-size:18px;
	color:#333;
    }

body:before {
	content: '';
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
    /*background-color:#223c23;
	background: url('gfx/bkg.jpg') no-repeat top center;*/
	-webkit-background-size: 100%;
	-moz-background-size: 100%;
	-o-background-size: 100%;
	background-size: 100%;
}
img {
	max-width:100%;
	height:auto;
    }
#header {
    border-top:20px solid #000;
    border-bottom:3px solid rgb(108, 193, 76);
    background-color: rgb(247, 248, 255);
    text-align:center;
}
.container {
    max-width:1200px;
    margin: 0px auto;
	padding:10px 30px;
	width: auto;
	height: auto;
}
.tag {
    text-transform: uppercase;
    font-size:14px;
}
strong {
    font-weight:bold;
}
#body {
    background-color: #ffffff;
    text-align: center;
}
h1, h2 {
    color:rgb(108, 193, 76);
}
h2 {
    font-weight: normal;
    margin-bottom:10px;
}
p {
    margin-bottom:30px;
}
a {
    color:rgb(108, 193, 76);
}
.button {
	background: #77ad5c;
    border-radius: 5px;
	color:#fff;
	padding:8px 15px;
	text-transform:uppercase;
	font-size:26px;
	margin:20px auto 0px auto;
	width:50%;
    text-decoration: none;
    display:inline-block;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
.button:hover {
    background-color: rgb(108, 193, 76);
}
.row {
    overflow:hidden;
}
.split25 {
    float:left;
    width:25%;
}
.split50 {
    float:left;
    width:50%;
}
#awards {
    margin-top:80px;
    text-align: center;
}
#awards img {
    padding:0px .25%;
    width:13.75%;
    vertical-align: middle;
}
#topFooter {
    background-image: url("../gfx/GeometricWeave.webp");
}
#topFooterContent {
    background-color: rgba(0, 0, 0, 0.7);
    color:#fff;
    padding:30px;
}
#topFooterContent ul {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    width:95%;
    height:100px;
    list-style: none;
}
#topFooterContent ul li {
    display:block;
    margin-bottom:5px;
}
footer a {
    color:#fff;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    font-weight:bold;
}
footer a:hover {
    color:#ccc;
}
#footer {
    border-top: solid 1px #fff;
    background-color:#000;
    color:#fff;
    font-size:12px;
    padding:20px 0px; 
}
@media(max-width:800px) {	
#topFooterContent ul {
    height:auto;
}    
.split25 {
    width:50%;
}
.button {
    width:100%;
}
}
@media(max-width:470px) {	  
.split25, .split50 {
    width:100%;
    float:none;
}
footer {
    text-align:center;
}
}