@charset "UTF-8";
body  {
	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;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	background-color: #99A6A7;
	margin-top: 10px;
}
.twoColFixLtHdr #container {
	width: 780px;
	background-color: #cee4fe; /* beige green */
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 15px;
	border-right-width: 4px;
	border-bottom-width: 8px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #CFE4FD;
	border-right-color: #597372;
	border-bottom-color: #597372;
	border-left-width: 3px;
	border-left-style: solid;
	border-left-color: #597372;
} 
.twoColFixLtHdr #header .lourdes{
	background-color: #628786;
	text-align: center;
	padding: 0;
	background-image: url(../images/lourdes.jpg);
	background-repeat: no-repeat;
	height: 425px;
	width: 780px;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	background-color: #98A6A7;
	padding-top: 10px;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px 15px 20px;
	font-weight: bold;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 125%;
	color: #597372;
}
.twoColFixLtHdr #mainContent {
	background-color: #FFF;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 0;
	margin-left: 250px;
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	width: 460px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	color: #000;
	text-align: left;
} 
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #CFE4FD;
} 
.twoColFixLtHdr #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 */
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 75%;
	color: #597372;
}
.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;
	border-top-width: 2px;
	border-right-width: 3px;
	border-bottom-width: 3px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #99A6A7;
	border-right-color: #99A6A7;
	border-bottom-color: #99A6A7;
	border-left-color: #99A6A7;
}
.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;
}
