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

.stickyThing{
	position:-webkit-sticky;
	position:sticky;
	top:15px;
}

@media(max-width:767px){
	.stickyThing{
		position:relative;
		top:0px;
	}
}