/* CSS Document */

.img_gallery {
	padding:10px;
}

.img_gallery .title {
	margin-left:10px; 
	margin-bottom: 10px;
}

.img_gallery .nav {
	display:block;
	color: #000;
	font-size: 14px;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 50px;
	margin-top: 10px;
	margin-bottom: 10px;
}

.img_gallery .nav .spacer {
	display: inline-block;
	margin-left: 5px;
	margin-right: 5px;
	color: #440417;
}

.img_gallery .thumb {
	display: inline-block;
	cursor:pointer;
	
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	
	margin-top: 10px;
	margin-bottom: 10px;
}

.img_gallery .thumb_shadow {
	-webkit-box-shadow: #A 0px 0px 5px;
	-moz-box-shadow: #CCC 0px 0px 5px;
	box-shadow: #CCC 0px 0px 5px;
}

.img_gallery .thumb:hover {
	
}

.img_gallery .thumb_shadow:hover {
	-webkit-box-shadow: #AAA 0px 0px 5px;
	-moz-box-shadow: #AAA 0px 0px 5px;
	box-shadow: #AAA 0px 0px 5px;
}

.img_gallery .thumb img {
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}