#gallery{
	/* CSS3 Box Shadow */
	
	
	/* 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: #fff;
	
	/* The width of the gallery */
	width:864px;
	overflow:hidden;
padding-top: 10px;
margin: auto;
padding-bottom: 4px;
}

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

.slide{
	float:left;
}

#slider_menu{
	/* This is the container for the thumbnails */
text-align: right;

}

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

#slider_menu ul li{
	/* Every thumbnail is a li element */
	display: inline-block;
text-align: center;
}

#slider_menu ul li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	
}

#slider_menu ul li.act,li.act:hover{
	background:#612929;
	-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;

}

#slider_menu ul li.act a{
	cursor:default;
color: #fff !important;
}

#slider_menu ul li a{
outline: none;
padding: 10px;
line-height: 5px;
color: 888 !important;
font-size: 12px;
text-decoration: none;
display: inline-block;
}




