#myparallaxslider{ /* CSS for specific carousel container called #myparallaxslider. */
width:100%;
height:100%;
}

/* ######### Shared CSS for various parts of slider (in the event of multiple sliders) ######### */

div.parallaxslider{ /* shared CSS for main carousel container */
background: black url(../images/ajaxload.gif) center center no-repeat; /* loading gif while caoursel is loading */
}

div.parallaxslider img.navbutton{ /* CSS for the nav buttons */
    background: rgba(0,0,0,0.2);
    padding: 7px 4px;
}

div.parallaxslider *{
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
}

div.parallaxslider div.slide{
position: absolute;
width: 100%;
height: 100%;
top: 0;
left: 0;
display: none;
}

div.parallaxslider div.slide div.bgoverlay{ /* CSS for each image's DIV container within main container */
position: absolute;
z-index: 0;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: black;
background-position: top center; /* center image within carousel */
background-repeat: no-repeat;
background-size: cover; /* CSS3 property to scale image within container? "cover" or "contain" */
}

div.parallaxslider div.selectedslide{ /* CSS for currently selected slide */
}

div.parallaxslider div.slide div.desc{ /* DIV that contains the textual description inside .slide */
position: absolute;
color: white;
padding: 25px 0 0 ;
text-shadow: 0 -1px 1px #8a8a8a; /* CSS3 text shadow */
z-index:5;
pointer-events: none; /* keep this property intact. Disable pointer events on desc divs themselves */
}

div.parallaxslider div.slide div.desc *{
pointer-events: auto; /* keep this property intact. Enable pointer events on individual elements within desc divs, such as links */
}

div.parallaxslider div.selectedslide div.desc{ /* CSS for currently selected slide's desc div */
}


div.parallaxslider div.slide div.desc a{
text-decoration:none;
}
div.parallaxslider div.slider-pagination{
	z-index: 9;
    display: inline-block;
    position: absolute;
	bottom: 7%;
    left: 0;
    right: 0;
}

.slider-pagination {
	margin: 1.5em 0;
	text-align: center;	
}

.slider-pagination a {
	width: 2em;
	height: 2em;
	line-height: 2;
	text-align: center;
	color: #000;
	text-decoration: none;
	display: inline-block;
	margin-right: 0.7em;
	padding: 1.4%;
	background: url('../images/nav-btn.png');
	font-size: 0;
	background-repeat: no-repeat;
	background-position: center;
	
}

.slider-pagination a.current {
	/* border-color: #000;
	background: #fff;
	background: linear-gradient( #fff, #f5f5f5 ); */
	background: url('../images/nav-btn_active.png');
	padding: 22px;
	background-repeat: no-repeat;
}
