/* 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 #ffffff;*/
	
	/* The width of the gallery */
	width:862px;
	overflow:hidden;	
	position:relative
}

#slides{
	/* This is the slide area */
	height:376px;
	
	/* jQuery changes the width later on to the sum of the widths of all the slides. */
	width:862px;
	overflow:hidden;
}

.slide{
	float:left;position:relative
}
.slide .quote{display:block;background:url(../images/home-banner-quote-bg.png) no-repeat left top; width:270px; height:214px; padding:30px 33px; color:#FFF; position:absolute; z-index:9; top:64px; left:34px;}
.slide .quote h2{font-size:18px; font-weight:normal; padding-bottom:15px;}
.slide .quote h3{font-size:42px; font-weight:normal; line-height:39px;}
#menu{
	/* This is the container for the thumbnails */
	height:88px; margin-top:9px;
}
#menu ul{float:left}
#gallery li{
	/* Every thumbnail is a li element */
	width:60px;
	height:60px;
	float:left;
	overflow:hidden;
	padding-top:28px; margin:0 -10px; margin-left:0px; text-align:center
}

#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(../images/banner-active-tab-arrow.png) no-repeat center top;
}

#gallery li.act a{
	cursor:default;
}

.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	background:url(img/divider.png) no-repeat right;
}
