@charset "utf-8";
/* CSS Document */
<!-- 
* { 
	margin: 0;
	padding: 0;
}
body  {
	background: #FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0; 
	padding: 0;
	text-align: center; 
	color: #252525;
}
p { font-size: 12px; }
img { border-style: none; }
h1 {
	font-family: Arial, Helvetica, sans-serif;
	color: #9CCE0A;
	text-decoration: none;
	font-variant:small-caps;
	font-size: 2em;
}
h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: #CE056D;
	text-decoration: none;
	font-variant: small-caps;
	font-size: 1.5em; 
}
h3 {
	font-family: Arial, Helvetica, sans-serif;
	color: #5DC2BE;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 1.25em;
}
h4 {
	font-family: Arial, Helvetica, sans-serif;
	color: #CE056D;
	text-decoration: none;
	font-variant: small-caps;
	font-style: oblique;
	font-size: 1em;
}	
a {display: inline;}
a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: inherit;
	text-decoration: none;
	color: #CE056D;
	font-weight: 800;
	text-transform: uppercase;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: inherit;
	text-decoration: underline;
	color: #CE056D;
	font-weight: 800;
	text-transform: uppercase;
}
a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: inherit;
	text-decoration: none;
	color: #9CCE0A;
	font-weight: 800;
	text-transform: uppercase;
}
a:visited:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: inherit;
	text-decoration: underline;
	color: #9CCE0A;
	font-weight: 800;
	text-transform: uppercase;
}
.thrColElsHdr #container {
	background: #FFF;
	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. */
} 
.thrColElsHdr #header { 
	background: #FFF; 
	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. */
} 
.thrColElsHdr #header h1 {
	margin: 0; 
	padding: 10px 0; 
}
.thrColElsHdr #sidebar1 {
	float: left; 
	width: 144px; 
	background: #FFF; 
}
.thrColElsHdr #sidebar2 {
	float: right; 
	width: 115px; 
	background: #FFF; 
}
.thrColElsHdr #sidebar1 h3, .thrColElsHdr #sidebar1 p, .thrColElsHdr #sidebar2 p, .thrColElsHdr #sidebar2 h3 {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
.thrColElsHdr #mainContent {
 	margin: 0 12em 0 12em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
	padding: 0px 10px 5px 15px;
} 
.thrColElsHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#FFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	color: #252525;
} 
.thrColElsHdr #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-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	color: #252525;
}
.thrColElsHdr #footer a:link, a:hover, a:visited {
	display: inline;
	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-family: Arial, Helvetica, sans-serif;
	font-size: inherit;
	color: #252525;
	text-decoration: none;
}
.thrColElsHdr #footer a:visited:hover {
	display: inline;
	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-family: Arial, Helvetica, sans-serif;
	font-size: inherit;
	color: #252525;
	text-decoration: underline;
}
/* Miscellaneous classes for reuse */
.fltright { /* 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;
}
.fltleft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}

.fltright p, .fltleft p {
  	text-align: center;
	font-style: italic;
	font-size: .8em;
	text-indent: 0;
}
.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;
}
#greenbar {
	background: url(../images/green_bar.png) 0 0 repeat-x;
	height: 26px;
	width: 100%;
	margin: 0;
	padding: 0;
}
#navbar {   
    background: url(../images/butterfly_sprite.jpg)  0 0 no-repeat;   
    width: 144px;   
    height: 372px;   
    margin: 0;   
    padding: 0;   
}
#navbar li span { display: none; } 
#navbar li { 
	float: left;
	list-style: none;
	position: relative; 
}   
/*navbar*/  
#navbar li, #navbar a {   
    height: 62px;    /* Each button must have the same height!! */  
    display: block;   
    margin: 0;   
    padding: 0;   
    } 
li#home, li#who, li#where, li#help, li#events, li#contact { margin: 0; width: 144px; }
#home a:hover { background: url(../images/butterfly_sprite.jpg) -144px  -0px no-repeat; }   
#who a:hover { background: url(../images/butterfly_sprite.jpg) -144px  -62px no-repeat; }   
#where a:hover { background: url(../images/butterfly_sprite.jpg) -144px  -124px no-repeat; }   
#help a:hover { background: url(../images/butterfly_sprite.jpg) -144px  -186px no-repeat; }   
#events a:hover { background: url(../images/butterfly_sprite.jpg) -144px -248px no-repeat; } 
#contact a:hover { background: url(../images/butterfly_sprite.jpg) -144px -310px no-repeat; } 
/*text adjustor*/
#textSize {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #AEAEAE;
}
#textSize a:link, a:hover, a:visited {
	font-family: Arial, Helvetica, sans-serif;
	color: #9CCE0A;
	text-decoration: none;
}
.adjustcontainer {
    min-height: 25px;
    display: table-cell;
    vertical-align: middle 
}
#mission {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: 700;
	font-style: oblique;
	font-variant: small-caps;
	border: 3px #5DC2BE solid;
	width: 80%;
	text-align: justify;
	padding: 10px;
	color:  #4A605F;
}
#board { 
	background: bottom right url(../images/single_butterfly.jpg) no-repeat;
	border: 3px solid #CE056D; 
	padding: 10px; 
	width: 300px; 
	height: auto;
	text-align: justify;
	font-family: Arial, Helvetica, sans-serif;
	font-style: oblique;
	font-weight: bold;
	color: #4A605F;
	font-weight: 500;
}
/*************Calendar container classes**********************/
#makecalendar {
	width: 312px;
	float: left;
	height: auto;
	}
#makeCalendar a:link, a:hover {
	color: #CE056D; 
	text-decoration: none;
	}		
#makeCalendar a:visited {
	color: #9CCE0A; 
	text-decoration: none;
	}			
#makeCalendar a:active {
	color: #9CCE0A; 
	text-decoration: none;
	}
#displayCalendar {
	width: 318px;
	margin-right: 10px;
	height: auto;
	border: 3px solid #CCFFFF;
	float: left;
	}
#eventDays {
	background: bottom right url(../images/single_butterfly.jpg) no-repeat;
	float: left;
	width: 300px;
	min-height: 250px;
	border: 3px solid #CE056D;
	padding: 10px;
}
#eventDays p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: larger;
	color: #252525;
	font-weight: 700;
	line-height: 1.25em;
}
#eventDays h1 {
	font-family: Arial, Helvetica, sans-serif;
	color: #9CCE0A;
	font-variant: small-caps;
	font-size: large;
}
#volApp {
	font-family: Arial, Helvetica, sans-serif;
	color: #252525;
}
#volApp input {
	font-family: Arial, Helvetica, sans-serif;
	font-style: oblique;
	font-size: 12px;
	border: 1px solid #9CCE0A;
	margin: 5px;
}
#volApp .textInput {
	width: 320px;
	height: 25px;
}
#volApp .tCity, .tZip {
	width: auto;
	height: 25px;
}
#volApp .select {
	font-family: Arial, Helvetica, sans-serif;
	font-style: oblique;
	font-size: 12px;
	border: 1px solid #9CCE0A;
	margin: 5px;
	width: auto;
	height: 25px;
}
#volApp textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-style: oblique;
	font-size: 12px;
	border: 1px solid #9CCE0A;
	width: 25%;
	margin: 5px;
	width: 320px;
	height: auto;
}
#volApp .button {
	background: #FFFFFF;
	width: 100px;
	height: 25px;
	font-family: Arial, Helvetica, sans-serif;
	color: #252525;
	border: 1px solid #9CCE0A;
}
#valError p {
	color: #FF0000;
	font-size: larger;
	font-weight: bold;
	width: 300px;
	height: auto;
	padding: 10px;
}
/*----Contact form ----*/
#contactForm {
	font-family: Arial, Helvetica, sans-serif;
	color: #252525;
}
#contactForm input {
	font-family: Arial, Helvetica, sans-serif;
	font-style: oblique;
	font-size: 12px;
	border: 1px solid #5DC2BE;
	margin: 5px;
}
#contactForm .textInput {
	width: 320px;
	height: 25px;
}
#contactForm .select {
	font-family: Arial, Helvetica, sans-serif;
	font-style: oblique;
	font-size: 12px;
	border: 1px solid #5DC2BE;
	margin: 5px;
	width: auto;
	height: 25px;
}
#contactForm textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-style: oblique;
	font-size: 12px;
	border: 1px solid #5DC2BE;
	width: 25%;
	margin: 5px;
	width: 320px;
	height: auto;
}
#contactForm .button {
	background: #FFFFFF;
	width: 100px;
	height: 25px;
	font-family: Arial, Helvetica, sans-serif;
	color: #252525;
	border: 1px solid #5DC2BE;
}
/*---- dynamic div ---- */
#logX {
	width: 300px;
	height: auto;
	font-family: Arial, Helvetica, sans-serif;
	color: #FF0000;
	font-size: larger;
}
--> 

