@charset "utf-8";
body  {
	margin: 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: #000000;
	background-color: #C0DFFD;
	font-family: Broadway;
	font-size: 100%;
}
.thrColFixHdr #container {
	width: 90%; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #0066FF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
} 
.thrColFixHdr #header {
	text-align: center;
	padding-top: 90px;
	padding-right: 10px;
	padding-bottom: 40px;
	padding-left: 150px;
	background-color: #FFFFFF;
	background-image: url(images/Logo.jpg);
	background-repeat: no-repeat;
	background-position: center;
} 
.thrColFixHdr #header h1 {
	color: #0000FF;
	font-family: "Arial", Georgia, "Times New Roman", Times, serif;
	font-size: 34px;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 10px;
	padding-left: 0px;
	margin: 0;
}

.thrColFixHdr #header h2 {
	color: #FFFF66;
	font-family: "Brush Script MT", "Times New Roman";
	font-size: 50px;
	padding: 0px;
	margin: 0px;
}

.thrColFixHdr #sidebar1 {
	float: left; /* 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 */
	background: #E6F3FF;
	padding: 5px;
	margin: 0px;
	width: 205px;
}
.thrColFixHdr #sidebar1 h1 {
	font-family: "Lucida Handwriting", Verdana, "Times New Roman";
	font-size: 22px;
	margin-top: 30px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
.thrColFixHdr #sidebar1 p {
	font-family: "Comic Sans MS";
	font-size: 18px;
	line-height: 30px;
	padding: 0px;
	margin: 0px;
	margin-bottom: 4px;
}

.thrColFixHdr #sidebar1 ul {
	line-height: 40px;
	padding: 0px;
	list-style-image: url(images/mm_arrow.gif);
}
.thrColFixHdr #sidebar1 li {
	font-family: "Arial", "Lucida Handwriting", Verdana, "Times New Roman";
}
.thrColFixHdr #mainContent {
	width: auto;
	margin-top: 0;
	margin-right: 258px;
	margin-bottom: 10px;
	margin-left: 221px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
} 
.thrColFixHdr #contactusContent {
	width: auto;
	margin-top: 0;
	margin-bottom: 10px;
	margin-left: 216px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 10px;
	padding-left: 10px;
	font-family: "Lucida Handwriting", Verdana, "Times New Roman";
} 
.thrColFixHdr #mainContent h1 {
	font-family: "Script MT Bold", "Times New Roman";
	font-size: 40px;
	line-height: 60px;
}
.thrColFixHdr #mainContent h2 {
	font-family: "Arial","Script MT Bold", "Times New Roman";
	font-size: 24px;
	line-height: 30px;
}
.thrColFixHdr #mainContent p {
	font-family: "Comic Sans MS";
	font-size: 20px;
	line-height: 35px;
}
.thrColFixHdr #hor_nav_bar {
	height: 20px;
	margin: 0px;
	background-color: #CCFF99;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-bottom-style: solid;
	border-top-color: #0033CC;
	border-right-color: #0033CC;
	border-bottom-color: #0033CC;
	border-left-color: #0033CC;
	padding-top: 5px;
	padding-right: 1px;
	padding-left: 1px;
}
.thrColFixHdr #hor_nav_bar p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	margin: 0px;
	padding: 0px;
}

.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 247px;
	margin: 0px;
	padding: 5px;
	background-color: #E6F3FF;
}
.thrColFixHdr #sidebar2 h1 {
	font-family: "Lucida Handwriting", Verdana, "Times New Roman";
	font-size: 24px;
	text-decoration: underline;
	text-align: center;
}
.thrColFixHdr #sidebar2 p {
	font-family: "Lucida Handwriting", Verdana, "Times New Roman";
	font-size: 14px;
}

.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #E6F3FF;
	text-align: center;
} 
.thrColFixHdr #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 */
}
.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;
}
