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


/* 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;
	
	border:0px solid white;
	
	background:repeat-x bottom center #ffffff;
	
	/* The width of the gallery */
	width:500px;
	overflow:hidden;
}

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

.slide{
	float:left;
}
.slide_sub{
	float:left;
}


#menu{
	/* This is the container for the thumbnails */
	padding-top:10px;
	height:60px;
	float:left;
}

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

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

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

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

li.act a{
	cursor:default;
}

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

li a{
	display:block;
	height:40px;
	width:60px;
	padding-top:5px;
}

a img{
	border:none;
}


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

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

