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

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

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

div.parallaxslider img.navbutton{ /* CSS for the nav buttons */
	background-image: url(../img/bg_transp.png);
	background-repeat: repeat;
}

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;
	float: left;
	text-align: center;
}

div.parallaxslider div.slide div.bgoverlay{ /* CSS for each image's DIV container within main container */
position: absolute;
z-index: 1;
width: 100%;
height: 100%;
top: 0;
left: 0;
background-color: black;
background-position: center 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-top: 175px;
	text-shadow: 0px 2px 0px #000; /* CSS3 text shadow */
	z-index:5;
	pointer-events: none; /* keep this property intact. Disable pointer events on desc divs themselves */
	left: 25%;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
}

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{
color:yellow;
text-decoration:none;
}
.desc {
	font-family: vibes;
	font-size: 8em;
	color: #FFF;
	width: 35%;
	letter-spacing: -2px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	float: left;
}
.desc2 {
	font-family: robotoregular;
	font-size: 3em;
	color: #FFF;
	text-shadow: 0px 0px 5px #000; /* CSS3 text shadow */
	text-align: center;
	z-index: 555;
}
.fonttype {
	font-family: robotolight;
}
