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

html { font-size: 16px; }

@media (max-width: 550px) {
  p { font-size: 1em; }
}

@media (min-width: 551px) {
  p { font-size: 1.25rem; }
}

body {
  margin: 0px;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #ccc;
}
.header {
  background-color: #000000;
  padding: 15px 0px 15px 0px;
  text-align:center;
  width: 100%;
}
.footer {
  background-color: #ff6600;
  color: #ffffff;
  text-align: center;
  padding: 0px 100px 15px 100px;
  margin:0%;
  width:100%
}
img {
  max-width: 100%;
  height: auto;
}
	
h2 {
	font-family: monaco, sans-serif;
	font-size: 1.8em;
	color: #ff6600;
	padding-top:1em;
	text-align: center;
}
h1{
	font-family: "Times New Roman", Times, serif;
	font-size: 2.5em;
	color: #ff6600;
}
p{
	font-family:Verdana, Geneva, sans-serif;
	color:#666;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.topnav a.active {
  background-color: #ff6600;
  color: white;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}
* {
  box-sizing: border-box;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 10px;
 /* height: 300px;  Should be removed. Only for demonstration */
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }
}

.flex-caption {
  width: 96%;
  padding: 2%;
  left: 0;
  bottom: 0;
  background: rgba(0,0,0,.5);
  color: #fff;
  text-shadow: 0 -1px 0 rgba(0,0,0,.3);
  font-size: 14px;
  line-height: 18px;
}

a{
	font-weight: bold;
	color: #333;
	text-decoration: none;
}
p a:hover { color:#ff6600}
li {text-align:left;
	color:#666}
	
@media (max-width: 550px) {
 li { font-size: 1em; }
}

@media (min-width: 551px) {
 li { font-size: 1.25rem; }
}