@charset "utf-8";
/* CSS Document */
html {
	height: 100%;
}
body {
	margin:0;
	background: url("images/bgwave4.jpg");
	background-size: 600px;
	background-color: gray;
	height: 100%;
	display: flex;
	flex-direction: column;
}
iframe {
	display: block;
	margin-left: auto;
	margin-right: auto;
	border: 1px solid #8F8F8F;
	box-shadow: 3px 3px 1px #888888;
}

.logo{
}

.header {
	position: fixed;
	width: 100%;
	top: 0;
	background: linear-gradient(white, #c3c3c3);
	
}
.content {
	max-width: 1200px;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 90px;
	background-color: white;
	padding-top: 1em;
	padding-bottom: 1px;
	flex: 1 0 auto;
}
.container{
	max-width: 1200px;
	margin: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
    align-items: center;
}
.alignment img {
	float: left;
	margin: 5px 15px 15px 15px;
}
.alignment img .right {
	float: right;
	margin: 5px 15px 15px 15px;
}
.alignment h2 {
	float: none;
}
.txt {
	width: 750px;
	float: right;
}
.gall img {
	padding: 5px;
	background: white;
	border: 1px solid #bbb;
	margin: 7px 7px 7px 7px;
}
h1 {
	border-bottom: 1px solid;
	font-size: 32px;
	line-height: 32px;
	margin-bottom: 24px;
	padding-bottom: 10px;
	text-align: center;
	font-family: 'Merriweather', serif;
}
h2 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	text-decoration: underline;
}
p {
	padding: 0px 15px 0px 15px;
	font-family: 'Oswald', sans-serif;
}
ul {
	font-family: 'Oswald', sans-serif;
}

.footer {
	background: linear-gradient(white, #C3C3C3);
	color: gray;
	height: 45px;
	font-size: 10px;
	border-top: solid 1px #C3C3C3;
	width: 100%;
	flex-shrink: 0;
}
/*Footer Navbar*/
.nav ul {
	margin-top: 5;
	padding-left: 20px;
	color: #000; /* Base text color for the menu */
	font-size: 13px;
}
.nav ul li {
	float: left;
	list-style: none;
}
.nav ul li:after {
	content: "|";
	color: #666;
}
.nav ul li:last-child:after {
	content: "";
}
.nav ul li a {
	margin: 0 8px; /* Set margins around the links */
	color: black; /* Text colors for the links */
	text-decoration: none;
}
.nav ul li a:hover {
	margin: 0 8px; /* Set margins around the links */
	color: black; /* Text colors for the links */
	border-bottom: 1px solid;
}
/*Navbar */

/*@media screen and (max-width: 1023px) {
	.container{
		flex-direction:column;
		align-items: center;
		
	}
}*/

#navbar {
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
	overflow: hidden;
	list-style-type: none;
	
	
}
#navbar ul {	
	margin: 0;
	padding: 0;
	position: relative;
	text-align: center;
	display: flex;
	list-style: none;
}
#navbar ul li {
	display: inline-block;
	list-style: none outside none;
}
#navbar .menu-item a {
	-moz-transition: color 0.4s ease 0s;
	color: black;
	display: block;
	line-height: 18px;
	/*margin: 1px 0 0 1px;*/
	padding: 13px 15px 11px;
	text-decoration: none;
}
#navbar .menu-item a:hover {
	color: black;
	background-color: #c5c5c5;
	border-radius: 5px;
}
#navbar .current-menu-item a, #navbar .current_page_parent a, #navbar .current-page-ancestor a {
	/*color: #fd0000;*/
	background-color: #949494;
	border-radius: 5px;
}
#navbar .current-menu-item a:hover, #navbar .current_page_parent a:hover {
	background-color: #828282;
	border-radius: 5px;
}
	
#navbar	.icon {
  display: none;
}

/* Style the button that is used to open and close the collapsible content */
.collapsible {
	background-color: #eee;
	color: black;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	border-radius: 15px;
	text-align: left;
	outline: none;
	font-size: 18px;
	font-family: 'Oswald', sans-serif;
}
/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
	background-color: #ccc;
}
/* Style the collapsible content. Note: hidden by default */
.collapsiblecontent {
	padding: 0 18px;
	display: none;
	overflow: hidden;
	background-color: #f1f1f1;
}
