/* The containing box for the gallery. */
#gallery_container {
	float:left;
	position:relative;
	width:501px;
	height:315px;
	margin:0px;
	border:0px solid #7B6342;
}

#text_container{
	float:right;
	width: 220px;
	margin: 0px 0px 0px 10px;
}

#image_and_text_container{
	margin-bottom: 20px;
}
/* Removing the list bullets and indentation */
#gallery_container ul {
	padding:0;
	margin:3px;
	list-style-type:none;
	width: 120px;
	height: 300px;
}

/* Remove the images sight */
#gallery_container a.gallery span {
	position:absolute;
	width:1px;
	height:1px;
	top:3px;
	left:3px;
	overflow:hidden;
	background:#fff;
	z-index:-1;
}

/* place the first of the images in the default state */
#gallery_container a.default_image span {
	position:absolute;
	width:371px;
	height:309px;
	top:3px;
	left:127px;
	z-index:0;
}

/* styling the :hover span */
#gallery_container a.gallery:hover span {
	position:absolute;
	width:371px;
	height:309px;
	top:3px;
	left:127px;
	z-index:1;
}


/* Adding the thumbnail images */
#gallery_container a.gallery, #gallery_container a.gallery:visited, #gallery_container img {
	border:none;
	text-decoration:none;
	cursor:default;
	border:0px;
	padding:0px;
	margin:0px;
}

/* set the size of the unordered list to neatly house the thumbnails */
#gallery_container li {
	float:left;
}