/*

Current School Colors:
#FF5A08 - darker color
#FF8A38 - lighter color

To change colors, search and replace above hex codes

*/

*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
}


body {
font-family: verdana, arial, 'times new roman';
font-size: 1em;
margin: 20px;
}

h1, h2, h3, h4, h5, h6{
	font-size: 200%;
	margin-bottom: .5em;
}

h1{
	font-size: 300%;
}


p{
	line-height: 1.5em;
	margin-bottom: 1em;
}


.background {
width: 95%;
	margin: 1em auto;
margin-left: 50px;
background-repeat: repeat-y;
padding: 0px 5px 0px 5px;

}

.header {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: #FF5A08;
	padding-right: 2em;

}

.header h1.title {
color: white;
background-color: transparent;
font-family: georgia, 'times new roman';
font-style: italic;
font-weight: bold;

margin: 0px;
font-size: 3em;
padding: 5px;
}

.top-menu {
	background: orange;
	display:flex;
	justify-content: space-around;
	width:100%;
	min-height: 3em; 
	line-height: 3em;
}

.top-menu a {
color: white;
background-color: inherit;
text-transform: uppercase;
font-size: 1.5em;
display: block;
float: left;
text-decoration: none;
font-weight: bold;
padding: 3px 10px 4px 10px;
	width: 50%;
}

.top-menu a:hover {
color: #303030;
background-color: #d0d0d0;
}

.top-menu a.current {
color: #303030;
background-color: #d0d0d0;
}

.side-menu {
float: left;
width: 15%;
color: inherit;
background-color: #d0d0d0;
padding: 0;
}

.side-menu a {
display: block;
text-decoration: none;
font-size: 1em;
background-color: inherit;
color: #303030;

font-weight: bold;
padding: .75em;
font-family: arial, verdana, 'times new roman';
}

.side-menu a:hover {
color: #404040;
background-color: #b0b0b0;
}

.side-menu a.current {
color: #404040;
background-color: #b0b0b0;
}


.content {
width: 90%;
padding: 10px;
}

.footer {
	background: orange;
	min-height: 30%;
	padding: 1em 0;
	display:flex;
	justify-content: center;
}


h2 {
font-family: 'times new roman';
text-transform: uppercase;
}
.background{
    margin: 0 auto;
}

.container{
	background: #fff;
	display:flex;
	width: 100%;
	
}