* {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
	-webkit-touch-callout: none;
	outline:none;
}
html,body {
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-family: sans-serif;
	position: relative;
	background: #313131 url(./bg.png);
	cursor: default;
}
#sidebar {
}
.logo {
	padding-top: 20px;
	text-align: center;
}
#content {
	background: url(./dark.png);
}
.portfolio {
	position: relative;
}
#portfolio {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}
.portfolio-items {
	position: relative;
	width: 2000%;
	height: 100%;
}
.portfolio-item {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	height: 100%;
	width: 5%;
	float: left;
	background-position: center center;
	background-repeat: no-repeat;
}
.portfolio-next, .portfolio-prev {
	display: none;
	width: 15%;
	height: 100%;
	background: rgba(0,0,0,.3);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 57px;
	opacity: 0;
	position: absolute;
	z-index: 99;
	top: 0;
	bottom: 0;
	-webkit-transition: opacity ease .3s;
}
.portfolio-next:hover, .portfolio-prev:hover {
	opacity: .5;
}
.portfolio-next {
	right: 0;
	background-image: url(./next.png);
}
.portfolio-prev {
	background-image: url(./prev.png);
	left: 0;
}
.scene .in {
	padding: 50px;
	color: #FBFBDB;
	font-size: 300px;
	text-align: center;
}
.info {
	margin: 20px 25px;
	background: #43433F;
	background: rgba(251,251,215, .1);
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-o-border-radius: 12px;
	border-radius: 12px;
	border: solid 1px #939382;
	color: #939382;
	text-shadow: 0 1px 0 rgba(0,0,0,.2);
	box-shadow: 0 2px 1px rgba(0,0,0,.2);
	overflow: hidden
}
.info p {
	margin: 0;
	padding: 12px 15px;
	line-height: 140%;
	font-size: 14px;
}
.info-item {
	display: block;
	padding: 12px 15px;
	text-decoration: none;
	-webkit-transition: background-color ease .3s;
	-moz-transition: background-color ease .3s;
	-o-transition: background-color ease .3s;
	transition: background-color ease .3s;
}
a.info-item:hover {
	background: rgba(0,0,0,.1);
}
.info-item:not(:last-child) {
	border-bottom: solid 1px #939382;
}
.info span {
	color: #717162;
}
.info span strong {
	color: #939382;
}
.info-bank {
	padding-top: 10px;
	text-align: center;
}
.info-bank h4 {
	font-size: 11px;
	margin: 0;
}
#indicator {
	list-style: none;
	display: block;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 10px;
	text-align: center;
}
#indicator li {
	display: inline;
	display: inline-block;
	height: 10px;
	width: 10px;
	margin-right: 4px;
	background-color: rgba(0,0,0,.2);
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	-o-border-radius: 100%;
	border-radius: 100%;
	-webkit-transition: background-color ease .3s;
	-moz-transition: background-color ease .3s;
	-o-transition: background-color ease .3s;
	transition: background-color ease .3s;
}
#indicator li.active {
	background-color: rgba(251,251,215,.1);
}
@media screen and (max-width: 1460px) {
	.portfolio-item {
		background-size: 600px;
	}
}
@media screen and (min-width: 600px) {
	#sidebar {
		position: absolute;
		top: 0;
		left: 0;
		width: 300px;
		bottom: 0;
		overflow: auto;
		box-shadow: inset -1px 0 0 rgba(255,255,200,.05);
	}
	#content {
		position: absolute;
		left: 300px;
		top: 0;
		right: 0;
		bottom: 0;
		overflow: auto;
		box-shadow: inset 1px 0 0 rgba(0,0,0,.1);
	}
	.scenes {
		height: 100%;
	}
	.scene {
		height: 100%;
	}
}
@media screen and (max-width: 800px) {
	.portfolio-item {
		background-size: 100%;
	}
	.portfolio-next, .portfolio-prev {
		background-size: 80%;
	}
}
@media screen and (min-width: 300px) {
	.portfolio-next, .portfolio-prev {
		display: block;
	}
}
@media screen and (max-width: 400px) {
	.portfolio-item {
		background-position: 10% center;
	}
}