/* Default */
div.gallery_slider {
	position:		relative;
	width:			100%;
	visibility:		visible !important;
}

div.gallery_overlay {
	position:		fixed;
	top:			0;
	left:			0;
	bottom:			0;
	right:			0;
	background:		rgba(0, 0, 0, 0.3);
	z-index:		5000;
}

div.gallery_popup {
	position:		fixed;
	top:			50%;
	left:			50%;
	min-width:		64px;
	min-height:		64px;
	z-index:		5005;
	box-shadow:		0 0 10px #444444;
	border:			3px solid #444444;
	background:		#FFFFFF;
	padding:		5px;
}
div.gallery_popup div.close {
	background: #FFFFFF url('../images/close.png') no-repeat 50% 50%;
	position:absolute;
	right: -12px;
	top: -12px;
	border: 3px solid #444444;
	border-radius: 100px;
	height:25px;
	width:25px;
	cursor: pointer;
}
div.gallery_slider div.gallery_container {
	width:			100%;
}

div.gallery_slider div.clear {
	clear:			both;
}

div.gallery_slider span.arrow {
	cursor:			pointer;
	position:		absolute;
	top:			50%;
	z-index:		100;
	width:			35px;
	height:			35px;
	margin:			-17px 0 0 0;
}

div.gallery_slider span.arrow.arrow_left {
	left:			0;
	background:		url('../images/arrow_left.png') no-repeat 50% 50%;
}

div.gallery_slider span.arrow.arrow_right {
	right:			0;
	background:		url('../images/arrow_right.png') no-repeat 50% 50%;
}

div.gallery_slider div.gallery_container ul {
	padding:		0;
	margin:			0;
	list-style:		none;
	width:			100%;
}

div.gallery_slider div.gallery_container ul  li {
	/*float:			left;*/
	display:		inline-block;
	position:		relative;
	width:			100px;
	min-height:		80px;
	background:		#FFFFFF;
}

div.gallery_slider div.gallery_container ul  li img {
	max-width:		100px;
	width:			auto;
	max-height:		100px;
	display:		block;
	border:			0;
    padding:		0;
    margin:			auto;
	vertical-align:	middle;
	cursor:			pointer;
}

/* Type: Simple */
div.gallery_slider.type_simple {	
	visibility:		visible;
}

div.gallery_slider.type_simple div.gallery_container li {
	padding:		5px;
	background:		#FFFFFF;
	box-shadow:		1px 1px 2px #444444;
	margin:			3px;
}

/* Type: Slider */
div.gallery_slider.type_slider {
	background:		transparent;
	visibility:		visible;
}

div.gallery_slider.type_slider div.gallery_container {
	overflow:		hidden;
	position:		relative;
	width:			100%;
	height:			100%;
}

div.gallery_slider.type_slider div.gallery_container ul li {
	display:		inline-block;
	max-width:		none;
	max-height:		none;
	height:			auto;
	background:		transparent;
}

div.gallery_slider.type_slider div.gallery_container ul li img {
	display:		inline-block;
	max-width:		none;
	max-height:		none;
}

/* Type: Carousel */
div.gallery_slider.type_carousel {
	width:			100%;
	min-height:		150px;
	visibility:		visible;
}

div.gallery_slider.type_carousel div.gallery_container {
	overflow:		visible;
	position:		relative;
	width:			100%;
	height:			100%;
}

div.gallery_slider.type_carousel div.gallery_container ul li {
	display:		block;
	position:		absolute;
	overflow:		visible;
	max-height:		auto;
	height:			auto;
	background:		transparent;
}

div.gallery_slider.type_carousel div.gallery_container ul li img {
	display:		block;
	max-width:		100px;
	width:			100%;
	box-shadow:		1px 1px 5px #444444;
	margin:			3px;
	padding:		5px;
	background:		#FFFFFF;
}