
/*----------gallery----------*/
ul.gallery li {
	width: 100px;
	height: 100px;
	margin-bottom: 5px;
	margin-right: 18px;
	padding: 0;
	list-style: none;
	display: block;
	float: left;
}
ul.gallery li:nth-child(6n) {
 margin-right: 0px;
}
/*class "last_image" to every third li as nth child property do not work in IE*/
ul.gallery li.last_image {
	margin-right: 0;
}
ul.gallery li img {
	background: #f8f8f8;
	border: 1px solid #e5e5e5;
	padding: 4px;
}

