/* Gallery styles */

/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 0px #AAAAAA;
	-webkit-box-shadow:0 0 0px #AAAAAA;
	box-shadow:0 0 0px #AAAAAA;
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius-bottomleft:0px;
	-webkit-border-bottom-left-radius:0px;
	border-bottom-left-radius:0px;
	
	-moz-border-radius-bottomright:0px;
	-webkit-border-bottom-right-radius:0px;
	border-bottom-right-radius:0px;
	
	border:1px solid white;
	
	
	/* The width of the gallery */
	width:280px;
	overflow:hidden;
	margin-left:25px;
	margin-top:-32px;
}

#slides{
	/* This is the slide area */
	height:340px;
	vertical-align:top;
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:520px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu2{
	/* This is the container for the thumbnails */
	height:35px;
	width:210px;
	vertical-align:top;
	margin-left:10px;
}

#menu2 ul li {
	display:block;
	/*background:url(img/divider.png) no-repeat right;*/
	height:15px;
	padding:7px 0;
	margin:0;
	width:210px;
	background:none;
	cursor:default;
}

#menu2 ul li.act a{
	cursor:default;
}


.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	padding-top:20px;
}

#main2{
	/* The main container */
	margin:0px auto;
	text-align:left;
	width:300px;
	float:right;
}


