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

/* #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; }
*/

@font-face {
	font-family: 'Baveuse';
	src: url('../fonts/baveuse.ttf');
	src: url('../fonts/baveuse.ttf') format('truetype');		 
	font-weight: normal;
	font-style: normal;
}


/* #Site Styles
================================================== */
/*-- header --*/
.header{
	height: auto;
    margin: 2em 0 10px 0;
	position: relative;
    /*border: 1px solid red;*/
}

.logo{
	padding-left:  1.5em;	
}

.logo a{
	font-size: 1.9em;
	font-family: 'Baveuse';
	color:  #424242;
    text-decoration: none;
}

.menu {
	float:right;
    position:relative;
	z-index:1000;
    padding-left: 22em;
}

.menu ul li {
    position:relative;
	float: left;
    display: inline-block;
	padding: 0px 10px 0 10px;
}

.menu ul a {
	font: 1em "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color:#424242;
    text-decoration: none;
}

.menu ul ul{
    display: none;
    position: absolute;
    top: 100%;
    left: -20px;
    width: 200px;
    background: #f0efef;
    padding: 10px 0 10px 0;
}

.menu ul ul a{
	padding:15px 0px;
    text-transform: uppercase;    
}

.menu ul li:hover > ul{
    display: block;
}

.menu ul li a:hover, .menu ul li a:active{
	color: #000;
}

.learn-more{
    font-size: 17px;
}

.footer{
	padding-top: 60px;
    padding-bottom: 20px;
}

.footer p{
	text-align: center;
	color: #6c6c6c;
	font-size: 14px;
    line-height: normal;
}

.footer p.apple-note{
    font-size: 12px;
}



/* #Page Styles
================================================== */
/*------- app-list --------*/
/*----- app-herounit ----*/
.app-list, .app-hero-unit{
    padding-top: 15px;
    padding-bottom: 20px;
}

.app-list h3, .app-list p, .app-hero-unit, .app-hero-unit h2, .app-hero-unit h3, .app-hero-unit p, .app-section-header h3{
    text-align: center;
}

.app-list h3 a{
    text-decoration: none;
    color: #000;
    text-align: center
}

.app-list p{
    padding-left: 13px;
    width: 90%;
}
.app-hero-unit h2{
    padding-top: 20px;
    font-size: 2.5em;
}
.app-hero-unit p{
    font-size: 18px;
}

.primer-note > .one-third.column{
    width: 260px/*236px + 24px*/ !important;
}


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

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {
        .header{ margin: 2em auto;}
    }

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
        .header{ margin: 2em 0 10px 0;}
        .logo{width: 55% !important;}
        .logo a{ font-size: 1.6em; }
        .menu{width: 15em !important; float: right !important; padding-left: 08em;}
        .menu ul li a{ font-size: 1em}
    }

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {
        .header{ margin: 10px 0 10px 0 !important;}
        .logo{width: 25% !important;}
        .logo a{ font-size: 1.6em; }
        .menu{max-width: 50%; float: right !important; padding-left: 1em;}
        .menu ul li{float: left; padding: 0 08px 0 08px; }
        h3{font-size: 22px; line-height: 30px;}
        .app-hero-unit{padding-bottom: 20px;}
        .app-list{padding: 30px 0 20px 0 !important;}
        .app-list p{padding-bottom: -10px !important;}
        .learn-more{font-size: 17px;}
        .footer p.apple-note{font-size: 11px;}
        .footer p.apple-note br{ display: none;}
        .primer-note > .one-third.column{
            width: 420px !important;}
    }

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
        .header{ margin: 10px 0 10px 0 !important;}
        .logo{width: 25% !important; padding-left: 0.3em;}
        .logo a{ font-size: 1.4em; }
        .menu{ width: 68% !important; float: left !important; padding-left: 1em;}
        .menu ul li{ float: left; padding: 0 0px 0 17px; }
        h3{font-size: 22px; line-height: 28px;}
        .app-hero-unit{padding-bottom: 20px;}
        .app-list{padding: 30px 0 20px 0 !important;}
        .app-list p{padding-bottom: -10px !important; }
        .learn-more{font-size: 17px;}
        .footer p.apple-note{ font-size: 09px; }
        .footer p.apple-note br{ display: none;}
        .primer-note > .one-third.column{
            width: 300px !important;}


    }