/*body,h1,h2,h3,p,quote,small,form,#gallery input,#gallery ul,#gallery li,#gallery ol,#gallery label{
	margin:0px;
	padding:0px;
}*/
#gallery *
{
    margin:0px;
	padding:0px;
}

#gallery ul li 
{
    list-style:none;
    background:none;
}

/* 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:url(img/panel.jpg) repeat-x bottom center transparent;*/
	
	/* The width of the gallery */
	width:960px;
	overflow:hidden;
}

#gallery #slides{
	/* This is the slide area */
	height:400px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:960px;
	overflow:hidden;
}

#gallery .slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:61px;
	margin:0px auto;
	text-align:center;
	width:960px;
	position:relative;
}

#gallery ul{
	margin:0px;
	padding:0px;
}

#gallery li{
	/* Every thumbnail is a li element */
	width:144px;
	display:inline-block;
	list-style:none;
	height:61px;
	overflow:hidden;
	margin-left:-4px;
}

#gallery li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(img/pic_bg.png) repeat;
}

#gallery li.act,#gallery li.act:hover{
	/* The active state of the thumb */
	background:url(img/active_bg.png) no-repeat;
}

#gallery li.act a{
	cursor:default;
}

#gallery #menu .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	/*background:url(img/divider.png) repeat-y right;*/
}

#gallery li a{
	display:block;
	/*background:url(img/divider.png) repeat-y right;*/
	height:51px;
	padding-top:10px;
}

#gallery a img{
	border:none;
}

#thumbslider
{
width: 144px;
height: 61px;
position: absolute;
left: 46px;
background: url(Img/active_bg.png) no-repeat scroll 0pt 0pt transparent;
}