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



/* #Media Queries */

	@media only screen and (min-width: 1600px)  {}
	
	@media only screen and (min-width: 1200px) and (max-width: 1599px)  {}

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (min-width: 960px) and (max-width: 1199px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {
	
	.home-call, .news-feed {
	width: 500px;
	margin: 10px auto 10px 0;
	}
	
	.home-call, .news-feed {
	width: 48%;
	margin: 10px 1% 10px 1%;
	}
	
	}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
	
	header {
	text-align: center;
	}
	
	img.logo {
	margin-top: 40px;
	}
	
	footer img.logo {
	margin-bottom: 40px;
	}
	
	.full-width {
	height: calc(100vh - 236px);
	}

	p.site-intro {
	font-size: 17px;
	line-height: 28px;
	width: 90%;
	}
	
	.home-call, .news-feed {
	width: 98%;
	margin: 10px 1% 10px 1%;
	}
	
	.specification {
	margin: 20px 0px 20px 0px;
	float: left;
	}
	
	.six.columns.vessel-images {
	margin-top: 40px;
	}
	
	}

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


