/* Gallery styles */

#gallery{
	/* The width of the gallery */
	width:690px;
	overflow:hidden;
}

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

.slide{
	float:left;

}

#menugallery { }

li.menuItem{
	/* Every thumbnail is a li element */
	list-style:none;
	float:left;
filter:alpha(opacity=70);
opacity: 0.7;
-moz-opacity:0.7;
}

li.inact:hover{
filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
}

li.act,li.act:hover{
	filter:alpha(opacity=100);
opacity: 1;
-moz-opacity:1;
}

li.act a{
	cursor:default;
}

li.inact img { border:1px solid #888; }
li.act img { border:1px solid #e6e6e6; }

li.menuItem a{
	display:block;
	margin-right:10px;
	margin-top:5px;
}

a img{
	border:none;
}


