@charset "UTF-8";
/* CSS Document */

#gallery{
	background:#ffffff;
	
	/* The width of the gallery */
	width:700px;
	overflow:hidden;
}

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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:25px;
	text-align:center;
	position: relative;
	top: 10px;
}

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

li{
	/* Every thumbnail is a li element */
	width:20px;
	display:inline-block;
	list-style:none;
	height:45px;
	overflow:hidden;
	font: "Courier New", Courier, monospace;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	font: "Courier New", Courier, monospace;
	font-size: 11px;
	color: #000000;
	background-color: #FFFF00;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	font: "Courier New", Courier, monospace;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
}

li.act a{
	font: "Courier New", Courier, monospace;
	font-size: 11px;
	color: #000000;
	text-decoration: underline;
}

li a{
	font: "Courier New", Courier, monospace;
	font-size: 11px;
	color: #000000;
	text-decoration: none;
}