@charset "utf-8";
/* CSS Document */
article, aside, figure, footer, header, hgroup,
menu, nav, section { 
display: block; 
}

/* Colors 
green #777f32
red #ba6489
dk gray #515860
*/

/* page structure */
body {
	position:relative;
	margin: 0;
	padding: 0;
	font-family:'Quintessential', cursive;
	font-size:1em;
	background-image:url(../images/50s-168.jpg);
	background-repeat:no-repeat;
	background-color:black;
	background-attachment:fixed;
}

#banner {
	width:986px;
	height:135px;
	padding-left:15px;
	padding-bottom:15px;
	margin-left:auto;
	margin-right:auto;
	margin-top:20px;
	margin-bottom:30px;
	position: relative;
	background-color:white;
	outline:2px solid black;
}

#container {
	background-color:white;
	width:976px;
	height:auto;
	overflow:auto;
	padding:5px;
	margin:auto;
	margin-top:45px;
	outline:2px solid black;
	position:relative;
}

.page_title { /* main page title */
	font-size:2.5em;	
}

#logo {
	font-size:4.5em;
	line-height:2em;
	background-color:white;
}

#tag-line {
	font-family:Arial, Helvetica, sans-serif;
	font-size:1em;
	font-weight:bold;
	font-style:italic;
	float:right;
	position:absolute;
	right:30px;
	top:30px;
}

#content {
	padding:1em;
	float:right;
	width:48em;
	height:100%;
}

/* nav styles */
a:focus {
	outline:thin dotted; /* handles browser inconsistencies */
}

#sidenav {
	width:auto;
	height:auto;
	float:left;
	margin-top:50px;
	border-right:1px solid black;
}

#sidenav ul, #sidenav li {
	margin:0;
	padding:0;
	list-style:none;
}	

#sidenav li a {
	display:block;
	width:6em;
	line-height:2em;
	font-size:1.5em;
	font-weight:bold;
	text-decoration:none;
	padding:.2em 0 .2em 1em;
	font-family:'Quintessential', cursive;
}

#sidenav li a:link {
	color:black;
}

#sidenav li a:visited {
	color:black;
}

#sidenav li a:hover {
	color:#777f32;
	text-decoration:underline;
}

img {
	border: thick double #333333;
}

/* type styles */

/*font-family: 'Quintessential', cursive;
font-family: 'Shadows Into Light', cursive;*/

h1, h2, h2 {
	text-align:center;
	font-family:'Quintessential', cursive;
}

/* alignment styles*/

.center {
	display:block;
	margin-left:auto;
	margin-right:auto;
} 

.align_left {
	text-align: left;
}

.align_center {
	text-align: center;
	vertical-align: middle;
}

.align_right {
	text-align: right;
}

.align_justify {
	text-align:justify
}

.right_pic {
	/*border: thick double #333333;*/
	float: right;
	margin-left: 30px;
}

.left_pic {
/*	border: thick double #333333;
*/	float: left;
	margin-right: 30px;
}

/* page specific css */
/* classes page */

.class_name {
	font-weight: bold;
	text-align: left;
	width: 90%;
	margin-right: auto;
	margin-left: auto;
	padding: 0px;
	margin-top: 15px;
}

.class_description {
	width: 90%;
	margin: auto;
	text-align: left;
}

/*news page*/

.news {
}

.news img {
	display:block;
	margin-left:auto;
	margin-right:auto;
}

.para1 {
	width:85%;
	background-color:pink;
	height:200px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
}

.para2 {
		width:85%;
	background-color:pink;
	height:200px;
	margin-left:auto;
	margin-right:auto;
	padding:10px;
}
* {
	box-sizing: border-box;
}
.column {
	float: left;
	width: 33.33%;
	padding: 5px;
}

/* Clearfix (clear floats) */
.row::after {
 content: "";
 clear: both;
 display: table;
}

