 /* ---------------------------------------------------- */
/* SLIDESHOW
/* ---------------------------------------------------- */
#slideshow
{
		float: left;
		clear: both;
		position: relative;
		width: 100%;
		height: 400px;
		max-height: 400px;
		padding: 0;
		margin: 0;
		overflow: hidden;
}

#slideshow ul
{
		margin: 0;
		padding: 0;
		list-style-type: none;
		height: 1%; /* IE fix */
}

#slideshow ul:after
{
		content: ".";
		clear: both;
		display: block;
		height: 0;
		visibility: hidden;
}

/* ---------------------------------------------------- */
/* SLIDESHOW > SLIDES
/* ---------------------------------------------------- */
    #slideshow > .slides {
        overflow: hidden;
        width: 100%;
        max-height: 400px;
        margin: 0;
        padding: 0;
    }

#slideshow > .slides > ul
{
		margin: 0;
		padding: 0;
}


        #slideshow > .slides > ul > li {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 400px;
            /* float: left; */
            padding: 0;
            margin: 0;
            list-style-type: none;
            line-height: 0%;
			background-color: white;
        }

#slideshow > .slides > ul > li#slide-one { /* Causes the first slide to display and hides the controls if JavasSript is turned off */
	z-index: 200;
}
#slideshow #showallslides {
	position: absolute;
	top: 82px;
	left: 98px;
	z-index: 90;
	width: 130px;
	height: 24px;
	font-size: 12px;
	line-height: 1.6em;
	text-align: center;
	overflow: hidden;
}
#slideshow #showallslides a:link {
	color: #82b0d2;
}
#slideshow #showallslides a:visited {
	color: #82b0d2;
}

#slideshow .slides img { border: none; }

/* ---------------------------------------------------- */
/* SLIDESHOW > NAVIGATION
/* ---------------------------------------------------- */
#slideshow .slides-nav
{
		background: none;
		position: absolute;
		bottom: 10px;
		right: 10px;
		z-index: 9;
		margin: 0;
		padding: 0;
		width: 130px;
		height: 24px;
		background-color: #1c3671;
		border: 1px solid #426ead;
}


	#slideshow .slides-nav li {
		list-style: none;
		float: left;
		margin: 0;
		padding: 0;
		background: #1c3671 url(../images/slideshow-controlbkgnd.gif) no-repeat top right;
	}

	#slideshow .slides-nav li a {
		float: left;
		display: block;
		margin: 0;
		width: 26px;
		height: 24px;
		font-family: 'Montserrat', 'Arial Rounded MT', sans-serif;
		font-size: 18px;
		line-height: 1em;
		text-align: center;
		text-decoration: none;
		color: #82b0d2;
		border: none;
		position: relative;
		bottom: -3px;
	}

/* anchor border */
/*#slideshow:after { 
		content: "";
		background: hsl(210, 62%, 85%);
		position: absolute;
		bottom: 0;
		right: 0;
		height: 42px;
		width: 1px;
		z-index: 7;
	}
*/

.js #slideshow .slides-nav li.on {
	background-color: #426ead;
	background-image: none;
}
.js #slideshow .slides-nav li.on a {
	color: hsl(0, 0%, 100%);
}

	/* ---------------------------------------------------- */
	/* SHOW DISCLAIMER FOR EXTERNAL LINKS IN SLIDESHOW
/* ---------------------------------------------------- */
	#slideshow .more .externalllinktooltipleft {
	position: absolute;
	left: -3000px;
	top: -43px;
	font-size: 0.9em;
	line-height: 1em;
	text-align: center;
	width: 266px;
	height: 35px;
	padding: 10px 6px 0 6px;
	background: transparent no-repeat 0 -45px;
	/*	background: transparent url(../images/externalllinktooltip.png) no-repeat 0 -45px;*/
	/* border: 1px solid #bbb;
	-moz-border-radius-topleft: 4px;
	border-top-left-radius: 4px;
	-moz-border-radius-topright: 4px;
	border-top-right-radius: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	border-bottom-right-radius: 4px; */
}
#slideshow .more:hover .externalllinktooltipleft {
	display: block; /* Necessary to work in IE7 & IE8 */ 
	left: 13px;
}
#slideshow .more .externalllinktooltipleft a {
	display: inline;
	height: auto;
	padding: 0;
}

/* content */

#slideshow h3, #slideshow h4 {
	text-align: center;
	text-transform: none;
	font-weight: 500; /*medium*/
	font-size: 150%;
	font-family: 'Montserrat', 'Arial Rounded MT', sans-serif;
	margin: 0em 40px;
	padding: 0;
	padding-top: 1em;
	line-height: normal;
}

	#slideshow h3 a, #slideshow h4 a {
		/*text-decoration: solid 1px underline; /*text-decoration-thickness (1px) not in all browsers yet*/
		color: white;
	}


#slideshow .pnlImg {
	height: 100%;
	background-color: hsl(210, 62%, 70%) !important;
	background-image: -webkit-gradient(linear, left top, left bottom, from(hsl(210, 62%, 62%)), to(hsl(210, 62%, 30%)));
	background-image: -webkit-linear-gradient(top, hsl(210, 62%, 62%), hsl(210, 62%, 30%));
	background-image: -moz-linear-gradient(top, hsl(210, 62%, 62%), hsl(210, 62%, 30%));
	background-image: -o-linear-gradient(top, hsl(210, 62%, 62%), hsl(210, 62%, 30%));
	background-image: linear-gradient(to bottom, hsl(210, 62%, 62%), hsl(210, 62%, 30%));
	/*background-image: -webkit-linear-gradient(-30deg, #1c3671 5%, hsl(0, 0%, 100%) 40%);*/
}

	#slideshow .pnlImg img { /* this level of specificity is needed to override captioned image default in level0.css */
		float: left;
		height: 100%;
		width: auto; /* needed to keep proportion (unless below 900px window width) */
		max-height: 400px;
		padding-right: 40px; /* match p and h4 margin-right */
	}

	#slideshow .pnlImg p {
		font-size: 125%;
		margin: 1em 40px 20px 40px;
		color: hsl(0, 0%, 93%);
	}

	#slideshow .pnlImg ul {
		margin: 5px 20px 5px 0px;
	}

		#slideshow .pnlImg ul li {
			position: relative;
			margin-left: 5px;
		}

#slideshow p > a, #slideshow ul > li > a {
	font-weight: bold;
	color: hsl(0, 0%, 93%);
}

#slideshow a.morelink {
	font-style: italic;
	color: #dfb982;
	text-decoration: none;
}

#slideshow.blueBkgd {
	background-color: hsl(210, 62%, 33%); /* blue */
	color: White;
}

#slideshow.greenBkgd {
	background-color: rgb(113, 149, 0); /* green */
	color: White;
}

#slideshow.whiteBkgd {
	background-color: White;
	color: Black;
	margin-right: 0px;
}

	#slideshow.whiteBkgd p, #slideshow.whiteBkgd ul {
		margin-right: 0px;
	}

	#slideshow.whiteBkgd h2 {
		font-size: 150%; /* 18px; */
		font-weight: normal;
		padding-bottom: 5px;
		margin-right: 0px;
	}
