/* Gallery styles */

#gallery{
   /* CSS3 Box Shadow */
	-moz-box-shadow:0 0 3px #AAAAAA;
   -webkit-box-shadow:0 0 3px #AAAAAA;
   box-shadow:0 0 3px #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;
   background:#ffffff;
   /* The width of the gallery */
	width:700px;
   /* [disabled]height:870px; */
   overflow:hidden;
   margin: 0 auto 30px;
}

#slides{
   /* This is the slide area */
	height:460px;
   /* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:700px;
   overflow:hidden;
   margin-bottom: 15px;
}

.slide{
	float:left;
}

#slidesmenu{
   width:700px;
   text-align:left;
}

#slidesmenu ul{
	margin:0;
	padding:0 0 0 1px;
	list-style:none outside;
}

#slidesmenu li{
   width:129px;
   display:inline-block;
   list-style:none outside;
   height:100px;
   overflow:hidden;
   font-size:12px;
   padding:0 5px 3px;
   float:left;
}

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

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

#slidesmenu li.act a{
	cursor:default;
}

#slidesmenu li a{
   display:block;
   background:url(img/divider.png) no-repeat right;
   height:98px;
}


#slidesmenu a img{
	border:1px solid #cccccc;
}

.menuItem{
	float:left;
	margin:0 0 10px 0;
	padding:0 0 10px 0;
	list-style:none;
	font-size: 12px;
	text-align: center;
}
