﻿body{
	background: url('/images/world-map-background.png') center 300px no-repeat;
	background-attachment: fixed;
	font-size: 21px;
	line-height: 1.25em;
}

p{
	margin: 1em 0;
}

.alpha-numeric{
	letter-spacing: normal;
	padding: 0 .5em;
}
.chinese{
	letter-spacing: .05em;
	line-height: 1.5em;
}

.wait-for-loading{
	background: url('/images/loading.gif') center center no-repeat;
}
.wait-for-loading *{
	opacity: 0;
}

.main-container{
	width: 1000px;
	margin: 2em auto 2em;
	padding: 0 12px;
}

header{
	margin-bottom: 2em;
}

.header-right{
	text-align: right;
}
.language{
	display: inline-block;
	margin-top: 24px;
}
.language-earth{
	margin: -4px 5px 0 0;
}

footer{
	font-size: small;
	margin-top: 5em;
}

.logo-red{
	font-weight: bold;
	color: #DA251C;
}

.logo-black{
	font-weight: bold;
	color: #1F1A17;
}

.text-center{
	text-align: center;
}
.text-right{
	text-align: right;
}

.title{
	margin-bottom: 1em;
	text-shadow: 0px 0px 3px rgba(0, 0, 0, .1);
}

.box-shadow{
	box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, .2);
}

.border{
	border: 5px solid #DA251C;
	border-radius: 1em;
	padding: 1em 1.5em;
}

.content{
	min-height: 500px;
	margin: 0 1.5em;
}

/*
 * Navigation
 */
.navigation-child, .navigation-child{
	user-select: none;   
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	-webkit-user-select: none;
}
.navigation-child{
	transform: scale(.5);
	-moz-transform: scale(.5);
	-ms-transform: scale(.5);
	-o-transform: scale(.5);
	-webkit-transform: scale(.5);
	transition: transform 100ms;
	-moz-transition: -moz-transform 100ms;
	-ms-transition: -ms-transform 100ms;
	-o-transition: -o-transform 100ms;
	-webkit-transition: -webkit-transform 100ms;
	cursor: pointer;
	display: inline-block;
	margin-bottom: 1em;
	text-align: center;
}
.navigation-child a{
	text-decoration: none;
}
:not(.mobile) .navigation-child:hover, .navigation-child.enlarged{
	transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
}
:not(.mobile) .navigation-child:active, .navigation-child.enlarged:active{
	transform: scale(.85);
	-moz-transform: scale(.85);
	-ms-transform: scale(.85);
	-o-transform: scale(.85);
	-webkit-transform: scale(.85);
}
.navigation-child img{
	width: 110px;
}
.navigation-child h1{
	color: #8089F3;
	font-size: 1em;
	margin: 0;
}
.navigation-child:not(:hover) h1, .mobile .navigation-child:active h1{
	opacity: 0;
}
	

/*
 * floating menu
 */
.floating-menu{
	transform: translate(80px, 0);
	-moz-transform: translate(80px, 0);
	-ms-transform: translate(80px, 0);
	-o-transform: translate(80px, 0);
	-webkit-transform: translate(80px, 0);
	transition: transform 500ms;
	-moz-transition: -moz-transform 500ms;
	-ms-transition: -ms-transform 500ms;
	-o-transition: -o-transform 500ms;
	-webkit-transition: -webkit-transform 500ms;
	cursor: pointer;
	height: 55px;
	position: fixed;
	top: 225px;
	right: 0;
	width: 125px;
	z-index: 999;
}
.floating-menu>div{
	background: white;
	border: 2px solid #ABABAB;
	border-right: none;
	display: inline-block;
	position: relative;
	vertical-align: top;
	width: 50%;
}
.floating-menu .share-icon{
	background: white url('/images/share.png') 5px center no-repeat;
	border-radius: 10px 0 0 10px;
	height: 55px;
	width: 50px;
	z-index: 99;
}
.floating-menu .social-media-icons{
	border-radius: 0 0 0 10px;
	margin-left: -2px;
	padding: 0 5px;
	z-index: 90;
}
.floating-menu .social-media-icons img{
	transform: scale(.75);
	-moz-transform: scale(.75);
	-ms-transform: scale(.75);
	-o-transform: scale(.75);
	-webkit-transform: scale(.75);
	transition: transform 100ms;
	-moz-transition: -moz-transform 100ms;
	-ms-transition: -ms-transform 100ms;
	-o-transition: -o-transform 100ms;
	-webkit-transition: -webkit-transform 100ms;
	cursor: pointer;
}
.floating-menu .social-media-icons img:hover{
	transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	-o-transform: scale(1);
	-webkit-transform: scale(1);
}
.floating-menu:hover{
	transform: translate(0, 0);
	-moz-transform: translate(0, 0);
	-ms-transform: translate(0, 0);
	-o-transform: translate(0, 0);
	-webkit-transform: translate(0, 0);
	cursor: normal;
}
.floating-menu p{
	margin: 5px 0;
}