body,h1,h2,h3,p,quote,small,form,input,ul,li,ol,label{
	/* Page reset */
	margin:0px;
	padding:0px;
}


/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #888;
	-webkit-box-shadow:0 0 3px #888;
	box-shadow:0 0 3px #888;
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius-bottomleft:4px;
	-webkit-border-bottom-left-radius:4px;
	border-bottom-left-radius:4px;
	
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px;
	
	
	border: 1px solid #AAA;
	
	background:url(img_d/panel2.png) repeat-x bottom center #FFF;
	
	
	/* The width of the gallery */
	width:690px;
	line-height: 19px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:450px;
	background-color: #FFF;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width: 690px;
	overflow:hidden;
}

.slide{
	float:left;
}

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

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

li{
	/* Every thumbnail is a li element */
	width:103px;
	display: inline-block;
	list-style:none;
	height:80px;
	overflow:hidden;
}

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

li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(img_d/active_bg2.png) no-repeat;
}

li.act a{
	cursor:default;
}

#description{
	width: 570px;
	height: 410px;
	text-align:justify;
	padding-left: 60px;
	padding-right: 60px;
	padding-top: 40px;
	padding-bottom: 50px;
}

a img{
	border:none;
}


