/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 9px #AAAAAA;
	-webkit-box-shadow:0 0 9px #AAAAAA;
	box-shadow:0 0 9px #AAAAAA;
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	border-radius:5px;
	
	border:1px solid white;
	
	/* The width of the gallery */
	width:950px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:410px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:950px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:30px;
}
#main ul li img {border:2px solid #FFF}
#main ul{
	margin:0px;
	padding:0px;
}

#main li{
	/* Every thumbnail is a li element */
	
	display:inline-block;
	list-style:none;
	height:24px;
	overflow:hidden;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:#6963AB;
	color:#FFF;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background:#6963AB;
	color:#FFF;
}

li.act a{
	cursor:default;
	color:#FFF;
}

img{
	border:5px solid #FFF;
}

#main{
	/* The main container */
	margin:0px auto;
	text-align:center;
	width:950px;
	clear:left;
}
