.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.view-frontpage-slideshow {
	overflow: hidden;
	margin-top: -3em
}

/*----------------------------------------
/           Homepage Slideshow
/----------------------------------------*/

.front-slideshow .view-content .item-list ul {
	list-style: none !important;
}

.front-slideshow .view-content .item-list ul li {
	list-style: none;
	margin: 0;
}

/**, *:before, *:after {
  -webkit-box-sizing: border-box; 
  -moz-box-sizing: border-box; 
  box-sizing: border-box;
}*/

.front-slideshow .view-content .item-list ul li {
    list-style: none;
    margin: 0;  
    position: absolute; 
    top: 0; 
    left: 0; 
    overflow: hidden;
}
.front-slideshow .view-content .item-list {      
    position: relative;
}

.front-slideshow .view-content .item-list > ul {
    width: 100%;
    max-width: 940px;
    position: relative;
    list-style: none;
    padding: 0;
    margin: 0 auto;
    overflow: hidden;
    display: block;
    height: 100%;
    max-height: 622px;
}

.front-slideshow .view-content .item-list ul li .views-field-field-news-image-fid {
    min-width: 100%; 
    max-width: none; position: absolute; 
    left: 50%; 
    -webkit-transform: translateX(-50%); 
    transform: translateX(-50%);
}

.front-slideshow .view-content .item-list ul li .views-field-field-news-image-caption-value {
   position: relative;
	margin-top: 60%;
	width: 50%;
}


/*text underneath slide images*/
.views-field-field-frontpage-slide-link-url span a {
	color: rgb(200, 38, 38);
	font-size: 15px;
	font-family: "Lucida Sans Unicode","Lucida Grande",Garuda,sans-serif;
	letter-spacing: 1px;
	text-decoration: none;
	display: block;
	height: 2.5em;
	overflow: hidden;
	line-height: 1.3em;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
	opacity: 1;
}

.views-field-field-frontpage-slide-link-url span a:hover {
	opacity: .6;
	-webkit-transition: all 250ms ease;
	-moz-transition: all 250ms ease;
	-o-transition: all 250ms ease;
	transition: all 250ms ease;
}

.views-field-field-frontpage-slide-link-url span {
	width: 70%;
	display: block;
}

.views-field-field-frontpage-slide-image-fid {
	overflow: hidden;
	line-height: 0;
}

.views-field-field-frontpage-slide-link-url {
	background-color: #ECECEC;
	width: 100%;
	height: auto;
	padding: 2em;
	position: relative;
}

/*navigation arrows*/
nav.arrows {
    position: absolute;
    margin-top: 19em;
    width: 100%;    
    left: 0;
    display: none;
}

@media (min-width: 760px) {
	nav.arrows {
		display: block;
	}
}

a.prev {
    background: url("img/left-arrow2.svg") no-repeat top left;
    padding: 13px;
    color: white;
    display: block;
    height: 38px;
    margin-left: 1.4em;
    width: 49px;
    text-indent: -9999em;
    background-size: contain;
    z-index: 99;
	position: relative;
	cursor: ew-resize;
}
a.next {
    background: url("img/right-arrow2.svg") no-repeat top left;
    padding: 13px;
    color: white;
    float: right;
    margin-top: -5.3em;
    display: block; 
    height: 38px;
    margin-right: 1em;
    width: 25px;
	text-indent: -9999em;
	background-size: contain;
	z-index: 99;
	position: relative;
	cursor: ew-resize;
}


/*slideshow buttons*/
ol.slideshow-btn-ul {
	list-style: none;
	line-height: 0;
	margin: 0 !important;
	display: block;
	position: absolute;
	width: auto;
	bottom: 3.7em;
	right: 3em;
}

.slideshow-btn {
	float: left;
	display: inline-block;
	margin: 1px 3px;
	text-indent: -99999px;
	height: 12px;
	width: 12px;
	background-color: rgb(145, 145, 145);
	border-radius: 10px;
	cursor: pointer;
	z-index: 999;
	position: relative;
}

.slideshow-btn-active {
	background-color: rgb(211, 86, 86) !important;
}

.slideshow-btn-container {
    width: inherit;
}



/*----------------------------------------
/            Slideshow Keyframes
/----------------------------------------*/


.item-list .navOutNext {
	opacity: 1;
	-webkit-animation: slideOutBottom 0.7s forwards ease-in-out;
	animation: slideOutBottom 0.7s forwards ease-in-out;
}

.item-list .navInNext {
	opacity: 1;
	-webkit-animation: slideInHalfFromTop 0.7s forwards ease-in-out;
	animation: slideInHalfFromTop 0.7s forwards ease-in-out;
}

.item-list .navOutPrev {
	opacity: 1;
	-webkit-animation: slideOutHalfTop 0.7s forwards ease-in-out;
	animation: slideOutHalfTop 0.7s forwards ease-in-out;
}

.item-list .navInPrev {
	opacity: 1;
	z-index: 1001;
	-webkit-animation: slideInFromBottom 0.7s forwards ease-in-out;
	animation: slideInFromBottom 0.7s forwards ease-in-out;
}

@-webkit-keyframes slideOutBottom {
	from {} /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
	to {
		-webkit-transform: translateX(100%);
	}
}

@keyframes slideOutBottom {
	from {} /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
	to {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
}

@-webkit-keyframes slideInHalfFromTop {
	from {
		-webkit-transform: translateX(-100%);
	}
	to {
		-webkit-transform: translateX(0);
	}
}

@keyframes slideInHalfFromTop {
	from {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

@-webkit-keyframes slideOutHalfTop {
	from {} /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
	to {
		-webkit-transform: translateX(-100%);
	}
}

@keyframes slideOutHalfTop {
	from {} /* Fixes Chrome issue 35.0.1916.114 (easing breaks) */
	to {
		-webkit-transform: translateX(-100%);
		transform: translateX(-100%);
	}
}

@-webkit-keyframes slideInFromBottom {
	from {
		-webkit-transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(0);
	}
}

@keyframes slideInFromBottom {
	from {
		-webkit-transform: translateX(100%);
		transform: translateX(100%);
	}
	to {
		-webkit-transform: translateX(0);
		transform: translateX(0);
	}
}

