@charset "utf-8";
body {
	font: 90% Verdana;
	background-color:
	#669999;
	margin: 0;
	padding: 0;
	text-align: center;
	color:#FFFF66;
}
#container {
	width: 90%;
	background: #000099;
	margin: 0 auto;
	border: 1px solid #000066;
	text-align: left;
	padding:15px;
}
#header {
	height:150px;
	background-image:url(images/asabanner3.png);
	background-repeat:no-repeat;
	background-position:center;
	background-position:top;
}
#menu {
	position:relative;
	top:100px;
	width:100%;
	height: 50px;
	background-color: #000099;
}
#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 */
	 /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}

#maincontent {
	width:100%;
	padding: 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */	
}
#col1	{
	float:left;
	width:70%;
	padding:5px;
}
#col2	{
	float:left;
	margin-top:20px;
	margin-left:10px;
}

#footer {
	padding: 0 10px;
	background-color: #000099;
	font-family: Verdana;
	font-size: 10px;
	color: #FFFF66;
	
}
.clear	{
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
#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 */
}

.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;
}
