@charset "UTF-8";
/* CSS Document */

/*  Customized coded by Mitch Grimshaw using Less Framework 4
	http://lessframework.com
	by Joni Korpi
	License: http://opensource.org/licenses/mit-license.php	*/



/*		Default Layout: 992px. 
		Gutters: 24px.
		Outer margins: 48px.
		Leftover space for scrollbars @1024px: 32px.
-------------------------------------------------------------------------------
cols    1     2      3      4      5      6      7      8      9      10
px      68    160    252    344    436    528    620    712    804    896    */




/*---------------- CLASSES ----------------*/
.project-thumb {
	width:29%;
	overflow:hidden;
	float:left;
	margin: 35px 1% 0 1%;
	height:300px;
	max-width:300px;
}



a img {
	width:100%;
	height:100%;
}


/*		Tablet Layout: 768px.
		Gutters: 24px.
		Outer margins: 28px.
		Inherits styles from: Default Layout.
-----------------------------------------------------------------
cols    1     2      3      4      5      6      7      8
px      68    160    252    344    436    528    620    712    */

@media only screen and (min-width: 768px) and (max-width: 991px) {
	
	
	.project-thumb {
	width:29%;
	overflow:hidden;
	float:left;
	margin: 35px 1.5% 0 1.5%;
	height:200px;
	max-width:200px;
	}
	
	
}





/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 34px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {
	
	
	.project-thumb {
	width:120px;
	overflow:hidden;
	float:left;
	margin: 25px 1% 0 1%;
	height:120px;
	}
	
	

}



/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 22px.
		Inherits styles from: Default Layout, Mobile Layout.
------------------------------------------------------------
cols    1     2      3      4      5
px      68    160    252    344    436    */

@media only screen and (min-width: 480px) and (max-width: 767px) {
	
	
	.project-thumb {
	width:200px;
	overflow:hidden;
	float:left;
	margin: 25px .75% 0 .75%;
	height:200px;
	}
	
}


/*	Retina media query.
	Overrides styles for devices with a 
	device-pixel-ratio of 2+, such as iPhone 4.
-----------------------------------------------    */

@media 
	only screen and (-webkit-min-device-pixel-ratio: 2),
	only screen and (min-device-pixel-ratio: 2) {
	
	body {
	
	}
	
}