
#gallery{
	/* The width of the gallery */
	width:682px;
	overflow:hidden;
}

#slides{
	/* This is the slide area */
	height:183px;

	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:682px;
	overflow:hidden;
}

.slide{
	float:left;
}

#menu{
	/* This is the container for the thumbnails */
	height:45px;
}

ul{
	margin:0px;
	padding:0px;
}

li, li a{
	/* Every thumbnail is a li element */
	width:147px;
	display:inline-block;
	list-style:none;
	height:45px;
	overflow:hidden;
	background:url(../img/slider_button_inactive.gif) no-repeat top;
	color:#b9c2d1;
    font-size:12px;
    font-weight:bold;
    font-family:tahoma;
    text-decoration:none;
    text-align:center;

}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	color:#b9c2d1;
    font-family:tahoma;
    font-size:12px;
    font-weight:bold;


}

li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(../img/slider_button_active.gif) no-repeat top;
    color:#293345;
    font-family:tahoma;
    font-size:12px;
    font-weight:bold;

}

li.act a{
   cursor:default;
   color:#293345;
   text-decoration:none;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:9px;
	background:url(../img/divider.png) no-repeat right;
}

li a{
	display:block;
	background:url(../img/divider.png) no-repeat right;
	height:35px;
	padding-top:10px;
}

a img{
	border:none;
}

li.menuItem {padding-top:7px;}
