﻿/*
	root element for the gallery.
	when scrolling occurs this element stays still.
*/
.gallery {

	/* required settings */
	position:relative;
	overflow:hidden;
	height:330px;}

/*
	root element for gallery items. Must be absolutely positioned
	and it should have a extremely large width to accomodate gallery items.
	it's enough that you set the width and height for the root element and
	not for this element.
*/
.gallery .items {
	/* this cannot be too large */
	width:20000em;
	position:absolute;
	clear:both;
	z-index:0;
	left:0;
}

/* single gallery item */
.gallery img {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	width:470px;
	border:1px solid #ccc !important;
	cursor:pointer;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}
/* single gallery item */
.gallery a  {
	float:left;
	margin:20px 5px 20px 21px;
	background-color:#fff;
	padding:2px;
	border:1px solid #ccc;
	cursor:pointer;	
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
}
.gallery a img {
	float:left;
	margin:0 0 0 0!important;
	padding:0!important;
	cursor:pointer;
	border:1px solid #f5fbfa;
	-moz-border-radius:1px;
	-webkit-border-radius:1px;
}
/* active item */
.gallery a.active img{
	border:1px solid #008f83;
	z-index:9999;
	position:relative;
}

/* this makes it possible to add next button beside gallery */
.gallery {
	margin:0 auto;
	width:520px !important;
}

/* prev, next, prevPage and nextPage buttons */
a.browse {
	background:url("/Util/Imagens/Icones/hori_large.png") no-repeat scroll 0 0 transparent;
	top:50%;
	cursor:pointer;
	display:block;
	font-size:1px;
	height:20px;
	margin:0;
	position:absolute;
	width:30px;}

/* right */
a.right { background-image: url(/Util/Images/Botoes/Botao-Proximo.jpg);
	right:0px;}
/*a.right:hover { background-position:-30px -30px; }
a.right:active { background-position:-60px -30px; } */


/* left */
a.left { background-image: url(/Util/Images/Botoes/Botao-Anterior.jpg);
	left:0;}
/*a.left:hover { background-position:-30px 0; }
a.left:active { background-position:-60px 0; }*/

/* up and down */
a.up, a.down		{ 
	background:url(/_layouts/1046/CustonContentSharePoint/images/vert_large.png) no-repeat; 
	float: none;
	margin: 10px 50px;
}

/* up */
a.up:hover  		{ background-position:-30px 0; }
a.up:active  		{ background-position:-60px 0; }

/* down */
a.down 				{ background-position: 0 -30px; }
a.down:hover  		{ background-position:-30px -30px; }
a.down:active  	{ background-position:-60px -30px; } 


/* disabled navigational button */
a.disabled {
	visibility:hidden !important;		
} 	
a.lightbox,
a.lightbox:active ,
a.lightbox:visited{
	border:none;
}
a.lightbox img{
	border:none;
}
.TableGalleryContainer tbody tr td
{
	align:center;
}
.PhotoContainer	{
	display:block;
	margin: auto;
}
	
.GalleryTitle, .GalleryCaption{
	display:none;
}

.SliderGalleryContainer{
	position:relative;
	overflow:hidden;
	background:url(/Util/Imagens/Estrutura/SliderGalleryContainer.gif) repeat-x bottom left;
}