@charset "UTF-8";

html {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~ Body ~~ */
body {
    height: 100%;
    width: 100%;
    margin: auto;
    padding: 0;
    background-color: black;
    font: 80%/1.4 'Open Sans', sans-serif;
    color: white;

}

/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~ Links ~~ */


a img { 
	border: none;
}

a {
	color: #1748A3;
	text-decoration: none;
	font-weight: bold;
}

a:link {
	color: #1748A3;
	text-decoration: none;
	font-weight: bold;
}

a:visited {
	color: #1748A3;
	text-decoration: none;
	font-weight: bold;
}

a:hover, a:active, a:focus {
	color: #3279FC;
    text-decoration: none;
	font-weight: bold;
}
	
a.highlight:link {color:#99AAFF;}      /* unvisited link */
a.highlight:visited {color:#99AAFF;}  /* visited link */
	
		
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~ Special Fonts ~~ */

h1 {
	font-size: 4em;
	letter-spacing: 2px;
	color: white;
	font-weight: 600;
    line-height: 50%;
}


h2 {
	font-size: 1.8em;
	color: white;	
	font-weight: normal;
	line-height: 50%;
}

	
p {
	font-size: 1em;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~ Container ~~ */

.container {
	position: relative;
    min-height: 100%;
 	min-width: 700px;
    margin: auto; 
    padding: 0;
	text-align: center;
    
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~ Header ~~ */

.header {
	position: relative;
    height:230px;
    width: 100%;
}

.headerimg {
	z-index: -1;
	position: absolute;
}

.headerimg img {
    width: 100%;
	height: 230px;
}


.headertxt {
	z-index: 1;
	position: absolute;
	text-align: center;
	margin: auto;
	width: 100%;
	height: 230px;
	padding-top: 50px;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~ Main Body ~~ */

.maintext {

	position: relative;
	font-size: 1.5em;
	color: grey;
	background-color: white;
	padding: 10px 40px 10px 40px;
}


.bottomimages {
	position: relative;
	width: 100%;
	margin: auto;
	text-align: center;
	background-color: white;
	padding: 30px 0;
}

.bottomimages img {
    max-width: 80%; 
    height: auto;
}


/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

/* ~~ Footer ~~ */

.footer {

	font-size: 0.8em;
	background-color: black;
	padding: 10px 0;


}



/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ */

