body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #F4FFE4;
	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;
}
.boldLeadIn {
	font-weight: bolder;
}

.twoColElsLtHdr #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: 25px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 0;
	text-align: right;
}


/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.twoColElsLtHdr #container {
	width: 46em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFF99;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.twoColElsLtHdr #header {
	background: #D5EDB3;
	padding: 0 10px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
} 

.twoColElsLtHdr #mainContent {
	margin: 0 1.5em 0 13em; /* the right margin can be given in ems or pixels. It creates the space down the right side of the page. */
} 
#mapContent {
	margin-left: 5em;
	margin-right: 1.5em;
}

.twoColElsLtHdr #sidebar1 h3, .twoColElsLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.twoColElsLtHdr #sidebar1 {
	float: left;
	width: 12em; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 0; /* top and bottom padding create visual space within this div */
	background-color: #CCFFFF;
}
.twoColElsLtHdr #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#D5EDB3;
} 
.greenHead {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-large;
	font-weight: bold;
	color: #669900;
}
.greenType {
	color: #669900;
}


.twoColElsLtHdr #footer p {
	margin: 0; 
	padding: 10px 0; 
}
/* Miscellaneous classes for reuse */
.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;
}

.headerLogo {
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	text-align: right;
	font-size: x-small;
	float: right;
	color: #336600;
	letter-spacing: 2px;
}

.headerImage {
	margin-left: -10px;
	background-image: url(../images/mm_stalucia_photo.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 100px;
	width: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-size: x-small;
	font-size: small;
}

.headerImage2 {
	margin-left: -10px;
	background-image: url(../images/valdivia_photo.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 100px;
	width: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-size: x-small;
	font-size: small;
}
.headerImage3 {
	margin-left: -10px;
	background-image: url(../images/bull_photo.jpg);
	background-repeat: no-repeat;
	background-position: left top;
	height: 100px;
	width: 100%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-size: x-small;
	font-size: small;
}
