/* -------- GLOBAL STYLES AND STYLES TO ZERO OUT BROWSER DEFAULTS --------*/


h1, h2, h3, h4, p, ul, li, img, body {
	margin: 0;
	padding: 0;
	border: 0;
}

body {
	font: 100% Geneva, Arial, Helvetica, sans-serif;
	color: #000;
	background: #FFF;
	text-align: center;
}

a {
	color: #6c2d07;
	text-decoration: none;
}

/* -------- CONTAINER ORGANIZES LAYOUT AND ALLOWS FOR EASY CENTERING --------*/

 #container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}

/* -------- HEADER STYLES --------*/

#header h1 span {
	position: absolute;
	top: -10000px;
}

/* -------- MAIN NAVIGATION STYLES --------*/

#main-nav {
	background: #fff;
}

#main-nav img {
	vertical-align: top;
}

/* -------- SIDEBAR HOLDS IMAGE COLUMN --------*/

#sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 230px;
}

/* -------- MAIN CONTENT STYLES FOR ONE COLUMN PAGES --------*/

#one-col #mainContent {
	margin-top: 40px;
	margin-left: 66px;
	padding-top: 20px;
	padding-bottom: 20px;
	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	margin-right: 145px;
}

/* -------- MAIN CONTENT CUSTOM MARGINS FOR GALLERY --------*/

#gallery #mainContent {
	margin-top: 40px;
	margin-left: 66px;
	padding-top: 20px;
	border-top: 1px solid #CCCCCC;
	margin-right: 100px;
}

/* -------- MAIN CONTENT AND SECTION2 STYLES FOR ALL PAGES --------*/

#mainContent h2, #section2 h2 {
	color: #6c2d07;
	font-size: 1em;
}
#mainContent p, #section2 p {
	font-size: 0.75em;
	margin-bottom: 10px;
	line-height: 1.4;
}

#mainContent li, #section2 li {
	font-size: 75%;
	list-style: square inside;
}

/* -------- SECTION STYLES --------*/

#section1 {
	padding-top: 20px;
	padding-bottom: 10px;
	border-top: 1px solid #C0C0C0;
	border-bottom: 1px solid #C0C0C0;
	margin: 35px 100px 20px 66px;
}
#section2 {
	border-top: 1px solid #C0C0C0;
	margin-top: 20px;
	padding-top: 20px;
}

/* -------- FOOTER STYLES FOR ALL PAGES --------*/

#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 0.6em;
	padding-top: 40px;
	padding-right: 0;
	padding-left: 0;
}

#footer a  {
	color: #6c2d07;
	text-decoration: none;
	line-height: 1em;
}

/* --------STYLES FOR THE INSTRUCTOR TABLE. --------*/

#instructors td {
	text-align: center;
	padding-right: 5px;
}
#instructors table {
	width: 276px;
}

/*-------- SCHEDULE TABLE STYLES  ----------*/

table#sched {
	border-collapse: collapse;
	margin-bottom: 20px;
	margin-top: 20px;
	margin-left: 20px;
}

table#sched td {
	text-align: left;
	padding: 5px 10px;
	vertical-align: top;
	font: 67% Geneva, Arial, Helvetica, sans-serif;
}

table#sched th {
	text-align: left;
	padding: 5px;
	width: 90px;
	vertical-align: top;
	font: bold 80% Geneva, Arial, Helvetica, sans-serif;
}

.days-week {
	color: #6c2d07;
}

.border-sched {
	border-bottom: 1px solid #999;
}

/*-------- RULES FOR ADDING BORDERS TO TOP AND BOTTOM OF P OR DIV  ----------*/

.lite-border-bottom {
	border-bottom: 1px solid #999;
	padding-bottom: 10px;
}

.lite-border-top {
	border-top: 1px solid #999;
	padding-top: 20px;
}

/* -------- STYLES FOR IMAGES --------*/
 
 
.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: 10px;
	margin-bottom: 10px;
}

.imgtop {
	margin-top: 20px;
}

/* -------- CLEARING CLASS STOPS FLOAT EFFECTS AND PREVENTS PAGE AREA OVERLAPS --------*/

.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;
}
.instructor-img p {
	font: 75% Geneva, Arial, Helvetica, sans-serif;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 5px;
	padding-bottom: 10px;
}
.instructor-img {
	float: left;
	width: 65px;
	border: 0;
}
#mainContent h3 {
	font-size: .9em;
	color: #723611;
}

