#all {
    /* changed border thickness and color */
    border: 2px solid #333; 
    /* adjusted corner radius */
    border-radius: 15px;         
    position: absolute;
    width: 1000px;
    height: 1100px;
    /* darkened and enlarged shadow */
    box-shadow: 8px 8px 15px #666; 
    /* added light background color */
    background-color: #f0e1b1;   
}

/* changed font, color, and underline style for the headline */
#headline {
    font-size: 3em;
    font-family: "Georgia", "Times New Roman", serif; /* was Trebuchet MS */
    /*  text color */
    color: #055b80;                                   
    text-align: center;
    position: absolute;
    top: 30px;
    left: 350px;
    /* removed underline */
    text-decoration:none;               
    /* added bottom border as underline effect */
    border-bottom: 3px solid #003366;                 
}

/* adjusted thumbnail opacity and layout */
#thumbnails {
    position: absolute;
    /* moved thumbnails slightly up */
    top: 160px;                 
    /* moved thumbnails left */
    left: 40px;                 
    /* widened column */
    width: 180px;               
    height:auto;
     /* less transparent */
    opacity:0.8;               
}
#thumbnails li{
	list-style:none;
}
#thumbnails:hover{
	cursor:pointer;
	opacity:1;
}
.smallimg {
	width: 100px;
	margin:10px;
	float: left;
}

#largearea {
	position: absolute;
	top: 138px;
	left: 300px;
	width: 650px;
}

#mainphoto {
	width: 650px;
	float: left;
	margin:50px 15px 50px 0px;
}

#caption {
	font-size: 18px;
	font-family: Verdana, Geneva, sans-serif;
	text-align: center;
	position: absolute;
	top: 135px;
	left: 300px;
	width: 650px;
}