@charset "UTF-8";

/*-------- Start Browser reset --------*/
body  {
	margin: 0;
	padding: 0;
	text-align: center;
}
/*-------- END Browser reset --------*/
/*-------- START color classes --------*/

.green {
		color: #6C9;

}
/*-------- END color classes --------*/
/*-------- Start content --------*/
body  {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #ccc;
	background-image: url(../images/main_bg.jpg);
	background-repeat: no-repeat;
	background-position: left top;
}
#container {
	width: 900px;
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left;
} 
#outterWrapper {
	background-image: url(../images/background-shadow.png);
	background-repeat: repeat-y;
	background-position: center center;
	width: 1000px;
	overflow: hidden;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;

}
#contentWrapper {
	min-height: 500px;
	margin: 0px;
	padding: 0px;
}

/*-------- END content --------*/
/*-------- Start header --------*/
#header {
	background-image: url(../images/head_bg.png);
	background-repeat: no-repeat;
	background-position: 460px top;
	height: 176px;
	width: 940px;
} 
#header div h1 {
	background-image: url(../images/tch_logo.gif);
	background-repeat: no-repeat;
	text-indent: -9999px;
	height: 92px;
	background-position: left top;
	width: 528px;
	margin-bottom: 5px;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
}


/*-------- END header --------*/
/*-------- Start Navigation --------*/

#mainNav {
	height: 30px;
	width: 100%;
	background-image: url(../images/nav-bg.jpg);
	background-repeat: repeat-x;
	background-position: center center;
}
#mainNav ul {
	list-style-type: none;
	display: inline;
	margin-right: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-left: 0px;
}
#mainNav ul li {
	display: inline;
	padding-right: 0em;
	padding-left: 0em;
}
#mainNav ul li a {
	text-decoration: none;
	font-family: "Arial Black", Gadget, sans-serif;
	color: #000;
	padding-right: 1em;
	padding-bottom: 0px;
	padding-left: 1em;
}
#mainNav ul li a:link {
    color: #000;
}
#mainNav ul li a:visited {
	color: #000;
}
#mainNav ul li a:hover {
	color: #060;
}
#mainNav ul li a:active {
	color: #000;
}
/*-------- END Navigation --------*/

/*-------- Start left --------*/

#sidebar1 {
	float: left;
	width: 200px;
	background-color: #6C9;
	margin: 0px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
}
#sidebar1 h3 {
	text-align: center;
}

/*-------- END left --------*/

#mainContent { 
	margin: 0 0 0 250px; /* 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. */
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
/*-------- Start footer --------*/

#footer {
	background:#999;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#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 */
	text-align: center;
	font-size: x-small;
	color: #333;
}
#footer a {
	text-decoration: none;
	color: #060;
}
/*-------- END footer --------*/

.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;
}
.bold {
	font-weight: bold;
}
