#container { 
	position: relative; 
	width: 780px;  
	margin: 0 auto; 
	text-align: left; 
	} 
#template_content {}


#header { 
height: 190px; 
/*	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. */
}

#menu {
height: 30px;
text-align: right;
padding-top: 10px;
}

#logo {
height: 160px;
padding-top: 10px ;
text-align: right;
float: right;
}

#navigation {
height: 160px;
width: 460px;
float:left;
text-align: left;
}
 
#sidebar1 {
	position: absolute;
	top: 190px;
	left: 0;
	width: 170px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 8px 5px 15px 5px; /* padding keeps the content of the div away from the edges */
	border-top: 1px dashed #FFFFFF;
	height: 570px;
}
#sidebar2 {
	position: absolute;
	top: 190px;
	right: 0;
	width: 160px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	padding: 8px 10px 15px 10px; /* padding keeps the content of the div away from the edges */
	border-top: 1px dashed #FFFFFF;
}
#mainContent { 
	border-top: 1px dashed #FFFFFF;
	margin: 0 200px; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 8px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#mainContent_2col { 
	border-top: 1px dashed #FFFFFF;
	margin: 0 200px 0 0; /* the right and left margins on this div element creates the two outer columns on the sides of the page. No matter how much content the sidebar divs contain, the column space will remain. */
	padding: 8px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	border-top: 1px dashed #FFFFFF;
} 

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