/* CSS Document */
/*body defines entire site background*/
body {
	background-image: url(../images/css/background.jpg);
	background-repeat: repeat;
}
/*begin main page. wrapper contains entire page content and basically everything*/
#wrapper {
	
	width: 770px;
	margin: 100px auto;
	margin-top: 0;
	margin-bottom:0;
	background-color: #c6b299;
}
/*the banner is the logo*/
#banner{
	height: 100px;
	background-image: url(../images/css/banner2.gif);
	background-repeat: no-repeat;
}
/*begin nav bar*/
/*the graybar refers to those gray bars around the navigation bar.*/
.graybar {
	background-color: #676464;
	height: 10px;
	width: 770px;

}
#navbar{
background-color:#000000;
height:40px;
overflow:visible;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	
	}

ul li {
	position: relative;
	width: 85px;
	float: left;
	}
	
li ul {
	position: absolute;
	top: 33px;
	display: none;
	width: 150px;
	padding:7px;
	}
/* dropdown from drop down*/

/* Styles for Menu Items */
ul li a {
	display: block;
	text-decoration: none;
	color: #777;
	padding: 10px;
	border-bottom: 0;
	font-size: 12px;
	font-weight:bold;
	}
/*dropdown menue style*/
li ul a {
	display: block;
	text-decoration: none;
	color: #777;
	background: #fff; /* IE6 Bug */
	padding: 5px;
	border: 1px solid #ccc;
	border-top: 0;
    width:150px;
}

/* Fix IE. Hide from IE Mac \*/
* html ul li { float: left; height: 1%; }
* html ul li a { height: 1%; }
/* End */

li ul a:hover {color: #000;background: #f9f9f9;}	
li ul li a { padding: 2px 5px;; } /* Sub Menu Styles */
		
li:hover ul, li.over ul { display: block; } /* The magic */
/*end nav bar*/
/*the content section contains all the content and is tan in color, the main page area*/
#content{
margin-bottom:0px;
margin-right: 147px;
margin-left:10px;
padding: 10px;
background-color: #fefaa8;
}
/*this is the left colume. It is for use as a navigational aid later*/
#leftcol {
	float:right;
	width:146px;
	background-color: #c6b299;	
}
#leftcol p{
padding:10px;
width:126px;
}
/*the footer is the little blue strip at the bottom*/
#footer{
	Width: 770px;
	background-color:#000066;
	text-indent:10px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFFFFF;
	position: absolute;	
}
#footer a{
	background-color:#000066;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 9px;
	color: #FFFFFF;
}
/*begin styles*/
.center{
	text-align: center;
}
.Christmas {
	text-align: center;
	font-family: "Comic Sans MS";
	color: #FF0000;

}
.Christmas h1 {
font-size:xx-large;
}
.mainText{
	font-family: "Times New Roman", Times, serif;
	font-size: large;
	color: #000000;
}
.mainText h1{
color:#FF0000;
text-align:center;
}
.mainText h2{
	text-transform: capitalize;
	font-size:larger;
}
.redComic {
	font-family: "Comic Sans MS";
	font-weight: bold;
	color: #CC3300;
}
.left{
float:left;
margin:10px;
}
.left p{
width:100px;
}
.right{
float:right;
margin:10xp;
}
