/**
 * SENSITIVE BUT UNCLASSIFIED-SOURCE CODE - This entire document is considered sensitive but unclassified.
 *
 * Copyright 2018 Federal Reserve Bank of St. Louis. All Rights Reserved.
 */
/*
	Slideshow
*/

#slides {
	position:relative;
	clear: both;
}

/*
	Slides container
	Important:
	Set the width of your slides container
	Set to display none, prevents content flash
*/

.slides_container {
	width:820px;
	overflow:hidden;
	position:relative;
	display:none;
	z-index: 100;
}

/*
	Each slide
	Important:
	Set the width of your slides
	If height not specified height will be set by the slide content
	Set to display block
*/

.slides_container div.slide {
	width:820px;
	height:250px;
	display:block;
	z-index: 100;
}


/*
	Next/prev buttons
*/

#slides .next,#slides .prev {
	position:absolute;
	top:0px;
	left:-39px;
	width:24px;
	height:43px;
	display:block;
	z-index:101;
}

#slides .next {
	left:585px;
}

/*
	Pagination
*/

.pagination {
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	z-index: 140;
	position: absolute;
	bottom: 0;
	width: auto;
	left: 50%;
	transform: translate(-50%, -50%);
}

.pagination li {
	float:left;
	margin:0 1px;
	list-style:none;
}

.pagination li a {
	display:block;
	width:12px;
	height:0;
	padding-top:12px;
	background-image:url(images/pagination.png);
	background-position:0 0;
	float:left;
	overflow:hidden;
}

.pagination li.current a {
	background-position:0 -12px;
}

/*
	Caption
*/

.caption {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 24pt;
	color: #FFF;
	text-align: center;
	width: 600px;
	position: relative;
	left: 20px;
	top: -100px;
	z-index: 130;
}

.captionfirst {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16pt;
	color: #FFF;
	text-align: left;
	width: 400px;
	position: relative;
	top: -210px;
	float: left;
	padding-left: 20px;
}
