body{
	background:#333;
}
.all{
	width:90%;
	margin-left:auto;
	margin-right:auto;
	background:#FFF;
}
.main_content{
	display: flex;
	flex-flow: row wrap;
	justify-content:space-between;
	align-items: baseline;
}
a:link{
	text-decoration:none;
	font-weight:bold;
	font-size:1.12em;
	color:#960;
}
a:active{
	text-decoration:underline;
	font-weight:bold;
	font-size:1.12em;
	color:#F90;
}
a:hover{
	text-decoration:underline;
	font-weight:bold;
	font-size:1.12em;
	color:#F90;
}
a:visited{
	text-decoration:none;
	font-weight:bold;
	font-size:1.12em;
	color:#960;
}
/* -------------------------------------------------- 
   top navigation styles
-----------------------------------------------------*/
nav{
	border-bottom:solid 1.5px #FF9900;
}
nav ul {
	display: flex;
	flex-wrap: wrap;
	word-break: break-all;
}
nav li {
	margin:.2em;
	display: flex;
	align-items:center;
}
nav li.search-form {
	margin-right: 1em;
	margin-left:auto;
}

/* -------------------------------------------------- 
   sidebar
-----------------------------------------------------*/
aside{
	flex: .5;
}
.links{
	list-style: none;
}
.links li {
	margin:.5em auto .5em -.5em;
}
.side a:link{
	text-decoration:none;
	font-weight:bold;
	font-size:.9em;
	color:#960;
}
.side a:active{
	text-decoration:underline;
	font-weight:bold;
	font-size:.9em;
	color:#F90;
}
.side a:hover{
	text-decoration:underline;
	font-weight:bold;
	font-size:.9em;
	color:#F90;
}
.side a:visited{
	text-decoration:none;
	font-weight:bold;
	font-size:.9em;
	color:#960;
}	
/* -------------------------------------------------- 
   main content columns
-----------------------------------------------------*/
.left{
	flex:1;
	padding:.5em;
	background-color: darkgrey;
	color: bisque;
}
.center{
	flex:1;
	padding:.5em;
	background-color: grey;
	color: antiquewhite;
}
.right{
	flex:1;
	padding:.5em;
	background-color: lightgrey;
	color: burlywood;
}
/* -------------------------------------------------- 
   footer
-----------------------------------------------------*/
footer{
	display: flex;
	justify-content: center;
}
.footer_info{
	padding:.3em;
	font-size:1.1em;
}
/* add media query for displays under 700 pixels in width*/
@media (max-width: 700px){
	.main_content{
		flex-flow: column wrap;
	}
	aside ul{
		display: flex;
		flex-flow: row wrap;
	}
	.links li{
		margin: auto .3em auto;
	}
	footer{
		flex-flow: row wrap;
	}
}