body  {
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
h1, h2, h3, h4 {
	margin:0;
	padding:0;
	color:#2f295a;
}
a {
	color:#2f295a;
	font-size:12px;
	text-decoration:underline;
}
a:hover {
	color:#2f295a;
	font-size:12px;
	text-decoration:none;
}
#container { 
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-left:7px solid #FFFFFF;
	border-right:7px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
#header { 
	background:#000;
	height:60px;
	top: 0px;
	left:0px;
	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; /* 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 20px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	float:right;
	color:#FFFFFF;
}
.headerPic {
	width:950px; 
	background:#333333 url(../img/headerPic.jpg); 
	height:150px; 
	position:absolute;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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 */
	background: #d2d3fb; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 160px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	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 */
	background: #e1ff98; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 160px 10px 15px 20px; /* padding keeps the content of the div away from the edges */
}
#mainContent { 
	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. You can remove this margin if you want the #mainContent div's text to fill the sidebar spaces when the content in each sidebar ends. */
	padding: 160px 10px 0 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}
.college {
	float:right;
	margin:0 0 15px 15px;
} 
#footer { 
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../img/footerBackground.jpg) left top repeat-x;
	height:98px;
} 
#footer p {
	text-align:center;
	padding:30px 0;
	color:#FFFFFF;
	font-size:10px;
}
#footer a {
	color:#FFFFFF;
	font-weight:bold;
	font-size: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;
}




/*begin #navigation*/
#navigation{
	height:60px;
}
#index, #index div, 
#academics, #academics div, 
#campus , #campus div, 
#offices, #offices div, 
#contact,  #contact div {
	height:80px;
	position:absolute;
	width:97px;
	float:left;
}
#index, #academics, #campus, #offices, #contact{
	background-image: url(../img/nav.png);
	background-attachment: scroll;
	background-repeat: no-repeat;
}
#index{
	background-position: 0px -25px;
	margin-left:6px;
}
#academics{
	background-position: -98px -25px;
	margin-left:105px;
}
#campus{
	background-position: -196px -25px;
	margin-left:204px;
}
#offices{
	background-position: -294px -25px;
	margin-left:303px;
}

#contact{
	background-position: -392px -25px;
	margin-left:402px;
}
#index div, #academic div, #campus div, #offices div, #contact div {
	background-image: url(../img/white.png);
	background-attachment: scroll;
	background-repeat: no-repeat;
	background-position: 0px -60px;	
}	
.pri-nav a{
	display:block;
	text-decoration:none;
	text-indent:-30000px;
}
/*end #navigation*/