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

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

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

body {
	padding-top: 20px;
	background: #888;
}

.container {
	background: white;
	padding: 20px;
	margin-bottom: 20px;
}

#wrapper {
	background: #444;
	height: 40px;
	color: white;
}

#wrapper h3 {
	color: #fff;
	line-height: 40px;
}

#wrapper a {
	color: #fff;
	text-decoration: none;
}

#wrapper a:hover {
	color: #fff;
	text-decoration: underline;
}


#nav ul li {
	float: left;
	margin-left: 30px;
	line-height: 40px;;
}

img{ 
	max-width: 100%;
	height: auto;
	margin: 0; padding: 0;
}


/* #Media Queries
================================================== */
	
	/* iPad Portrait/Browser */
	@media only screen and (min-width: 768px) and (max-width: 991px) {
		#nav ul li {
			margin-left: 15px;
		}
	
	}
	
	/* Mobile/Browser */
	@media only screen and (max-width: 767px) {
		h1 {
			font-size: 2.5em;
		}
		
		#wrapper {
			background: white;
			margin: 0;
		}
		
		#wrapper h3 {
			background: black;
			text-align: center;
			width: 50px;
			height: 50px;
			line-height: 50px;
			-webkit-border-radius: 25px;
		}
		
		#wrapper a {
			color: #000;
			text-decoration: none;
		}
		
		#wrapper a:hover {
			color: #000;
			text-decoration: underline;
			margin: 0px; padding: 0px;
		}
		
		#nav ul li {
			margin-right: 15px;
			margin-left: 0;
		}
	}
	
	/* Mobile Landscape/Browser */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}
	
	/* Anything smaller than standard 960 */
	@media only screen and (max-width: 959px) {}
	
	/* iPad Portrait Only */
	@media only screen and (min-width: 768px) and (max-width: 991px) and (max-device-width: 1000px) {}
	
	/* Mobile Only */
	@media only screen and (max-width: 767px) and (max-device-width: 1000px) {}
	
	/* Mobile Landscape Only */
	@media only screen and (min-width: 480px) and (max-width: 767px) and (max-device-width: 1000px) {}
	

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