/* CSS Document */

.galleryTable img { /* thumbnail images parameters here*/
	max-width:135px !important;
	max-height:155px !important; /* width of the thumbnail images */
    width: expression( this.width > 135 ? 135 : true )!important;
	height: expression( this.height > 155 ? 155 : true )!important;
	}	

.galleryTable div {
	margin-bottom: 10px;
	}
	
.galleryDescription { /*define description text here*/
	font-family:Verdana, Arial, Helvetica, sans-serif; 
	font-size:10px;
	}
	
.galleryImageBox {
	float: left;
	display: inline;
	margin-right: 4px; /* distance between image rows */
	border: 4px solid #E1E1E1; /* thumbnail images border */
	width:135px;
	height:155px; /* height of an image cell */
	}
	
.paginationBox {
	clear:both;
	padding-right: 17px;
	}