@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; 
	padding: 0;
	text-align: center;
	background: #161841;
	color: #111;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #B8CCE4;
	margin: 10px auto 0 auto;
	text-align: left;
	border: 1px solid #394b6c;
} 
#header {
	background: #B8CCE4 url(../images/mta_header.jpg) no-repeat;
	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. */
	height: 180px !important;
} 

#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 0px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#header ul {
	margin: 0;
	padding: 60px 0 0 375px;
	
}
#header li {
	font-size: .8em;
	font-weight: normal;
}
#header h1 span {
	position: absolute;
	top: -10000px;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 15px 10px;
}
.pod {
	background: #687B9F url(../images/bottom_pod.gif) no-repeat left bottom;
	width: 220px;
	height: 320px !important;
	padding: 0 0 20px;
}
.pod a:link, a:visited {
	color: #FAD94C;
}
.pod a:hover, a:active, a:focus {
	color: #2A00F6;
}
.pod dt {
background: url(../images/top_pod.gif) no-repeat;
padding: 20px 20px 0;
font-size: 110%;
font-weight: bold;
text-align: center;
color: #FFFFFF;
margin: 0;
}
.pod dd {
padding: 10px 20px 0;
color: #FFFFFF;
margin: 0;
font-size: 80%;
}
 #mainContent {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	float: left;
	width: 480px;
} 
#mainContent h1 {
	font-size: 140%;
	font-weight: normal;
	color: #396dca;
	margin: 0px;
	padding: 0px;
}
#mainContent h2 {
	color: #396dca;
	font-size: 120%;
	font-weight: normal;
}
#mainContent p {
	font-size: 85%;
	line-height: 1.4;
}
#mainContent ul {
	font-size: 85%;

}
#footer {
	padding: 0 10px 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: #394B6C url(../images/mta_footer.gif) no-repeat;
	height: 40px !important;
} 
#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-top: 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 75%;
	color: #CCCCCC;
}
.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;
	border: 1px solid #396ECA;
}
.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;
}

