
/*----------------- CONTAINER -----------------------------------------------------------------------------------------------------------------------------*/

 .grid-gallery
	{
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select:none
	user-select: none;
	}

 .gallery-inner
	{
	overflow: hidden;
	/*border: 1px solid transparent;*/
	}

 .gallery-scroll
	{
	white-space: nowrap;
	}

 .gallery-next-btn
	{
	background-image: url('images/next.png');
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
	}

 .gallery-back-btn
	{
	background-image: url('images/back.png');
	background-repeat: no-repeat;
	background-position: center left;
	cursor: pointer;
	}

 .gallery-next-btn:hover
	{
	background-image: url('images/next-hover.png');
	}

 .gallery-back-btn:hover
	{
	background-image: url('images/back-hover.png');
	}

 .gallery-next-btn:active
	{
	background-image: url('images/next-active.png');
	}

 .gallery-back-btn:active
	{
	background-image: url('images/back-active.png');
	}



/*----------------- PHOTOS --------------------------------------------------------------------------------------------------------------------------------*/


 .inline-gallery .photo-container
	{
	position: relative;
	display: inline-block;
	}

 .inline-gallery .photo-border
	{
	position: absolute;
	background-repeat: no-repeat;
	cursor: pointer;
	background-color: #ffffff;
	border-top: 1px solid #eeeeee;
	border-left: 1px solid #eeeeee;
	box-shadow: 2px 2px 6px #dddddd;

	-webkit-transition: all 200ms linear;
	-moz-transition: all 200ms linear;
	-o-transition: all 200ms linear;
	-ms-transition: all 200ms linear;
	transition: all 200ms linear;
	}

 .inline-gallery .photo-border:hover
	{
	background-color: #eeeeee;
	}

 .inline-gallery .photo-border:hover .photo-pattern
	{
	opacity: 0;
	filter: alpha(opacity=0);
	}

 .inline-gallery .photo-picture
	{
	position: absolute;
	cursor: pointer;
	}

 .inline-gallery .photo-pattern
	{
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	background-color: #ffffff;
	background-repeat: no-repeat;
	opacity: 0;
	filter: alpha(opacity=0);

	-webkit-transition: opacity 300ms linear;
	-moz-transition: opacity 300ms linear;
	-o-transition: opacity 300ms linear;
	-ms-transition: opacity 300ms linear;
	transition: opacity 300ms linear;
	}

 .inline-gallery .photo-comment
	{
	position: absolute;
	font-weight: bold;
	text-align: center;
	white-space: normal;
	line-height: 15px;
	font-size: 11px;
	}

 .inline-gallery .photo-loading
	{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0; left: 0;
	z-index: 10;
	filter: alpha(opacity=40);
	background-color: #ffffff;
	background-color: RGBA(255, 255, 255, 0.8);
	background-image: url('images/loading.gif');
	background-repeat: no-repeat;
	background-position: center center;
	display: none;
	}

 .inline-gallery .loading .photo-loading
	{
	display: block;
	}
