html, 
body, 
.container, 
.content-wrap {
	width: 100%;
	height: 100%;
	background-image:url(../img/index_bg.jpg);
}

.index_container {
	background-image:url(../img/index_image2.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}

.info_container {
	background-image:url(../img/info_bg.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}
	
.author_container {
	background-image:url(../img/author_bg.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}		

.player_container {
	background-image:url(../img/player_bg.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}	

.rule_container {
	background-image:url(../img/rule_bg.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}			

.license_container {
	background-image:url(../img/license_bg.jpg);
	background-position:center top;
	background-repeat:no-repeat;
}			

.cv_container {
	background-image:url(../img/cv_bg.png);
	background-position:center top;
	background-repeat:no-repeat;
}	

.project_container {
	background-image:url(../img/extra.png);
	background-position:center top;
	background-repeat:no-repeat;
}		


.menu-wrap a {
	color: #b8b7ad;
}

.menu-wrap a:hover,
.menu-wrap a:focus {
	color: #c94e50;
}

.content-wrap {
	-webkit-overflow-scrolling: touch;
}

.content {
	position: relative;
	background: #b4bad2;
	background-color: rgba(0,0,0,0);
}



.content::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	height: 100%;
	background: rgba(0,0,0,0.3);
	content: '';
	opacity: 0;
	-webkit-transform: translate3d(100%,0,0);
	transform: translate3d(100%,0,0);
	-webkit-transition: opacity 0.4s, -webkit-transform 0s 0.4s;
	transition: opacity 0.4s, transform 0s 0.4s;
}

/* Menu Button */
.menu-button {
	position: fixed;
	bottom: 0;
	z-index: 2000;
	margin: 1em;
	padding: 0;
	width: 130px;
	height: 60px;
	border: none;
	text-indent: 2.5em;
	font-size: 1.5em;
	color: transparent;
	background: transparent;
}

.menu-button::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background:url(../img/menu_before.png);
	content: '';
}

.menu-button:hover {
	opacity: 0.6;
}

/* Close Button */
.close-button {
	width: 16px;
	height: 16px;
	position: absolute;
	right: 1em;
	top: 1em;
	overflow: hidden;
	text-indent: 16px;
	border: none;
	z-index: 1001;
	background: transparent;
	color: transparent;
}

.close-button::before,
.close-button::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	background: #888;
}

.close-button::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.close-button::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

/* Menu */
.menu-wrap {
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 3001;
	width: 100%;
	height: 160px;
	font-size: 1.15em;
	-webkit-transform: translate3d(0,160px,0);
	transform: translate3d(0,160px,0);
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
}

.menu {
	position: absolute;
	width: 100%;
	z-index: 3000;
	text-align: center;	
	top: 50%;
	padding: 0 1.5em;
	-webkit-transform: translate3d(0,-50%,0);
	transform: translate3d(0,-50%,0);
}

.icon-list a,
.close-button {
	opacity: 0;
	-webkit-transform: translate3d(0,200px,0);
	transform: translate3d(0,200px,0);
	-webkit-transition: opacity 0.4s, -webkit-transform 0.4s;
	transition: opacity 0.4s, transform 0.4s;
}

.icon-list a {
	display: inline-block;
	padding: 0.8em;
}

.icon-list a i {
	vertical-align: middle;
}

.icon-list a span {
	display: inline-block;
	margin-left: 10px;
	font-size: 0.75em;
	vertical-align: middle;
	font-weight: 700;
	letter-spacing: 1px;
}

/* Morph Shape */
.morph-shape {
	position: absolute;
	width: 100%;
	width: calc(100% + 400px);
	height: 100%;
	top: 0;
	left: 0;
	fill: #373a47;
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform: translate3d(-400px,0,0);
	transform: translate3d(-400px,0,0);
}

/* Shown menu */
.show-menu .menu-wrap,
.show-menu .icon-list a,
.show-menu .close-button,
.show-menu .morph-shape,
.show-menu .content::before {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.show-menu .menu-wrap,
.show-menu .content::before {
	-webkit-transition-delay: 0s;
	transition-delay: 0s;
}

.show-menu .icon-list a,
.show-menu .close-button,
.show-menu .content::before {
	opacity: 1;
}

.show-menu .icon-list a:nth-child(2) {
	-webkit-transition-delay: 0.05s;
	transition-delay: 0.05s;
}

.show-menu .icon-list a:nth-child(3) {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.show-menu .icon-list a:nth-child(4) {
	-webkit-transition-delay: 0.15s;
	transition-delay: 0.15s;
}

.show-menu .icon-list a:nth-child(5) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.show-menu .icon-list a:nth-child(6) {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.show-menu .icon-list a:nth-child(7) {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.show-menu .icon-list a:nth-child(8) {
	-webkit-transition-delay: 0.25s;
	transition-delay: 0.25s;
}

.show-menu .close-button {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.show-menu .content::before {
	-webkit-transition: opacity 0.4s;
	transition: opacity 0.4s;
}



/* title */
.title {
	width:100%;
	height:65px;
	position: fixed;
	background: #b4bad2;
	background-color: rgba(0,0,255,0.2);
	box-shadow: 0px 10px 10px rgba(0,0,0,0.4);
	padding:5px 10px;
	z-index:2010;
}

.title h1	{
	margin:0;padding:5px;}
.title h2	{
	font-size:1.0em;
	margin:0;padding:3px;
	margin-right:20px;
	margin-top:-15px;
	text-align:right; }

/* center */
#center_relative	{
	width:1000px;
	min-width:1000px;
	height:930px;
	margin:0 auto;
	position:relative;}
	
#center_relative_cv {
    width: 1000px;
    min-width: 1000px;
    height: 1000px;
    margin: 0px auto;
    position: relative;
}