@charset "utf-8";
/* CSS Document */
#green{
color:#5C8A41;
}
#orange{
color:#DC7E27;
}
#purple{
color:#835EA3;
}
.green{
color:#5C8A41;
}
.orange{
color:#DC7E27;
}
.purple{
color:#835EA3;
}
.red{
color:#B70625;
}
.blue{
color:#102A7D;}
/* ============= */
body  {
	font-family: verdana, arial, Tahoma,sans-serif;
	background-color: #99C2FF;
   /* background-color: #FF0000;*/
    background-image:url(../images/bg1.jpg);
    background-position:center;
    background-repeat:repeat-y;
	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;
    
}
.thrColFixHdr #container, .twoCol #container { 
	width: 782px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	/*text-align:left;  this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #header, .twoCol #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. */
    
} 
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-top: 0px; /* padding keeps the content of the div away from the edges*/ 
    border-right: 1px #CCCCCC solid;
    }
.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	background: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 0;
    padding-top: 0px; /* padding keeps the content of the div away from the edges */
    vertical-align:top;
   	border-left: 1px #CCCCCC solid;
    overflow: hidden;
}
.thrColFixHdr #sidebar2 hr{
	margin: 0px 2px;
}
.twoCol #2colsidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	background: #fff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding-top: 0px; /* padding keeps the content of the div away from the edges */
    border-right: 1px #CCCCCC solid;
}
.twoCol #2colsidebar1 hr{
	margin: 0px 2px;
}
.thrColFixHdr #mainContent { 
	margin: 0 150px; /* 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. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 1px 2px; 
    border-left: 1px #CCCCCC solid;
    border-right: 1px #CCCCCC solid;
    /*text-align:left;*/
   } 
   .twoCol #2colmainContent { 
	margin: 0 0 0 150px; /* the left margin on this div element creates the outer column on the side of the page. No matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 1px 2px 0px 2px;; /* remember that padding is the space inside the div box and margin is the space outside the div box */
    /*border-left: 1px #CCCCCC solid;
    border-right: 1px #CCCCCC solid;*/
     /*text-align:left;*/
   } 
.thrColFixHdr #footer{ 
margin: 0px;
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:center;
     vertical-align:top;
     font-size:11px;
} 
.twoCol #2colfooter{ 
margin: 0px;
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	text-align:center;
     vertical-align:top;
     font-size:11px;
}  

.thrColFixHdr #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: 0px 10px ; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
    font-size:11px;
}
.thrColFixHdr #footer hr{
margin: 0px;
}

.hdrImg{
margin:0px;
}
.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;
}
/* TEXT */
h1{
font-size:18px;
margin:8px 4px 10px 4px;
}
h2{
font-size:16px;
margin:8px 4px 10px 4px;
}
h3{
font-size:14px;
margin:4px;
}
h4{
font-size:12px;
margin:8px 4px 10px 4px;
}
h5{
margin:4px;;
}
p, blockquote{
font-size:14px;
margin: 0px 20px 8px 20px;
}
/*   */
a{
color: #000099;
text-decoration:none;
}
a:hover{
color: #CCCCCC;
}
/* TABLES */
table{
table-layout:fixed;
border-style:none;
}
tr{

}
td{
padding:0px;
border-style:none;
}
/* ===== end NAVIGATION ======== */
/* ======= CALENDAR ======= */
table.FPcal{
width:100%;
font-size:10px;
margin:0px;
background-color:#FFFFFF;
}
table.FPcal th{
background-color:#102A7D;
color:#FFFFFF;
height:24px;
text-align:left;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.FPcal td{
padding:1px;
background-color:#efefef;
height:24px;
}

table.FPcal td.calBtmsm{
background-color:#FFFFFF;
height:20px;
text-align:left;
}
table.FPcal td.calTopsm{
background-color:#FFFFFF;
height:20px;
text-align:center;
}
table.FPcal a.meeting{
color:#FFFFFF;
text-decoration:none;
}
table.FPcal a.meeting:hover{
color:#333333;
text-decoration:none;
}
table.FPcal a.evt{
color:#000000;
text-decoration:none;
}
table.FPcal a.evt:hover{
color:#FF0000;
text-decoration:none;
}
/* ======= END CALENDAR ======= */
/* ======= FULL PAGE CALENDAR ======= */
table.Fullcal{
width:100%;
font-size:10px;
margin:0px;
background-color:#FFFFFF;
border: #999999 solid 1px;
}
table.Fullcal tr#calTRTop{
background-color:#102A7D;
color:#FFFFFF;
height:24px;
text-align:left;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.Fullcal td{
padding:1px 1px 4px 1px;
background-color:#efefef;
height:40px;
vertical-align:top;
font-size:10px;
line-height:11px;
overflow:hidden;
}
table.Fullcal td.tdMTNG{
padding:1px 1px 4px 1px;
height:24px;
text-align:center; 
font-weight:bold;
background-color:#99CCCC; 
color:#102A7D;
border: 1px #666666 solid;
}
table.Fullcal td.tdEVNT{
padding:1px 1px 6px 1px;
height:24px;
text-align:center; 
font-weight:bold;
background-color:#FFFF66; 
color:#666666;
border: 1px #666666 solid;
}
table.Fullcal td.tdDUAL{
padding:1px 1px 6px 1px;
height:24px;
text-align:center; 
font-weight:bold;
background-color:#CCFF99; 
color:#666666;
border: 1px #666666 solid;
}
table.Fullcal td.calBtm{
background-color:#FFFFFF;
height:80px;
text-align:left;
}
table.Fullcal td.calTop{
background-color:#FFFFFF;
height:24px;
text-align:center;
vertical-align:middle;
}
table.Fullcal td#Su, td#Sa{
background-color:#afafaf;
height:20px;
text-align:center;
vertical-align:middle;
}
table.Fullcal td#Mo, td#Tu, td#We, td#Th, td#Fr{
background-color:#efefef;
height:20px;
text-align:center;
vertical-align:middle;
font-weight:bold;
}
table.Fullcal a{
color:#000000;
text-decoration:none;
}
table.Fullcal a:hover{
color:#CCCCCC;
text-decoration:none;
}
table.Fullcal a.MTNG{
color:#FFFFFF;
text-decoration:none;
}
table.Fullcal a.MTNG:hover{
color:#333333;
text-decoration:none;
}
table.Fullcal a.EVNT{
color:#666666;
text-decoration:none;
}
table.Fullcal a.EVNT:hover{
color:#DC7E27;
text-decoration:none;
}
table.Fullcal a.DUAL{
color:#666666;
text-decoration:none;
}
table.Fullcal a.DUAL:hover{
color:#333333;
text-decoration:none;
}
/* ======= END FULL PAGE CALENDAR ======= */
table.RTside{
width:100%;
font-size:10px;
margin:0px;
background-color:#FFFFFF;
}
table.RTside td{
padding: 0px;
text-align:left;
}
table.RTside th{
background-color:#835EA3;
color:#FFFFFF;
height:24px;
text-align:left;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.RTside p{
font-size:10px;
line-height:12px;
margin:0px;
}


table.LTside{
width:100%;
font-size:10px;
margin:0px;
background-color:#FFFFFF;
float:left;
}
table.LTside td{
padding: 0px;
text-align:right;
}
table.LTside th{
background-color:#835EA3;
color:#FFFFFF;
height:24px;
text-align:right;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.LTside p{
font-size:10px;
line-height:12px;
margin:0px;
}
/* -======== Donate Table ==========- */

table.Donate{
width:100%;
font-size:10px;
margin:0px;
background-color:#FFFFFF;
float:left;
}
table.Donate td{
padding: 0px;
text-align:right;
}
table.Donate th{
background-color:#5C8A41;
color:#FFFFFF;
height:24px;
text-align:right;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.Donate p{
font-size:10px;
line-height:12px;
margin:0px;
}
table.Donate button{

}
/* -========END  Donate Table ==========- */
/* -======== DonateR Table ==========- */

table.DonateR{
width:100%;
font-size:10px;
margin:0px;
background-color:#FFFFFF;
float:left;
}
table.DonateR td{
padding: 0px;
text-align:left;
}
table.DonateR th{
background-color:#5C8A41;
color:#FFFFFF;
height:24px;
text-align:left;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.DonateR p{
font-size:10px;
line-height:12px;
margin:0px;
}
table.DonateR button{

}
/* -========END  Donate Table ==========- */
/* -======== Meeting Table ==========- */

table.meetingTBL{
width:100%;
font-size:12px;
margin:0px;
background-color:#FFFFFF;
float:left;
border: 1px #cccccc solid;
}
table.meetingTBL td{
padding: 10px;
}
table.meetingTBL th{
background-color:#99CCCC;
color:#FFFFFF;
height:24px;
text-align:left;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.meetingTBL p{
font-size:12px;
margin: 4px 0px;
}
table.meetingTBL button{

}
/* -========END  Meeting Table ==========- */
/* -======== Event Table ==========- */

table.eventTBL{
width:100%;
font-size:12px;
margin:0px;
background-color:#FFFFFF;
float:left;
border: 1px #cccccc solid;
}
table.eventTBL td{
padding: 10px;

}
table.eventTBL th{
background-color:#FFFF66;
color:#DC7E27;
height:24px;
text-align:left;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.eventTBL p{
font-size:12px;
margin: 4px 0px;
}
table.eventTBL button{

}
/* -========END  Event Table ==========- */
/* -========  CONTACT TABLE ==========-  */
table.contactTBL{
table-layout:fixed;
width:100%;
font-size:10px;
margin:0px;
background-color:#FFFFFF;
border: #999999 solid 1px;
}
table.contactTBL td{
padding:0px 0px 4px 2px;
}
table.contactTBL th{
background-color:#102A7D;
color:#FFFFFF;
height:24px;
text-align:left;
font-size:16px;
padding:1px 6px 1px 6px;
}
table.contactTBL p{
margin:0px 0px 0px 10px;
font-size:10px;
}
/* ----============= end CONTACT TABLE ==============---- */
/* ----============= 2col filler TABLE ==============---- */
.tbl2col{
width:100%;
margin:0px;
}
.tbl2col td{
vertical-align:top;
text-align:left;
}
/* ----============= END 2col filler TABLE ==============---- */
ul{
font-size:12px;
margin: 5px;
}
hr{
margin:2px 0px;
}
hr.sideBar1{
float:left;
}
.purpleBTN{
background-color:#835EA3;
border: #999999 1px solid;
color:#FFFFFF;
margin:6px 0px 0px 0px;

}
.purpleBTN:hover{
background-color:#CCCCCC;
color:#999999;
}
.blueBTN{
background-color:#102A7D;
border: #999999 1px solid;
color:#FFFFFF;
margin:6px 0px 0px 0px;
}
.blueBTN:hover{
background-color:#CCCCCC;
color:#999999;
}
.greenBTN{
background-color:#5C8A41;
border: #999999 1px solid;
color:#FFFFFF;
margin:6px 0px 0px 0px;
}
.greenBTN:hover{
background-color:#CCCCCC;
color:#999999;
}
.orangeBTN{
background-color:#DC7E27;
border: #999999 1px solid;
color:#FFFFFF;
margin:6px 0px 0px 0px;
}
.orangeBTN:hover{
background-color:#CCCCCC;
color:#999999;

/* ================= */
table.picnicTotals{
border: 1px #cccccc solid;
}
table.picnicTotals th{
background-color:#EFEFEF;
text-align:center;
padding: 4px;
}
table.picnicTotals td{
text-align:center;
padding: 4px 0px;
}
table.picnicTotals td{
font-size:11px;
}
table.picnicTotals td p{
font-size:10px;
}
/* ================ */