@charset "utf-8";
body  {
	font: 100% Trebuchet MS, Verdana, Arial, Helvetica, sans-serif;
	text-align: left;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
}

/* primary CCC formatting style */

.CCCstyle #container { 
	width: 1000px;  /* using 24px less than a full width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
} 
.CCCstyle #header {
	overflow: auto;  /* clears floats */
} 
.CCCstyle #header .left {
	float: left;
	width: 25%;
}
.CCCstyle #header .right {
	float: right;
	width: 25%;
}
.CCCstyle #header .middle {
	margin: 0 33% 0 33%;
	text-align: center;
}
.CCCstyle #sidebar1 {
	float: left; /* since this element is floating, a width must be given */
	width: 200px; /* 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 */
	height: auto;
/*    height: 2010px; */
	padding: 0 0 0 15px; /* indent menu options a little */
    background-color: #FFFF99;
}
.CCCstyle #sidebar1 h3 {
	margin: 0;
	padding: 15px 0 5px 0;
}
.CCCstyle #sidebar1 ul {
	font-size: 0.9em;
	font-weight: bold;
	margin: 0;
	padding: 0 0 0 10px;
	list-style: none;
}
.CCCstyle #sidebar1 li {
	padding: 1px;
}
.CCCstyle #sidebar1 a {
	text-decoration: none;
	cursor: pointer;
}
.CCCstyle #mainContent {
    height: 1400px;
}
.CCCstyle #mainFrame {
	margin: 10px 0 0 10px; /* 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. */
/*	margin: 0;*/
}
.CCCstyle #footer {
    margin: 0;
} 
.CCCstyle #footer img {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0;
}
.CCCstyle #footer p {
    font-size: smaller;
    text-align: center;
}


/* additional formatting classes */

.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: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 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 fully contains a float */
	clear: both;
    height: 0;
    font-size: 1px;
    line-height: 0px;
}
.buffer { /* this class hides iframes which are used to hold collapsable menus */
	visibility: hidden;
	width: 0;
	height: 0;
}


/* other decorations */

.holder {
	border: 1px none #000000;
	layer-background-image: url(images/shamrock02.jpg);
}
.sticker {
	margin: 0;
	padding: 0;
    background-color: #FFFF99;
	layer-background-color: #FFFF99;
}
.sticker h2 {
	margin: 10px 0 0 10px;
}
.weekday {
	font-weight:bold;
	text-align:center;
}
.date {
	margin: 0 0 10px 0;
	padding: 0 10px 0 0;
	font-weight:bold;
	text-align:right;
	background-color: #99CCFF;
}
.menu {
	margin: 0 0 5px 0;
	font-size: smaller;
}
.snack {
	margin: 0 0 5px 0;
	font-size: smaller;
	color: #009933;
}
