@charset "utf-8";
/* CSS Document */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	font-size:small;
	line-height:1.5em;
	background: #990000;
	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: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background:#eef5d6;

	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. */
	position:relative;
}

/* set classes for image overhang on left and right side */
#container .overhang {
	position: absolute;
	top: 0;
	left: -85px;
}

#container .overhang2 {
	position: absolute;
	top: 0;
	right: -103px;
}

#header {
 	padding: 0 10px 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. */
}
#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 */
}

#mainContent {
	margin: 0 10px;
}

#mainContent #leftSide {
	float:left;
	width:375px;
}

#mainContent #rightSide {
	float:right;
	width:375px;
}

/*Begin Navigation Set */
#navigation {
	list-style: none;
	height: 33px;
	margin:-13px 0 0 -40px;
	padding:0;
}

#navigation li {
	display:inline;
}

#navigation li a {
	height:33px;
	float:left;
	text-indent:-9999em;
}

/*begin the magic */

#navigation li#nav1 a {
	width:68px; /*the width of the first button */
	background:url(../images/navigationSet2.jpg) no-repeat 0 0; /*since this is the first item there is no xPos or bgPos - the second number is always 0 */
}

#navigation li#nav1 a:hover {
	background-position:  0 -33px; /*the first position is the original position - the second number is the move down and will always remain -37px */
}

#navigation li#nav2 a {
	width:109px; /*the width of the second button */
	background:url(../images/navigationSet2.jpg) no-repeat -68px 0; /*since this is the first item there is no xPos or bgPos - second number is always 0*/
}

#navigation li#nav2 a:hover {
	background-position:  -68px -33px; /*the first position is the same number as the first set above - the second number is the move down and will always remain -37px */
}

#navigation li#nav3 a {
	width:176px; /*the width of the third button */
	background:url(../images/navigationSet2.jpg) no-repeat -177px 0; /*since this is the first item there is no xPos or bgPos - second number is always 0*/
}

#navigation li#nav3 a:hover {
	background-position:  -177px -33px; /*the first position is the same number as the first set above - the second number is the move down and will always remain -37px */
}

#navigation li#nav4 a {
	width:222px; /*the width of the fourth button */
	background:url(../images/navigationSet2.jpg) no-repeat -353px 0; /*since this is the first item there is no xPos or bgPos - second number is always 0*/
}

#navigation li#nav4 a:hover {
	background-position:  -353px -33px; /*the first position is the same number as the first set above - the second number is the move down and will always remain -37px */
}

#navigation li#nav5 a {
	width:106px; /*the width of the fifth button */
	background:url(../images/navigationSet2.jpg) no-repeat -575px 0; /*since this is the first item there is no xPos or bgPos - second number is always 0*/
}

#navigation li#nav5 a:hover {
	background-position:  -575px -33px; /*the first position is the same number as the first set above - the second number is the move down and will always remain -37px */
}

#navigation li#nav6 a {
	width:61px; /*the width of the sixth button */
	background:url(../images/navigationSet2.jpg) no-repeat -681px 0; /*since this is the first item there is no xPos or bgPos - second number is always 0*/
}

#navigation li#nav6 a:hover {
	background-position:  -681px -33px; /*the first position is the same number as the first set above - the second number is the move down and will always remain -37px */
}

#navigation li#nav7 a {
	width:58px; /*the width of the seventh button */
	background:url(../images/navigationSet2.jpg) no-repeat -742px 0; /*since this is the first item there is no xPos or bgPos - second number is always 0*/
}

#navigation li#nav7 a:hover {
	background-position:  -742px -33px; /*the first position is the same number as the first set above - the second number is the move down and will always remain -37px */
}

/*sidebar action */

.sideBar {
  width: 239px;
  float:right;
  margin:-10px 10px 10px 10px;
  }
  
  .sideBar2 {
  width: 239px;
  float:right;
  margin:0 10px 10px 10px;
  }


.smallerSize {
	font-size:80%;
}

.staffImg {
	float:left;
	margin:0;
	padding:10px;
}

.titleReplace {
	background:url(../images/title1.jpg) no-repeat;
	text-indent:-9999em;
	height:67px;
}

.titleReplace2 {
	background:url(../images/title2.jpg) no-repeat;
	text-indent:-9999em;
	height:36px;
}

.titleReplace3 {
	background:url(../images/title3.jpg) no-repeat;
	text-indent:-9999em;
	height:36px;
}

.titleReplace4 {
	background:url(../images/title4.jpg) no-repeat;
	text-indent:-9999em;
	height:36px;
}

.clear {
	clear:both;
}

#footer {
	margin:0;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#aac260;
}
#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 */
	font-size:85%;
	text-align:center;
}

#footer a {
	color:#000;
}

#footer a:hover {
	color:#000;
}

