.imagegallery{	
	padding:0px;
	min-height:200px;
	max-width:350px;
	width: expression(333 + "px");

}

.items
{
	padding-bottom:0px;
	margin-top:0px;
	width: 350px;
	border: 1px solid #DFDFDF;
	background:#EEEEEE;
}
.items .item 
{
	float:left;
	padding:10px;
	margin-bottom:3px;
	position: relative;
	width: 65px;
	height:48px;
	text-align:center;
	background-color: #EEEEEE;
	cursor: pointer;
	border: 1px solid white;
}
.items .item:hover{border: 1px solid #ddd;}
.items .item img 
{
	width: expression( document.body.clientWidth > 54 ? "55px" : "auto" ); /* sets max-width for IE */
    max-width: 55px; /* this sets the max-width value for all standards-compliant browsers */
	border:solid 2px #111308;
	height: expression( this.scrollHeight > 42 ? "43px" : "auto" ); /* sets max-height for IE */
    max-height: 45px; /* sets max-height value for all standards-compliant browsers */
    margin-bottom:3px;
}

