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


/*	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;
	font-family: 'Oswald', sans-serif;
	font-weight:300;
}

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: 80px;
	line-height: 90px;
	letter-spacing: -1px;
	font-weight:300;
}

.large, h2 {
	font-size: 42px;
	line-height: 48px;
	color:#440d29;
}

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

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


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

/* Selection colours (easy to forget) */

::selection 	 	{background: rgb(233,27,57);}
::-moz-selection 	{background: rgb(233,27,57);}
img::selection 		{background: transparent;}
img::-moz-selection	{background: transparent;}
body {-webkit-tap-highlight-color: rgb(233,27,57);}



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


#container {
	width: 992px;
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
}

#nav-content {
	width: 992px;
	background-color:#f8f8f8;
	-webkit-text-size-adjust: 100%; /* Stops Mobile Safari from auto-adjusting font-sizes */
	position:relative;
	margin: 0 auto 0 auto;
	overflow:hidden;
	padding: 30px 0 30px 0;
}
	

body {
	background-color:#f8f8f8;
}

header {
	overflow:hidden;
	}
	
p {
	font-size:16px;
	line-height:24px;
	color:#440d29;
}

#nav-content h1 {
	background-image:url(../images/logo-header.gif);
	background-repeat:no-repeat;
	line-height:75px;
	text-indent:80px;
}

#bg {
	margin: 0 auto 0 auto;
	position: relative;
	width: 100%;
	height: auto;
	overflow:hidden;
	max-width: 992px;
}


/* CSS Transitions----*/
#container, #nav-content {
	margin: 0 auto 0 auto;
	position: relative;
	transition: width ease-in-out .25s;
	-moz-transition: width ease-in-out .25s; /* Firefox 4 */
	-webkit-transition: width ease-in-out .25s; /* Safari and Chrome */
	-o-transition: width ease-in-out .25s; /* Opera */ }



li {
	list-style: none;
	margin-left:20px;
	display:inline;
}

li a {
	font-weight:400;
	padding: 1px 10px 1px 10px;
}

ul {
	margin-top:-30px;
	float:right;
}

#spacer {
	width:100%;
	height:30px;
	padding: 30px 0 20px 20px;
	color:#bbb;
	font-size:14px;
	font-weight:300;
}

#clearfix {
	clear:both;
}

/*-----------------general links ----------*/
a:link {
	color:#e91b39;
	text-decoration:none;
}
a:visited {
	color:#e91b39;
}
a:hover {
	color:#f5801f;
}
a:active {
	color:#8a1b53;
}

/*-----------------Class links--------------*/
a.magenta:link {
	background-color:#e91b39;
	color:#FFF;
}
a.magenta:visited {
	background-color:#e91b39;
	color:#FFF;
}
a.magenta:hover {
	background-color:#f8f8f8;
	color:#e91b39;
}
a.magenta:active {
	background-color:#f8f8f8;
	color:#e91b39;
}


a.orange:link {
	background-color:#f5801f;
	color:#FFF;
}
a.orange:visited {
	background-color:#f5801f;
	color:#FFF;
}
a.orange:hover {
	background-color:#f8f8f8;
	color:#f5801f;
}
a.orange:active {
	background-color:#f8f8f8;
	color:#f5801f;
}


a.purple:link {
	background-color:#8a1b53;
	color:#FFF;
}
a.purple:visited {
	background-color:#8a1b53;
	color:#FFF;
}
a.purple:hover {
	background-color:#f8f8f8;
	color:#8a1b53;
}
a.purple:active {
	background-color:#f8f8f8;
	color:#8a1b53;
}




a.email:link {
	background-color:#8a1b53;
	color:#FFF;
}
a.email:visited {
	background-color:#8a1b53;
	color:#FFF;
}
a.email:hover {
	background-color:#f8f8f8;
	color:#8a1b53;
}
a.email:active {
	background-color:#f8f8f8;
	color:#8a1b53;
}





#container a {
	font-weight:400;
	padding: 1px 10px 1px 10px;
}

#container p {
	margin-bottom:8px;
}


/*---------------- CLASSES ----------------*/
.column {
	width:29%;
	overflow:hidden;
	float:left;
	padding: 35px 2% 20px 2%;
}


/*		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) {
	
	#container {
		width: 748px;
	}
	
	header {
		height:100px;
	}
	
	#nav-content {
	width: 738px;
	padding: 10px 15px 50px 15px;
	}
	
	
	header h1 {
	font-size:70px;
	}
	
	ul {
	margin-top:-34px;
	}
	
	.column {
	width:27%;
	overflow:hidden;
	float:left;
	padding: 35px 3% 0 3%;
	}
	
}





/*		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) {
	
	ul {
	margin-top:7px;
	float:left;
	}
	
	li {
	margin-right:20px;
	margin-left:0;
	}
	
	#container {
		width: 300px;
		padding: 0 10px 20px 10px;
	}
	header {
		height:90px;
	}
	
	header h1 {
	font-size:26px;
	font-weight:400;
	letter-spacing:0;
	background-image:url(../images/logo-header-sm.gif) !important;
	background-repeat:no-repeat;
	text-indent:40px !important;
	line-height:35px !important;
	}
	
	h2 {
		font-size:26px;
		line-height:36px;
	}
	
	
	#nav-content {
	width: 290px;
	padding: 11px 15px 50px 15px;
	overflow:hidden;
	}
	
	.column {
	width:94%;
	overflow:hidden;
	float:left;
	padding: 25px 3% 0 3%;
	}
	
	#spacer {
		padding: 30px 0 20px 8px;
	}

	

}



/*		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) {
	
	#container {
		width: 460px;
		padding: 0 10px 20px 10px;
	}
	
	#nav-content {
	width: 450px;
	padding: 10px 15px 50px 15px;
	overflow:hidden;
	}
	
	header {
		height:50px;
	}
	
	
	header h1 {
	font-size:26px;
	font-weight:400;
	letter-spacing:0;
	line-height:36px;
	}
	
	h2 {
		font-size:26px;
		line-height:36px;
	}
	
	ul {
	margin-top:-30px;
	float:right;
	}
	
	li {
	margin-left:20px;
	margin-right:0;
	}
	
	.column {
	width:94%;
	overflow:hidden;
	float:left;
	padding: 25px 3% 0 3%;
	}
	
	#bg {
		height:140px;
	}
	
	#spacer {
		padding: 30px 0 20px 12px;
	}

	
}


/*	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 {
	
	}
	
}