/*
Theme created for use with Sequence.js (http://www.sequencejs.com/)

Theme:   Apple Style
Version:   0.2 Beta
Theme Author:   Ian Lunn @IanLunn
Author URL:   http://www.ianlunn.co.uk/
Theme URL:   http://www.sequencejs.com/themes/apple-style/

This is a FREE theme and is dual licensed under the following: 
http://www.opensource.org/licenses/mit-license.php | http://www.gnu.org/licenses/gpl.html

Sequence.js and its dependencies are (c) Ian Lunn Design 2012 unless otherwise stated.
Aside from these comments, you may modify and distribute this file as you please. Have fun!
 */

#sequence-container {
	overflow: hidden;
	position: relative;
	width: 100%;
}

	#sequence-container h1 {
		font-size: 24px;
	}

	#sequence-container p {
		font-size: 20px;
		font-weight: lighter;
		color: #9B9B9B;
		line-height: 30px;
		padding-bottom: 30px;
	}

#sequence {
	display: none;
}

	#sequence p {
		text-align: left;
	}

	#sequence ul {
		list-style: none;
		margin: 0px;
		padding: 0px;
	}

		#sequence ul li {
			list-style: none;
			margin: 0px;
			padding: 0px;
		}

#sequence {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	position: relative;
	/*backface-visibility prevents graphical glitches when frames are animating*/
	backface-visibility: hidden;
}

	/*when in fallback mode (for browsers that don't support transitions) hide anything outside of the Sequence container*/
	#sequence.sequence-fallback {
		overflow: hidden;
	}

#slideshow * {
	-webkit-backface-visibility: hidden;
}

#main {
	border: none;
}

.controls {
	background: url('_Images/Sequence/bg-controls.png') no-repeat;
	height: 50px;
	margin: 0 auto;
	position: relative;
	top: 0;
	width: 198px;
	z-index: 99;
}

	.controls li {
		list-style: none;
		margin: 0px;
		padding: 0px;
	}

.prev, .next {
	opacity: 0.7;
}

.next, .prev, .pause {
	position: absolute;
	z-index: 10000;
	top: 10px;
}

.next {
	background: url('_Images/Sequence/bt-next.png') 50% 4px no-repeat;
	height: 34px;
	left: 128px;
	width: 41px;
}

	.next:hover, .prev:hover, .pause:hover {
		background-position: 50% -26px;
	}

.pause.paused:hover {
	background-position: 50% -25px;
}

.prev {
	left: 28px;
	background: url('_Images/Sequence/bt-prev.png') 50% 4px no-repeat;
	height: 34px;
	width: 41px;
}

.pause {
	background: url('_Images/Sequence/bt-pause.png') 50% 4px no-repeat;
	cursor: pointer;
	height: 33px;
	left: 78px;
	width: 42px;
}

	.pause.paused {
		background: url('_Images/Sequence/bt-play.png') 50% 4px no-repeat;
		height: 33px;
		left: 78px;
		width: 42px;
	}

.status {
	background: url('_Images/Sequence/status-bar.png') -135px 0 repeat-y;
	border-radius: 3px;
	height: 6px;
	margin: 0 auto;
	position: relative;
	top: 4px;
	width: 135px;
}

	.status.paused {
		-webkit-animation: paused 1s linear alternate infinite;
		-moz-animation: paused 1s linear alternate infinite;
		-ms-animation: paused 1s linear alternate infinite;
		-o-animation: paused 1s linear alternate infinite;
		animation: paused 1s linear alternate infinite;
	}

@keyframes

"paused" {
	0%

{
	background-position: 0 0;
	opacity: 0;
}

100% {
	background-position: 0 0;
	opacity: .7;
}

}

@-moz-keyframes paused {
	0% {
		background-position: 0 0;
		opacity: 0;
	}

	100% {
		background-position: 0 0;
		opacity: .7;
	}
}

@-webkit-keyframes

"paused" {
	0%

{
	background-position: 0 0;
	opacity: 0;
}

100% {
	background-position: 0 0;
	opacity: .7;
}

}

@-ms-keyframes

"paused" {
	0%

{
	background-position: 0 0;
	opacity: 0;
}

100% {
	background-position: 0 0;
	opacity: .7;
}

}

@-o-keyframes

"paused" {
	0%

{
	background-position: 0 0;
	opacity: 0;
}

100% {
	background-position: 0 0;
	opacity: .7;
}

}

@keyframes

"status-bar" {
	0%

{
	background-position: -135px 0;
}

100% {
	background-position: 0 0;
}

}

@-moz-keyframes status-bar {
	0% {
		background-position: -135px 0;
	}

	100% {
		background-position: 0 0;
	}
}

@-webkit-keyframes

"status-bar" {
	0%

{
	background-position: -135px 0;
}

100% {
	background-position: 0 0;
}

}

@-ms-keyframes

"status-bar" {
	0%

{
	background-position: -135px 0;
}

100% {
	background-position: 0 0;
}

}

@-o-keyframes

"status-bar" {
	0%

{
	background-position: -135px 0;
}

100% {
	background-position: 0 0;
}

}

.pause-icon {
	right: 20px;
	position: absolute;
	bottom: 20px;
}

#sequence-preloader {
	height: 100%;
	position: absolute;
	width: 100%;
	z-index: 999999;
}

@keyframes

"preload" {
	0%

{
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
}

}

@-moz-keyframes preload {
	0% {
		opacity: 0;
	}

	50% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

@-webkit-keyframes

"preload" {
	0%

{
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
}

}

@-ms-keyframes

"preload" {
	0%

{
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
}

}

@-o-keyframes

"preload" {
	0%

{
	opacity: 0;
}

50% {
	opacity: 1;
}

100% {
	opacity: 0;
}

}

#sequence-preloader img {
	background: #ff9933;
	border-radius: 6px;
	display: inline-block;
	height: 12px;
	opacity: 0;
	position: relative;
	top: -50%;
	width: 12px;
	animation: preload 1s infinite;
}

.preloading {
	height: 12px;
	margin: 0 auto;
	top: 50%;
	position: relative;
	width: 48px;
}

#sequence-preloader img:nth-child(2) {
	animation-delay: .15s;
}

#sequence-preloader img:nth-child(3) {
	animation-delay: .3s;
}

.preloading-complete {
	opacity: 0;
	visibility: hidden;
	transition-duration: 1.0s;
}
