/* CSS Document */


any element will have margin of zero before page goes through style sheet
*{
	margin:0;
}
no # or . because it is refering to the actual html tag

body{

}
#holderTop{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	background-color: #C63;
	background-position: center center;
	width: 80%;
	max-width: 1024px;
	height: 60px;
	top: 10px;
	text-align: center;
	padding-top:20px
	margin-right: auto;
	margin-left: auto;
	background-repeat: no-repeat;
	left: auto;
	right: auto;
	position: fixed;
	}
#holder{
	background-color: #C63;
	background-position: center center;
	height: 80%;
	min-height: 1080px;
	margin-left: auto;
	margin-right: auto;
	width: 80%;
	max-width: 1024px;
	margin-top: 80px;	
}
#banner{

	background-image: url(../images/Banner.png);
	background-repeat: no-repeat;
	background-position: center center;
	width: 120%;
	min-height:150px;
	margin-left: -10%;
	position:fixed;
	left: 0px;
	margin-top: 0px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;

}
#homeButton{
	float:left;
	width:120px;
	height:138px;
	margin-left:200px;
	margin-top:100px;
	
}
#aboutButton{
	float:center;
	margin-left: 47%;
}
#aboutButtonALT{
	background-image: url(../images/no3_120.png);
	background-repeat: no-repeat;
	position:fixed;
	background-position: center;
	width:120px;
	height:138px;
}
#headerLines{
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	padding-top: 170px;
	margin-left: 36px;
	margin-right: 36px;
	height: auto;
}
#images{
	<img src="images/no3_120.png" />
}
#date{
	  <script language="JavaScript">
		
		  var date=new Date();
		  var da=date.getDay();
		  var dd=date.getDate();
		  var mm=date.getMonth() + 1;
		  var yy=date.getFullYear() ;  
		  if(da<1)da="Sunday";
		  if(da<2)da="Monday";
		  if(da<3)da="Tuesday";
		  if(da<4)da="Wednesday";
		  if(da<5)da="Thursday";
		  if(da<6)da="Friday";
		  if(da<7)da="Saturday";
		  if(mm<2)mm="January";
		  if(mm<3)mm="February";
		  if(mm<4)mm="March";
		  if(mm<5)mm="April";
		  if(mm<6)mm="May";
		  if(mm<7)mm="June";
		  if(mm<8)mm="July";
		  if(mm<9)mm="August";
		  if(mm<10)mm="September";
		  if(mm<11)mm="October";
		  if(mm<12)mm="November";
		  if(mm<13)mm="December";
		  if(yy<10)yy="0"+yy;
		  document.write(da+", "+mm+" "+dd+", "+yy);
		//
		</script>
}
