.legend {
	float:left;
	margin-left:125px;
	width:725px;
	margin-bottom:5px;
}

.legend  p {
	float:left;
	padding-right:20px;
}

.legend  img {
	float:left; 
	padding-right: 5px;
}

.legend  span {
	line-height: 32px;
	float: left;
}

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

.slide{
	float:left;
}

.thumbnail {
	float:left;
}


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

#menu ul{
	margin:0px;
	padding:0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:50px;
	float:left;
	border-right:1px solid #C9C9C9;
	list-style:none;
	height:40px;
	overflow:hidden;
	padding: 0;
	margin: 0;
}

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(../images/active_bg.png) no-repeat;
}

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

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

#menu li a{
	display:block;
	height:40px;
	width:45px;
}

#menu li img {
	padding-top:7px;
	padding-left:10px;
	float:left;
}