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

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

/* #Site Styles
================================================== */

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

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

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (min-width: 960px) {
	    .container { 
		padding: 0 40px; 
		-webkit-box-shadow: 7px 7px 5px 0px rgba(50, 50, 50, 0.75);
		-moz-box-shadow:    7px 7px 5px 0px rgba(50, 50, 50, 0.75);
		box-shadow:         7px 7px 5px 0px rgba(50, 50, 50, 0.75);
		-moz-border-radius: 15px;
		border-radius: 15px;
	    }
	    .footer { 
		padding: 20px 40px; margin: 0 -40px; 
		-moz-border-radius-bottomleft: 13px;
		-moz-border-radius-bottomright: 13px;
		border-bottom-left-radius: 13px;
		border-bottom-right-radius: 13px;
	    }

	}

	@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) {
	    .logo { font-size: 90%; }
	}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
	    .logo { display: none; }
	    .main { padding: 2em 3em 2em 0; }
	    .sidebar { padding: 0 0 0 2em; }
	    #leftside { display: none; }
	    .smallscreenlogo { display: block; text-align: center; font-size: 80%; }
	    .smallscreenlogo .logoimg, .smallscreenlogo .portraitimg { width: 50% !important; }
	    .smallscreenlogo .logoimg { text-align: left; padding-top: 20px;}
	    .smallscreenlogo .portraitimg { text-align: right; }
	    .smallscreenlogo .logoimg img, .smallscreenlogo .portraitimg img { width: 75% !important; }
	}

	/* 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) {
	    .smallscreenlogo { font-size: 60%; }
	}

