@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: #070000;
	background-color: #6D6D6D;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
}
.thrColFixHdr #container {
	width: 780px;
	margin: 0;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0px;
	border-top-width: medium;
	border-right-width: medium;
	border-bottom-width: medium;
	border-left-width: medium;
	border-top-style: none;
	border-right-style: inset;
	border-bottom-style: solid;
	border-left-style: outset;
	border-top-color: #0099CC;
	border-right-color: #0099CC;
	border-bottom-color: #0099cc;
	border-left-color: #0099CC;
	font-family: "Adobe Garamond Pro";
	background-color: #ECECEC;
} 
.thrColFixHdr #header {
	padding: 0;
	margin: 0px;
	height: 147px;
	background-image: url(images/Mainheaderbkgrnd_2.png);
} 
.thrColFixHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
	height: 147px;
	background-image: url(Trinityheader_Monday.gif);
	z-index: 500;
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 140px; /* padding keeps the content of the div away from the edges */
	background-color: #EBEBEB;
	background-image: url(images/sidebar_dodge.gif);
	padding-top: 15px;
	padding-right: 3px;
	padding-bottom: 40px;
	padding-left: 8px;
	border-right-width: medium;
	border-right-style: none;
	border-right-color: #0099CC;
	margin-bottom: 25px;
	border-bottom-width: medium;
	border-bottom-style: none;
	border-bottom-color: #0099CC;
	font-size: 16px;
}
.thrColFixHdr #container  #mainContent2 {
	font-family: "Adobe Garamond Pro";
	padding-right: 10px;
	padding-left: 10px;
	float: none;
}
#mainContent2image {
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	left: 0px;
	right: 0px;
	text-align: right;
	float: right;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}


.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 175px; /* padding keeps the content of the div away from the edges */
	padding-top: 15px;
	padding-right: 8px;
	padding-bottom: 15px;
	padding-left: 8px;
	background-color: #D6D6D6;
}

.thrColFixHdr #mainContent {
	margin-top: 10px;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 160px;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	font-family: "Adobe Garamond Pro";
	text-align: justify;
	font-size: 100%;
} 
.marquee {
	font-family: "Adobe Garamond Pro";
	font-size: 24px;
	font-weight: 600;
	color: #FF0000;
}

.thrColFixHdr #footer {
	padding: 0;
	margin: 0px;
	z-index: 2000;
	background-image: url(images/footer_rectangle.png);
	background-repeat: no-repeat;
	height: 50px;
} 
.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: 0px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	height: 50px;
	width: 780px;
}
.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;
}
