/*
 * Image Gallery
 */
.media-gallery {
	clear: both;
	margin-bottom: 1em;
	margin-top: 1em;
}
.media-gallery .cols {
	width: 100%;
	overflow: hidden;
	margin: 0 0 1em 0;
}
.media-gallery .cols:before, .media-gallery .cols:after {
	content: " ";
	display: table;
	clear: both;
}
.media-gallery .media-gallery-item {
	float: left;
}
.media-gallery .media-gallery-item.firstImage {
	margin-left: 0 !important;
}
.media-gallery .media-gallery-item.lastImage {
	margin-right: 0 !important;
}
.media-gallery .media-gallery-image {
	/*background-color: #f1f1f1;
	border: 1px solid #585858;*/
	margin: 0;
	padding: 0;
	width: auto;
	position:relative;
}
.media-gallery .media-gallery-image a {
	margin: 0;
	padding: 0;
	border: 0;
	display: block;
	line-height: 0;
}
.media-gallery img {
	border: 1px solid #585858;
	height: auto;
	margin: 0 auto !important;
	padding: 0;
	display: block;
	
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.8);
	-moz-box-shadow:0 1px 1px rgba(0,0,0,0.8);
	-ms-box-shadow:0 1px 1px rgba(0,0,0,0.8);
	-o-box-shadow:0 1px 1px rgba(0,0,0,0.8);
	box-shadow:0 1px 1px rgba(0,0,0,0.8);
}
.media-gallery .media-gallery-caption {
	text-align: center;
	margin: 0;
	padding: 0.5em;
	width: 100%;
	position: absolute;
	bottom: 0;
	color: #fff;
	background: rgb(0, 0, 0);
	background: rgba(0, 0, 0, 0.5);
	/* For IE 5.5 - 7*/
	filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#000000, endColorstr=#000000);
	/* For IE 8*/
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#000000, endColorstr=#000000)";
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
}

/*
 * Pagination
 */
.media-gallery .page-numbers {
	clear: both;
	text-align: center;
	font-size: 1em;
	margin: 1em 0;
}
.media-gallery .page-numbers a {
	padding: 2px 5px 0 5px;
	border: 1px solid;
	border-bottom: none;
}
.media-gallery .page-numbers span {
	font-weight: bold;
}
.media-gallery .page-numbers span.current {
	font-weight: bold;
	border: none;
}

/*
 * Thickbox Popup
 */
#TB_window {
	font-size: 14px;
}
#TB_caption {
	padding-left: 15px;
	height: 4em;
}
#TB_secondLine {
	
}


/*
 * mobile styles
 */
@media screen and (max-device-width: 736px) {
	.media-gallery .media-gallery-item {
		width: 100% !important;
		max-width: 100% !important;
		float: none;
		display: block;
		margin-bottom: 0.5em !important;
	}
}