@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #663300;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	background-image: url(_images/background.png);
	background-repeat: repeat;
	background-position: left top;
}

h1 {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 10px 0px 0px 0px;
	font-size: 30px;
	font-weight: normal;
}

h2 {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px 0px 0px 0px;
	font-size: 24px;
	font-weight: normal;
	display: inline;
}

p {
	line-height: 150%;	
}

li {
	line-height: 150%;	
}

#border {
	width: 850px; /* the auto margins (in conjunction with a width) center the page */
	border: 2px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 50px;
	margin-left: auto;
} 

#wrapper {
	width: 840px;
	margin: 5px;
	background-color: #FFFFFF;
	height: auto;
}

#header {
	width: 830px;
	height: 133px;
	padding-top: 5px;
	padding-left: 10px;
	border-bottom: 2px solid #66CCCC;
	background-color: #FFFFFF;
	vertical-align: middle;
	text-align: left;
} 

#header img {
	vertical-align: middle;
	border: none;
}

#maincontent { 
	width: 505px;
	float: left;
	padding: 10px 18px 10px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-right: 2px solid #66CCCC;
} 

#maincontent a:link, #sidebar a:link {
	color: #663300;
	text-decoration: none;
	border-bottom: 1px dotted #663300;	
}

#maincontent a:hover, #sidebar a:hover {
	color: #CC3300;
	text-decoration: none;
	border-bottom: 1px dotted #CC3300;	
}

#maincontent a:visited, #sidebar a:visited {
	color: #00C3C3;
	text-decoration: none;
	border-bottom: 1px dotted #00C3C3;	
}

#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 255px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 20px 20px 10px 20px; 
	font-size: 14px;
}

#sidebar img {
	vertical-align: middle;
	border: none;
}

#sidebarimg {
	float: right; /* since this element is floated, a width must be given */
	width: 275px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 10px 10px 0px 10px;
}

#sidebarimg img {
	vertical-align: text-bottom;	
}

#footer { 
	clear: both;
	width: 820px;
	height: 13px;
	background:#CC3300; 
	border-top: 2px solid #66CCCC;
	font-size: 12px;
	color: #FFFFFF;
	padding: 6px 10px;
} 

#footer a:link {
	color: #FFFFFF;
	text-decoration: none;
	border-bottom: 1px dotted #FFFFFF;	
}

#footer a:hover {
	color: #66CCCC;
	text-decoration: none;
	border-bottom: 1px dotted #66CCCC;	
}

#footer a:visited {
	color: #663300;
	text-decoration: none;
	border-bottom: 1px dotted #663300;	
}

.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 10px;
}

.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
}

.orange {
	color: #CC3300;	
}

.mrgnlft {
	margin-left: 20px;
}

