small,form,input,ul,li,ol,label{
	/* Page reset */
	margin:0px;
	padding:0px;
}

/* Gallery styles */

#gallery{
	/* The width of the gallery */
	width:740px;
	overflow:hidden;
	margin-right: 10px;
	margin-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:60px;
	width:740px;
	text-align:center;
	float:inherit;
}

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

li{
	/* Every thumbnail is a li element */

	display:inline-block;
	list-style:none;
    margin:0 5px 5px 5px;
	overflow:hidden;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background-color: #aa0000;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background-color: #aa0000;
}

li.act a{
	cursor:default;
}

li a{
	display:block;
	height:70px;
	padding-top:10px;
}

a img{
	border:none;
}
