/* Gallery styles */

#gallery{
	/* The width of the gallery */
	width:318px;
	overflow:hidden;
}

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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */

}

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

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

#menu li.inact:hover{
	/* The inactive state, highlighted on mouse over */

}

#menu li.act,li.act:hover{
	/* The active state of the thumb */
	
}

#menu li.act a{
	cursor:default;
	background:url('/main/theme/basic/skin/latest/apple-like-gallery/img/on.png') no-repeat;
}

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

}

#menu li a{
	display:block;
	background:url('/main/theme/basic/skin/latest/apple-like-gallery/img/off.png') no-repeat;
	width:10px;
	height:10px;
}

a img{
	border:none;
}

#main{
	/* The main container */
	text-align:right;
	width:318px;
	position:relative;
}