@charset "UTF-8";
body  { /* the defaults set in this style affect the window, unless over-written by another style */
	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 */
	color: #000000; /* this is the background for the whole page */
	font-family: Arial, Helvetica, Verdana, sans-serif;
	font-size: 100%;
	background-color: #666666;
}

#container { /* defaults for the "page" */
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 3px solid #333333;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 


/* start header formatting */



#header {
	height: 120px;
	padding-top: 40px;
	background-color: #b40103;
	background-image: url(Images/cropped-title.png);
	background-repeat: no-repeat;
	font-size: 200%;
	color: #FFFFFF;
	text-align: center;
	text-decoration: none;
	font-variant: normal;
	padding-bottom: 16px;
} 

#header h1 { /* used for page name */
	padding-right: 10px;
	padding-left: 10px;
	padding-top: 10px;
	font-size: 25px;
	color: #FFFFFF;
	text-align: center;
	display: inline;
	margin: 0;
	font-weight: bolder;
	/* border: medium outset #999999; */
}

/* end header formatting */





/* start of left column formatting */

#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 130px;
	padding: 0px 10px 15px 20px;
	font-size: 90%;
	font-style: oblique;
	line-height: 250%;
	color: #FFFFFF;
	height: 500px;
	text-align: center;
	background-color: #B40103;
	border-right: 3px solid #333333;
	border-bottom: 3px solid #333333;
}

#sidebar1 a:link, #sidebar1 a:visited, #sidebar1 a:active { /*links in left column */
	height: 42px;
	width: 120px;
	color: #FFFFFF;
	text-decoration: none;
	background-image: url(Images/button.png);
	background-repeat: no-repeat;
	display: block;
}

#sidebar1 a:hover { /* rollovers for left column */
	color: #CCCCCC;
	text-decoration: none;
	background-image: url(Images/buttonhover.png);
	display: block;
	height: 42px;
	width: 120px;
}


#sidebar p {
	text-align: center;
	padding-left: 10px;
	font-size: 91%;
}


/* end of side bar formatting */




/* start of right column formatting */
#mainContent {
	border-top: 3px solid #333333;
	margin-left: 158px;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 25px;
} 

#mainContent h2 {
	font-size: 140%;
	text-decoration: underline;
}
#mainContent h3 {
	font-size: 120%;
	text-decoration: underline;
}
#mainContent p {
	font-size: 95%;
}
#mainContent a:link, a:visited, a:active { /* links in right column */
	background-image: none;
	font-size: 115%;
	color: #FF0000;
	text-decoration: underline;
	width: 200px;
}

#mainContent a:hover { /* rollover links in right column */
	color: #0000FF;
}


#mainContent .quote {
	font-style: italic;
}

/* end of right column formatting */



/* start of footer formatting */

#footer {
	background-color: #b40103;
	background-image: url(Images/trio-logo3.jpg);
	background-repeat: no-repeat;
	height: 95px;
	padding: 0px 10px 0px 20px;
	background-position: 23px;
	margin-bottom: 10px;
} 

#footer p { /* footer text */
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 14px;
	color: #ffffff;
	padding: 20px 0px 10px 0px;
	text-align: right;
	vertical-align: middle;
}

/* end of footer formatting */




/* start of special image classes - should be explicitly named */

.imgindex {
	border: medium solid #000000;
}

.imgstaff {
	float: left;
	margin-top: 5px;
	margin-right: 10px;
	margin-bottom: 3px;
	border: thin solid #000000;
	width: 150px;
}

.imgaboutus {
	float: right;
	border: thin solid #000000;
	margin-top: 22px;
	margin-left: 10px;
}

.imgprograms {
	border: thin solid #000000;
	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: 10px;
	margin-top: 22px;
}

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

