/* Gallery styles */

#gallery{
	/* 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:url(img/panel.jpg) repeat-x bottom center #ffffff;
	/* The width of the gallery */
	width:300px;
	overflow:hidden;
}

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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:70px;
}

#menu ul{
	margin:0px;
	margin-top:10px;
	padding:0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:68px;
	display:inline-block;
	list-style:none;
	float:left;
	margin-left:5px;
	height:68px;
	text-align:center;
	overflow:hidden;
	border:1px solid #dcdcdc;
}

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(img/pic_bg.png) repeat;
	border:1px solid #1b75c2;
}

#menu li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(img/active_bg.png) no-repeat top;
}

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

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
}

#menu li a{
	display:block;
	height:80px;
	padding-top:10px;
}


#menu a img{
	border:none;
}


