/********************************* FULL PAGE IMAGES/****************************************/
/************************ source: *********************/

img.bg {
	/* Set rules to fill background */
	min-height: 50%;
	min-width: 1024px;

	/* Set up proportionate scaling */
	width: 100%;
	

	/* Set up positioning */
	position: fixed;
	top: 0;
	left: 0;
}

div#content {
	
}

#bg-image {
	/* needed to allow content to sit ontop of background fullpage image */
	position: relative;
	height: 98%;
		
	/* used for styling purposes only */
}

@media screen and (max-width: 1024px){
	img.bg {
		left: 50%;
		margin-left: -512px; }
}

