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 */
	font-size:13px;
	font-family:Arial, Helvetica, sans-serif;
}

/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 0px #AAAAAA;
	-webkit-box-shadow:0 0 0px #AAAAAA;
	box-shadow:0 0 0px #AAAAAA;
	
	/* CSS3 Rounded Corners */
	
	-moz-border-radius-bottomleft:0px;
	-webkit-border-bottom-left-radius:0px;
	border-bottom-left-radius:0px;
	
	-moz-border-radius-bottomright:0px;
	-webkit-border-bottom-right-radius:0px;
	border-bottom-right-radius:0px;
	
	/* The width of the gallery */
	width:998px;
	overflow:hidden;
}

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

.slide{
	float:left;
}

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

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

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

li.act a{
	cursor:default;
}

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

li a{
	display:inline;
	height:0px;
	padding-top:0px;
}

a img{
	border:none;
}

/* The styles below are only necessary for the demo page */

#main{
	margin:0px auto;
	text-align:center;
	width:998px;
	position:relative;
	top: 0px;
	left: 0px;
	height: 0px;
}

a, a:visited {
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
}

p{
	padding:0px;
	text-align:center;
}