/* Gallery styles */

#mains #gallery{
	/* The width of the gallery */
	width:1000px;
	overflow:hidden;
	/* 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;
	background-color: #ffffff;
	background-repeat: repeat-x;
	background-position: center bottom;	/* The width of the gallery */
	margin-left: 3px;
	margin-top: 25px;
}
#mains #slides{
	/* This is the slide area */
	height:287px;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:987px;
	overflow:hidden;
	margin-top: 15px;
}
#mains .slide{
	float:left;
}
#mains #menu{
	/* This is the container for the thumbnails */
	height:220px;
}
#mains #menu li{
	/* Every thumbnail is a li element */
	width:250px;
	display:inline-block;
	list-style:none;
	height:220px;
	overflow:hidden;
}
#mains #menu li a{
	display:block;
}
#mains #menu a ,a:visited {
	
	text-decoration:none;
	outline:none;
}
