* {
  margin: 0;
  box-sizing: border-box;
}
body {
	background: radial-gradient(#032E15, #034F3B, #032E15);
	font: normal 1em/1.3em Arial, Helvetica, sans-serif;
	margin: 0 auto;
	color: #FFFFFF;
}
img {
	max-width: 100%;
	max-hieght: 100%;
	margin: 2px 2px 2px 2px;
}
p {
	margin: 0 0 1em;
}
em, i {
	font: normal italic 100% Georgia, Times New Roman, Times, serif;
}
a {
	color: #00ff21;
	text-decoration: none;
	outline: none;
}
a:hover {
	color: #ffffff;
	text-decoration: underline;
} 
big {
	font-size: 1.2em;
	line-height: 1.4em;
	color: #E6FBFA;
}
small {
	font-size: .85em;
	color: #E6FBFA;
}
smaller {
	font-size: .7em;
	color: #E6FBFA;
}
blockquote {
	background: url(img/blockquote.png) no-repeat 4px 0;
	padding: 0 0 0 26px;
	font: italic 1.1em/1.3em Georgia, Times New Roman, Times, serif;
	font-size: 1em;
	color: #E6FBFA;
}
pre, code {
	font-family: Consolas, monospace, serif;
	font-size: 1em;
}
ul {
	list-style: none;
	margin: 1.2em 0 1.8em 10px;
	font-size: 1em;
}
ul li {
	background: url(img/bullet.png) no-repeat 0 .5em;
	padding: 0 0 .5em 16px;
}
ol {
	margin: 1.2em 0 1.8em 10px;
	font-size: 0.9em;
}
ol li {
	margin: 0 0 1em 16px;
}
h1, h2, h3, h4, h5, h6 {
	color: #c7ffad;
	text-shadow: 2px 3px 4px #000000;
        margin-bottom: .5em;
        line-height: 1em;
}
h1 {
	font-size: 2em;
}
h2 {
	font-size: 1.8em;
}
h3 {
	font-size: 1.6em;
}
h4 {
	font-size: 1.3em;
}
h5 {
	margin-top: 1em;
	font-size: 1.1em;
}
h6 {
	margin-top: .5em;
	font-size: 1em;
}

/* Accordian -----------------------------------------------*/
.accordionTitle {
  background: linear-gradient(#03412B, #034F3B, #012C22);
  color: white;
  cursor: pointer;
  padding: 10px;
  margin: 2px;
  width: 100%;
  border: none;
  text-align: left;
  padding-left: 20px;
  outline: none;
  font-size: 15px;
  transition: 0.4s;
  border-radius: 20px;
}

.accordionTitle:after {
  content: '\002B'; /* Unicode character for "plus" sign (+) */
  font-weight: bold;
  float: right;
  margin-left: 5px;
}

.accordionTitle.is-open:after {
  content: "\2212"; /* Unicode character for "minus" sign (-) */
}

.accordionTitle:hover {
  background-color: green;
}

.accordionTitle + .accordionContent {
  display: none;  
}

.accordionTitle.is-open + .accordionContent {
  display: block;  
}

/* Forms -----------------------------------------------*/

/* Style inputs, select elements and textareas */
input[type=text], input[type=email], input[type=password], select, textarea{
	width: 100%;
	padding: 5px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	resize: vertical;
}

/* Style the label to display next to the inputs */
label {
	padding: 5px 12px 5px 0;
	display: inline-block;
}

/* Style the submit button */
input[type=submit] {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
	text-align:center;
    background: linear-gradient(#2D9966, #1F7A55, #012C22);
	border: 1px #000000 solid;
	margin: 5px 2px 2px 2px;
	padding: 5px 15px 5px 15px;
	border-radius: 25px;
}

input[type=submit]:hover {
	background: linear-gradient(#31D492, #2D9966, #034F3B);
	color: #fff;
}

/* Floating column for labels */
.lab-10, .lab-20, .lab-30, .lab-40, .lab-50  {
	float: left;
	text-align:right;
	margin-top: 6px;
	padding-right: 4px;
	white-space: nowrap;
}
.lab-10 { width: 10%; }
.lab-20 { width: 20%; }
.lab-30 { width: 30%; }
.lab-40 { width: 40%; }
.lab-50 { width: 50%; }

/* Floating column for inputs */
.inp-50, .inp-60, .inp-70, .inp-80, .inp-90 {
	float: left;
	margin-top: 6px;
}
.inp-10 { width: 10%; }
.inp-20 { width: 20%; }
.inp-30 { width: 30%; }
.inp-40 { width: 40%; }
.inp-50 { width: 50%; }
.inp-60 { width: 60%; }
.inp-70 { width: 70%; }
.inp-80 { width: 80%; }
.inp-90 { width: 90%; }

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
	.lab-10, .lab-20, .lab-30, .lab-40, .lab-50, .inp-50, .inp-60, .inp-70, .inp-80, .inp-90, input[type=submit] {
		width: 100%;
		margin-top: 0;
	}
	.lab-10, .lab-20, .lab-30, .lab-40, .lab-50 {
		text-align:left;
	}
}

@media only screen and (max-width: 900px) {
	*.pp {
		max-width: 50%;
	}
}

/* Classes -----------------------------------------------*/
.title, .subtitle, .subsubtitle, {
	color: #ffffff;
	text-shadow: 2px 3px 4px #000000;
}
.title {
	font-size:4vw;
    margin-bottom: .5em;
}
.subtitle {
	font-size: 2vw;
    margin-bottom: .4em;
}
.subsubtitle {
	font-size: 1.5vw;
    margin-bottom: .3em;
}
.bigger {
	font-size: 1.6em;
	line-height: 1.6em;
	color: #E6FBFA;
}
.big {
	font-size: 1.4em;
	line-height: 1.4em;
}
.small {
	font-size: .8em;
	line-height: 1.2em;
}
.smaller {
	font-size: .7em;
	line-height: 1.2em;
}
.caption {
	font-style: italic;
	color: #7BF1A8;
}
.red {
	color: #FF0000;
}

.button, a.button {
	font-weight: bold;
	color: #FFF;
	text-decoration: none;
    background: linear-gradient(#2D9966, #1F7A55, #012C22);
	border: 1px black solid;
	margin: 2px 2px 2px 2px;
	padding: 2px 15px 2px 15px;
	border-radius: 25px;
}
.button:hover {
    background: linear-gradient(#31D492, #2D9966, #034F3B);
	color: #fff;
}

.bdr, .bdrr {
	display:inline-block;
	border:1px solid white;
	margin:0px 2px 0px 2px; 
	padding:2px 5px 2px 5px;
	
}
.bdrr {
	border-radius: 25px;
}

.odd {
	background: #032E15;
}

.even {
	background: #034F3B;	
}

.bird {
	float:left;	
	padding:5px;
	margin:5px;
	background: #032E15;
}

/* Chat --------------------------------------------*/
.chatpost, .chatjoin, .chatleave {
	font-size: .9em;
	line-height: 1.1em;
	color: aquamarine;
}
.chatjoin {
	color: #b8fcc1;
}
.chatleave {
	color: #ffbfbf;
}
.chatbg {
	background: linear-gradient(#033821, #034E3A, #034E3A, #034E3A);
}
#chatscreen {
    min-height: 150px;
    font-size: 14px;
	border: 1px solid white;
	margin: 0px 2px 0px 2px; 
	padding: 5px;
}
#chatsend {
	margin-top:10px;
}
/* Classes end --------------------------------------------*/

/* Page Layout --------------------------------------------*/
#wrapper {
	width: 100%;
	background-image: url("/media/logo.png"), url("/media/bkgrnd.png");
	background-repeat: no-repeat, repeat;
	background-blend-mode: normal;
	background-position: top right, center;
	background-attachment: fixed, scroll;
	background-size: contain, auto;
	min-height: 600px;
	overflow:auto;
}
#header {
	padding: 10px 10px 10px 20px;
	display: inline-block;
	width: 100%;
}
#content, #footer {
	display: inline-block;
	width:94%;
	margin-top: 20px;
	margin-left: 3%;
	margin-right: 3%;
}
#content {
	min-height: 450px;
}
#footer {
	font-size: .75em; 
}