/* CSS Document */
/*
<link href="main_css.css" rel="stylesheet" type="text/css">
</head>*/
/*
This is how to comment CSS Style Sheets
*/
html, body {
	margin: 0;
	padding: 0;
}
/*
The code below is for the structure and formatting of the header logo
*/
#header {
	padding: 20px 0px 0px 90px;
	width: 100%;
	height: 122px;
	background-color: #FFFFCC;
	border-bottom: 2px solid #7C97AE;
}
/*---end of header logo---*/
/*
The code below is for the structure and formatting of the navigation bar
*/
#leftnav  {
	position: absolute;
	left: 0px;
	top: 123;
	width: 135px;
	font-family: Comic Sans MS, Arial, Verdana;
	font-weight: bold;
	font-size: 18px;
	background-color: #FFCC99;
	border-right: 2px solid #7C97AE;
}
/*
The code below is for the formatting of the main links
*/
a:link, a:visited {
	font-weight: bold;
	color: #13567D;
	font-style: italic;
	text-decoration: underline;
	font-family: Comic Sans MS, Arial, Verdana;
	font-size: 18px;
}
a:hover {
	color: #13567D;
	font-weight: normal;
	font-style: italic;
	text-decoration: none;
	font-family: Comic Sans MS, Arial, Verdana;
	font-size: 18px;
}
/*end of main links*/

/*
The code below is for the formatting of the list
*/

#leftnav ul {
list-style: none;
margin: 0;
padding: 15px;
}
#leftnav li {
border-bottom: 1px solid #7C97AE;
}
#leftnav li a:link, #leftnav li a:visited {
	font-weight: bold;
	color: #13567D;
	font-style: italic;
	text-decoration: none;
	font-family: Comic Sans MS, Arial, Verdana;
	font-size: 18px;
}
#leftnav li a:hover {
	color: #13567D;
	font-weight: normal;
	font-style: italic;
	text-decoration: none;
	font-family: Comic Sans MS, Arial, Verdana;
	font-size: 18px;
	display: block;
	background: #CCCC99;
}

/*end of list*/
/*end of navigation bar*/

/*
The code below is for the structure and formatting of the main content wrapper
*/
#contentwrap {
	margin-left: 155px;
	margin-right: 20px;
	margin-top: 20px;
	margin-bottom: 15px;
	width: 100%;
	padding: 10px;
	border: 1px solid #7C97AE;
}
.main12 {
	font-family: Comic Sans MS, Arial, Verdana;
	font-size: 12px;
	color: #13567D;
}
/*---end of main content wrapper ---*/	