/* 
* 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: 940px; margin: 0 auto; padding: 0; }
	
	.columns { float: left; display: inline; margin-left: 0; margin-right: 0.5%; margin-bottom:10px; }
	.row { margin-bottom: 10px; }

	.last { margin-right:0 !important; }
	

	
	.one-third.columns						{ width: 33%; }
	.two-thirds.columns						{ width: 65.5%; }


	/* Base Grid */
	.one.column 						{ width: 2.96875%;  }
	.two.columns 					{ width: 9.4375%; }
	.three.columns 					{ width: 15.90625%; }
	.four.columns 					{ width: 22.375%; }
	.five.columns 					{ width: 28.84375%; }
	.six.columns 					{ width: 35.3125%; }
	.seven.columns 					{ width: 41.78125%; }	
	.eight.columns 					{ width: 48.25%; }
	.nine.columns 					{ width: 54.71875%; }
	.ten.columns 					{ width: 61.1875%; }	
	.eleven.columns 					{ width: 67.65625%; }	
	.twelve.columns 					{ width: 74.125%; }
	.thirteen.columns 				{ width: 80.59375%; }	
	.fourteen.columns 				{ width: 87.0625%; }	
	.fifteen.columns 				{ width: 93.53125%; }
	.sixteen.columns 				{ width: 100%; }
	

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

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

	@media only screen and (min-width: 768px) and (max-width: 959px) {
		.container { width: 768px; }

		

	}
	
	
/*	#Mobile (Portrait) 
================================================== */
	
	/* Note: Design for a width of 320px */
	
	@media only screen and (max-width: 767px) {
		.container { width: 300px; }
		.columns { margin-bottom: 20px; }
		.columns:last-child { margin-bottom: 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; }
		
		
	
	}	 
	
	
/* #Mobile (Landscape)
================================================== */

	/* Note: Design for a width of 480px */
	
	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.container { width: 420px; }
		.columns  { margin: 0; margin-bottom: 0px; }
		.columns:last-child { margin-bottom: 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.columns, 
		.two-thirds.columns { width: 420px; }



	}
	 
	
/* #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;
	}
	
	
	