@charset "utf-8";

* {
	margin: 0;
	padding: 0;
	border: 0;
	}
	
body  {
	font: 85% Verdana, Arial, Helvetica, sans-serif;
	background: url(images/parchment.jpg) repeat;
	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: 1000px; 
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: url(images/sparky_home_clean.png) top left no-repeat;
} 

#header {
	font-family: Arial, Helvetica, sans-serif;
	height: 200px; /* if you're changing the source order of the columns, you'll may want to use a height on the header so that you can give the columns a predictable top value */
	padding-bottom: 40px;
} 

#title {
	display: none;

}

#header ul {
	float: right;
	height: 40px;
	margin-top: 180px;
	}
	
#navbar li {
	display: block;
	float: left;
	}
	
#navbar a {
    padding: 1px 1em;
	color: #7c2424;
	text-decoration: none;
	font-weight: bold;
	font-size: 120%
	}

h1, h2, h3, h4 {
	margin-bottom: 1ex;
	clear: both;
	}

p {
	margin-bottom: 1ex;
	}
	
#mainContent  li {
	margin-bottom: 1ex;
	}
	
a:link {
	color: #7c2424
	}

a:visited {
	color: #630;
	}

a:hover {
	color: #606;
	}

a:active {
	color: #afa;
	}
 
#sidebar1 {
	position: absolute;
	top: 240px;
	width: 245px; /* 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-left: 20px; /* padding keeps the content of the div away from the edges */
}

#sidebar2 {
	position: absolute;
	top: 240px;
	width: 245px; /* 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 */
	margin-left: 735px;
	padding-right: 20px; /* padding keeps the content of the div away from the edges */
}

.cta {
	float: right;
	padding-bottom: 3ex;
	}
	
#mainContent { 
	margin: 0 305px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding-bottom: 40px; 
}

#mainContent h2, #mainContent h3 {
	margin-top: 2ex;
	}
	
#mainContent p, #mainContent li {
	line-height: 2.75ex;
	}

#mainContent ul {
	line-height: 2.75ex;
	margin-left: 2em;
	margin-bottom: 1ex;
	}
	
#footer { 
	padding: 0 20px;
	font-size: smaller;
	text-align: center;
	} 

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

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

