#slideriosOverlay {
	background: white;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
}
#slideriosContainer {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 101;
}
.slideriosContainerTransition {
	-webkit-transition: all 0.3s 0s linear;
	transition: all 0.3s 0s linear;
}
#slideriosContainer .slideriosElement {
	float: left;
	height: 100%;
	background-position: center center;
	background-size: contain;
	background-repeat: no-repeat;
	position: relative;
	
	cursor: pointer;
}

#slideriosContainer .slideriosElement .slideriosElementOverlay {
	position: absolute;
	bottom: 10px;
	width: 100%;
	text-align: center;
	padding-left: 10px;
    padding-right: 10px;
}

#slideriosContainer .slideriosElement .slideriosElementOverlay .slideriosText {
	background: rgba(0, 0, 0, 0.6);
	display: inline-block;
	padding: 10px 16px;
	max-width: 400px;
	font-size: 14px;
	color: white;
}

/* topbar with link and title */
#slideriosTopbar {
    display: block;
    width: 100%;
    height: 44px;
    background:#F7F7F7;
    border-bottom: 1px solid #bcbcbc;
    position: fixed;
    z-index: 102;
    left: 0;
}
#slideriosTopbar .title {
    font-size: 17px;
    font-family: 'HelveticaNeue-Medium', 'Helvetica Neue Medium', 'HelveticaNeueMedium', 'Helvetica Neue', Arial, Helvetica, sans-serif;
    position: absolute;
    width: 100%;
    text-align: center;
    top: 0;
    right: 0;
    padding-top: 11px;
    z-index: 103;
}
#slideriosTopbar a.close {
	z-index: 104;
	position: absolute;
	left: 5px;
	top: 0px;
	padding: 11px;
	float: none;
	background: none;
	color: #007AFF;
	
	border-radius: 0;
	z-index: 104;
	font-size: 17px;
	text-decoration: none;
	
	display: block;
}
body.ios-homescreen #slideriosTopbar {
    height: 64px;
}
body.ios-homescreen #slideriosTopbar a.close,
body.ios-homescreen #slideriosTopbar .title {
    top: 20px;
}

/* presentation Mode */
body.slideriosPresentation #slideriosTopbar {
	display: none;
}
body.slideriosPresentation #slideriosOverlay {
	background: black;
}