/*------------------------------------*\
	GRID.INUIT.CSS
\*------------------------------------*/





/*
grid.inuit.css is an inuit.css igloo
igloos are CSS plugins which extend the inuit.css framework
They are released under the Apache License, Version 2.0 -- http://www.apache.org/licenses/LICENSE-2.0

@inuitcss
inuitcss.com
*/

.grid{
	float:left;
	margin:0 20px 0 0;
}



/*------------------------------------*\
	GRIDS
\*------------------------------------*/
/*
Page wrapper. Apply to the body where possible, as per: http://csswizardry.com/2011/01/using-the-body-element-as-a-wrapper/
*/
.wrapper{
	width:1250px;
	margin:0 auto;
	padding:0 0px;
}

/*
Most frameworks rely on class="end" or similar to remove the margin from the last column in a row of grids. We don't want to do that so we use a combination of margin- and negative margin-left. It's clever...
We also allow you to use grid items as stand alone columns or in a series of columns. To use a series just wrap them all in <div class="grids">...</div>
*/
.grids{
	clear:both;
	max-width:1250px;
	margin:0 0 0 -0px;
	list-style:none; /* So we can make grids out of lists */
}

/*
Here we are using an attribute selector to detect the string 'grid-' in an element's class.
This works by assuming that anything we call grid-<n> we also want to be a grid item. It means less code and less for you to remember!

Ensure any grid item's FIRST class is a grid-<n> class. e.g.
VALID: class="grid-4 text-centre"
INVALID: class="left grid-4"
*/
[class^="grid-"]{
	float:left;
	margin:0 0px 0 0;
}
.grids [class^="grid-"]{
	margin:0 0 0 0px;
}/*
Allow nested grids:
*/
[class^="grid-"] .grids{
	width:auto;
	margin:0 -0px;
}

.grid-1{ width:50px }
.grid-2{ width:100px }
.grid-3{ width:150px }
.grid-4{ width:200px }
.grid-5{ width:250px }
.grid-6{ width:300px }
.grid-7{ width:350px }
.grid-8{ width:400px }
.grid-9{ width:450px }
.grid-10{ width:500px }
.grid-11{ width:550px }
.grid-12{ width:600px }
.grid-13{ width:650px }
.grid-14{ width:700px }
.grid-15{ width:746px }/* content bereich */
.grid-16{ width:800px }
.grid-17{ width:850px }
.grid-18{ width:900px }
.grid-19{ width:950px }
.grid-20{ width:1000px }
.grid-21{ width:1050px }
.grid-22{ width:1100px }
.grid-23{ width:1150px }
.grid-24{ width:1200px }
.grid-25{ width:1250px; margin:0 }
