* {
	margin: 0;
	padding: 0;
	outline: none;
}

@font-face {
    font-family: 'MyriadProLight';
    src: url('/font/myriadpro-light.otf');
    /*src: url('/font/myriadpro-light.eot');*/
/*    src: url('/font/myriadpro-light.eot?#iefix') format('embedded-opentype'),
         url('/font/myriadpro-light.woff') format('woff'),
         url('/font/myriadpro-light.ttf') format('truetype');*/
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Tahoma_Regular';
    src: url('/font/rouble.otf');
    font-weight: normal;
    font-style: normal;
}

html, body {
	position: relative;
	width: 100%;
	height: 100%;

	font-family: 'MyriadProLight', sans-serif;
	font-size: 18px;
	
	background: #fff;
	overflow: hidden;

	-webkit-user-select: none;
	user-select: none;
}

section {
	position: absolute;
/*	left: 0;
	right: 0;
	top: 0;
	bottom: 0;*/
	width: 100%;
	height: 100%;
	min-width: 800px;
	min-height: 600px;
	background: #fff;

	-webkit-box-sizing: border-box;
	box-sizing: border-box;

	-webkit-transition: top 0.5s ease-out;
	transition: top 0.5s ease-out;

	overflow: hidden;
}