@charset "utf-8";
/* CSS Document */
*{
	margin: 0;
	padding: 0;
}
body{
	font-family: roboto, arial;
	color: #333;
}
ul, li{
	margin: 0;
	padding: 0;
}
#mobile{
	background-image: url("../images/bg-mobile.png");
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 90vh;
	padding-top: 10vh;
}
.tab_container {
	width: 480px;
	margin: 0 auto;
	position: relative;
}
.tab_container_2 {
	width: 320px;
	margin: 0 auto;
	position: relative;
}
.tab_content {
	font-size: 16px;
	display: none;
}
.image{
	width:480px;
	height:720px;
	overflow-y: scroll;
	overflow-x: hidden;
}
.image-2{
	width:320px;
	height:480px;
	overflow-y: scroll;
	overflow-x: hidden;
}
ul.tabs {
	position: absolute;
	top: 0;
	right: -60px;
}
ul.tabs li {
	width: 40px;
	height: 40px;
	margin: 0;
	cursor: pointer;
	height: 40px;
	line-height: 40px;
	font-weight: bold;
	overflow: hidden;
	position: relative;	
	list-style: none;
	text-align: center;
	margin-bottom: 19px;
	color: white;
	border-radius: 5px;
		-moz-border-radius: 5px;
		-ms-border-radius: 5px;
		-webkit-border-radius: 5px;
		-o-border-radius: 5px;
	background: #fbb03b;
	transition: all .2s ease 0s;
		-moz-transition: all .2s ease 0s;
		-ms-transition: all .2s ease 0s;
		-webkit-transition: all .2s ease 0s;
		-o-transition: all .2s ease 0s;
}
ul.tabs li:hover {
	background: #f7931e;
}	
ul.tabs li.active{
	background: white;
	color: #333;
}
	



