@charset "utf-8";
/* CSS Document */

.test{
	display: none;
}

@media (min-width: 500px) and (max-width:925px) {
	.test{
		display: block;
	};
}

