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

body{
	 Setting default text color, background and a font stack 
	color:#444444;
	font-size:13px;
	background: #f2f2f2;
	font-family:Arial, Helvetica, sans-serif;
}*/

/* Gallery styles */

#gallery{
	

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

.slide{
	float:left;
}

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

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

li{
	display:inline-block;
	list-style:none;
	overflow:hidden;
}

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

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

li.act a{
	cursor:default;
	opacity: 0.35;

}

li.act a:hover{
	cursor:default;
	opacity: 0.35;

}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:1px;
}

li a{
	display:block;
	height:53px;
	padding-top:1px;
	opacity: 0.90;
}

li a:hover{
	display:block;
	height:53px;
	padding-top:1px;
	opacity: 1;
}

a img{
	border:none;
}


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

