/*
Theme Name: 
Theme URI: 
Description: 
Author: By Association Only
Author URI: http://byassociationonly.com
Version: 1.0
License: Use only for 
Credits: Paul Irish http://html5boilerplate.com/
*/

/*
===========================================================
	Contents:
	01 Base
	02 Links
	03 Typography
	04 Lists
	05 Embedded content
	06 Forms
	07 Primary
	08 Internal pages
	09 IE fixes
	10 Media queries
===========================================================
*/

/*  01 Base 
--------------------------------------------- */

@import 'css/html5reset-1.6.1.css';

html { 
	font-size: 100%; 
	overflow-y: scroll;
	overflow-x: hidden; 
	-webkit-text-size-adjust: 100%; 
	    -ms-text-size-adjust: 100%; 
	line-height: normal; }

body { margin: 0; -webkit-tap-highlight-color: rgb(255,255,158); }

html, 
button, 
input, 
select, 
textarea { 
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility; 
    -webkit-font-smoothing: antialiased;
    color: #5E5E5E; }

* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }


/*  02 Links 
--------------------------------------------- */

a, a:visited { color: #1F7CB5; text-decoration: none; }
a:hover { color: #ED2724; }
a:focus { outline: thin dotted; }

a, a:visited, a:hover, a:active { outline: 0; outline: none; }    



/*  03 Typography 
--------------------------------------------- */

@font-face {
    font-family: 'DINRegular';
    src: url('type/din-regular-webfont.eot');
    src: url('type/din-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('type/din-regular-webfont.woff') format('woff'),
         url('type/din-regular-webfont.ttf') format('truetype'),
         url('type/din-regular-webfont.svg#DINRegular') format('svg');
    font-weight: normal;
    font-style: normal;
}

h1 {
	font-weight: normal;
	text-transform: uppercase;
	font-size: 2em;
	letter-spacing: .25em;
	text-align: center;
	top: 50%;
	margin-top: -44px;
	position: relative;
	color: #fff;
	width: 100%;
}

h1.animated {
	-webkit-animation-delay: .25s;
	   -moz-animation-delay: .25s;
		-ms-animation-delay: .25s;	     
		-o-animation-delay: .25s;
		   animation-delay: .25s;
}

p.animated {
	position: absolute;
	bottom: 0;
	left: 0;
	text-align: left;
	line-height: 1.4em;
	font-size: .85em;
	-webkit-animation-delay: .5s;
	   -moz-animation-delay: .5s;
		-ms-animation-delay: .5s;	     
		-o-animation-delay: .5s;
		   animation-delay: .5s;
}

blockquote { margin: 1em 40px; }
small { font-size: 85%; }




/*  04 Lists
--------------------------------------------- */

ul, ol { margin: 1em 0; padding: 0 0 0 40px; list-style-type: disc; }
ol { list-style-type: decimal; }
nav ul, nav ol { list-style: none; list-style-image: none; margin: 0; padding: 0; }


	
	
	

/*  05 Embedded content
--------------------------------------------- */

img { 
	border: 0; 
	-ms-interpolation-mode: bicubic; 
	vertical-align: middle; 
	max-width: 100%;
	height: auto;
}

img.logo {
	width: 300px;
	float: left;
}

img.fork {
	width: 150px;
	display: inline-block;
	margin: 0 auto 25px auto;
}


/*  06 Forms
--------------------------------------------- */






/*  07 Primary
--------------------------------------------- */

/* apply a natural box layout model to all elements */
* { -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

#wrapper {
	padding: 50px;
	margin: 0 auto;
	overflow: hidden;
	text-align: center;
}

.left, .right {
	width: 25%;
	float: left;
	padding-right: 50px;
	position: relative;
}

	.right {
		width: 75%;
		background: url(img/fill.jpg) no-repeat top left; 
		-webkit-background-size: cover;
		-moz-background-size: cover;
		-o-background-size: cover;
		background-size: cover;
		padding: 0 50px;
	}

/*  08 Internal pages
--------------------------------------------- */


			
			
			




/*  9 IE fixes
--------------------------------------------- */
.lt-ie8 div.upgrade { /* Display a pale yellow, 100% width warning box telling users to upgrade browser */
	display: block;
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	z-index: 9999;
	height: 100px;
	background-color: #FFF2AF;
}
	.lt-ie8 div.upgrade p {
		text-align: center;
		margin-top: 40px;
		color: #fff;
		text-transform: uppercase;
	}



/*  10 Media queries
--------------------------------------------- */

/* Disable iOS/WinMobile font size changes */
@media screen and (max-width: 600px), screen and (max-device-width: 480px) {
	html {
		-ms-text-size-adjust: none;
		-webkit-text-size-adjust: none;
	}
}

/* Huge screens */
@media screen and (min-width: 960px) {

	
}

/* iPad portrait */
@media screen and (min-width: 641px) and (max-width: 959px) {

	.left,.right {
		width: 50%;
	}
	
}

/* Smartphones (portrait and landscape) ----------- */
@media screen and (max-width : 480px), screen and (max-width : 640px) {
	
	.right {
		display: none;
	}
	
	.left {
		width: 100%;
	}
	
	.logo {
		margin-bottom: 100px;
	}
	
	p.animated {
		float: left;
		position: relative;
		left: 0;
		top: 0;
		width: 100%;
	}
	
}



