*,
*:before,
*:after {
  box-sizing: border-box !important;
}

html, body
{
	font: 26px f, Verdana, Arial,sans-serif;
	color:#323232;
	height:100%;
	background-color: #1a1a1a;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

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

	position: relative;
	top:0;
	left:0;
	background-color: #1a1a1a;
}

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

#footer
{
	position:absolute;
	bottom:0;
	width:100%;
	height:350px;   /* Height of the footer */
}

.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;
}

/* ---------------- */

.bricklayer {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-webkit-align-items: flex-start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap
}

.bricklayer-column-sizer {
	width: 100%;
	display: none
}

@media screen and (min-width:640px) {
	.bricklayer-column-sizer {
		width: 50%
	}
}

@media screen and (min-width:980px) {
	.bricklayer-column-sizer {
		width: 33.333%
	}
}

@media screen and (min-width:1200px) {
	.bricklayer-column-sizer {
		width: 25%
	}
}

.bricklayer-column {
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	padding-left: 20px;
	padding-right: 20px
}