html, body
{
	font: 28px mp, Verdana, Arial,sans-serif;
	color:#fff;
	height:100%;
	background-color: #2c1c16;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

#container
{
	min-width: 500px;
	width:100%;
	margin:0 auto;
	min-height:100%;

	position: relative;
	top:0;
	left:0;
}

#header
{
	width:100%;
	height:100%;

	background-image:url(/assets/images/background.png);
	background-size:cover;
	background-position: center top;

	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%; 
	min-height: 100%;
}

#content
{
	min-height: 500px;
	width:100%;
	padding-bottom:120px;   /* Height of the footer */
	background-color: #272626;
}

#footer
{
	position:absolute;
	bottom:0;
	width:100%;
	height:120px;   /* Height of the footer */
	background-color:transparent;
	text-align: center;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.blur
{
	-webkit-filter: blur(4px);
	-moz-filter: blur(4px);
	-ms-filter: blur(4px);
	-o-filter: blur(4px);
	filter: blur(4px);
}


.anim
{
	-webkit-transition: all 0.25s ease-in;
  	 -moz-transition: all 0.25s ease-in;
     -o-transition: all 0.25s ease-in;
     transition: all 0.25s ease-in;
}


/* Grid Lib ---------------------------------------------- */

[class*='col-'] {
  float: left;
}

.col-1-2 {
  width: 50%;
}

.grid:after {
  content: "";
  display: table;
  clear: both;
}

*, *:after, *:before 
{
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

[class*='col-']
{
  padding-right: 1px;
}

[class*='col-']:last-of-type {
  padding-right: 0;
}
