#container {
	position: relative;
	width: 950px;
	margin: auto;
}
div.imageholder{ /*This will be the holder which will hold our page image(i.e. coffee.jpg) */
	position:absolute;
	width:736px; /*Width of Image*/
	height:301px; /*Height of Image*/
	left:88px; /* This is applied relative to edge of container */
	top:47px;
}

