
@charset "CP850";


/* RESET
---------------------------------------- */

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}


/* STYLES - BASE
---------------------------------------- */

body {
	background-color: #262626;
	color: white;
	font: 100%/1.333em Tahoma, "Helvetica Neue", Helvetica, sans-serif;
	font-weight: 400;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: 100%;
}

section{
	display: table;
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	text-align: center;
	padding: 0;
	min-width: 320px;
}


/* STYLES - BODY
---------------------------------------- */

.bodyWrapper {
	background-repeat: repeat;
   	-webkit-background-size: 32px 32px;
  	-o-background-size: 32px 32px;
   	-moz-background-size: 32px 32px;
	background-size: 32px 32px;
	border: solid 6px #ffdf01;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

	.no-svg .bodyWrapper { 
		background-image:  url('/dist/images/background/dot.png');
	}

	.svg .bodyWrapper { 
		background-image:  url('/dist/images/background/dot.svg');
	}


/* STYLES - LOGO
---------------------------------------- */

.logoWrapper {
	overflow: hidden;
	display: table-row;
}

	.logoContainer {
		display: table-cell;
	  	vertical-align: middle;
	}

	.logo {
		text-align: center;
	    max-width: 298px;
		padding-top: 125px;
	    margin: 30px auto;
		background-repeat: no-repeat;
	   	-webkit-background-size: 298px 125px;
	  	-o-background-size: 298px 125px;
	   	-moz-background-size: 298px 125px;
		background-size: 298px 125px;
		-webkit-transition: -webkit-transform 0.25s ease-in-out;
		transition: transform 0.25s ease-in-out;
	}

	.no-svg .logo { 
		background-image:  url('/dist/images/logo/logo.png');
	}

	.svg .logo { 
		background-image:  url('/dist/images/logo/logo.svg');
	}

	@media (max-width: 480px) {
		.logo {
			-webkit-transform: scale(0.6);
			-ms-transform: scale(0.6);
			transform: scale(0.6);
		}
	}

	@media (max-height: 400px) {
		.logo {
			-webkit-transform: scale(0.6);
			-ms-transform: scale(0.6);
			transform: scale(0.6);
		}
	}


/* STYLES - CONTACT
---------------------------------------- */

.contactWrapper {
	display: table-row;
	position: relative;
	height: 10%;
}

	.contactContainer {
		display: table-cell;
		vertical-align: bottom;
	  	padding-bottom: 30px;
	  	padding-left: 30px;
	  	padding-right: 30px;
	}

	.contactContainer p {
		font-size: 14px;
		line-height: 18px;
	}

	.contactContainer a {
		color: #ffdf01;
    	text-decoration: none;
	}

	.contactContainer a:hover {
		color: #ffffff;
	}



