/* Gallery styles */

#slideshow{
	background:#B080BC url(img/panel.jpg) no-repeat center bottom;
	margin:0px auto;
	text-align:center;
	padding:0;
	height:381px;
	/* The width of the gallery */
	width:630px;
	overflow:hidden;
}

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

.slide{
	float:left;
}

#slideshow_menu{
	/* This is the container for the thumbnails */
	background:url(img/panel.jpg) no-repeat bottom center #d5bfdd;
	height:37px;
	width:630px;
}

#slideshow_menu ul{
	float:none;
	margin-right:15px;
	*margin-left:75px;
}

#slideshow_menu li{
	/* Every thumbnail is a li element */
	/* width:119px; */
	width:111px;
	display:inline-block;
	*float:left;
	list-style:none;
	height:37px;
	overflow:hidden;
}

#slideshow_menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(img/pic_bg.png) repeat;
}

#slideshow_menu li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(img/active_bg_shapeez.gif) no-repeat;
}

#slideshow_menu li.act a{
	cursor:default;
}

