/*
* 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
================================================== */
body 			{padding:0;margin:0;background:#DFE3E6;}
fieldset		{border:1px solid #CCCCCC;border-radius:7px;padding:0 10px;}
label			{font-weight:normal;}
input[required] {border-right:1px solid red;}
input[type="text"]:valid,
input[type="tel"]:valid,
input[type="email"]:valid {border-right:1px solid green;}

/* #Page Styles
================================================== */
.container		{margin-top:15px;background:url('../images/bg.gif') repeat-y #fff;}
header			{height:235px;background:url('../images/header_desktop.gif');}
nav ul			{margin-left:40px;}
nav ul li a:link,
nav ul li a:visited {
	display:block;
	background:url('../images/icon_checker.gif') no-repeat 7px #DFE3E6;
	padding:3px 0 3px 20px;
	width:125px;
	margin-bottom:15px;
	border:1px solid #929CA4;
	color:#CC1C0D;
	font-weight:bold;
	text-decoration:none;
}
nav ul li a:hover {
	background-color:AliceBlue;
	color:black;
}
.eight.columns		{margin:0 20px;min-height:200px;}
.eight.columns img 	{float:left;margin:5px 10px 0 0;}
footer				{height:23px;background:url('../images/footer_desktop.gif');}

/* #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) {
		.container 		{background-image:none;}
		header			{background:url('../images/header_tablet.gif');}
		nav ul			{margin-left:15px;}
		.eight.columns	{margin:0 10px;}
		footer			{background:url('../images/footer_tablet.gif');}
	}

	/* 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) {
		.container 		{background-image:none;}
		header			{height:135px;background:url('../images/header_mlandscape.gif');}
		nav ul			{margin-left:10px;width:410px;}
		nav ul li a:link,
		nav ul li a:visited {
			display:block;
			background-color:#DFE3E6;
			background-image:none;
			float:left;
			padding:3px 0 3px 0;
			width:77px;
			margin-bottom:15px;
			border:1px solid #929CA4;
			color:black;
			font-weight:normal;
			text-decoration:none;
			font-size:12px;
			text-align:center;
		}
		.eight.columns	{width:400px !important;margin:0 10px;}
		aside			{width:400px !important;margin:0 10px !important;}
		footer			{background:url('../images/footer_mlandscape.gif');}
	}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {
		.container 		{background-image:none;}
		header			{height:100px;background:url('../images/header_mportrait.gif');}
		select			{margin-left:10px;width:280px;}
		.eight.columns	{width:280px !important;margin:0 10px;}
		aside			{width:280px !important;margin:0 10px !important;}
		footer			{background:url('../images/footer_mportrait.gif');}
	}


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