/* 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 #3CA5DD;	*/
	
	/*background:url(/image/slide/panel.jpg) repeat-x bottom center #ffffff;*/
	
	/* The width of the gallery */
	width:556px;
	height:220px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:556px;
	height:220px;
	overflow:hidden;

}

.slide{float:left;}

	

#menu {
	
	/*margin:auto;*/
	clear:both;
	text-align:left;
	margin-top:-45px;
	width:556px;
	height:40px;
	z-index:500;
	/*background-color:#FF0;*/
	
	padding-left:10px;
	/*taxt-align:center;*/

	
}



/*#menu img {border:1px solid #999;}	*/
ul{margin:0; padding:0px;}

li{
	/* Every thumbnail is a li element */
	/*display:inline-block;*/
	float:left;	
	width:50px;
	height:35px;
	overflow:hidden;
	margin:0 4px 0 4px;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	/*	background:url(/image/slide/pic_bg.png) repeat;	*/
}

li.act,li.act:hover{
	/* The active state of the thumb */
/*	background:url(/image/slide/active_bg2.png) no-repeat;	*/
	width:50px;
	height:35px;
	display:inline;
	background-color:#00F;
	border:2px solid #F60;
	margin:0;
	padding:0;

}

li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
/*	background:url(/image/slide/divider.png) no-repeat right;	*/
}

li a{
/*	display:block; */
/*	background:url(/image/slide/divider.png) no-repeat right;	*/
	width:50px;
	height:35px;
/*	padding-top:10px;	*/
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */



/*	#main{	
 The main container 
	margin:15px auto;
	text-align:center;
	width:559px;
	position:relative;
}
*/