
	#galleryContainer{	/* Big Div surrounding up image, list of images and down image */
		float:left;	/* Floating */
		height: /**/200px;
		
		width: 135px;	/* IE 5.x - 120 px + 2 px for borders and 2px for padding*/
		padding:1px;	/* A little space between the black border and the content inside */
		position:relative;
		
	}
	#galleryContainer #arrow_down{	/* Arrow down image */
		height:14px;
		position:absolute;
		bottom:0px;
		cursor:pointer;
		z-index:100;
	}
	#galleryContainer #arrow_up{
		height:20px;	/* Arrow up image */
		position:absolute;
		cursor:pointer;
		top:0px;
		z-index:100;
	}
	
	#theImages{	/* DIV where the images are located */
		top:15px;
		position:absolute;
		overflow:hidden;
		height:170px;	/* Height of boxes for the images */
	}
	#theImages div{	
		position:relative;	/* Don't change this */
		height:1500px;	/* Higher than total height of thumbnails */
		
	}
	#theImages img{
		border:0px;	/* No border */
		filter:alpha(opacity=90);	/* Transparency - IE */
		opacity:0.5; /* Transparency - Firefox */
		padding-top:1px;	/* Space between images */
	}
	#previewPane #largeImageCaption{	/* CSS styling of image caption below large image */
		font-style:italic;
		text-align:center;
		font-family: Trebuchet MS, Lucida Sans Unicode, Arial, sans-serif;	/* Font to use */
		font-size:0.9em;
	}
	#theImages .imageCaption{
		display:none;
	}