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

body  {
	font: 70% Helvetica, Arial, Verdana, sans-serif;
	background: #000;
	margin: 15px 0 15px 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: #fff;
}
.theco #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #000;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #867257;
	text-align: left; /* this overrides the text-align: center on the body element. */
	/*background-image:url(/images/theco-bg.gif);*/
	/*background-repeat:no-repeat;*/
	background: url(/images/theco-bg2.gif) no-repeat right bottom;
}

.theco #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 122px; /* 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 */
	padding: 0 10px 0 16px;
}

.theco #nav-menu ul
{
list-style: none;
padding: 0;
margin:33px 0 0 0;
text-align:right;
} 

.theco #nav-menu li
{
padding: 1px 2px 3px 2px;
margin-bottom:2px;
text-align:right;
background-image:url(/images/nav-bg.gif);
background-repeat:no-repeat;
font-size:95%;
font-weight:bold;
}

.theco A, A:link, A:visited
{
color:#99cccd;
text-decoration:underline;
} 

.theco A:hover
{
color:#916f41;
text-decoration:underline;
}

.theco #nav-menu A, #nav-menu A:link,  #nav-menu A:visited
{
color:#000;
text-decoration:none;
} 

.theco #nav-menu A:hover
{
color:#fff;
text-decoration:none;
}
.theco #mainContent { 
	margin: -15px 15px 0 153px; /* 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. */
	width:631px;
	min-height:500px;
} 

.itemImage
{margin:28px 0 0 15px;
float:right;}

.itemImage2
{margin:0 0 0 15px;
float:right;}

.theco #footer {
	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 20px 15px 16px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:90%;
	height:40px;
}

.theco #socialLinks
{padding-top:3px;}

.theco #copy
{padding-top:27px;}

.theco .mainImg
{
height:275px;
width:631px;
}

.theco #welcome {
background-image:url(/images/welcome.jpg);
}

.theco #about {
background-image:url(/images/about.jpg);
}

.theco #programs {
background-image:url(/images/programs.jpg);
}

.theco #news {
background-image:url(/images/news.jpg);
}

.theco #schedule {
background-image:url(/images/schedule.jpg);
}

.theco #locations {
background-image:url(/images/locations.jpg);
}

.theco #contact {
background-image:url(/images/contact.jpg);
}

.theco H1
{padding:229px 0 2px 2px;
color:#fff;
font-size:370%;
}

.theco H2
{
color:#916f41;
font-size:110%;}

.theco .location
{width:200px;}

.theco .leftForm
{width:145px;
text-align:right;}

.theco .rightForm
{width:350px;
text-align:left;
padding-left:15px;}

.theco #formContainer
{width:620px;
margin-top:20px;}

.theco INPUT, TEXTAREA
{width:250px;}

.theco .button
{width:150px;}

.theco .margin10
{margin-bottom:10px;}

.theco .margin20
{margin-bottom:20px;}

.marginTop40
{margin-top:40px;}

.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;
}
