@charset "utf-8";
/* CSS Document PDR*/

#logo{text-align:center;}

/*container*/
#container {
	width: 820px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar ****************added 20px to try and allow pix to fit hhorizontally*/
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0;
	font-size: 12px;
}
#container a {
	color:#660066;
}
#frontContent {
padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	border:none;
	text-decoration:none;
	margin: 0 0 0 00px; }

/*main content*/
#mainContent {
	padding: 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	border:none;
	text-decoration:none;
	margin: 0 0 0 180px; /* 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. */
}
#mainContent a{
	color:#0000FF;
	border: none;
	font-size:12px;
}
#mainContent p{
	font-size:14px;
	text-decoration:none;
}

/*header*/
#header { 
	background: #FFFFFF;
	padding: 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. */
	margin: 0;
	} 
#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: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background: #FFFFFF;
	}

/*body*/
body  {
	background: #FFFFFF;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #660066;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}

/*sidebar*/
#sidebar{
	text-decoration:none;
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0;
	text-align:center;
	font-size: 10px;
	color: #660066;
}
/*#sidebar p {
	height:30px;
	width:110px;
}*/

/*date*/
#date{
	font-size:10px;
	color:#660066;
	text-align:center;
}

/*info*/
#info h1 a{
	font-size:16px;
}
#info{
	margin-bottom:50px;
}
#info a{text-decoration:underline;
color:#0000CC;
font-size:14px;}
#click{font-size:16px;}

#click a {color:
#660066;}

#info p img {
	margin-top:15px;
}
#info1{
	clear:both;
	margin-bottom:50px;
	color: #660066;
}
#info1 a{
	color: #660066;
}
#info ol {
	font-size:14px;
}
#info ul {
	font-size:14px;
}

/*footer*/
#footer {
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:right;
	font-size:12px;
	font-family:Arial, Helvetica, sans-serif;
	color:#9900CA;
	text-decoration:none;
	margin:0;
	width:800px;
	border-color:#660066;
	border-style:solid;
	border-width:1px 0px 1px 0px;/*top right bottom left*/
	float:right;
	clear:both;
	background-repeat: no-repeat;
	background-color: #FFFFFF;
} 
#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 */
}
#footer a{
	color:#660066;
	text-decoration:none;
	font-weight: bold;
}

/*floats*/
.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;
	margin-top:10px;
	margin-bottom:10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
	margin-bottom:10px;
	margin-top:10px;
}
.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;
}



/*figure*/
.figure {
	float: left;
	width: 210px;
	margin: 0px 10px 10px 10px;
	border:1px solid #ffffff;
	padding:10px;
}
.figure p {
	font: normal Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 10px 0 0 0;
	height: 1em;
}

/*figure2*/
.figure2 {
	float: left;
	width: 105px;
	border:1px solid #660066;
	padding:0px;
	}
.figure2 p {
	font: normal Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 10px 0 0 0;
	height: 1em;
	
}

/*figure3*/
.figure3 {
	float: left;
	width: 105px;
	border:none;
	padding:0px;
	}
.figure3 p {
	font: normal Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 10px 0 0 0;
	height: 1em;
	
}
/*figure4*/
.figure4 {
	float: left;
	width: 210px;
	margin: 0px 10px 10px 10px;
	border:1px solid #660066;
	padding:10px;
	text-decoration:none;
}
.figure4 p {
	font: normal Arial, Helvetica, sans-serif;
	text-align: center;
	margin: 10px 0 0 0;
	height: 1em;
}

.figure5 {
	float:left;
	padding:10px;
	text-align:center;}
.gallery5{
}


/*IE bugs*/
/* IE 5/6 border erase bug */
* html #gallery {
	width: 100%;
}

/* IE 5 placement bug */
* html #gallery img {
	width: 100%;
}

#a {
	/*text-decoration:none;
	border:none;*/
	color:#000099;
}

#enter a{
	color:#660066;
	text-align:center;
	text-decoration:none;
	font-weight: bold;
	font-size: 16px;
}
#button{
float:right;
}
.img.floatRt {
	float: right;
}
#gallery {
	background-color:#FFFFFF;
	border:none;
	text-decoration:none;
}

.gallery {
	background-color:#FFFFFF;
	border:none;
	text-decoration:none;
}
#donate {
	clear:both; /*this clears any previous floats*/
	padding: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border:none;
	text-decoration:none; 
}
.photo img {
	/*border: 1px solid #666;*/
	border:none;
	background-color: #FFF;
	padding: 4px;
	position: relative;
	top: -5px;
	left:-5px;
}
.photo2 img {
	border: none;
	background-color: #FFF;
	padding: 2px;
}
table {
	margin-left:20px;
}
td {
	padding-right:20px;
}

#events{font-size:14px;}
