﻿/**
	0. Normalize, defaults
	1. Page layout:
	2. Elements: f-r (footer-right-section), m-m (main-menu), m-c (menu-container)
*/

/** 0. Defaults  **/


html {
	width: 100%;
	height: 100%;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
}

	html, html * {
		box-sizing: border-box;
		-ms-box-sizing: border-box;
		-moz-box-sizing: border-box;
		-webkit-box-sizing: border-box;
		-o-box-sizing: border-box;
	}
/* Reset margins/paddings */
html, body, main, header, footer, div, ul, ol, p, li, blockquote, h1, h2  {
	margin: 0px;
	padding: 0px;
}

html {
	z-index:1;
}
body {
	z-index: 2;
	width: 100%;
	min-height: 100%;
}

a {
	-webkit-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: rgba(255,255,255,0);
	text-decoration:none;
}

.clearfix:before, .clearfix:after {
	display: table;
	content: ' ';
}
/** 1. Page layout **/
.layout-container {
	position: absolute;
	width: 100%;
	height: 100%;
	z-index:3;
}

.layout {
	margin-left: auto;
	margin-right: auto;
	
	overflow-y: auto;
	overflow-x: hidden;
	position: relative;
	-webkit-overflow-scrolling: touch;
	z-index: 4;
}


.layout-header {	
	width: 100%;	
	z-index: 5;
}

.layout-content {
	/*overflow-y: auto;
	overflow-x: hidden;*/
	z-index: 6;
	-webkit-overflow-scrolling: touch;
	
}
.main-container {
	width:100%;
	
}
