body {
	
	background-position: center;
	background-size: cover;
	box-sizing: border-box;
	background-color: white;
}

h1, h2, h3, h4, h5 {
	margin: 0;
	font-family: Helvetica;
}

p {
  font-family: Helvetica;
  font-size: 16px;
}

.title-bar {
	background-color: darkgreen;
	text-align: center;
	border-radius: 12px;
	padding: 5px;
}
	
.title-bar ul {
	 
	display: inline-flex;
	list-style: none;
	color: black;
	font-size:150%;
	padding-left:0; 																									
}

.title-bar ul li {
	width: 100px;
	padding: 10px;	
	margin-left: 30px;
	margin-right: 30px;
}

.title-bar ul li a {
	text-decoration: none;
	color: white;
}

.active, .title-bar ul li:hover {
	background-color: black;
	color: white;
	border-radius: 10px;
}

.menu-bar {
	background-color: black;
	text-align: center;
	border-radius: 12px;
}
	
.menu-bar ul {
	 
	display: inline-flex;
	list-style: none;
	color: black;
}

.menu-bar ul li {
	width: 100px;
	padding: 8px;
	margin: 8px;
}

.menu-bar ul li a {
	text-decoration: none;
	color: #fff;
}

.active, .menu-bar ul li:hover {
	background: #66CCFF;
	border-radius: 10px;
}

.sub-menu-1 {
	display: none;
}

.menu-bar ul li:hover .sub-menu-1 {
	display: block;
	position: absolute;
	background: black;
	margin-top: 8px;
	margin-left: -10px;
}

.menu-bar ul li:hover .sub-menu-1 ul {
	display: block;
	margin: 5px;
}

.menu-bar ul li:hover .sub-menu-1 ul li {
	width: 100px;
	padding: 3px;
	border-bottom: 1px dotted #fff;
	background: transparent;
	border-radius: 0;
	text-align: left;
}

.menu-bar ul li:hover .sub-menu-1 ul li:last-child {
	border-bottom: none;
}

.menu-bar ul li:hover .sub-menu-1 ul li a:hover {
	color:#66CCFF;
}

	
.rotateimg180 {
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-0-transform: rotate(180deg);
	transform: rotate(180deg);
}

.rotateimg90 {
	-webkit-transform: translateY(-100%) rotate(90deg);
	-moz-transform: translateY(-100%) rotate(90deg);
	-ms-transform: translateY(-100%) rotate(90deg);
	-0-transform: translateY(-100%) rotate(90deg);
	transform: translateY(33%) rotate(90deg);
	-webkit-transform: left top;
	-moz-transform: left top;
	-ms-transform: left top;
	-0-transform: left top;
	transform: left top;
}

/* Create two equal columns that floats next to each other */
.column {
  float: left;
  width: 50%;
  padding: 5px;
}
.column3 {
  float: left;
  width: 33%;
  padding: 5px;
}

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

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


#container {
	background-color: white;	
	margin-left: auto;
	margin-right: auto;
}

#header {
	background-color: white;
	color: black;
	text-align: center;
	padding: 10px;
	font-family: Arial Black, Helvetica, Arial;
}

#main {	
	text-align: center;
	padding: 5px;
}

#footer {
	background-color: white;	
	padding: 10px;	
	text-align: center;
	clear: both;
}

blockquote {
  background: #f9f9f9;
  border-left: 10px solid #ccc;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C""\201D""\2018""\2019";
}
blockquote:before {
  color: #ccc;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
blockquote:after {
  visibility: hidden;
  content: close-quote;
  color: #ccc;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}