f@charset "utf-8";
body  {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #000000;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
}
#container {
	width: 1100px;
	margin: 0 auto;
	text-align: left;
	background-image: url(images/BHT-home-work4-6.jpg);
	background-repeat: no-repeat;
	height: 625px;
	position: relative;
}

#maincontent {
	margin: 0 auto; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	width: 1100px;
} 

#maintext {
	padding: 20px 0 0 60px;
	width: 680px;
	height: 555px;
}
#maintext h2 {
	font-size: 24.72px;
	margin: 0;
	text-align: center;
}
#maintext h3 {
	font-size: 18px;
	margin: 18px 0 0 0;
}
#maintext h4 {
	font-size: 13px;
}
#maintext p {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #7589C1;
	font-weight: bold;
	margin: 8px 0;
	line-height: 120%;
}
#maintext .hello {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 15px;
	font-style: italic;
	color: #C3810C;
	font-weight: bolder;
	line-height: 120%;
	margin: 16px 0;
}
#maintext #scroll {
	height: 555px;
	overflow: scroll;
	width: 660px;
	padding: 0 10px 0 0;
}
#scroll hr {
	color: #7589C1;
	background-color: #7589C1;
}
#maintext li {
	font-size: 12px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: bold;
}

#obutton {
	display: block;
	width: 149px;
	height: 59px;
	background-image: url(images/button-spr.jpg);
	background-repeat: no-repeat;
	background-position: 0 0;
	clear: both;
	margin-top: 10px;
}
#obutton:hover { 
  	background-position: 0 -59px;
}
#obutton span {
  display: none;
}

#basics {
	position: absolute;
	top: 220px;
	right: 0px;
}
#locations {
	font-weight: bold;
	width: 162px;
	text-align: center;
	height: 220px;
}
#locations h3 {
	font-size: 12px;
	margin: 7px 0 3px 0;
}
#locations h4 {
	font-size: 12px;
	margin: 10px 0 3px 0;
}
#locations p {
	font-size: 12px;
	margin: 0;
}

#header {
	height: 140px;
	position: relative;
	top: 0px;
} 
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0;
}
#flbackground {
	z-index: 1;
	position: relative;
	height: 140px;
	top: 0px;
	left: 0px;
	background-image: url(images/clouds1100-140.jpg);
}
#headertxt {
	z-index: 2;
	position:absolute;
	height: 138px;
	top: 0px;
	width: 1096px;
	border: 2px solid black;
}
#headertxt h1 {
	font-variant: small-caps;
	font-family: "Minion Pro", Times;
	font-style: italic;
	color: #000;
	text-align: center;
	padding: 20px 0 0 0;
	font-size: 32px;
}
#headertxt h2 {
	font-variant: small-caps;
	font-family: "Minion Pro", Times;
	font-style: italic;
	font-size: 18px;
	color: #000;
	text-align: center;
	padding: 0;
	margin: 0;
}
#phone-email {
	float: right;
	text-align: center;
	color: #FFF;
	font-size: 16px;
	font-weight: bold;
	font-family: Georgia, "Times New Roman", Times, serif;
	margin-right: 20px;
	line-height: 120%;
	height: 140px;
}
#phone-email h3 {
	font-size: 22px;
	margin: 24px 0 10px 0;
}
#phone-email .smalltext {
	font-size: 16px;
	font-style: italic;
	margin: 0;
}
#phone-email a:link, #phone-email a:visited {
	color: #FFF;
}
#phone-email a:hover {
	color: #C4830D;
	text-decoration: none;
}

#menu {
	font-family: "Minion Pro", "Times New Roman", Times, serif;
	font-size: 14px;
	padding: 0;
}
#menu ul {
	list-style-type: none;
	padding: 0;
	text-align: center;
	height: 3px;
	margin-top: 28px;
}
#menu li {
	display: inline;
}
#menu a:link, #menu a:visited {
	text-decoration: none;
	color: #FFFFFF;
	padding: 3px 10px 3px 10px;
	background-color: #0A1D57;
	font-weight: bold;
	letter-spacing: 2px;
	margin: 0;
}
#menu a:hover {
	color: #D0A51F;
	text-align: center;
}
#active a:link, #active a:visited, #active a:hover
{
	color: #66ccff;
}

#copyright {
	height: 20px;
	width: 1031px;
	color: #ffffff;
	position: absolute;
	bottom: 24px;
	margin: 0 7px 0 62px;
}
#copyright p {
	font-size: 10px;
	color: #ffffff;
	margin: 0;
	text-align: left;
}
#copyright a:link, #copyright a:visited {
	color: #FFF;
}
#copyright a:hover {
	color: #C4830D;
	text-decoration: none;
}
#copyright .hosting {
	float: right;
}

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

#container #register {
	position: absolute;
	right: 2px;
	top: 147px;
}

#mem {
	font-size: 12px;
	background-color: #B0CAFF;
	height: 240px;
	width: 500px;
	margin: 0 auto;
	padding: 20px;
	border: 2px solid black;
}

a:link, a:visited {
	color: blue;
}
a:hover {
	text-decoration: none;
}

form p {
	margin: 0;
	padding-top: 5px;
}
fieldset {
	width: 600px;
	border: none;
	margin: 0 auto;
}
#class label {
	width: 150px;
	float: left;
}
#personal label {
	float: left;
	width: 150px;
}
#questions p {
	padding-bottom: 20px;
}

#maintext form {

}

.formsubhead, .formtext {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #7589C1;
	margin: 8px 0;
	line-height: 120%;
}
.formsubhead {
	font-weight: bold;
}

.smalltext {
	font-size: 9px;
	margin: 0;
}
#confirmation {
	padding-left: 50px;
}

#centerframe {
	height: 220px;
	width: 162px;
	margin: 50px 60px;
}

#basicreg input, #basicreg select {
	font-size: 12px;
}

#basicreg #class, #basicreg #questions, #basicreg #personal {
	margin: 0 auto;
	padding: 0;
}
#maintext .log {
	text-align: center;
}

#maintext p a img {
	border-style: none;
}

