/* CSS Document */
/* ****************** LAYOUT & POSITIONING STYLES FOR IMAGE GRIDS ******************** */

.detail_img {
	display: block;
	float: left;
	clear: left;
	white-space: nowrap;
	background-color: #FFFFFF;
	padding: 1px;
	border: 1px solid #A1A1A1;
	margin-bottom: 18px;
}

#coll1, #coll2, #colr2, #coll3, #colr3, #coll4, #colr4 {
	margin-top: 36px;
	float: left;
	clear: none;
}

#colr2, #colr3, #colr4 {
	margin-left: 18px;
}

/* Left & Right columns must be given a width otherwise Safari drops the right column below the left */

/* gridID = 1 */
#coll1 {
	width: 466px;
}

/* gridID = 2 */
#coll2 {
	width: 295px;
}

/* Using float: right was causing probs with vert column width in different browsers */
#colr2 {
	width: 153px;
}


/* gridID = 3 */
#coll3, #coll4 {
	width: 224px;
}

/* Using float: right was causing probs with vert column width in different browsers */
#colr3, #colr4 {
	width: 224px;
}
