@charset 'utf-8';

/* Gallery styles
----------------------------------------------------- */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #AAAAAA;
	-webkit-box-shadow:0 0 3px #AAAAAA;
	box-shadow:0 0 3px #AAAAAA;

	/* CSS3 Rounded Corners */

	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
	border-bottom-left-radius:4px;

	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px;

	border:1px solid white;
	
	background: #FFFFFF; /* old browsers */
	background: -moz-linear-gradient(top, rgba(255,255,255, 0.9) 0%, #EEEEEE 100%); /* firefox */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255, 0.9)), color-stop(100%,#EEEEEE)); /* webkit */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#FFFFFF', endColorstr='#EEEEEE',GradientType=0 ); /* ie */

	/* The width of the gallery */
	width: 571px;
	overflow:hidden;
	
}

#gallery #slides{
	/* This is the slide area */
	height:381px;

	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:571px;
	overflow:hidden;
}

#gallery .slide{
	float:left;
}

#gallery #menu{
	/* This is the container for the thumbnails */
	height:60px;
	margin-top:3px;
}

#gallery ul{
	margin:0px;
	padding:0px;
}

#gallery li{
	/* Every thumbnail is a li element */
	width:90px;
	display:inline-block;
	list-style:none;
	height:60px;
	overflow:hidden;
	
	opacity: 0.6;
}



#gallery li.act,li.act:hover{
	background:url("/img/gallery-selector.png") no-repeat top left transparent;
	margin-top:-10px;
	padding-top:10px;
	opacity: 1;
}

#gallery li.act a{
	cursor:default;
}



#gallery li a{
	display:block;
	height:60px;
}

#gallery a img{
	border:none;
}