/*
 * SimpleGrid v1.1
 * css3 Mobile first Approach
 *
 * Copyright 2015
 * Licensed under MIT
 *
 * Super simple (and flexible) grid that does what it is designed to do. 
 * Uses box sizing. 
 *
 * Supports IE8+ and all modern web browsers.
 * ie8+, chrome, firefox, safari, opera
 *
 * .container - set width of page
 * .row - creates row 
 * .row.static - extends row, maintains grid columns on small screens
 * .span- - set the number of columns to span
 * .shift- - set the number of columns to offset
 *
 * container, row - grid naming convention from twitter bootstrap
 * Thanks to OOCSS, Twitter Bootstrap, and many others for leading the way in grid layouts
 *
 * 10px Gutter.
 *
 * To change the gutter update:
 * .container padding, .row margin, .span- padding
 *
 * Coupled together by Jonathan Whiting
 * http://machiine.com
 */
.bar {
	background: rgba(255,255,255,.97)!important;
	height: 50px;
	position: fixed;
	width: 100%;
	z-index: 1;
}

/* 768px ~= 48em */
@media screen and (min-width: 48em) {


}
/* 1024px ~= 64em */
@media screen and (min-width: 64em) {
	
	
}
/* 1280px ~= 80em */
@media screen and (min-width: 80em) {


}