@charset "utf-8";
@import url('normalize.css');
@import url('typography.css');
 
body  {
	font: 100% arial;
	margin: 0;
	padding: 0;
	text-align: center;
}

#container {
	width: 850px;  /* this will create a container 80% of the browser width */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #666666;
	text-align: left;
} 

#access {
	font: arial;
	font-size: 90%;
	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. */
}

#Sub-Menu {
	font: arial;
	font-size: 90%;
} 

#header {
	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. */

} 

#header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}


#sidebar1 {
	font: arial;
	font-size: 85%;
	font-weight: bold;
	float: left;
	width: 20%; /* since this element is floated, a width must be given */
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 30px;
	padding-left: 1px;
}
#sidebar1 h3, #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}


#mainContent {
	margin-top: 0;
	margin-right: 10px;
	margin-bottom: 0;
	margin-left: 23%;
} 

#SubContent {
	margin-top: 0;
	width: 70%;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
} 

#Sub-Menu {
	padding: 5px 10px;
	text-align: left;
} 

#footer {
	padding: 0 10px;
} 
#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 */
}

/* Miscellaneous classes for reuse */
.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;
}


