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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:20px;
	font-size: 12px;
	background-position: center center;
	text-align: center;
	text-indent: 0px;
	margin: 0px;
	padding: 0px;
	border: thin solid #333333;
}

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

li{
/* Every thumbnail is a li element */
width:20px;
display: inline-block;
list-style:none;
height:20px;
vertical-align: top;
overflow:hidden;
}
li.inact:hover{
	font-weight: bold;	/* The inactive state, highlighted on mouse over */
}

li.act,li.act:hover{
	font-weight: bold;
	color: #333333;
}

li.act a{
	cursor:default;
	font-weight: bold;
	color: #006699;
}

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

}

li a{
	display:block;
	height:20px;
	padding-top:4px;
	text-decoration: none;
}

a img{
	border:none;
}

