

body{
	color:#444444;
	font-size:13px;
}

/* Gallery styles */

#gallery{
	
	/* The width of the gallery */
	width:1000px;
	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:1000px;
	overflow:hidden;
}

.slide{
	float:left;
}

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

#gallery ul{
	width:1000px;
	height:80px;
	margin:0px;
	padding:0px;
	background:url(../img/navi_background.png) no-repeat;
}

#gallery ul li{
	/* Every thumbnail is a li element */
	width:312px;
	float:left;
	list-style:none;
	height:58px;
	overflow:hidden;
	margin:11px 0 0 16px;
	padding:0;
}


#gallery ul li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	margin:0px;
	padding:0px;
}

#gallery ul li.act,
#gallery ul li.act:hover{
	/* The active state of the thumb */
	background:url(../img/on.png) no-repeat;
	margin:11px 0 0 16px;
	padding:0 ;
}

#gallery ul li.act a{
	cursor:pointer;
}


#gallery ul li a{
	width:312px;
	display:block;
	height:58px;
	margin:0;
	padding:0;
}



a img{
	border:none;
}


/* The styles below are only necessary for the demo page */


#main{
	/* The main container */
	margin:0 auto;
	text-align:center;
	width:1000px;
	position:relative;
}

