body{
	background-color:#CCC;
	font-family:Georgia, "Times New Roman", Times, serif;	
}
#all{
	width:800px;
	height:700px;
	border:3px solid #039;
	border-radius:15px;
	margin:20px auto;
	/* 3. Drop shadow around outside of entire design */
	box-shadow: 5px 5px 20px #999;
}
#top{
	width:770px;
	height:40px;
	padding:5px 15px 5px 15px;
	font-size:1.2em;
	border-bottom:1px solid black;
	background:white;
	border-top-left-radius:15px;
	border-top-right-radius:15px;
	/* 1. Linear gradient that goes from left to right */
	background: linear-gradient(to right, #be33ff9f, #fff);
}
/* 2. new class called sidebar, custom font with size increase from default */
.sidebar{
	font-family: "Tangerine", serif;
	font-size:3em;
}
#left{
	width:150px;
	height:600px;
	border-right:2px solid black;
	padding:5px;
	background-color:green;
	float:left;
}
#right{
	width:auto;
	height:580px;
	padding-top:30px;
	text-align:center;
	background:#DDDDDD;
}
.clear{
	clear:both;
}
footer{
	width:800px;
	height:36px;
	background:#fff;
	text-align:center;
	border-bottom-left-radius:15px;
	border-bottom-right-radius:15px;
	padding-top:4px;
	/* 7. add dark gray text shadow to contact information */
	text-shadow: 5px 5px 5px #555;
}
/* 4. new class called boat, 1 new position effect */
/* 6. add filter effect of sepia to image, set to 20% */
.boat{
	transform: rotate(-180deg);     
	filter: sepia(20%);               
}
/* 5. increase image size by 25% on hover - use scale transform */
.boat:hover{
	transform: scale(1.25);
}