@charset "utf-8";
/* Lens Christmas Lights - Print Mode */
body  {
	font-family: Arial, Helvetica, sans-serif;
	color: #000000;
	background: #eeeeee;
	margin: 0;
	padding: 0;
	text-align: center;
}

/* Main Content Holder */
#container { 
	width: 780px;  /* using 20px less than a full 800px width leaves room for the internet browsers bits such as scroll bars */
	background: #ffffff;
	margin: 0 auto; /* setting margin to auto centers the block of content */
	border: 1px solid #771100;
	text-align: left; /* left-aligned is easier to read as we read from left to right */
} 

/* Hyperlinks */
a:link,a:visited {
	color: #990000;
}

a:hover,a:active {
	color: #990000;
}

/* Page Sections */
#header { 
	background: none;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navigation {
	display: none;
	visibility: hidden;
}
#main { 
	margin: 0 0 0 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #ddeeee;
} 
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.charity {
	display: none;
	visibility: hidden;
}
.right { /* this class can be used to float an element right in your page. */
	float: right;
	margin-left: 8px;
}
.left { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
