@charset "UTF-8";

* { /* this eliminates those extra spaces between divs */
	margin: 0;
	padding: 0;
	}

body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-repeat: repeat;
	margin: 0;
	padding: 0;
	text-align: center;
	color: #000000;
	height: auto;
	background-image: url(art/sand.jpg);
}

#container {
	width: 802px;
	background: #FFFFFF;
	background-image:url(artwork/elra_container.jpg);
	margin: 0px auto 0px auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	position: relative;
}
 
#header { 
	background: #DDDDDD; 
} 

#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#navbar {
	position: absolute;
	height: 20px;
	width: 794px;
	font-size: small;
	font-weight: normal;
	text-align: center;
	padding-top: 0px;
	background-image: url(images/navbar_background.jpg);
	vertical-align: middle;
	top: 133px;
	font: verdana;
	right: 15px;
}

#navigation li	{
	display: inline;
}
 
#navigation a	{
	text-decoration: none;
}
 
#navigation a:link, #navigation a:visited	{
	color: #000000;
	padding: 0px 0px 0px 15px;
}
 
#navigation a:hover	{
	color: #FDEF00;
	padding: 0px 0px 0px 15px;
}
        
#navigation a:active,
    .home #navigation #home a,
	.links #navigation #links a,
	.contact #navigation #contact a	{
	color: #006C9E;
	padding: 0px 0px 0px 15px;
}

#mainSidebar {
	width: 220px; /* 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 */
	background: #EBEBEB; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 10px;
	position: absolute;
	left: 552px;
	top: 168px;
}

#photonavigation {
	left: 10px;
	width: 225px;
	margin-top: 10px;
}

#sidebar {
	width: 220px;
	background: #EBEBEB;
	padding: 15px 10px;
	position: relative;
	left: 550px;
}

#mainContent {
	margin: 0 10px 0 3px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #f3f6f9;
	width: 775px;
	height: auto;
	padding: 0 auto 0 auto;
	text-align: center;
	position: relative;
} 

#commNav	{
	width: 230px;
	position: relative;
	font-size: 70%;
	font-weight: normal;
	text-align: right;
	left: -10px;
	top: 15px;
}	

#commNav td	{
	text-align: center;
	top: 15px;
		}

#mainText	{
	width: 280px;
	position: relative;
	height: 175px;
	font-size: 82%;
	text-align: center;
	margin-left: 235px;
	margin-top: -270px;
}

#weather	{
	width: 225px;
	position: relative;
	margin: 0 auto 0 auto;
}

#special	{
	width: 280px;
	top: 30px;
	position: relative;
	left: 280px;
	height: 175px;
	font-size: 82%;
	text-align: left;
	padding-bottom: 10px;
}

#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#DDDDDD;
	position: relative;
} 

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

.copy	{
	font-size: xx-small;
	text-align: center;
}

.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: 8px;
}

.fltlft { /* 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;
}
