
@media (orientation: landscape) {

	#myVideo {
	  position: fixed;
	  right: 0;
	  bottom: 0;
	  min-width: 100%;
	  min-height: 100%;
	z-index:-1;
	}
	
	#content {
		margin-left: 150px;
		margin-right: 150px;
		margin-top: 25px;
		margin-bottom: 25px;
		padding: 25px;
	}

}

@media (orientation: portrait) {
	#myVideo {
	  
	  position: fixed;
	  right: 0;
	  top: 0;
	  min-width: 100%;
	  
	z-index:-1;
	  
	}

	#content {
		margin-left: 25px;
		margin-right: 25px;
		margin-top: 25px;
		margin-bottom: 25px;
		padding: 25px;
	}
}

.cRow {margin-bottom: 25px;}