
/* Gallery styles */

#gallery{
	/* The width of the gallery */
	width:900px;
	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:900px;
	overflow:hidden;
}
.slide{
	float:left;
}

.slide a img  {
	border:0!important;
} 

#menu{
	/* This is the container for the thumbnails */
	height:45px;
	margin: -20px 0 0 5px;
}
#menu ul{
	margin:0px;
	padding:0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:13px;
	display:inline-block;
	list-style:none;
	text-align:center;
	height:13px;
	font-size:1px;
	overflow:hidden;
	background:url(../images/hslide/slide-nav.png) no-repeat 0 0;
	float:left;
	margin:0;
	padding:0;
	margin-right:4px;
}

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */
}

#menu li.act,#menu li.act:hover{
	/* The active state of the thumb */
	background:url(../images/hslide/slide-nav.png) no-repeat 13px 0;
}

#menu li.act a{
	cursor:default;
}

#menu li.act a:hover{
	cursor:default;

}

#menu .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:0px;
	/*background:url(../images/hslide/divider.png) no-repeat right;*/
}

#menu li a{
	display:block;
	/*background:url(../images/hslide/divider.png) no-repeat right;*/
	height:35px;
	padding-top:10px;
	
}

#menu a img{
	border:none;
}


/* The styles below are only necessary for the demo page */

#maingallery{
	/* The main container */
	margin:5px auto 0px auto;
	/*text-align:center;*/
	width:900px;
	position:relative;
}
