@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #F1DD52;
	background-image: url(images/Spyro-Gyro-Site-Mockup_02.jpg);
	background-repeat: repeat-x;
}
#container  {
	margin: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	width: 1000px;
} 
#header {
	background-image: url(images/header_01.jpg);
	background-repeat: no-repeat;
	height: 250px;
	width: 750px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
h1  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	color: #FFFFFF;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 0px;
}
#sidebar1 ul {
	display: block;
	text-decoration: none;
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}
#sidebar1 ul li a {
	color: #FFFFFF;
	text-decoration: none;
	font-size: 18px;
}
#sidebar1  ul  li  a:hover {
	color: #25A9E1;
	text-decoration: underline;
	font-size: 18px;
}
#sidebar1 ul li {
	text-decoration: none;
	display: block;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 0px;
	list-style-type: none;
}
#pages {
	background-image: none;
}
#sidebar1 h3 {
	font-size: 24px;
	color: #FFFFFF;
	font-weight: bold;
	margin: 0px;
	text-decoration: none;
	list-style-type: none;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 15px;
	padding-left: 20px;
}
#mainContent a {
	color: #991D04;
	text-decoration: underline;
}
#mainContent a:hover {
	color: #25A9E1;
	text-decoration: underline;
}
#mainContent img {
	padding: 5px;
	margin: 0px;
}
#mainContent {
	background-image: url(images/bodymain_10.png);
	background-repeat: repeat-y;
	background-position: center;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0px;
	padding-top: 15px;
	padding-right: 25px;
	padding-bottom: 25px;
	padding-left: 25px;
} 
#footer {
	padding: 0 10px 0 20px;
	font-size: 9px;
} 
#footer a {
	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 */
}
.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;
}
#mainHeader {
	background-image: url(images/topmain_07.png);
	background-repeat: no-repeat;
	background-position: center;
	height: 27px;
	padding-bottom: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-left: 0px;
	margin: 0px;
}
#mainBody {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 250px;
	width: 718px;
	color: #333333;
}
#mainFooter {
	margin: 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; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-image: url(images/bottommain_10.png);
	background-repeat: no-repeat;
	background-position: center;
}
#mainContent h2 a {
	text-decoration: none;
}
#sidebar1 ul li ul li {
	text-decoration: none;
	display: block;
	padding-top: 10px;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 20px;
	list-style-type: none;
	background-image: url(images/navbgd.png);
	background-repeat: no-repeat;
	height: 42px;
	width: 216px;
}

