/*
* 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
================================================== */
cite {
    font-size: 80%;
    color: #888;
}

figcaption {
    font-size: 80%;
    margin-bottom: 0.5em;
    color: #888;
}

footer {
    padding: 10px;
    margin-bottom: 0px;
    background-color: #283744;
}

p.footer {
    font-size: 120%;
    color: #eee;
    text-shadow: 2px 2px 2px #333;
    background-color: #283744;
    display: block;
    margin-top: 1em;
}

blockquote, blockquote p {
    font-family: 'Shadows Into Light', cursive;
    font-size: 1.25em;
    color: #23394F;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
    text-shadow: 4px 4px 4px #aaa;
    color: #082338;
}

p.note {
    background-color: #eee;
    color: #23394F;
    padding: .5em;
}

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

nav {
	height: 40px;
	width: 100%;
	background: #283744;
	font-size: 1em;
	font-weight: bold;
	position: relative;
	border-bottom: 2px solid #283744;
    z-index: 50;
    justify-content: center;
}
nav ul {
	padding: 10;
	margin: 10 auto;
	height: 40px; 
}
nav li {
	display: inline;
	float: left;
}
nav a {
	color: #eee;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	line-height: 40px;
	text-shadow: 2px 2px 2px #111;
}
nav li a {
	color: #eee;
    border-right: 1px solid #94856F;
    padding-right: 10px;
    padding-left: 10px;
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
}
nav li:last-child a {
	border-right: 0;
}
nav a:hover, nav a:active {
	background-color: #335566;
    color: #fff;
}
nav a:visited {
    color: #eee;
}
nav a#pull {
	display: none;
}

/*Styles for screen 600px and lower*/
@media screen and (max-width: 600px) {
	nav { 
  		height: auto;
  	}
  	nav ul {
  		width: 100%;
  		display: block;
  		height: auto;
  	}
  	nav li {
  		width: 100%;
  		float: left;
  		position: relative;
  	}
  	nav li a {
		border-bottom: 1px solid #576979;
		border-right: 1px solid #576979;
	}
  	nav a {
	  	text-align: left;
	  	width: 100%;
	  	text-indent: 25px;
  	}
}

/*Styles for screen 515px and lower*/
@media only screen and (max-width : 480px) {
	nav {
		border-bottom: 0;
	}
	nav ul {
		display: none;
		height: auto;
	}
	nav a#pull {
		display: block;
		background-color: #283744;
		width: 100%;
		position: relative;
	}
	nav a#pull:after {
		content:"";
		background: url('nav-icon.png') no-repeat;
		width: 30px;
		height: 30px;
		display: inline-block;
		position: absolute;
		right: 15px;
		top: 10px;
	}
}

/*Smartphone*/
@media only screen and (max-width : 320px) {
	nav li {
		display: block;
		float: none;
		width: 100%;
	}
	nav li a {
		border-bottom: 1px solid #576979;
	}
}


/* testing classes for mobile and desktop only */

    @media (min-width:992px) {
        .desktop-only {
            display: block !important;
        }
    }

/* tsting mobile-only */

    @media (max-width:991px) {
        .mobile-only {
            display: block !important;
        }
        
        .desktop-only {
            display: none !important;
        }
    }

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

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



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

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