@charset "UTF-8";
body  {
	margin: 0;
	padding: 10px;
	text-align: center;
	background-color: #9C9;
	background-image: url(images/ppurdue_bg.gif);
	background-repeat: no-repeat;
	background-position: left top;
}
#container {
	width: 780px;
	margin: 0 auto;
	text-align: left;
	background-color: #FFF0CD;
	background-image: url(images/paper_bg.jpg);
	font: 90% Arial, Helvetica, sans-serif;
} 
#header { 
	padding: 10px 10px 0 20px;
} 
#header img {
	margin: 0; 
	padding: 10px 0;
}
/* Start Nav Menu */
#sidebar {
	float: right;
	width: 200px;
	margin: 0;
	padding: 0 10px 10px 25px;
}
div#sidebar ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
} 
div#sidebar li {
	position: relative;
	width: 150px;
	padding: 6px;
	margin: 2px 0;
}
div#sidebar a {
	font-size: 12px;
	color: #666;
	text-decoration: none;
	font-weight: bold;
		
}
div#sidebar a:link, div#sidebar a:visited {
	display: block;
	width: 160px;
	font-weight: bold;
	padding: 6px;
	margin: 0;
	
}
div#sidebar a:hover, div#sidebar a:focus, div#sidebar a:active {
	border: 1px solid #CCCCCC;
	background-color: #9C9;
}
/* End Nav Menu */
#mainContent {
	margin: 0 250px 0 0; /* the right margin on this div element creates the column down the right 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: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	color: #333;	
} 
div#mainContent p {
	text-align: justify;	
}
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
} 
#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: 80% Geneva, Arial, Helvetica, sans-serif;
	text-align: center;
}
.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: 10px 10px 0;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 10px;
}
.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;
}
