/* Gallery.CSS
 * by Swd 2008
 */

/* Thumbnails list */
#Content .Thumbnails { /* We would like the list of thumbnails to be scrolled horizontally, thus we need an extra div. */
 	width: 487px;
	float: left;
	border: 1px solid #f7e1dc;
 	padding: 5px;
	overflow-x: scroll;
	overflow-y: none;
}
#Content .Thumbnails ul {
	width: 920px; /* Size of thumbnails scrollable area: 1223px */
	padding: 0;
	margin: 0;
	background: none;
 }
 
#Content .Thumbnails li {
 	padding: 0 5px 0 0;
	margin: 0;
	background: none;
	list-style-type: none;
 	float: left;
	line-height: 0;
}

#Content .Thumbnails a {
	text-decoration: none;
	border: 0;
}
#Content .Thumbnails img {
	border: 0;
}

/* Paging arrows on large picture */
#Content .Picture {
	position: relative;
	margin-bottom: 30px;
}
#Content .Picture img {
	margin-bottom: 1px;
}

#Content .Picture .NextPicture, 
#Content .Picture .PrevPicture {
	display: block;
	position: absolute;
	z-index: 0;
	top: 1px;
}
.NextPicture {
	right: 0;
}
.PrevPicture {
	left: 0;
}

#Content .Picture a.NextPicture, 
#Content .Picture a.PrevPicture {
	border: 0;
	text-decoration: none;
	height: 369px;
	width: 100px;
}
#Content .NextPicture img,
#Content .PrevPicture img { /* Image dimensions: 31 px × 56 px */
	border: 0;
	width: 0px; /* Hide arrow */
	/* background-color: darkred; */
}
#Content .NextPicture img {
	padding: 158px 41px 213px 59px;
}
#Content .PrevPicture img {
	padding: 158px 59px 213px 41px;
}

#Content .Picture  a.NextPicture:hover img {
	padding: 158px 10px 157px 59px;
	width: 31px; /* Show arrow*/
}
#Content .Picture  a.PrevPicture:hover img {
	padding: 158px 59px 157px 10px;
	width: 31px; /* Show arrow*/
}

#Content .ImageTitle {
	line-height: 15px;
	font-size: 10px;
	font-weight: bold;
	text-align: center;
	padding: 2px 0 0 0;
	margin: 2px 0 -20px 0;
	position: relative;
	z-index: 99;
}

