#showcase{
	/* 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;
	
	-moz-border-radius-topleft:4px;
	-webkit-border-top-left-radius:4px;
	border-top-left-radius:4px;
	
	-moz-border-radius-topright:4px;
	-webkit-border-top-right-radius:4px;
	border-top-right-radius:4px;
	
	border:1px solid white;
	
	/* The width of the gallery */
	width:840px;
	overflow:hidden;
}

#showcase #slides{
	/* This is the slide area */
	height:310px;
	
	/*background:url(../images/showcase/showcase-bg.gif) top left repeat-x;*/

	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:840px;
	overflow:hidden;
}

#showcase .slide{
	float:left;
}

#showcase #middleBar{
	height:32px;
	background:url(../images/showcase/middle-bar-bg.gif) top left repeat-x;
}
	

#showcase #menu{
	/* This is the container for the thumbnails */
	height:170px;
	text-align:center;
	border:0px solid black;
	background-color: #B0B1B5;
	background-image: url(../images/schowcase/inactive-bg.gif);
	background-repeat: repeat-x;
	background-position: left top;
}

#showcase ul{
	margin:0px;
	padding:0px;
}

#showcase li{
	/* Every thumbnail is a li element */
	width:120px;
	display:inline-block;
	list-style:none;
	height:155px;
	overflow:hidden;
	border:0px solid red;
	zoom:1; /* bug ie7*/
	*display:inline; /* bug ie7*/
}

#showcase li img{
	position:relative;
	top: 30px;
}
	

#showcase li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	/*background:url(../images/showcase/active-bg.gif) top center no-repeat;*/
}

#showcase li.act,#showcase li.act:hover{
	background-image: url(../images/schowcase/active-bg.gif);
	background-repeat: no-repeat;
	background-position: center top;
}

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

#showcase .fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	/*background:url(../images/showcase/divider.png) no-repeat right;*/
}

#showcase li a{
	display:block;
	/*background:url(../images/showcase/divider.png) no-repeat right;*/
	height:150px;
	padding-top:10px;
}

#showcase a img{
	border:none;
}

