
	#slideshow{
		width:360px;	/* Total width of slideshow */

	}

	#previewPane{
		border:0px solid #CCCCCC;
		text-align:center;
		vertical-align:middle;
		/* position:relative; */
	}

	#previewPane img{
		
		max-width:350px;
		max-height:350px;
		
		/* IE Image max-width */
		width: expression(this.width > 350 ? "350px": true);
		height: expression(this.height > 350? "350px": true);	
		
		
	}
	
	#galleryContainer{
		
		height:105px;	/* Height of the images + 2 */
		border:0px solid #CCCCCC;
		position:relative;		
		
		/* CSS HACK */		
		height: /**/105px;
		width:350px;	
		
				
	}
	
	#theImages{
		position:absolute;
		height:110px;
		left:5px;
		width:350px;		
		
	}
	
	#theImages img{
		
		padding:1px;		
		border:1px solid rgb(205, 206, 200);
		max-width:100px;
		max-height:100px;
		/* IE Image max-width */
		width: expression(this.width > 100 ? "100px": true);
		height: expression(this.height > 100? "100px": true);
		
	}

	
