.flex-footer-container {
    height: 4em;
    position: fixed;
    left: 0;
    bottom: 0%;
    background-color: #0b2b2c;
	width: 100%;
/*	min-height: 300px; */
	margin: 0 auto;
	font-size: 1em;
	display: -webkit-flex; /* Safari */		
	display: flex; /* Standard syntax */
/*	border: 1px solid #808080; */
    justify-content: center;    /* center items horizontally, in this case */
    align-items: center;        /* center items vertically, in this case */
    flex-wrap: wrap;
}

.footer {
    padding: 0px 0px;
    text-align: center;
    white-space: nowrap;
}

.responsive {
    max-height: 30px;
    width: auto;
}

.img {
	max-width: 100%
}

span {
  display: inline-block;
  vertical-align: middle;
  line-height: normal;
}

.flex-container {
	width: 90%;
/*	min-height: 300px; */
	margin: 1em auto;
/*	font-size: 32px; */
	display: -webkit-flex; /* Safari */		
	display: flex; /* Standard syntax */
/*	border: 1px solid #808080; */
    justify-content: center;    /* center items horizontally, in this case */
    align-items: center;        /* center items vertically, in this case */
}

.flex-header-container {
	width: 100%;
/*	min-height: 300px; */
	margin: 0 auto;
/*	font-size: 32px; */
	display: -webkit-flex; /* Safari */		
	display: flex; /* Standard syntax */
/*	border: 1px solid #808080; */
    justify-content: center;    /* center items horizontally, in this case */
    align-items: center;        /* center items vertically, in this case */
    flex-wrap: wrap;
}

.flex-container div {
	padding: 1em;
/*	-webkit-flex: 1; /* Safari */
/*	-ms-flex: 1; /* IE 10 */
/*	flex: 1; /* Standard syntax */
/*	border: 1px solid #808080; /* */
}

body {
  background: #355d5f;
  color: white;
  font-family: "montserrat";
}
  
a:link {
  text-decoration: none;
  color: white;
}

a:visited {
  color: #eeeeee;
}

a:hover {
  text-decoration: none;
}

table {
  /* background-color: rgba(255, 255, 255, 0.85);  White background with 85% opacity */
  width: 100%;
}

td {
/*  height: 200px;
  border: 1px solid;
*/
  vertical-align: middle;
}

.header:hover {background: #0b2b2c;}

.header {
  padding: 1em 2em;
  text-align: center;
  font-size: 1.5em;
  font-color: #dddddd;
  white-space: nowrap;
}

.selected {
  font-weight: bold;
  background: #0b2b2c;
}

.content {
    width: 100%;
    min-width: 400px;
  text-align: left;
  -webkit-flex: 12;/* Safari */
  -ms-flex: 12;    /* IE 10 */
  flex: 12;        /* Standard syntax */
}

.vspacer {
  width: 100%;
}

.vpadding {
  -webkit-flex: 1;/* Safari */
  -ms-flex: 1;    /* IE 10 */
  flex: 1;        /* Standard syntax */
}

input[type=text], select, textarea {
  width: 100%;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 0.5em;
  margin-bottom: 1em;
  resize: vertical;
}

input[type=email], select, textarea {
  width: 100%;
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 0.5em;
  margin-bottom: 1em;
  resize: vertical;
}

input[type=submit] {
  background-color: #04AA6D;
  color: white;
  padding: 1em 2em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

input[type=submit]:hover {
  background-color: #45a049;
}

/* fade in */

.fade-in {
  animation: fadeIn ease 10s;
  -webkit-animation: fadeIn ease 10s;
  -moz-animation: fadeIn ease 10s;
  -o-animation: fadeIn ease 10s;
  -ms-animation: fadeIn ease 10s;
}
@keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-moz-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-o-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
  }
}

@-ms-keyframes fadeIn {
  0% {
    opacity:0;
  }
  100% {
    opacity:1;
}


/* fade out */
.fade-out {
  animation: fadeOut ease 8s;
  -webkit-animation: fadeOut ease 8s;
  -moz-animation: fadeOut ease 8s;
  -o-animation: fadeOut ease 8s;
  -ms-animation: fadeOut ease 8s;
}
@keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-moz-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-webkit-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-o-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
  }
}

@-ms-keyframes fadeOut {
  0% {
    opacity:1;
  }
  100% {
    opacity:0;
}

