@charset "UTF-8";


/* Mobile Layout: 480px and below. */

#videoBG {
	display: none;
	}

#videoBG video {
	display: none;
}

#videoBGImg {
	display: none;
}

#bg {
	display: block;
	position: fixed;
	z-index: -99;
	width: 240%;
	height: 240%;
	left: 0;
	top: 0;
	margin-top: 0;
	margin-left: 0;
	background-color: #004671;
    overflow: hidden;
}

#bg img {
	display: block;
	position: absolute;
    top: -20%;
    left: -25%;
	margin-top: -10%;
	margin-left: -05%;
	width: 100%;
    height: 100%;
}


/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */
@media only screen and (min-width: 481px) {

#imgMoBG {
	display: none;
	}

#videoBG {
	display: block;
	position: fixed;
	z-index: -99;
	width: 240%;
	height: 240%;
	left: 0;
	top: 0;
	margin-top: 0;
	margin-left: 0;
	background-color: #004671;
    overflow: hidden;
}

#videoBG video {
	display: block;
	position: absolute;
    top: -20%;
    left: -25%;
	margin-top: -10%;
	margin-left: -05%;
	width: 100%;
    height: 100%;
}

#videoBGImg {
	display: none;
}
	
}
	
/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */
@media only screen and (min-width: 769px) {
	
}
	