

/* Gallery styles */

#gallery{
	
	-moz-border-radius: 4px;
	border-radius: 4px;
	-webkit-border-radius: 4px;
		
	/* The width of the gallery */
	width:738px;
	overflow:hidden;
}

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

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:0;
	position:relative;
	top:-40px;
	left:15px
}
#menu li a {
	font-family:Arial, Helvetica, sans-serif;
	font-weight:bold;
	font-size:20px;
	text-align:center;
	text-decoration:none;
	color:#ccc;
    outline: none;
}
#gallery ul, #slides ul, #menu ul{
	margin:0px;
	padding:0px;
}

#menu li{
	/* Every thumbnail is a li element */
	width:25px;
	display:inline-block;
    float: left;
    position: relative;
	list-style:none;
	height:25px;
	overflow:hidden;
    text-align: center;
    margin-right: 7px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    background:url(img/active_bg.png) no-repeat; 
    outline: none; 
    padding: 0;
    -moz-opacity:0.8;
    -khtml-opacity: 0.8;
    opacity: 0.8;
}
#menu li:hover, #menu li.act {
    background: url('img/pic_bg.png');
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity: 1;
    color: #fff;
}
#menu li:hover a, #menu li.act a {
    -moz-opacity:1;
    -khtml-opacity: 1;
    opacity: 1;
    color: #fff;
}
#gallery li a,#slides li a{
	display:block;
	height:35px;
	padding-top:1px;
	width:25px;
	margin:0 auto;
}

#gallery a img,#slides a img,#menu a img{
	border:none;
}
