@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%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		4;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

.fluid {
	clear: both;
	margin-left: 0;
	width: 100%;
	float: left;
	display: block;
}

.fluidList {
    list-style:none;
    list-style-image:none;
    margin:0;
    padding:0;        
}

.gridContainer {
	width: 95%;
	max-width: 1280px;
	height: auto;
	max-height: 720px;
	margin: 0 auto;
	clear: none;
	float: none;
	margin-left: auto;
}
#div1 {
}
.zeroMargin_desktop {
	margin-left: 0;
}
.hide_desktop {
	display: none;
}

/* Video */
#fullscreen_video {
    position: relative;
	background: #fff;
	background: transparent;
	width: 100%;
	max-width: 1280px;
	max-height: 720px;
    overflow: hidden;
}
#fullscreen_video iframe, 
#fullscreen_video object, 
#fullscreen_video embed {
    position: absolute;
    top: 0;
    left: 0;
	padding: 0;
	margin: 0;
    width: 100% !important;
    height: 100% !important;
	background: transparent;
}


/* =Responsive Design
-------------------------------------------------------------- */
@media screen and (max-width: 980px) {

}
@media screen and (max-width: 650px) {
	#div1 {
	}
	.zeroMargin_tablet {
		margin-left: 0;
	}
	.hide_tablet {
		display: none;
	}
	.gridContainer {
		width: 90.675%;
		clear: none;
		float: none;
		margin-left: auto;
	}
}
@media screen and (max-width: 480px) {
	.gridContainer {
	}
	#div1 {
	}
	.zeroMargin_mobile {
		margin-left: 0;
	}
	.hide_mobile {
		display: block;
	}
}
@media screen and (max-width: 320px) {

}
@media screen and (max-width: 240px) {

}