@charset "UTF-8";
/* CSS Document */

/* main site logo and blurb*/
#lbl {
	background-color: white;
}
#lbl img {
	width: 50%;
}
/* main site logo and blurb (small for repsonsive design)*/
#lbllt_2 {
	display: none;
}
/* banners */
#proms {
	background-color: white;
}
#proms div {
	background-color: snow;
	text-align: center;
	width: 50%;
	display: inline-block;
	padding: 5px 0;
}

/* MEDIA QUERIES */
@media (max-width: 400px) {
	#lbl {
		width: 100%!important;
		}
	#proms {
		width: 100%!important;
		}
}

@media (max-width: 450px) {
	#proms {
		text-align: center;
		}
	#proms div {
		width: 100%;
		display: block;
		}
}

@media (max-width: 600px) {
	#lbl {
		text-align: center;
		}
	#lbl img {
		width: auto;
		}
	#lblrt {
		display: none;
		}
	#proms {}
	#lbllt {
		display: none;
		}
	#lbllt_2 {
		display: block;
		}
}

@media (max-width: 700px) {
	#lbl {
		width: 100%;
		}
	#lbl img {}
	#proms {
		width: 100%;
		}
	#proms div {}
}

