/* Gallery styles */

.gallery #gallery{
	width:640px;
	overflow:hidden;
}

.gallery #slides{
	height:400px;
	width:100%;
	overflow:hidden;
  text-align:center;
}

.gallery .slide{
	float:left;
}

.gallery #menu{
  overflow:hidden;
  margin:auto;
  margin-top:10px;
  text-align:center;
  width:100%;
  background-color:white;
}

.gallery #controls {
  position:relative;
}

.gallery #controls a {
  position:absolute;
  width:300px;
  height:400px;
  background-repeat:no-repeat;
  overflow:hidden;
}

.gallery .arrow-prev {
  text-indent:-10000em;
  background:url('/images/left.png') 0 50%;
  left:0;
}

.gallery .arrow-next {
  text-indent:10000em;
  background:url('/images/right.png') 100% 50%;
  right:0;
}

.gallery ul{
	margin:0px;
	padding:0px;
  white-space:nowrap;
}

.gallery li{
	/* Every thumbnail is a li element */
	display:inline;
	list-style:none;
	overflow:hidden;
}

.gallery li img {
  margin:5px 0;
}

.gallery li.inact:hover{
	/* The inactive state, highlighted on mouse over */
}

.gallery li.act,li.act:hover{
	/* The active state of the thumb */
}

.gallery li.act img {
  border:2px solid #a2498a;
}

.gallery li.inact img {
  border:2px solid #fff;
}

.gallery li.act a{
	cursor:default;
}

.gallery .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
}

.gallery li a{
	height:80px;
	padding-top:10px;
	text-decoration:none;
}

.gallery #main{
	/* The main container */
	margin:15px auto;
	text-align:center;
/*	width:920px;*/
	position:relative;
}

.gallery p{
	padding:10px;
	text-align:center;
}

