/* BEGIN INDEX CSS ----------------------------------------------> */

#index #content
{
	max-width: none;
	margin: 0px auto;
}

#index #mainContent
{
	margin: 0;
	padding: 0;
}

#index #homeAnimation
{
	position: relative;
	width: calc(100% + 32px);
	margin: 0 0 0 -16px;
	background: #2F3351;
	height: 70vh;
	overflow: hidden;
}

#index #homeAnimation ul,
#index #homeAnimation ul li
{
	position: relative;
	z-index: 10;
	list-style: none;
	width: 100%;
	margin: 0px;
	padding: 0px;
}

#index #homeAnimation ul li:not(:nth-child(1))
/*#index #homeAnimation ul li*/
{
	display: none;
}

#index #homeAnimation .image,
#index #homeAnimation .videowrapper
{
	position: relative;
	z-index: 1;
	width: 100%;
	height: 100%;
}

#index #homeAnimation .image::after,
#index #homeAnimation .videowrapper::after
{
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(120deg, rgba(90, 98, 136, 0.259) 0%, rgba(89, 97, 135, 0.439) 16.7%, rgba(88, 95, 132, 0.922) 28.4%, #555c80 48.3%, #2d3144 100%);
	opacity: 0.48;
}

#index #homeAnimation .image img,
#index #homeAnimation .videowrapper video
{
	display: block;
	width: auto;
	height: 70vh;
	object-fit: cover;
}

#index #homeAnimation .info
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: absolute;
	z-index: 5;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: calc(100% - 32px);
	height: auto;
	max-width: 820px;
	margin: auto;
	padding: 2vw 16px 2vw 16px;
	box-sizing: border-box;
}

#index #homeAnimation .info .title
{
	padding-bottom: 8px;
	box-sizing: border-box;
	color: #fff;
	font-size: 1.6rem;
	font-weight: 700;
	line-height: 1;
	/*text-shadow: 2px 1px 2px #555;*/
	text-transform: uppercase;
}

#index #homeAnimation .info .title strong,
#index #homeAnimation .info .title bold
{
	color: #F09720;
}

#index #homeAnimation .info .abstract
{
	color: #ffffff;
}

#index #homeAnimation .info .buttontext > span
{
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	z-index: 5;
	border-radius: 44px;
	border: 2px solid #F09720;
	padding: 9px 32px;
	color: #ffffff;
	text-align: center;
	overflow: hidden;
}

#index #homeAnimation .info .buttontext > span:hover,
#index #homeAnimation .info .buttontext > span:focus
{
	border: 2px solid #F09720;
	animation: buttonSlide 300ms ease-in-out;
}

#index #homeAnimation .info .buttontext > span:before 
{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    bottom: 0;
    content: '';
    display: block;
    transform: scaleX(0);
    transition: transform 300ms ease-in-out;
    transform-origin: 0 0;
    background: #F09720;
}

#index #homeAnimation .info .buttontext > span:hover:before,
#index #homeAnimation .info .buttontext > span:focus:before
{
	transform: scaleX(1);
}

#index #homeAnimation ul li .sp_pencil
{
	position: absolute;
	bottom: 10px;
	right: 10px;
	z-index: 100;
}

#index #cyclepager
{
	position: absolute;
	z-index: 30;
	bottom: 10px;
	right: 16px;
	box-sizing: border-box;
}

#index #cyclepager button
{
	display: inline-block;
	position: relative;
	box-shadow: none;
	width: 48px;
	height: 48px;
	border: 0px;
	background: none;
	border-radius: 48px;
	border: 2px solid #fff;
	margin: 0 12px 0 0;
	padding: 0px;
	overflow: hidden;
	background: none;
	cursor: pointer;
}

#index #cyclepager button.active
{
	border-color: #F09720;
}

#index #cyclepager button:not(.active):hover,
#index #cyclepager button:not(.active):focus /* neccessary  here ?? */
{
	border-color: #F09720;
}

@media (min-width: 768px)
{
	#index #homeAnimation ul li .info .title,
	#index #homeAnimation ul li .info .abstract,
	#index #homeAnimation ul li .info .buttontext
	{
		opacity: 0;
	}
	
	#index #homeAnimation ul li.cycle-slide-active .info .title
	{
		/*transform: translate3d(0, 10%, 0);*/
		transform: translate3d(0, 20px, 0);
		opacity: 0;
		animation: slideInUp 350ms linear 0s forwards;
	}
	
	#index #homeAnimation ul li.cycle-slide-active .info .abstract
	{
		/*transform: translate3d(0, 10%, 0);*/
		transform: translate3d(0, 20px, 0);
		opacity: 0;
		animation: slideInUp 350ms linear 350ms forwards;
	}
	
	#index #homeAnimation ul li.cycle-slide-active .info .buttontext
	{
		/*transform: translate3d(0, 10%, 0);*/
		transform: translate3d(0, 20px, 0);
		opacity: 0;
		animation: slideInUp 350ms linear 700ms forwards;
	}

	@keyframes slideInUp
	{
		0% 
		{
			/*transform: translate3d(0, 10%, 0);*/
			transform: translate3d(0, 20px, 0);
			opacity: 0;
		}
		
		100% 
		{
			/*transform: translate3d(0, 0, 0);*/
			transform: translate3d(0, 0, 0);
			opacity: 1;
		}
	}
	
	#index #cyclepager
	{
		bottom: 20px;
	}
	
	#index #cyclepager button
	{
		width: 29px;
		height: 29px;
		border-radius: 29px;
	}
}

@media (min-width: 920px)
{
	#index #homeAnimation
	{
		width: calc(100% + 88px);
		margin: 0 0 0 -44px;
	}

	#index #homeAnimation .info .title
	{
		margin: 7rem 0 0 0;
		font-size: 2rem;
	}
	
	#index #cyclepager
	{
		bottom: 30px;
		right: 44px;
	}
}

@media (min-width: 1180px)
{
	#index #homeAnimation
	{
		height: 44.7627vw;
	}
	
	#index #homeAnimation .image img,
	#index #homeAnimation .videowrapper video
	{
		height: 44.7627vw;
		object-fit: unset;
	}
}

@media (min-width: 1350px)
{
	#index #homeAnimation
	{
		width: calc(100% + 160px);
		margin: 0 0 0 -80px;
	}
	
	#index #homeAnimation .info .title
	{
		font-size: 2.2rem;
	}

	#index #cyclepager
	{
		bottom: 60px;
		right: 80px;
	}
}


/* Search Form */

#index form#homeSiteSearch
{
	position: relative;
	width: 100%;
	max-width: 1198px;
	margin: 70px auto 90px auto;
}

#index form#homeSiteSearch > div
{
	display: flex;
}

#index form#homeSiteSearch > div > input[type=text]
{
	padding-left: 0px;
	border: none;
	border-bottom: 1px solid #707070;
	color: #3E4768;
	font-size: 1.3rem;
}

#index form#homeSiteSearch > div > input[type=text]:focus
{
	/* there must be a visual change on focus for accessibility */
	background: none;
}

#index form#homeSiteSearch > div > input[type=text]::placeholder 
{
	color: #3E4768;
	opacity: 1;
}

#index form#homeSiteSearch > div > input[type=text]:focus::placeholder 
{
	opacity: 0.4;
}

#index form#homeSiteSearch > div > button[type=submit]
{
	height: auto;
	margin: 0px;
	padding: 0px;
	background: none;
	overflow: visible
}

#content form input[type=submit], 
#content form button[type=submit]
{
	width: auto;
	background: none !important;
	border: 0px !important;
}

#index form#homeSiteSearch > div > button[type=submit] img
{
	width: 33px;
	height: 33px;
}

@media (min-width: 768px)
{
	#index form#homeSiteSearch > div > input[type=text]
	{
		font-size: 1.7rem;
	}
}


.staticNews
{
	display: none;
}

h2.staticNewsHeader
{
	text-align: left;
	--min-font-size: 22;
    --max-font-size: 30;
}


/* Home Alert Message */

#alertMessage
{
	position: fixed;
	top: 0px;
	left: 0px;
	z-index: 98;
	width: 100%;
	padding: 12px 16px 12px 16px;
	background: #ccc;
	box-sizing: border-box;
	color: #000000;
	font-size: 0.9rem;
	line-height: 1.2;
	text-align: center;
}

#alertMessage p,
#alertMessage p *
{
	margin: 0;
	padding: 0;
	color: #000000;
}

#alertMessage a
{
	text-decoration: underline;
}

@media (min-width: 920px)
{
	#alertMessage
	{
		padding: 20px 44px 20px 44px;
		font-size: 1rem;
	}
}

@media (min-width: 1350px)
{
	#alertMessage
	{
		padding: 20px 80px 20px 80px;
	}
}


/* Home Notice Message */

#noticeMessage
{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	z-index: 2000; /* so we can be over the header div */
	top: calc(50% - 5vh);
	left: 10px;
	height: 10vw;
	max-height: 80vh;
	width: calc(100% - 20px);
	background: #000000;
}

#noticeMessage:not(.open)
{
	display: none;
}

#noticeMessage > div
{
	position: relative;
	z-index: 999999;
	overflow: hidden;
	width: 100%;
	background: #000000;
	color: #ffffff;
	font-size: 1.1rem;
}

#noticeMessage > div > div
{
	margin: 0;
	padding: 1.5em 2.5em;
}

#noticeMessage > div div p
{
	margin: 0;
	padding: 0;
}

.noticebuttons
{
	margin-top: 1em;
}

#noticeMessage .noticebuttons > *
{
	margin-right: 1em;
}

@media (min-width: 768px)
{
	#noticeMessage
	{
		left: calc(50% - 45vw);
		width: 90vw;
	}
}

/* END INDEX CSS ------------------------------------------------> */