@charset "UTF-8";
/* CSS Document */

/* Padding happens in this order: TOP, RIGHT, BOTTOM, LEFT */
/* Padding is the space inside the div box and margin is the space outside the div box */

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

/*****************************/
/*Skip Navigation on top link*/
/*****************************/
a:link.skipit { display: none;  } 
a:visited.skipit { display: none; } 
a:hover.skipit { display: none; } 


/*******************************************************/
/* SETS PAGE GEOMETRY WIDTHS, MARGINS, AND BACKGROUND */
/*******************************************************/
.twoColFixLt #container {
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0px;
	margin-bottom: 0px;
	padding-bottom: 0px;
	background-image: none;
}



.twoColFixLt #sidebar1 { display: none;  }

.twoColFixLt #mainContent {
	padding: 0 0 0 2px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0px; 
	background-color: #FFFFFF;
	width:100%;
}


/*****************************************/
/* MASTHEAD STYLES FOR SCREEN AND PRINT */
/*****************************************/
.search { display: none;  }
.masthead { display: none;  }
.masthead2 { display: block;  }
#afterschool_banner a:link {	color: #726658; background-color: #726658; text-decoration: none; }
#afterschool_banner a:hover { color: #726658; background-color: #726658; text-decoration: none; }
#afterschool_banner a:visited { color: #726658; text-decoration: none; }


/*************************/
/* TOP NAVIGARTION MENU */
/*************************/
#navigationtop { display: none;  }
#sitemenu { display: none;  }
#navlistsr { display: none;  }
#about_the_center { display: none;  }


/*****************************************/
/* LEFT-SIDE NAVIGATION */
/*****************************************/
div#nav { display: none;  }
div#nav2 { display: none;  }
div#nav3 { display: none;  }


/***********************************/
/* LEFT-SIDE NAVIGARTION HEADINGS */
/***********************************/
#sidebar1 .tocheader { display: none;  }
#sidebar1 .tocheader2 { display: none;  }
#sidebar1 .tocheader3 { display: none;  }
#sidebar1 .sidebar2 { display: none;  }


/*****************************/
/* HEADINGS */
/*****************************/
h1, h2, h3, h4 { color: #000000; }

/*****************************/
/* FOOTER */
/*****************************/
#address { font-family: Verdana, Arial, Helvetica, sans-serif;	font-size: 13px; color: #000000; display: block; }
.footer { background-color: #000000; margin: 0px 0px 0px 0px; padding: 20px 10px 3px 0px; }
.footer p { color:#ffffff; font-size:11px; padding-top: 0px; margin-left: 0px; background-color: #000000;}
.footer .fltrt { display: none;  }
.footer p .fltlft { /* this class can be used to float an element left in your page */
	float: left; margin-right: 20px; margin-top: -25px; margin-left: 10px;
}
a:link.sedl { color: #ffffff; font-size: 11px; text-decoration: none; }
a:visited.sedl { color: #ffffff; font-size: 11px; text-decoration: none; }


/*****************************/
/* BANNER ADS */
/*****************************/
#bannerad1 { display: none; } 
#bannerad2 { display: none; } 
#addthis { display: none; } 

--> 