@charset "UTF-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	color: #000000;
	text-align:center;
	background-color:#999999;
}
.twoColFixLtHdr #container {
	width: 900px;
	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. */
	background-image: url(images/TransitPg2bg.jpg);
	background-repeat: no-repeat;
	background-position: top;
	position:relative;
	background-color: #FFFFFF;
}
.twoColFixLtHdr #maillink {
	float:right;
	font-size:90%;
}	 
.twoColFixLtHdr #header { 
	background: #DDDDDD; 
	padding: 0 10px 0 20px;  /* 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. */
} 
.twoColFixLtHdr #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: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}


/*MAIN LINK STYLING*/
.twoColFixLtHdr a{
	color:#F3E71D;
}
.twoColFixLtHdr a:link{
	text-decoration:none;
}
.twoColFixLtHdr a:visited{
	text-decoration:none;
}
.twoColFixLtHdr a:hover{
	text-decoration:underline;
}


/*TOP-LEFT NAVIGATION BAR*/
.twoColFixLtHdr #navbar1 {
	position:absolute;
	top:125px;
	left:15px;
	font-size: 75%;
}
.twoColFixLtHdr #navbar1 ul{
	list-style-type:none;
	margin-left:0;
	padding-left:0;
}
.twoColFixLtHdr #navbar1 li{
	display: block;
	float: left;
	width: 100px;
	margin: 0 12px 0 0;
}
.twoColFixLtHdr #navbar1 a{
	color:#FFFFFF;
	font-weight:bold;
}
.twoColFixLtHdr #navbar1 a:link{
	text-decoration:none;
}
.twoColFixLtHdr #navbar1 a:visited{
	text-decoration:none;
}
.twoColFixLtHdr #navbar1 a:hover{
	text-decoration:underline;
}


/*BOTTOM NAVIGATION BAR*/
.twoColFixLtHdr #navbar2 {
	position:absolute;
	top:125px;
	left:537px;
	font-size: 75%;
}
.twoColFixLtHdr #navbar2 ul{
	list-style-type:none;
	margin-left:0;
	padding-left:0;
}
.twoColFixLtHdr #navbar2 li{
	display: block;
	float: left;
	width: 100px;
	margin: 0 12px 0 0;
}
.twoColFixLtHdr #navbar2 a{
	color:#FFFFFF;
	font-weight:bold;
}
.twoColFixLtHdr #navbar2 a:link{
	text-decoration:none;
}
.twoColFixLtHdr #navbar2 a:visited{
	text-decoration:none;
}
.twoColFixLtHdr #navbar2 a:hover{
	text-decoration:underline;
}


/*MAIN CONTENT*/
.twoColFixLtHdr #mainContent {
	/*margin: 200px 0 0 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: 220px 20px 20px 20px;
	background-repeat: no-repeat;
	background-position:bottom;
	font-size:85%;
} 
.twoColFixLtHdr #mainContent h2{
	font-style:italic;
	font-size:110%;
} 
.twoColFixLtHdr #mainContent a{
	color:#006600;
}
.twoColFixLtHdr #mainContent a:link{
	text-decoration:none;
}
.twoColFixLtHdr #mainContent a:visited{
	text-decoration:none;
}
.twoColFixLtHdr #mainContent a:hover{
	text-decoration:underline;
}


/*FOOTER*/
.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#3DAA49;
	color:#FFFFFF;
} 
.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 */
	font-size:75%;
}


/*OTHER*/
.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;
}
