/* 
* Skeleton V1.0.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 5/20/2011
*/


/* Table of Contents
==================================================
	#Base 960 Grid    
	#Tablet (Portrait)
	#Mobile (Portrait) 
	#Mobile (Landscape)
	#Clearing */
	
	

/* #Base 960 Grid 
================================================== */

	.container { position: relative; width: 960px; margin: 0 auto; padding: 0; }
	.column, .columns { float: left; display: inline; margin-left: 10px; margin-right: 10px; }
	.row { margin-bottom: 20px; }
	
	/* Nested Column Classes */
	.column.alpha, .columns.alpha 						{ margin-left: 0; }
	.column.omega, .columns.omega 						{ margin-right: 0; }
	
	.one-third.column						{ width: 300px; }
	.two-thirds.column						{ width: 620px; }
	
	/*****************************
		12 Column
	*****************************/
	
	/* Base Grid */
    .one.column 					{ width: 60px;  }
    .two.columns 					{ width: 140px; }
    .three.columns 					{ width: 220px; }
    .four.columns 					{ width: 300px; }
    .five.columns 					{ width: 380px; }
    .six.columns 					{ width: 460px; }
    .seven.columns 					{ width: 540px; }
    .eight.columns 					{ width: 620px; }
    .nine.columns 					{ width: 700px; }
    .ten.columns 					{ width: 780px; }
    .eleven.columns 				{ width: 860px; }
    .twelve.columns 				{ width: 940px; }

    /* Offsets */
    .offset-by-one 					{ margin-left: 80px;  }
    .offset-by-two 					{ margin-left: 160px; }
    .offset-by-three 				{ margin-left: 240px; }
    .offset-by-four 				{ margin-left: 320px; }
    .offset-by-five 				{ margin-left: 400px; }
    .offset-by-six 					{ margin-left: 480px; }
    .offset-by-seven 				{ margin-left: 560px; }
    .offset-by-eight 				{ margin-left: 640px; }
    .offset-by-nine 				{ margin-left: 720px; }
    .offset-by-ten 					{ margin-left: 800px; }
    .offset-by-eleven 				{ margin-left: 880px; }

	
	
	
/* #Tablet (Portrait)
================================================== */	

	/* Note: Design for a width of 768px */

	@media only screen and (min-width: 768px) and (max-width: 959px) {
		.container { width: 768px; }
		/*.container .column, 
		.container .columns { margin-left: 10px; margin-right: 10px;  }*/
		.column.alpha, .columns.alpha 				{ margin-left: 0; margin-right: 10px; }
		.column.omega, .columns.omega 				{ margin-right: 0; margin-left: 10px; }
	
		.container .one-third.column				{ width: 236px; }
		.container .two-thirds.column				{ width: 492px; }		
		
		/*****************************
			12 Column
			((768/12) - 20) * 1 = 44
		*****************************/
			
	.one.column 				{ width: 44px;  }
	.two.columns 				{ width: 108px; }
	.three.columns 				{ width: 172px; }
	.four.columns 				{ width: 236px; }
	.five.columns 				{ width: 300px; }
	.six.columns 				{ width: 364px; }
	.seven.columns 				{ width: 428px; }	
	.eight.columns 				{ width: 492px; }
	.nine.columns 				{ width: 556px; }
	.ten.columns 				{ width: 620px; }
	.eleven.columns 			{ width: 684px; }
	.twelve.columns 			{ width: 748px; }

    }
		
			


	

		

	
	
/*	#Mobile (Portrait) 
================================================== */
	
	/* Note: Design for a width of 320px */

@media only screen and (max-width: 480px) {
		.container { width: 300px; }
		.columns, .column { margin: 0; }
		
        .one.column,
		.two.columns,
		.three.columns,
		.four.columns,
		.five.columns,
		.six.columns,
		.seven.columns,
		.eight.columns,
		.nine.columns,
		.ten.columns,
		.eleven.columns,
		.twelve.columns,
		.thirteen.columns,
		.fourteen.columns,
		.fifteen.columns,
	    .sixteen.columns,
		.one-third.column,
		.two-thirds.column  { width: 300px; }

        .row {  margin:0;}
	}


/*	#Tablet
================================================== */


@media only screen and (min-width: 480px) and (max-width:600px) {
    .container { width: 470px; }
    .columns, .column { margin: 0; }

    .one.column,
    .two.columns,
    .three.columns,
    .four.columns,
    .five.columns,
    .six.columns,
    .seven.columns,
    .eight.columns,
    .nine.columns,
    .ten.columns,
    .eleven.columns,
    .twelve.columns,
    .thirteen.columns,
    .fourteen.columns,
    .fifteen.columns,
    .sixteen.columns,
    .one-third.column,
    .two-thirds.column  { width: 470px; }



}

/* #Small Screen
================================================== */


	@media only screen and (min-width: 600px) and (max-width: 767px) {
		.container { width: 550px; }
		.columns, .column { margin: 0; }

		.one.column,
		.two.columns,
		.three.columns,
		.four.columns,
		.five.columns,
		.six.columns,
		.seven.columns,
		.eight.columns,
		.nine.columns,
		.ten.columns,
		.eleven.columns,
		.twelve.columns,
		.thirteen.columns,
		.fourteen.columns,
		.fifteen.columns,
		.sixteen.columns,
		.two-thirds.column,
        .one-third.column { width: 550px; }

       .row {  margin:0;}
	}

	
/* #Clearing
================================================== */

	/* Self Clearing Goodness */
	.container:after { content: "\0020"; display: block; height: 0; clear: both; visibility: hidden; } 
	
	/* Use clearfix class on parent to clear nested columns, 
	or wrap each row of columns in a <div class="row"> */
	.clearfix:before,
	.clearfix:after,
	.row:before,
	.row:after {
	  content: '\0020';
	  display: block;
	  overflow: hidden;
	  visibility: hidden;
	  width: 0;
	  height: 0; }
	.row:after,
	.clearfix:after {
	  clear: both; }
	.row, 
	.clearfix {
	  zoom: 1; }
	  
	/* You can also use a <br class="clear" /> to clear columns */
	.clear {
	  clear: both;
	  display: block;
	  overflow: hidden;
	  visibility: hidden;
	  width: 0;
	  height: 0;
	}
	
	
	