@charset "UTF-8";
body {
	font: 12px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	background: #403f3f;
	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: #000000;
}

#container {
	width: 1024px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #333333;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #ffffff;
	background-image: url(../images/perviousBackground.jpg);
	background-repeat: no-repeat;
}

#header {
	padding: 56px 0 0 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	height: 90px;
	background-image: url(../images/header2.png);
	background-repeat: no-repeat;
	margin: 0 0 20px 0;
}

#header a {
	color: #fff;
	font-size: 16px;
	text-decoration: none;
}

#header a:hover {
	color: #000;
	text-decoration: none;
}


#footer {
	padding: 10px 40px 0 ; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#333333;
	height: 30px;
}

#footer {
	color: #eee;
	font-size: 10px;
}	

#footer a{
	color: #fff;
	text-decoration: none;
}

#footer a:hover {
	color: #a61125;
	text-decoration: underline;
}

#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 */
}
