@charset "UTF-8";


body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666;
	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: #000;
}


a, a:visited {
	color: #999;
	text-decoration: none;
	z-index: 15;
}

a:hover {
	color: #666;
	text-decoration: none;
	font-size: inherit;
}

#wrapper { 
	width: 980px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #fff;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000;
	poition: absolute;
	text-align: left; /* this overrides the text-align: center on the body element. */

}
#sidebar {
	width: 205px; /* 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: #fff; /* the background color will be displayed for the length of the content in the column, but no further */;
	float: right;
	height: 600px;
}
#main{ 
	position: relative:
} 

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


h2 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: medium;
	color: #000;
	padding: 0;
	margin: 0;
}

p {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-size: smaller;
	color: #000;
	padding: 0;
	margin: -15;
}

#downloads{
	position: relative;
	top: 125px;

}

#contact{
	position: relative;
	top: 455px
	;
}


