/* 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;
	/* The width of the gallery */
	width:600px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:400px;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:600px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:32px;
	padding: 0px;
	width: 130px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
}

#menu ul{
	padding:0px;
	margin: 0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:28px;
	list-style:none;
	height:32px;
	overflow:hidden;
	float: left;
	margin: 0px;
	padding: 0px;
	background-image: url(/images/inactive_bg.png);
	background-repeat: no-repeat;
}

#menu li.inact:hover{
	background-image: url(/images/pic_bg.png);
	background-repeat: no-repeat;

}

#menu li.act,#menu li.act:hover{
	/* The active state of the thumb */
	background:url(/images/active_bg.png) no-repeat;
}

#menu li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(/images/divider.png) no-repeat right;
}

#menu li a{
	display:block;
	height:32px;
}

a img{
	border:none;
}
