/* stylesheet.css */ 
/* Style rule for the body element */ 
body{
	background-color: #EEE;
	background-image: url(images/background.jpg);
}

 /* Style rule for the header div */ 
	#header {
    background-color: white;
	background-repeat:no-repeat;
	margin:0 auto;
	image-align: center;
}


 /* Style rule for the wrapper div */ 
#wrapper{
	width: 900px;
	margin: 0 auto;
	border-radius: 20px;
	background-color: white;
	border: solid 1px white;
	box-shadow: 8px 8px 8px black;
	padding-left: 35px;
	padding-right: 20px;
	}

 /* Style rule for the font */ 	
#body,td,th{
	font-family: Verdana, Geneva, sans-serif;
	column-rule: center;
	color: #122243;
	}
	
	/* Create raised appearance with border, rounded corners, and shadow */
/* Works with images, tables, and block elements (div, p, and headings) */
.raised{
  border:solid 1px gray;
  border-radius: 5px;
  box-shadow:8px 8px 8px gray;
}

 /* Style rule for the footer div */ 

#footer{
	width: 900px;
	margin:0 auto;
	border-radius: 20px;
	background-color: #EEE;
	border: solid 1px #EEE;
	box-shadow: 8px 8px 8px black;
	padding-left: 35px;
	padding-right: 20px;
}
#footer p { 
  line-height: 1.7em;
  padding: 10px 0 10px 0;
}
