

/* Gallery styles */

#sermon-gallery{
	/* CSS3 Box Shadow */
	
	text-align:center;
	
	/* CSS3 Rounded Corners */
	
	
	-moz-border-radius-bottomright:4px;
	-webkit-border-bottom-right-radius:4px;
	border-bottom-right-radius:4px;
	
	
	/* The width of the gallery */
	width:920px;
	overflow:hidden;
	margin: 0 0 20px 0;
}

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

.sermon-slide{
	float:left;
}

#sermon-menu{
	/* This is the container for the thumbnails */
	height:45px;
	border-top: solid 2px #000000;
}

#sermon-menu ul{
	margin:0px;
	padding:0px;
}

#sermon-menu li{
	/* Every thumbnail is a li element */
	width: 60px;
	display: inline-block;
	list-style: none;
	vertical-align: top;
	overflow: hidden;
}

li.inact:hover{
	/* The inactive state, highlighted on mouse over */
	background:url(http://www.oursojourn.org/new/wp-content/themes/sojournv2/images/sermon-gallery/pic_bg.png) repeat;
}

li.act,li.act:hover{
	/* The active state of the thumb */
	background:url(http://www.oursojourn.org/new/wp-content/themes/sojournv2/images/sermon-gallery/active_bg.png) no-repeat;
}

li.act a{
	cursor:default;
}

#sermon-menu li.fbar{
	/* The left-most vertical bar, next to the first thumbnail */
	width:2px;
	height: 45px;
}

#sermon-menu li a{
	display:block;
	height:35px;
	padding-top:10px;
}

a img{
	border:none;
}


/* The styles below are only necessary for the demo page */


#unionmain{
	/* The main container */
	margin:15px auto;
	text-align:center;
	width:920px;
	position:relative;
}

