body, html {
	height: 100%;
	width: 100%;
	margin: 0px;
	background: white;

	font-family: 'Lato', sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1px;
	color: rgb(0, 0, 0);
	text-decoration: none;
	line-height: 14px;

	-webkit-text-size-adjust: none;
	box-sizing: border-box;
}
a {
	color: rgb(0, 0, 0);
	text-decoration: none;
}
a:hover {
	color: rgb(0, 0, 0);
	text-decoration: none;
}


/*********************************************************** small screen */


/*********************************************************** medium screen */
@media screen and (min-width: 800px) {
	
}

/*********************************************************** large screen */
@media screen and (min-width: 1250px) {
	
}


/*********************************************************** body */
#web-wrapper {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: transparent;
	margin: 0px;
}


/*********************************************************** Common */
.margin-wrapper {
	position: relative;
	top: 0px;
	left: 0px;
	width: 860px;
	margin: 0px auto;
}

.center-content {
	position: absolute;
	top: 50%;
    left: 50%;

	-moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.spacing-5 {
	position:relative;
	width:100%;
	height:5px;
}

.spacing-10 {
	position:relative;
	width:100%;
	height:10px;
}

.spacing-15 {
	position:relative;
	width:100%;
	height:15px;
}

.spacing-20 {
	position:relative;
	width:100%;
	height:20px;
}

.spacing-30 {
	position:relative;
	width:100%;
	height:30px;
}

.spacing-40 {
	position:relative;
	width:100%;
	height:40px;
}

.spacing-50 {
	position:relative;
	width:100%;
	height:50px;
}

.spacing-100 {
	position:relative;
	width:100%;
	height:100px;
}


/*********************************************************** Debug */
#debug-wrapper {
	position: fixed;
	bottom: 0px;
	left: 0px;
	width: 100%;
	height: 20px;
	background-color: rgba(0, 0, 0, 0.5);
	text-align: left;
	line-height: 20px;
	display: none;
	
	z-index: 1000;
}
.debug-font {
	font-family: "arial", sans-serif;
	font-size: 11px;
	font-style: normal;
	font-weight: normal;
	letter-spacing: 1px;
	color: rgb(255, 255, 255);
	text-decoration: none;
	-webkit-text-size-adjust: none;
}
.debug-font a {
	color: rgb(255, 255, 255);
	text-decoration: none;
}
.debug-font a:hover {
	color: rgb(255, 255, 255);
	text-decoration: none;
}
