@charset "utf-8";
@import "main.css";
/* CSS Document */

/*This selector effectively aligns the first sentence of every paragraph in the div to the left 2 ems and places the div absolutely 140px from top and 80 px from the left edge of the page.  It also aligns all text to the left.*/
#contacttext {
	position:		absolute;
	top:			140px;
	text-align:		left;
	left: 			80px;
	width: 700px;
}
/*This selector is for any h2 text in the div contacttext and it forces the first line to stay indented normally and not to the left with everything else in the div */
#contacttext h2 {
	text-indent: 	0px;
}
this rule was set so that the first line of the form would not indent -2ems like the rest of the contacttext div #contacttext #email {
 text-indent: 		0px;
}		
#contacttext p {
	text-align: 	left;
}
#contacttext table th {
	font-size: 		24px;
	margin: 		0px;
	padding: 		0px;
}
#contacttext h1 {
	text-indent: 	-1em;
	margin-top: 	40px;
	margin-right: 	0px;
	margin-bottom: 	20px;
	margin-left: 	0px;
}
#contacttext #div_view_larger_map {
	margin-bottom: 	40px;
}
/*This selector was created to fix a small spacing problem that was making the textarea, which is taller then the "text" imput fields, thus it was not leaving any space between it and the "text" imput field above. I created the selector and then set it's top padding to 3px and voila, the spacing is correct*/
#contacttext table #tallTextarea {
	padding-top: 	3px;
}
#sendButtonRow       {
	padding-top: 20px;
}
#contacttext table #sendButtonRow {
	padding-top: 20px;
}
#contacttext table #sendButton {
	text-align: right;
}
