body {
	background-color: #003333;
	padding: 10px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	text-align: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	line-height: 12pt;
}
/* 	color: #532423; */
a:link {
	font-family: tahoma, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #0000ff;
	text-decoration: underline;
}

a:visited {
	font-family: tahoma, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	color: #0000ff;
	text-decoration: underline;
	}

a:hover {
	color: #532423;
	font-family: tahoma, Arial, Helvetica, sans-serif;
	font-style: normal;
	font-weight: normal;
	text-decoration: none;
	background-color: #f5f1db;
	border: 1px solid #006666;
}
/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #MainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

 div#container {
	width: 880px; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	margin-top:0px;
	margin-left: auto;/* the auto margins (in conjunction with a width) center the page;  */
	margin-bottom:10px;
	margin-right: auto;
}
 div#header {
	width: 880px;
	background-color: #F5F1DB;
	display: block;
	margin-bottom: 10px;
	padding-bottom: 15px;
} 
 div#header h1 {
	font-family: "century gothic", verdana, Arial, Helvetica, sans-serif;
	font-size: 14pt;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color: #006666;
}
div#header h3{
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #006666;
	font-size: 10pt;
	line-height: 13pt;
	font-weight: bold;
	font-style: normal;
	letter-spacing: normal;
	text-align: center;
}



ul#MenuBar5  a {
	font-family: tahoma, arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 20px;
	color:#006666;
	text-decoration: none;
/*	background-color: #b16464;*/
}

ul#MenuBar5  a:visited {
	color:#006666;
	text-decoration: none;
}

ul#MenuBar5 a:hover {
	/*	color:#b282af;*/
	color: #0000ff;
	text-decoration: underline;
}

div#MainContent {
	width: 850px;
	display: block;
	height: auto;
	margin-bottom: 10px;
	padding-top: 10px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
	border: 1px none #8DFF00;
	background-color: #caddd5;
} /* changing margin-botom at bottom of list creates a big problem for some reason */

p.tb_paragraph {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 22px;
	color: #000000;
	margin-top: 1px;
	margin-bottom: 3px;
	text-align: left;
}

ul.MainContent  {
	font-family: tahoma, arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 18px;
	color: #000000;
	padding-left: 40px;
}

h1.MainContent {
	font-family: verdana,tahoma,Helvetica, sans-serif;
	font-size: 14pt;
	line-height: 16px;
	color: #006666;
	padding-left: 10px;
}

h2.MainContent {
	font-family: verdana, tahomoa, Helvetica, sans-serif;
	font-size: 14pt;
	line-height: 15pt;
	color: #006666;
	text-align: left;
}
p.MainContent {
	font-family: verdana,tahoma,Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 20px;
	color: #000000;
	padding-left: 10px;
}


div#photodiv {
	border: 1px double #6633CC;
	clear: both;
	float: left;
	width: 680px;
	margin-right: 20px;
	margin-left: 20px;
	margin-top: 10px;
}

div#photodiv p {
	background-color: #ebebeb;
	clear: none;
	display: inline;
	font-family: Tahoma, Arial, Helvetica;
	font-size: 11pt;
	line-height: 12pt;
	color: #CC6600;
	font-style: normal;
	padding-left: 10px;
}

div#photodiv h3 {
	clear: none;
	float: none;
	display: block;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 15px;
	color: #000000;
	padding-left: 10px;
	margin-bottom: 5px;
}


div#footer {
	border: 1px none #8DFF00;
	text-align: center;
	clear: both;
	display: block;
	padding-bottom: 10px;
	background-color: #caddd5;
	padding-top: 10px;
	width: 880px;
	margin-right: auto;
	margin-left: auto;
	color: #003333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	line-height: 20px;
} 
div#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: 10pt 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}

p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 20px;
	color: #000000; /* black text */
	padding-right: 10px;
	padding-left: 10px;
}

li {
	font-family: tahoma, arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 22px;
	color: #000000;
}
.tb_h1{
	font-family: "Tekton Pro Bold", Verdana, "Century Gothic";
	font-size: 16pt;
	line-height: 18px;
	font-weight: bold;
	padding-left: 20px;
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 0px;
	border: 2px none #009900;
	color: #006666;
	margin-bottom: 20px;
}
h2 {
	font-family: "Century Gothic", Verdana, Tahoma, Arial, Helvetica;
	font-size: 14pt;
	line-height: 16pt;
	font-style: normal;
	font-weight: bold;
	padding-left: 0px;
	padding-right: 10px;
	margin-bottom: 10px;
	margin-top: 0px;
}

h3{
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	font-size: 10pt;
	line-height: 12pt;
	font-weight: bold;
	font-style: normal;
	letter-spacing: normal;
	text-align: left;
}

h4 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 2px;
	padding-right: 2px;
	padding-bottom: 2px;
	padding-left: 2px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #000000;
	font-size: 10pt;
	line-height: 12pt;
	font-weight: bold;
	font-style: normal;
	letter-spacing: normal;
	text-align: center;
}

.title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12pt;
	color: #003333;
	line-height: 16pt;
	text-align: center;
}
.titlebar {
	font-family: "Times New Roman", Times, serif;
	font-size: 12pt;
	color: #FFFFFF;
	background-color: #006666;
}
.subtitle {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11pt;
	line-height: 12pt;
	font-weight: normal;
	color: #000000;
	padding: 10px;
}


.box1 {
	border-color: #CCCCCC #333333 #333333 #CCCCCC;
	border-width: medium;
	border-style: ridge;
}


.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;
}
/* 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 */
.clearfloat { 
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* ***************************** 
    thinking body instructor page styles 
    **************************** */

/* Table Rules   ----------------------------------------------- */


td.rank { }

/* header table is for layout only set padding; text alignment */

#header_table {
	width: 880px;
	display: inline;
	margin-right: auto;
	margin-left: auto;
} 

.td_center {
text-align: center;
padding: 10px 0px 10px 0px;
}


.legal {
	font-family: garamand, tahoma, arial, sans-serif;
	font-size: 9pt;
	color: #333333;
}

.bar {
	width: 880px;
	height: 0px;
	background-color: #003333;
	display: block;
	clear: both;
	white-space: normal;
} 
.headerlogoimg{
	margin-right: auto;
	margin-left: auto;
	width: 650px;
	display: block;
}

.apparatus_photo {
	border: 2px groove #006666;
	float: right;
	margin-left: 20px;
}

.photomargin {
	border: 2px solid #006666;
	margin: 5px;
}
.photo2 {
	float: right;
	margin-right: 8px;
	margin-left: 8px;
	border: 2px solid 006666;
}
