/* CSS Document */

body{
margin: 0px;
color: #000000;
font-family: Verdana, Arial, Helvetica, sans-serif; /*or any other font family you prefer*/
font-size: 14px;
background-color:#000000
}
#container {
	position: relative;
	width: 700px;
	margin: auto;
	background-color: #000000;
}
div.imageholder{ /*This will be the holder which will hold our page image(i.e. coffee.jpg) */
	position:absolute;
	width:424px; /*Width of Image*/
	height:544px; /*Height of Image*/
	top:3px;
	z-index: 2;
	visibility: visible;
	margin-left: auto;
	margin-right:auto

}

