colorInformation{
	/*	background-color: #78B978;/* Background-green*/
	/*	background-color: #78B978;/* middle-green*/
	/*	background-color: #197C18;/* bright-green-logo*/
	/*	background-color: #C0AC56;/* brown*/
	/*	background-color: #D3E7B1;/* main-text-background-color*/
	/*	background-color: #CD3C33;/* maroon-accent*/
		
		background-color: #78b877;/* Background-green*/
		background-color: #78b877;/* middle-green*/
		background-color: #008000;/* bright-green-logo*/
		background-color: #A46B35;/* brown*/
		background-color: #f1f0ee;/* main-text-background-color*/
		background-color: #CC4030;/* maroon-accent*/
		/*credit to colormind.io for help with the colors*/
		
	}
	
/****************************************** POP OUT SECTION ********************************************/
#blackout{
	display:none;
	width:100%;
	height:100%;
	position:fixed;
	left:0px;
	top:0px;
	z-index:10;
	background-image:url("../images/greyout_background.png");
	opacity:0.6;
}

#popout{
	display: none;
	flex-wrap: wrap;
	flex-direction: column;
	justify-content: space-around;
	align-items: center;
	width:60%;
	height: 80vh;
	margin:0px 20%;
	border-color: black;
	border-width: 5px;
	border-radius: 5px;
	border-style: solid;
	position:fixed;
	top:100px;
	z-index:11;
	background-color:#78b877;
	/* overflow: scroll; */
	transition: width, left 1s linear;
}
#popout form{
	display: flex;
	flex-direction: column;
	background-color: inherit;
}
#popout div{
	background-color: inherit;
}
#popout label{
	display: inline-block;
	width: 20%;
	height: 1.7rem;
	font-size: 1.2rem;
	background-color:inherit;
	text-align: right;
	margin: 0 10px 0 0;
}
#popout input{
	display: inline-block;
	width: 70%;
	height: 1.7rem;
	font-size: 1.2rem;
	background-color:#f1f0ee;
}
#popout input[type=submit]{
	line-height: 2rem;
	font-size: 2em;
	padding: .3em .8em;
	background-color: #f1f0ee;
	opacity: 0.8;
	display: block;
	margin: 0 auto;
}
#popout select{
	width:70%;
	height: 1.7rem;
	font-size: 1.2rem;
}

#close_popout {
	position: absolute;
	line-height: 1.4;
	padding: .8em;
	right: 10px;
	top: 10px;
	border:#CC4030 solid 1px;
	border-radius: 5px;
	opacity: 0.5;
}
#popout textarea{
	width: 70%;
	height: 200px;
	font-size: 1rem;
}