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:#000000;
	font-size:12px;
	background: #fff;
	font-family:Arial, Helvetica, sans-serif;
}

/* Gallery styles */

#gallery{
	/* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #AAAAAA;
	-webkit-box-shadow:0 0 3px #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 #ffffff;
	/* The width of the gallery */
	width:940px;
	overflow:hidden;
	background-color: #ffffff;
}

#slides{
	/* This is the slide area */
	height:376px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:940px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:30px;
	/* background-image: url(../images/scroll_panel.jpg); */
	
	background-repeat: no-repeat;
	background-position: 0px 0px;
}

ul{
	margin:0px;
	padding:0px;
}

li{
	/* Every thumbnail is a li element */
	width:30px;
	display:inline-block;
	list-style:none;
	height:30px;
	overflow:hidden;
	background:url(../images/scroll_inactive_bg.png) no-repeat;
	background-position: center;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(../images/scroll_inactive_bg.png) no-repeat;
	background-position: center;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(../images/scroll_active_bg.png) no-repeat;
	background-position: center;
}

li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:0px;
	background-image: url(../images/scroll_divider.png);
	background-repeat: repeat;
	background-position: right;
}

li a{
	display:block;
	background:url(../images/scroll_divider.png) no-repeat right;
	height:30px;
	padding-top:10px;
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */

h1{
	font-family:Arial, Helvetica, sans-serif;
	font-size:1.5em;
	font-weight:bold;
	margin-bottom:15px;
	text-transform: uppercase;
	letter-spacing:12px;
	text-align: right;
	color: #006699;
}


h2{
	font-family:"Myriad Pro",Arial,Helvetica,sans-serif;
	font-size:12px;
	font-weight:normal;
	position:absolute;
	right:940px;
	text-transform:uppercase;
	top:20px;
}

h3{
	font-family:Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight:normal;
	text-transform:uppercase;
	letter-spacing:8px;
	text-align:right;
	color: #006699;
}

#main{
	/* The main container */
	margin:15px auto;
	text-align:center;
	width:940px;
	position:relative;
}

a, a:visited {
	color:#666666;
	text-decoration:none;
	outline:none;
}

a:hover{
	text-decoration:underline;
	color: #006699;
}

p{
	padding:10px;
	text-align:center;
}
