@charset "UTF-8";
/* CSS Document */

* {
	margin: 0;
	padding: 0;
}
a img { border: none; /* removes default blue border around linked images */ }
body {
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	line-height: 1.3;
	text-align: center; /* centers everything in IE */
}
#wrapper {
	width: 800px;
	margin: auto; /* centers wrapper in most browsers */
	text-align:left; /* resets IE center hack */
	
}
/* LAYOUT STYLES */
	 
#main { overflow:hidden; }
#header {
	width:800px;
	
	background-color: lightcyan; 
	padding: 10px 15px;
	

}
#sidebar1 {
	background-color:cadetblue;
	float: left;
	width: 200px;
	padding: 15px 15px 0 15px;
}
#content {
	float: left;
	width: 800px;
	padding: 20px 15px 0 20px;
}
#footer {
	clear: both;
	background-color:lightcyan;
	color: darkcyan;
	padding: 10px 15px;
}
#footer a {
	text-decoration:underline;
	color:#FFC;
}
#footer a:hover {
	text-decoration:none;
	color:lightcyan;
}
p { margin-bottom:12px; text-align: left;}
#sidebar1 a,
#content a {
	text-decoration:underline;
	color:darkcyan;
}
#sidebar1 a:hover,
#content a:hover {
	text-decoration:none;
	color: #040;
}
h1 {
	font-size:30px;
	color:darkcyan;
	text-align: center;
	padding-right: 10px;
		padding-bottom: 10px;

}
h2 {
	font-size:18px;
	padding-bottom: 10px;
	padding-top: 14px;
	color:darkcyan;
	text-align: left;
}
h3 {
font-size:12px;	
	text-align: left;
	padding-top: 12px;
	padding-bottom: 14px;
	font-weight: normal;
}

ul { margin-bottom:12px; }
li { list-style:none; }
table { margin-bottom:15px; }
tr th { font-weight:bold; padding:4px; background-color: #900; color:#ffffcc;
}
th,
td {
	padding:4px;
	border-bottom:1px solid #900;
	color:#900;
}
.light {background-color:#FFFFCC; font-weight:bold;}
.lighter {background-color:#FFFFE6;}
.code { margin-left:20px; margin-right:20px;}
.code p { font-family:"Courier New", Courier, monospace; font-size:14px; color: #00F; line-height:16px;}
img {padding-right:20px; padding-bottom: 10px; float:left; width:150px} 
