/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */
/* apply a natural box layout model to all elements */
*, *:before, *:after {
  -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
 }
.hidden-desk{
	display: none;
}
body{
	background-color: #efefef;
}
.container.main{
	background-color: white;
	padding-top: 30px;
	/*box-shadow: 0px 2px 10px 0px rgba(0,0,0,.75);*/
	padding-bottom: 100px;
	border-radius: 0 0 10px 10px;
}
header {
  position: relative;
  z-index: 999;
  padding-bottom: 25px;
  text-align: left; 
  /*border-top: 28px solid #4a688c;*/
  border-bottom: 18px solid #4a688c;
  padding-top: 40px;
  /*box-shadow: 0px 2px 10px 0px rgba(0,0,0,.75);*/
}
header h1{
	font-family: 'Cabin Condensed', sans-serif;
	color: #4a688c;
	font-weight: 800;
	padding-top: 20px;
}
header h4,
header h6{
	color: #9bacc0;
}
header h6{
	text-transform: uppercase;
}
img.apple{
	width: 100px; height: auto;
	float: left;
	margin: 15px 15px 30px 0px;
}
footer{
	margin: 30px 0 20px 0;
	text-align: right;
}
footer h4{
	color: #4a688c;
}
.padding {
	padding: 20px;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

input[type="text"],
textarea{
	width: 100%;
	-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}

/* #Page Styles
================================================== */

/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
		body{
			text-align: center;
		}
		header h1 {
			font-size: 30px;
		}
		header {
			padding-top: 10px;
			text-align: center;
		}
		footer{
			text-align: center;
		}
		.hidden-mobile{display:none;}
		.hidden-desk{display: block;}
	}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
