/*	Less Framework 4
	http://lessframework.com
	by Joni Korpi
	License: http://opensource.org/licenses/mit-license.php	*/


/*	Resets
	------	*/

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, a, abbr, address, cite, code, del, dfn, em,
img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, hr,
dl, dt, dd, ol, ul, li, fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figure, figcaption, hgroup,
menu, footer, header, nav, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
}

article, aside, canvas, figure, figure img, figcaption, hgroup,
footer, header, nav, section, audio, video {
	display: block;
}

a img {border: 0;}



/*	Typography presets
	------------------	*/

.gigantic {
	font-size: 110px;
	line-height: 120px;
	letter-spacing: -2px;
}

.huge, h1 {
	font-size: 42px;
	line-height: 44px;
	letter-spacing: -1px;
}

.large, h2 {
	font-size: 25px;
	line-height: 30px;
}

.bigger, h3 {
	font-size: 16px;
	line-height: 22px;
}

.big, h4 {
	font-size: 14px;
	line-height: 18px;
}

body {
	font: 14px/18px 'Source Sans Pro', sans-serif;
}

.small, small {
	font-size: 13px;
	line-height: 18px;
}

input, textarea, select {
	font: 14px/16px 'Source Sans Pro', sans-serif;    
}

ul li {
	list-style: none;
}

/* Selection colours (easy to forget) */

::selection 	 	{background: rgb(255,255,158);}
::-moz-selection 	{background: rgb(255,255,158);}
img::selection 		{background: transparent;}
img::-moz-selection	{background: transparent;}
body {-webkit-tap-highlight-color: rgb(255,255,158);}



/*		Default Layout: 1024px.
		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    */

body {
	width: 1024px;
	padding: 0px 0px 84px;
	margin: 0px auto;
	background: rgb(232,232,232);
	color: rgb(60,60,60);
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
}


/* Extra wide layout */
@media only screen and (min-width: 1280px) {

	body {
		width: 97%;
		padding: 0px 1% 60px;
	}

	.twoCol {
		min-width: 260px!important;
		width: 24%;
	}
	
	.threeCol {
		min-width: 320px!important;
		width: 30%;
	}		
	
	.fourCol {
		width: 48%;
	}		
	
	.sixCol {
		width: 73%;
	}
}

/*		Desktop Layout: 992px.
		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: 992px) and (max-width: 1280px) {

	body {
		width: 98%;
		padding: 0px 1% 60px;
	}
	
	.twoCol {
		width: 24%;
	}
	
	.threeCol {
		width: 30%;
	}	
	
	.fourCol {
		width: 48%;
	}	
	
	.sixCol {
		width: 73%;
	}	
}



/*		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) {

	body {
		width: 92%;
		padding: 0px 28px 60px;
	}
	
	.twoCol {
		min-width: 140px!important;
		width: 24%;
	}
	
	.threeCol {
		min-width: 200px!important;
	    width: 100%;
	}	
	
	.fourCol {
		min-width: 250px!important;
	    width: 49%;
	}		
	
	.sixCol {
		min-width: 548px!important;
	    width: 100%;
	}
}



/*		Mobile Layout: 320px.
		Gutters: 24px.
		Outer margins: 0px.
		Inherits styles from: Default Layout.
---------------------------------------------
cols    1     2      3
px      68    160    252    */

@media only screen and (max-width: 767px) {

	body {
		/* width: 320px; */
		width: 100%;
		padding: 0px 0px 60px;
	}
	
	.twoCol {
		min-width: 260px!important;
	    width: 100%;
	}	
	
	.threeCol {
		min-width: 320px!important;
	    width: 100%;
	}	

}



/*		Wide Mobile Layout: 480px.
		Gutters: 24px.
		Outer margins: 0px.
		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) {

	body {
		/*width: 480px;*/
		width: 100%;
		padding: 0px 0px 48px;
	}
	
	.twoCol {
	    min-width: 260px!important;
	    width: 100%;
	}
	
	.threeCol {
		min-width: 320px!important;
	    width: 100%;
	}	
	
	.fourCol {
		min-width: 260px!important;
	    width: 100%;
	}		
	
	.sixCol {
	    min-width: 260px!important;
	    width: 100%;
	}

}