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

@media screen and (max-width: 991px){	
	.show-tablet{
		display:inherit
	}
	.hide-tablet{	;
		display:none;
	}	
}

@media screen and (max-width: 767px){
	.hide-mobile{
		display:none;
	}
	.show-mobile{
		display:inherit;
	}
	.tablet100{
		width: 95%;
	}
}

@media screen and (max-width: 500px){
	.mobile100{
		width: 95%;
	}
}