@charset "UTF-8";
/* CSS Document */

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: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #A30B1B;
}
#container  {
	width: 60em;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	position: relative;
} 
/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/
#mainContent {
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #000;
	padding-left: 2em;
	float: left;
	width: 40em;
	margin-top: 10px;
	margin-right: 1.5em;
	margin-bottom: 0;
	margin-left: 1em;
} 
 #header {
	background: #fff;
	padding: 0;  /* 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. */
	text-align: center;
 }
#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-variant: small-caps;
	font-size: 1.1em;
	background-color: #A30B1B;
	background-image: url(images/ATlogowht.gif);
	background-repeat: no-repeat;
	background-position: 1em center;
	text-align: center;
	color: #FFFFFF;
	width: 100%;
	padding: 10px 0;
}
#sidebar1 {
	float: left;
	width: 12em;
	text-align: right;
	padding: 15px 0 15px 0;
}
#sidebar1 ul li {
	list-style-type: none;
	padding-bottom: 10px;
}
#sidebar1 a {
	font-size: 1em;
	color: #000000;
	text-decoration: none;
	font-weight: bold;
}
#mainContent h1 {
	font-size: 1.8em;
	color: #A30B1B;
}
#mainContent h2 {
	font-size: 1.1em;
	color: #999999;
	margin-top: -1em;
}

.fltleft {
	float: left;
	margin-right: 0.5em;
	margin-top: 0em;
}
.fltright {
	float: right;
	margin-left: 0.3em;
}

#footer {
	background:#fff;
	clear: both;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	text-align: center;
} 
.indicate-required {
	padding-top: 10px;
	padding-bottom: 10px;
}
#footer p {
	font-size: 86%;
	font-style: italic;
}
div#mc_embed_signup {
	background-color: #FFFFCC;
	border: thin groove black;
	margin: 0.2em;
	float: left;
	height: auto;
	width: 100%;
	clear: left;
	position: relative;
	bottom: 0px;
	padding: 2px;
}
form#mc-embedded-subscribe-form {
	font-size: 80%;
	text-align: left;
	margin-left, margin-right: 0.2em;
}
.mc-field-group input{
	width: 90%;
}
legend {
	color: #A30B1B;
	font-size: 1em;
	font-weight: bold;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #A30B1B;
	padding-bottom: 2px;
}
.end {
	clear: both;
	position: relative;
	left: 0px;
	float: left;
}
#mainContent img {
	border: 1px solid #000;
}
