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: 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;
background-image:url('http://www.mffk.org/images/bg2.jpg');
background-repeat: repeat-x;
background-position: bottom center;
background-attachment:fixed;
}

p{ margin-top:0; }
h1,h2,h3{ font: normal normal 200% "Trebuchet MS",Arial,sans-serif; margin:0; padding:0;  }
h2{font-size:160%; font-weight: bold; margin:0; padding:0; }
h3{ font-size:120%; margin:0; padding:0;}

.thrColElsHdr #container { 
width: 60em;
background: #FFFFFF;
margin: 10px auto 10px 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 {
padding: 0 10px;  /* 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. */
background: #fff;
}

.thrColElsHdr #sblabels{
margin: 0;
padding: 5px 0 25px 0;
text-align: center;
height: 45px;
}
#sblabels #leftH3{ right: 0; margin-left: 30px; }
#sblabels #rightH3{ left: 0; margin-right: 30px; }
.thrColElsHdr #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 */
}


/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be 

adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be 

added to the width for standards compliant browsers creating an unknown actual width.
3. Space between the side of the div and the elements within it can be created by placing a left 

and right margin on those elements as seen in the ".thrColElsHdr #sidebar1 p" rule.
*/
.thrColElsHdr #sidebar1 {
margin: 0 auto;
float: left;
width: 14.5em; /* since this element is floated, a width must be given */
text-align: center;
padding: 0 0 15px 0; /* top and bottom padding create visual space within this div */
}
.thrColElsHdr #sidebar2 {
margin: 0 auto;
float: right;
width: 14.5em; /* since this element is floated, a width must be given */
text-align: center;
padding: 0 0 15px 0; /* top and bottom padding create visual space within this div */
}
.thrColElsHdr #sidebar2 .dlhdr{ text-align: center; }
/* 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: 20px 15em 0 15em; /* the right margin can be given in ems or pixels. It creates the space 

down the right side of the page. */
}


#mainContent p, #mainContent .faq{
text-align: justify;
line-height: 1.5em;
margin: 0 auto;
}

#mainContent p{
margin-bottom: 17px;
}

.thrColElsHdr #footer {
padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
background: #EEEEEE;
text-align: center;
border:1px dashed #DDDDDD;
}
.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 */
}

.thrColElsHdr #footer p .fnote
{  
   font-size: 14px; 
   color: #333333; 
}
.thrColElsHdr #footer p .fpipe
{
   font-size: 14px; 
   color: #333333
   padding:0 3px;
}

/* Miscellaneous classes for reuse */
.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;
}


/*Credits: Dynamic Drive CSS Library MENU START */
/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.underlinemenu{
margin: 15px 0 8px 0;
font-weight: bold;
width: 100%;
}

.underlinemenu ul{
padding: 6px 0 7px 0; /*6px should equal top padding of "ul li a" below, 7px should equal bottom 

padding + bottom border of "ul li a" below*/
margin: 0;
text-align: center; //set value to "left", "center", or "right"*/
}

.underlinemenu ul li{
display: inline;
}

.underlinemenu ul li a{
color: #494949;
padding: 6px 3px 4px 3px; /*top padding is 6px, bottom padding is 4px*/
margin-right: 20px; /*spacing between each menu link*/
text-decoration: none;
border-bottom: 3px solid gray; /*bottom border is 3px*/
}

.underlinemenu ul li a:hover, .underlinemenu ul li a.selected{
border-bottom-color: black;
}

.eventbox ul{
margin: 0;
padding: 0;
}

.eventbox ul li{
position: relative;
margin:5px auto;
height: 30px;
}


/* Sub level menu links style */
.eventbox ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: black;
background: #fff;
padding: 1px 0 1px 15px;

border-bottom: 0;
font-size: 0.8em;
}

.eventbox ul li a:visited{
color: black;
}

.eventbox ul li a:hover{
background-color: yellow;
}

/* Holly Hack for IE \*/
* html .eventbox ul li { float: left; height: 1%; }
* html .eventbox ul li a { height: 1%; }
/* End */
/* Credits: Dynamic Drive CSS Library MENU END */
/* gallery/profiles display */

a { text-decoration: none; }
/* display end */

.faq h2{
font-size: 1em;
margin: 10px auto;
}

.divider{
margin: 20px auto;
}
.error-status{
text-align: center;
margin: 0 auto;
}
#intro{
height: 300px;
}
#sidebar1 h3, #sidebar2 h3{ font-size: 1em;  }
.nav{ margin: 0 auto; font-size: 1em; text-align: center; }
#event-listings{ margin:0 auto; text-align: left; }
#eventhd{ margin:20px auto 25px auto;text-align:center;text-decoration:underline; }
/* --------------------------------------------------- */

dl {
font-family: Georgia, serif;
font-size: small;
width: 214px;
margin: 0 auto 15px auto;
padding: 0;
font-size: 1em;
font-weight: 300;
}
.polaroid{
font-family: Georgia, serif;
font-size: small;
width: 200px;
margin: 0 auto 15px auto;
padding: 0;
background: #E3A1C4;
border: 1px solid #222222;
}
.polaroid img{ border: 1px solid #222222; }
.polaroid dt{ margin-bottom: 0; font-weight: strong; }
.polaroid dt div{ padding:4px 8px; border: 1px solid #C0C0C0; }
.polaroid dd{ margin: 7px auto 0 auto; }

dl.dlhdr{ margin-top:15px; background: transparent; }
dl.dlhdr dt { padding: 5px;  }
dl.dlhdr dd { padding: 0; height: 1px; }
dt {
margin: 0 0 10px 0;
padding: 10px;
color: #fff;
border-bottom: 1px solid #fff;
}

dd {
margin: 0 0 0 10px;
padding: 0 10px 10px 10px;
color: #666;
}

dl.blue dt {
background-color: #69c;
}

dl.blue {
background-color: #9cf;
}

dl.red dt {
background-color: #933;
}

dl.red {
background-color: #D7002B;
}

dl.orange{
background-color: #FFE084;
}

dl.orange dt {
background-color: #FFD24A;
}

dl.green dt {
background-color: #5E8C2F;
}

dl.green {
background-color: #8FC758;
}

/* BREAD CRUMBS CSS */
.breadcrumbs { margin: 5px auto; }
.breadcrumbs li.buttons { float: left;}

.breadcrumbs ul{
list-style-type: none;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 10px;
padding: 5px;
margin: 0px;
}

.breadcrumbs ul a {
margin: 0px;
height: 20px;
padding: 0px 0px 0px 0px;
float: left;
display: block;
text-align: center;
text-decoration: none;
color: #000;
background: #ccc;
}

.breadcrumbs ul a:hover {
background: #dddddd;
}

.breadcrumbs .stepArrow {
position:inherit;
display:inline;
margin-top: 0px;
margin-bottom: 0px;
}
.column{
margin:0 auto;
width: 170px;
height:200px;
background: #D5F1FF;
padding-top: 6px;
}
.column ul{ margin: 15px 0 0 25px; padding: 0; list-style-type: square; }
.column ul li{ margin: 15px auto; }
.column ul li a{ font-size: 0.8em; }
.e-entry{ padding: 13px 0 0 0; }
.e-entry a{
display: block;
padding: 8px auto;
text-indent:6px;
margin: 0 auto 7px auto;
font-size: 0.7em;
background: #ffffff;
border-left: 2px solid #D5F1FF;
border-right: 2px solid #D5F1FF;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.wireframemenu{
margin: 3px auto 12px auto;
background-color: #ffffff;
border-bottom-width: 0;
width: 204px;
font-size: 0.8em;
border: 1px solid #333333;
}

* html .wireframemenu{ /*IE only rule. Original menu width minus all left/right paddings */
width: 204px;
}

.wireframemenu .fieldLabel{
background: #FFD57D;
text-indent: 5px;
border: 1px solid #000;
}

.wireframemenu .fieldInfo{
padding-top: 2px;
padding-bottom: 5px;
text-indent: 5px;
}

.wireframemenu ul{
padding: 0;
margin: 0;
list-style-type: none;
}

.wireframemenu ul li{
margin: 0 auto 4px auto;
}

.wireframemenu{
padding: 4px 3px;
}
.wireframemenu a{
display: block;
width: 100%; /*Define width for IE6's sake*/
color: #595959;
text-decoration: none;
}

.wireframemenu a:visited{
color: #595959;
}

html>body .wireframemenu a{ /*Non IE rule*/
width: auto;
}

.wireframemenu a:hover{
background-color: #F8FBBD;
color: black;
}

div#col2 .box{
background: #99CCFF;
border:1px solid #000000;
width: 204px;
margin: 10px auto 0 auto;
padding: 0;
}

div#col2 .box .boxInner h3{
background: #6699CC;
text-transform: uppercase;
margin: 0 0 8px 0;
padding: 5px 0;
text-align: left;
color: #FFFFFF;
font-size: 0.8em;
padding: 3px 3px 3px 5px;
}

div#col2 .box .boxInner .dataLabel{
font-size: 0.9em;
background: #F8D05D;
border-top: 1px solid #F8C32B;
border-bottom: 1px solid #F8C32B;
color: #000000;
font-weight: 300;
}
div#col2 .box p { text-indent: 3px; margin:0; padding: 4px 0 7px 6px; font-size: 0.8em; }
div#col2 .box .more { margin: 0 auto; font-size: 0.8em; text-align: center; }
div#col2 .box .boxInner .ebutton{
width: 5px;
height: 5px;
border: 1px solid #000000;
color: transparent;
background: #F8C327;
padding: 2px;
margin: 5px 8px auto 2px;
float: left;
}

#imgbg{
  height: 100%;
  left: 0px;
  bottom: 0px;
  position: absolute;
  width: 100%;
  z-index:-100;
}

#mainContent #services{
   margin:0 auto;
   width: 90%;
}

#mainContent #services li {
     margin: 10px auto;
} 

#mainContent #services ul, #mainContent #services ol{
   margin: 0 auto 0 35px;   
}

#mainContent  #services h2{
font-size: 1em;
margin-bottom: 10px;
text-align: justify;
}

#mainContent .box{
background: #FFFFFF;
border:1px solid #000000;
width: 95%;
margin: 10px auto 0 auto;
padding: 0;
}

#mainContent .box .boxInner h3{
background: #FFFFFF;
text-transform: uppercase;
margin: 0 0 8px 0;
padding: 5px 0;
text-align: left;
color: #FFFFFF;
font-size: 0.8em;
padding: 3px 3px 3px 5px;
}

#mainContent .box .boxInner .dataLabel{
font-size: 0.9em;
background: #FEFAE2;
border-top: 1px solid #FDF2B5;
border-bottom: 1px solid #FDF2B5;
color: #000000;
font-weight: 300;
text-indent: 7px;
}

#mainContent .box p { 
text-indent: 10px; 
margin:0; 
padding: 4px 0 7px 6px; 
font-size: 0.8em; 
}

#mainContent .box .einfo p{ 
text-indent: 10px; 
margin: 0; 
padding: 10px; 
font-size: 0.8em; 
}

#mainContent .box .more { margin: 0 auto; font-size: 0.8em; text-align: center; }
#mainContent .box .boxInner .ebutton{
width: 5px;
height: 5px;
border: 1px solid #000000;
color: transparent;
background: #F8C327;
padding: 2px;
margin: 5px 8px auto 2px;
float: left;
}

ul.paging
{
	margin:0px;
	padding:0px;
	list-style:none;
}
ul.paging li
{
	margin:0px;
	padding:0px;
	float:left;
}
ul.paging li a
{
	float:left;
	padding:5px;
	margin-right:5px;
	border:solid 1px #0647DF;
	text-decoration:none;
	background:#FFFFFF;
	color:#0647DF;
}
ul.paging li.paging-active a, ul.paging li a:hover
{
	background: #0647DF;
	color:#FFFFFF;
}
ul.paging li.paging-disabled a, ul.paging li.paging-disabled a:hover
{
	cursor:default;
	background:#FFFFFF;
	border:solid 1px #BBBBBB;
	color:#BBBBBB;
}
ul.paging li.paging-current
{
	padding:5px;
	margin-right:5px;
	border:solid 1px #0647DF;
	background:#FFFFFF;
	color:#0647DF;
}
/* --------- GALLERY ---------- */
#gallery{
  margin: 0 auto;
  width: 100%;
}
#gallery .thumb {
  background: #F0E6BD;
  margin: 0 0 10px 0;
  border-top: 2px solid #E3E2DF;
  border-left: 2px solid #E3E2DF;
  border-right: 2px solid #C7C4BC;
  border-bottom: 2px solid #C7C4BC;
  height: auto;
  width: 100%;
}

#gallery .thumb .image{
  padding: 6px;
  border-top: 1px solid #DFD9CE;
  border-left: 1px solid #DFD9CE;
  border-right: 2px solid #B5B0A6;
  border-bottom: 2px solid #B5B0A6;
  background: #F7F5F2;
  margin: 0 auto;
  width: 108px; 
}

#gallery .thumb .col1{ width: 28%; }
#gallery .thumb p{ padding: 7px 11px 7px 7px;}
#gallery .thumb .aboutchild{ background: #FDFBF4; }

#gallery .thumb .image img{ 
  border: 1px solid #C7C4BC; 
  margin:0 auto; 
  text-align: center;
  padding: 3px;
}
#gallery .thumb a:hover img { border: 1px solid #C7C4BC; }
#gallery .thumb .col2{ height: 26px; background: #FFFFCC; }
#gallery .thumb .col2 div.phototitle {
  text-align: left;
  font-weight: bold;
  height: 20px;
  border-bottom: 1px solid #000;
  padding: 4px 0 4px 6px; 
}
#pagedcontent{ padding: 50px 0; min-height: 300px;}
.edates{ font-size: 1em; color:#515100; font-weight: bold; margin:0 auto; text-align: center; }
.edetails h3, .edetails div p{
  margin:0 auto; 
  text-align: center;
  font-size: 1em;
}
.edetails h3{
 font-weight: 600;
}
.edetails .edates{
   margin: 0;
   padding: 5px;
}
#mainContent #article p{
  text-indent: 15pt;
}
.divider{
  padding: 10px 0;
  vertical-align: middle;
  margin: 0 auto;
  text-align: center;
}
.event .title{ margin-right: 10px; padding: 2px; text-align: left; background: lightblue; }
.event .labelCol{ width: 10%; }
.event .label{ padding: 2px; text-align: right; }
.event .data{ padding-left: 5px; }
.details .label{ margin-top: 20px; padding: 3px 3px 3px 10px; background: lightblue; text-align: left; }
.details p{ padding: 3px; text-align: justify; }

.slideshow { width: 457px; height: 250px; margin:0 auto 35px auto; overflow: hidden; border: 5px solid #CC99CC; background-color: #CC99CC; }
.slideshow img { border: 1px solid #000000;  }

#banner{ margin-left:-10px; }

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.markermenu{
width: 170px; /*width of menu*/
text-align: left;
margin:0 auto;
}

.markermenu ul{
list-style-type: none;
margin: 5px auto;
padding: 2px;
background: #EEEEEE;
border: 1px solid #000000;
}

.markermenu ul li a{
font: bold 13px "Lucida Grande", "Trebuchet MS", Verdana, Helvetica, sans-serif;
color: #00014e;
display: block;
width: auto;
padding: 3px 0;
padding-left: 20px;
text-decoration: none;
border-bottom: 1px solid #B5B5B5;
}

* html .markermenu ul li a{ /*IE only. Actual menu width minus left padding of LINK (20px) */
width: 150px;
}

.markermenu ul li a:visited, .markermenu ul li a:active{
color: #00014e;
}

.markermenu ul li a:hover{
color: black;
background-color: #ffffcb;
}

.profile { width: 480px; background: #F7F0F0; margin:0 auto 20px auto; text-align: center; }
.profile img{ border: 1px solid #707070; margin:10px auto 5px auto; text-align: center; }

.info{
    background: #F7F0F0;
    border-bottom: 2px solid #D4D4D4;
    text-align: justify;
    margin:0 auto;
    color: #000;
    text-decoration: none;
    padding: 3px 10px;
}


/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.feedbackform{
padding: 5px;
margin: 40px auto 75px auto;
border:solid 1px #C8C8C8;
background: #FFFFEA;
padding: 20px;
}

div.fieldwrapper{ /*field row DIV (includes two columns- Styled label column and 'thefield' column)*/
width: 550px; /*width of form rows*/
overflow: hidden;
padding: 5px 0;
margin:0 0 20px 0; 
}

div.fieldwrapper label.styled{ /* label elements that should be styled (left column within fieldwrapper DIV) */
float: left;
width: 150px; /*width of label (left column)*/
text-transform: uppercase;
border-bottom: 1px solid  #3399CC;
margin-right: 15px; /*spacing with right column*/
text-align: right;
}

div.fieldwrapper div.thefield{ /* DIV that wraps around the actual form fields (right column within fieldwrapper DIV) */
float: left;
margin-bottom: 10px; /* space following the field */
}

div.fieldwrapper div.thefield input[type="text"]{ /* style for INPUT type="text" fields. Has no effect in IE7 or below! */
width: 250px;
}

div.fieldwrapper div.thefield textarea{ /* style for TEXTAREA fields. */
width: 300px;
height: 150px;
}

div.buttonsdiv{ /*div that wraps around the submit/reset buttons*/
margin-top: 5px; /*space above buttonsdiv*/
}

div.buttonsdiv input{ /* style for INPUT fields within 'buttonsdiv'. Assumed to be form buttons. */
width: 80px;
background: #e1dfe0;
margin-right: 21px;
}

#shirtsize, #gender, #state, #maritalstatus{
width: 253px;
height: 25px;
font-size: 1em;
}

.usrerr{
  padding: 4px;
  width: 244px; 
  background: #FFD9D9;
  color: #000000;
  font-weight: 500;
  font-size: 0.9em;
  padding-left: 8px;
  margin-left: 165px;
  border: 1px solid #6A0000;
}

/* --------------------------------- */
/*MESSAGE BOX CLEAN	serie	  		 */
/*CONTAINER		  					*/
        #container{
	        margin: 40px auto;
	        width: 450px;
        }
	.clean-ok{
		border:solid 1px #349534; 
		background:#C9FFCA;
		color:#008000;
		font-weight:bold;
		padding:4px;
		text-align:center;
                font-size: 1.3em;
                width: 450px; 
	}
	.clean-error{
		border:solid 1px #CC0000; 
		background:#F7CBCA;
		color:#CC0000;
		font-weight:bold;
		padding:4px;
		text-align:center;
                font-size: 1.3em;
                width: 450px;
	}
.alert{ width:100%; text-align: center; font-size: 1.3em; margin-left: -1px; } 
#message{ width:250px; }