/* CSS Document */
.sponly {
	display: none;
}
.pconly {
		display: inherit !important;
}

@media screen and (max-width:800px){
	.sponly {
		display: inherit;
	}
	.pconly {
		display: none !important;
	}
}
