@charset "UTF-8";
/* CSS Document */

/* everything from here to the "@media" line is for the mobile phone size */
/* ITEMS THAT ARE ONLY MENTIONED ONCE ON THE PAGE ARE FOR EVERY SIZE */
/* ALL THE ONE-TIME-GENERAL-THINGS ARE IN THIS TOP SECTION */
/* make the content go to the edges of the entire page */
body {
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	background-color: #000;
}

/* RESPONSIVE IMAGES */
img{ max-width:100%; height:auto;}


/* adjust the style of my headings */
h1 {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;;
	font-size: 30pt;
	font-weight: 300;
	text-align: left;
}
h3 {
	color: #fff;
	font-family: Arial, Helvetica, sans-serif;;
	font-size: 15pt;
	font-weight: 100;
	text-align: left;
}

/* set up flex containers for relative scaling */
.flex-container > * {
    padding: 10px;
    flex: 1 100%;
}
.flex-item {
    margin: 0px 0px 0px 0px;
}

/* make the header bits behave properly */
#header {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: auto;
    height: auto;
    background-color: #000;
	padding: 0px 0px 0px 0px;
}
#logo {
    display: inline-block;
	background-color: yellow;
    padding: 0px 0px 0px 0px;
	max-width: 290px;
	max-height: 100px;
	margin: auto;
}
#phone {
    display: inline-block;
	background-color: cyan;
    padding: 0px 0px 0px 0px;
	max-width: 290px;
	max-height: 100px;
	margin: auto;
}

/* define the space for the navigation at all sizes */
#nav {
    display: initial;
	max-width: 40%;
    max-height: 100px;
    margin: 0px 0px 0px 0px;
	background-color: #000;
    padding: 20px 10px 20px 10px;
}
/* shut off page links at the PHONE screen size */
#pagelinks {
	display: none;
}
#smallsplash {
	display: block;
	z-index: -1;
}
/* shut off Big Splash  at the PHONE screen size */
#bigsplash {
	display: none;
}

/* THIS DROP MENU ONLY USES CSS AND HTML */
/* next bits are all drop down menu stuff and the names mean what they are */
.dropbtn {
	cursor: pointer;
	background-color: #111;
	color: white;
	padding: 10px 16px;
	font-size: 16px; 
	font-family: Arial, Helvetica, sans-serif;
	margin: 0px 20px;
	border: none;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown {
    position: relative;
    display: inline-block;
	z-index: +1;
}
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #222;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
.dropdown-content a {
    color: #fff;
    padding: 10px 16px;
    text-decoration: none;
	font-weight: normal;
	font-size: 16px; 
	font-family: Arial, Helvetica, sans-serif;
    display: block;
}
.dropdown-content a:hover {
	background-color: #333;
	padding: 10px 16px;
    text-decoration: none;
	font-weight: bold;
	font-size: 16px; 
	font-family: Arial, Helvetica, sans-serif;
}
.dropdown:hover .dropdown-content {
    display: block;
}
.dropdown:hover .dropbtn {
    background-color: #111;
}
/* formatting control */
.header {
	background: #000;
	height: auto;
	padding: 0 0 0 0;
}

.main {
	padding: 0px 10% 0px 10%;
    background: #000;
	color: #888;
	font-weight: 300;
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

.aside1 {background: #fff;
	color: #666;
	text-align: center;
	font-weight: 100;
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
}	
.aside2 {background: #fff;
	color: #666;
	text-align: center;
	font-weight: 100;
	font-size: medium;
	font-family: Arial, Helvetica, sans-serif;
}
/* two fixes for a formatting problem */
#center {
	text-align: center;
}
#left {
	text-align: left;
	margin-left: 10%;
	margin-right: 10%;
}

.footer {
	background: #111;
	padding: 20px 60px 30px 60px;
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #666;
	font-weight: 100;
}

/* this width covers tablet size */
@media all and (min-width: 480px) {
    .aside { flex: 1 auto; }

/* adjust the header layout to make it prettier at middle size */
#nav {
    display: initial;
	max-width: 20%;
	max-height: 100px;
    margin: 0px 0px 0px 0px;
	background-color: #000;
    padding: 20px 10px 20px 10px;
}

/* shut off page links at the TABLET screen size */
#pagelinks {
	display: none;
}
/* shut off Small Splash  at the TABLET screen size */
#smallsplash {
	display: none;
}
/* shut off Big Splash  at the PHONE screen size */
#bigsplash {
	display: block;
	z-index: -1;
}
}
/* this width avoids an awkward wrapping in the header */
@media all and (min-width: 1085px) {

/* use one big container to hold the entire page and hold it to a suitable max width */
#mainwrapper {
    display: -webkit-flex;
    display: flex; 
	margin-top: 0px;
	max-width: 1350px; 
	margin: auto;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    font-weight: bold;
    text-align: center;
}

/* next 4 determine the display order of the main content sections */
.main    { flex: 3 0px;
	padding: 0 10% 0 10%;
	order: 2;
}
.aside1 { 
	padding-top: 160;
	max-width:25%;
	order: 1; 
} 

.aside2 { 
	padding-top: 160;
	max-width: 25%;
	order: 3;
}
.footer  { order: 4; }

/* tune up the header formatting for the largest size */ 
#nav {
    display: initial;
	max-width: 40%;
    max-height: 100px;
    margin: 0px 0px 0px 0px;
	background-color: #000;
    padding: 5px 5px 5px 5px;
}

/* THIS HORIZONTAL MENU LIST USES ONLY CSS AND HTML */
/* display the pagelinks instead of dropdown */
#pagelinks { display: inline;}
	ul {
    list-style-type: none;
    margin: 0;
    padding: 10px 16px;
    overflow: hidden;
    background-color: #000;
}

li {
    float: right;
}
li a {
    display: block;
    color: white;
    text-align: center;
    padding: 5px 20px;
	height: 40px;
    text-decoration: none;
	font-weight: normal;
	font-size: 16px; 
	font-family: Arial, Helvetica, sans-serif;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
}
li a:hover:not(.active) {
    color: #666;
}
.active {
    background-color: #111;
	text-decoration: underline; 
}

/* hide the drop menu at the DESKTOP screen size */
.dropbtn {
	display: none;
}
/* shut off Small Splash  at the DESKTOP screen size */
#smallsplash {
	display: none;
}
/* turn on Big Splash  at the DESKTOP screen size */
#bigsplash {
	position: relative;
	display: block;
	margin: 0px 10%;
	z-index: 0;
}
}
