@charset "utf-8";

/* Lens Christmas Lights */

body  {

	font-family: Arial, Helvetica, sans-serif;

	color: #ffffff;

	background: #003300 url('bauble.jpg') top left no-repeat;

	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: #335522 url('stripe_green.jpg') bottom no-repeat;

	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: #ff9900;

}



a:hover,a:active {

	color: #ffcc33;

}



/* 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 {

	padding: 10px 0 10px 0;

	border: 1px solid #771100;

	background: #447722 url('gradient_green.jpg') top repeat-x;

	width: 740px;

	text-align: center;

}

/*

#navigation2 {

	padding: 20px 0 20px 0;

	border: 1px solid #771100;

	background: #447722;

	width: 150px;

	text-align: center;

}

#navigation2 h3 {

	margin-top: 0px;

	margin-bottom: 0px;

}

#navigation3 {

	padding: 20px 0 20px 0;

	border: 1px solid #771100;

	width: 300px;

	height: 200px;

	text-align: center;

}

*/

#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: #661100 url('gradient_red.jpg') bottom repeat-x;

	text-align: right;

} 

#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 */

}

#copyright {

	float: left;

	margin-top: -10px;

}

#countdown {	

	margin-top: -10px;

	float: right;

}

.christmas td {

	border: 1px solid #771100;

}

.black td {

	background: #000000;

	width: 350px;

	text-align: center;

}

.green td {

	background: #447722 url('gradient_green.jpg') top repeat-x;

	text-align: left;

	padding: 3px;

}

.charity {

	background: #447722 url('gradient_green.jpg') top repeat-x;

	text-align: center;

	padding: 0px;

	float: right;

	margin-left: 8px;

	border: 1px solid #771100;

}

.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;

}


