/* Designed by Corey Silvia
http://www.coreysilvia.com/
coalsi@gmail.com */
* {
margin : 0;
padding : 0;
}
#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:920px;
	overflow:hidden;
}

.slide{
	float: left;
}

#menu{
	margin-right: auto;
	margin-left: auto;
	width: 300px;
}

ul{
	margin:0px;
	padding:0px;
}

li{
	list-style:none;
	overflow:hidden;
	float: left;
	width: 60px;
}

li.inact:hover{
	background:url(img/active_bg.png) no-repeat;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(img/active_bg.png) no-repeat;
}

li.act a{
	cursor:default;
}


li a{
	display:block;
	padding-top: 10px;
}