@import url(https://fonts.googleapis.com/css?family=Dosis:800,700);
@font-face {
    font-family: 'Bariol';
    src: url('../fonts/bariol_regular-webfont.eot');
    src: url('../fonts/bariol_regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bariol_regular-webfont.woff2') format('woff2'),
         url('../fonts/bariol_regular-webfont.woff') format('woff'),
         url('../fonts/bariol_regular-webfont.ttf') format('truetype'),
         url('../fonts/bariol_regular-webfont.svg#bariol_regularregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Bariol';
    src: url('../fonts/bariol_bold-webfont.eot');
    src: url('../fonts/bariol_bold-webfont.eot?#iefix') format('embedded-opentype'),
         url('../fonts/bariol_bold-webfont.woff2') format('woff2'),
         url('../fonts/bariol_bold-webfont.woff') format('woff'),
         url('../fonts/bariol_bold-webfont.ttf') format('truetype'),
         url('../fonts/bariol_bold-webfont.svg#bariol_boldbold') format('svg');
    font-weight: bold;
    font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-family: 'Bariol', Helvetica, Arial, sans-serif;
}

body {
	background: #fff;
	overflow-y: scroll;
}

a {
	-webkit-transition: all 200ms ease;
	-moz-transition: all 200ms ease;
	-ms-transition: all 200ms ease;
	-o-transition: all 200ms ease;
	transition: all 200ms ease;
}

/* DEFAULT PAGE SETUP */
	.wrapper {
		position: relative;
		float: left;
		width: 100%;
		height: auto;
	}
	
/* BLOCKS */
	.block {
		position: relative;
		float: left;
		width: auto;
		height: auto;
	}
		.float_left				{	float: left;	}
		.float_right			{	float: right;	}
		.float_center			{	float: none; margin-left: auto; margin-right: auto;	}
		
		.align_left				{	text-align: left;	}
		.align_right			{	text-align: right;	}
		.align_center			{	text-align: center;	}
		
.clear {
	clear: both;
}



.button {
	display: inline-block;
	width: auto;
	height: 46px;
	line-height: 46px;
	text-decoration: none;
	padding: 0 20px 0 20px;
	cursor: pointer;
	font-size: 20px;
	font-weight: bold;
	-webkit-border-radius: 3px;
	border-radius: 3px;
	-webkit-box-shadow: 0 3px 0 0 rgba(0,0,0,0.15);
	box-shadow: 0 3px 0 0 rgba(0,0,0,0.15);
}
	input.button {
		line-height: 0;
	}
	.bg_yellow {
		background-color: #f4e80e;
		color: #327651;
	}
	.bg_yellow:hover {
		background-color: #ecdc04;
	}
	.bg_yellow.bg_arrow {
		background-image: url('../images/button_arrow.png');
		background-repeat: no-repeat;
		background-position: center right;
		padding-right: 60px;
	}
	.bg_green {
		background-color: #4f9767;
		color: #fff;
	}
	.bg_green:hover {
		background-color: #367a4d;
	}
	.bg_green.bg_arrow {
		background-image: url('../images/button_arrow_green.png');
		background-repeat: no-repeat;
		background-position: center right;
		padding-right: 60px;
	}
	.bg_green.bg_close {
		background-image: url('../images/button_close_green.png');
		background-repeat: no-repeat;
		background-position: center right;
		padding-right: 60px;
	}
	.bg_grey {
		background-color: #f5f5f5;
		color: #393939;
	}
	.bg_grey:hover {
		background-color: rgba(245,245,245,0.7);
	}