


/*
	Structure
	----------------------------------- */

	#slideshow
	{
		position: relative;
		overflow: hidden;

		margin: 0 auto;
		max-width: 100%;
		height: 335px

		/* No iOS tap highlight */
		-webkit-tap-highlight-color: rgba(0, 0, 0, 0);

		/* No text selection */
		-webkit-user-select: none;
		-moz-user-select: none;
		-ms-user-select: none;
		user-select: none;
	}

	#slideshow .strip
	{
		position: relative;

		/* Specify IE touch actions */
		-ms-touch-action: pan-y;
		touch-action: pan-y;
	}

	#slideshow .strip,
	#slideshow .slide
	{
		left: 0;
		top: 0;

		width: 100%;
		height: 335px;
	}

	#slideshow .strip,
	#slideshow .slide,
	#slideshow > button
	{
		-webkit-perspective: 1000;
		-webkit-backface-visibility: hidden;
	}

	#slideshow .slide
	{
		position: absolute;
		display: none;
		text-align: center;
		outline: none;
	}

	#slideshow .slide.sticky
	{
		display: block;
	}

	#slideshow > button
	{
		position: absolute;
		z-index: 1;
		top: 0;
		left: 0;

		padding: 0;
	}

	#slideshow button.next
	{
		left: auto;
		right: 0;
	}

	#slideshow .markers
	{
		text-align: right;
	}

	#slideshow ul,
	#slideshow li
	{
		display: block;
		overflow: hidden;

		margin: 0;
		padding: 0;

		list-style: none;
	}

	#slideshow li
	{
		float: left;
	}

	#slideshow li + li
	{
		margin-left: 10px;
	}

	.advanced #slideshow ul
	{
		display: inline-block;
	}


/*
	Theme
	----------------------------------- */

	#slideshow .strip
	{
		padding-bottom: 0;
	}

	#slideshow .slide
	{
		background: #CFCFCF;
	}

	#slideshow .slide:nth-child(even)
	{
		background: #DFDFDF;
	}

	#slideshow .slide p
	{
		position: absolute;
		top: 50%;
		left: 0;

		width: 100%;
		height: 40px;
		margin-top: -20px;

		font-weight: bold;
		font-size: 2em;
		line-height: 40px;
	}

	#slideshow button
	{
		margin: 0;

		background: none;
		border: 0;
		cursor: pointer;

		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
	}

	.advanced #slideshow > button
	{
		position: absolute;
		top: 55%;

		display: block;

		width: 40px;
		height: 36px;

		margin-top: -40px;
		padding-right: 10px;
		padding-left: 7px;

		background-color: #333D53;
	}

	#slideshow > button::-moz-focus-inner
	{
		margin: -1px;
		padding: 0;
	}

	#slideshow > button b
	{
		display: block;

		width: 23px;
		height: 36px;

		color: #47536F;
		font-size: 23px;

	}	

	#slideshow button.next
	{
		padding-right: 7px;
		padding-left: 10px;
	}

	#slideshow button.next b
	{
		left: 10px;
	}

	#slideshow button.next b
	{
		background-position: 0 0;
	}

	#slideshow .markers
	{
		position: relative;
		z-index: 99999;
		height: 15px;
		padding: 0;
		bottom: 20px;

		text-align: center;
		font-size: 0.8em;
	}

	/* Hide buttons when disabled */
	#slideshow.disabled > button
	{
		display: none;
	}

	#slideshow .markers button
	{
		display: inline-block;

		*display: block;
		*float: left;

		padding: 0;

		width: 10px;
		height: 10px;

		background: #e7e7e7;
		border-radius: 5px;

		text-indent: -10000px;
		opacity: 0.3;
	}

	#slideshow .markers button + button
	{
		margin-left: 10px;
	}

	#slideshow .markers button.sticky
	{
		background-color: #ffffff;
		opacity: 0.75;
	}

	/* Bigger markers for touch */
	#slideshow.touch .markers button
	{
		width: 16px;
		height: 16px;

		border-radius: 8px;
	}

	#slideshow.touch .markers button + button
	{
		margin-left: 10px;
	}


	.slide-img {
		background-repeat: no-repeat;
		width: 100%;
		height: 100%;
		background-size: cover;
		background-position: center;
	}

