@charset "utf-8";
body {
	background: #FFF;
	margin: 0;
	padding: 0;
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.3;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing block. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the blocks, instead of the block elements themselves, gets rid of any box model math. A nested block with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #990000;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #6E6C64;
	text-decoration: underline;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: none;
	color: #666;
}
.container {
	width: 950px;
	background-color: #FFFFFF;
	background-repeat: repeat-y;
	background-image: url(images/divider.png);
	box-shadow: 4px 4px 4px #000;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #666;
	border-right-color: #666;
	border-bottom-color: #666;
	border-left-color: #666;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
}
#logo {
	position:absolute;
	width:250;
	height:90;
	z-index:1;
	margin-top: 50px;
	margin-left: 5px;
}

#nav p {
	font-size: 90%;
	color: #FFF;
	text-align: right;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 5px;
	font-weight: bold;
	margin: 0px;
}
#nav a:link, #nav a:visited {
	color: #FFF;
	text-decoration: none;
	padding: 5px;
}
#nav a:hover, #nav a:active {
	color: #CC3233;
	background-color: #FFF;
}
header {
	
	background-image: url(../images/banner.gif);
	background-repeat: no-repeat;
	height: 130px;
}

.sidebar {
	float: left;
	width: 180px;
	padding-bottom: 10px;
}

.sidebar aside {
	font-size: 90%;
}
.content {
	padding: 10px 0;
	width: 770px;
	float: right;
}
.content h1 {
	font-size: 200%;
	margin-top: 10px;
	margin-bottom: 5px;
}
.content section h2 {
	font-size: 170%;
	color: #CC3233;
	margin-top: 15px;
	margin-bottom: 5px;
}
.content .profile {
	margin-right: 25px;
	margin-bottom: 15px;
	margin-left: 25px;
	border-bottom-width: 10px;
	border-left-width: 2px;
	border-bottom-style: solid;
	border-left-style: solid;
	border-bottom-color: #cadaaf;
	border-left-color: #cadaaf;
}

.content section td, .content section th {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #AE3335;
	text-align: left;
	padding: 5px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #AE3335;
}
.content section th {
	color: #FFF;
	background-color: #AE3335;
	border-bottom-width: 3px;
	border-bottom-style: solid;
	border-bottom-color: #300;
}
.content section .cost {
	text-align: center;
	width: 75px;
}

.content section .day {
	text-align: center;
	width: 75px;
}
.content section .length {
	text-align: center;
	width: 75px;
}

.content section caption {
	font-size: 160%;
	line-height: 1.2em;
	color: #090;
	padding-bottom: 10px;
	padding-top: 20px;
	font-weight: bold;
}

.content ul, .content ol {
	margin-bottom: 30px;
	padding-top: 7;
	padding-right: 7px;
	padding-bottom: 7px;
	padding-left: 30px;
	margin-left: 30px;
	font-size: 90%;
	margin-right: 20px;
	margin-top: 0px;
}

footer {
	padding: 10px 0;
	position: relative;/* this gives IE6 hasLayout to properly clear */
	clear: both; /* this clear property forces the .container to understand where the columns end and contain them */
	color: #FFC;
	font-size: 90%;
	background-image: url(images/background.png);
	background-repeat: repeat-x;
}

/*HTML 5 support - Sets new HTML 5 tags to display:block so browsers know how to render the tags properly. */
header, section, footer, aside, article, figure {
	display: block;

}
.flt_rgt {
	float: right;
	margin-left: 10px;
}
.flt_lft {
	float: left;
	margin-right: 10px;
}
.content section {
	clear: both;
}
.ctr {
	text-align: center;
}
.container footer {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #CC3233;
	margin-left: 180px;
}

section h3 {
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #666;
	border-bottom-color: #666;
	padding-top: 12px;
	padding-bottom: 12px;
}
section ul {
	background-color: #CCC;
	padding: 7px;
}
#nav {
	background-image: url(../images/bg-menubar-red.jpg);
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #330000;
	text-align: right;
}
footer a:hover {
	text-decoration: none;
	background-color: #FFF;
}
.content section hr {
	width: 90%;
	box-shadow: 4px 4px #300;
	color: #AE3335;
}
.normal_hr {
	color: #666;
	width: 100%;
}
#logo a img {
	text-decoration: none;
}
.container #logo a:hover {
	text-decoration: none;
}
.kinder_schedule {
	background-color: #FFF;
	padding: 0px;
	margin: 0px;
}
