/* Grand View Drive-In : Homepage Style Sheet
   =================================================================
   This stylesheet has the rules specific to the homepage.
*/
	
	/* homepage photo
	   ==================================
	*/
	
	#homephoto a {
		float: left;
		width: 537px;
		height: 456px;
		background: url(../images/home-photo.jpg);
	}
	
	#homephoto span {
		display: none;
	}
	
	/* content area
	   ==================================
	*/
	
	/* extra container to decide where white is drawn
	   always draw down to at least the bottom of the now showing area */
	#contentbounds {
		float: left;
		position: relative;
		left: 48px;
		width:676px;
		
		/* the following three lines are the css hack for ie6 min height */
		min-height: 1500px;
  		height: auto !important;
  		height: 1500px;
  		
		background: white url(../images/back-shadow.jpg) top right repeat-y;
	}
	
	/* announcement headlines in red */
	
	.announcement {
		color: #811009;
	}
	
	/* using dictionary lists for announcements */
	dl {
		font-size: 110%;
	}
	
	dt {
		font-weight: bold;
		padding-top: 10px;
	}
	
	dd {
		margin-left: 20px;		
	}
	
	/* now showing details
	   ==================================
	*/
	
	#shadowleft {
		background-position: 0 456px;
		background-image: url(../images/ns-shadow-left.gif);
		background-repeat: no-repeat;
	}

	
	
