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

/*	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: 68px;
	line-height: 72px;
	letter-spacing: -1px;
}

.large, h2 {
	font-size: 42px;
	line-height: 48px;
	color:white;
	margin-bottom: 15px;
	text-shadow:1px 1px 2px #88781d;
}

.bigger, h3 {
	font-size: 26px;
	line-height: 36px;
}

.big, h4 {
	font-size: 22px;
	line-height: 30px;
}

body {
	font: 16px/24px Georgia, serif;
}

.small, small {
	font-size: 13px;
	line-height: 18px;
}

/* 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: 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    */

body {
	width: 100%;
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
	background:url(../images/bg-stroke.jpg) repeat-x #f4d735;
	font-family: Helvetica, sans-serif;
	color: #482832;
	font-size:18px;
}

.header{
	background:url(../images/header.jpg) no-repeat center top;
	height: 320px;
	}
	
.content{
	width:960px;
	margin:60px auto;
	}
	
.leftcol{
	width:400px;
	float:left;
	margin-bottom:25px;
	}

.rightcol{
	width:445px;
	float:right;
	margin-bottom:25px;
	}

.leftcol span{
	font-size:13px;
	line-height:13px;
	}
	
.leftcol p{
	margin-bottom: 10px;
	}
	
.formtxt{
	width:410px;
	border-radius: 25px;
	padding: 10px 15px;
	color:#999;
	border:0;
	font-size:18px;
	margin-bottom: 10px;
	box-shadow:1px 1px 2px #88781d;
	font-style:italic;
	vertical-align:top;
	}
	
textarea{
	min-height:200px;
	font-family:Helvetica, sans-serif;
	font-size:18px;
	}
	
.formsubmit{
	float:right;
	background-color: #9b1e2c;
	color: white;
	border:none;
	border-radius:25px;
	padding:10px;
	font-size:18px;
	cursor:pointer;	
	}

/*		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) {
	
	.content{
		width: 700px;	
	}
	
	.leftcol, .rightcol{
		width:700px;
		}
		
	.formtxt{
		width:660px;
		}
	.formsubmit{
		margin-right:10px;
		}
}



/*		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) {
	body {
	background:url(../images/bg-stroke-small.jpg) repeat-x #f4d735;
}
	.content{
		width: 300px;	
		margin:10px auto;
	}
	
	.leftcol, .rightcol{
		width:300px;
		}
		
	.formtxt{
		width:260px;
		}
	.formsubmit{
		margin-right:10px;
		}
	.header{
	background:url(../images/header-small.jpg) no-repeat center top;
	height: 205px;
	}
	
}



/*		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) {
	body {
	background:url(../images/bg-stroke-small.jpg) repeat-x #f4d735;
	}
	.content{
		width: 400px;	
	}
	.leftcol, .rightcol{
		width:440px;
		}	
	.formtxt{
		width:300px;
		}
	.header{
	background:url(../images/header-small.jpg) no-repeat center top;
	height: 205px;
	}
	
}