@charset "utf-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img,
object,
embed,
video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width: 100%;
}
/* Mobile Layout: 480px and below. */
  
.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 86.45%;
	padding-left: 2.275%;
	padding-right: 2.275%;
	clear: none;
	float: none;
}
.left {
	float:left;
}
.right {
	float:right;
}
.zeroMargin_mobile {
	margin-left: 0;
}
.hide_mobile {
	display: none;
}
.flexbox {
	display: block;
}
.main_nav {
	position: fixed;
}
.main_nav a {
	
}
#welcome, 
#middle_fullscreen,
#last_fullscreen {
	display: none;
}
.mobile_images {
	display: block;
}
#title {
	padding: 0px 30px;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	margin-bottom: 5%;
}
.images_sidebar {
	width: 100%;
}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.left {
}
.right {
}
.hide_tablet {
	display: none;
}
.zeroMargin_tablet {
	margin-left: 0;
}
.images_sidebar {
	width: 45%;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.left {
}
.right {
}
.zeroMargin_desktop {
	margin-left: 0;
}
.hide_desktop {
	display: none;
}
.flexbox {
	display: flex;
}
.main_nav {
	position:fixed;
	
}
#welcome {
	display:block;
	background: url(../images/first.jpg) no-repeat center top / cover;
	-webkit-background-size: cover;
	position: fixed;
	top: 0;
	width: 100%;
	height: 80%;
	z-index: 1;
}
#content {
	position: absolute;
	width: 100%;
	top: 80%;
	z-index: 1;
}

#title h1 {
	display: inline-block;
	font-size: 3em;
	padding: 5px 50px;
	margin-top: 0;
	background-color: rgba(255,255,255,.8);
	border-radius: 10px;
}
#title h1 {
		margin-bottom: 150px;
}
#welcome, 
#middle_fullscreen,
#last_fullscreen {
	display: block;
}
.mobile_images {
	display: none;
}
.images_sidebar {
	width: 30%;
}
}
