/* webkit scroller */
@media screen and (-webkit-min-device-pixel-ratio:0) and (min-device-width: 769px) {
	html { overflow: auto }
	body { position: absolute; top: 0; left: 0; bottom: 0; right: 0; overflow-y: auto; overflow-x: hidden }
	::-webkit-scrollbar { width: 7px; height: 7px }
	::-webkit-scrollbar-track { background: #f1f1f1 }
	::-webkit-scrollbar-thumb { background: #4f4f4f; border-top: 120px solid #f1f1f1 }
	body.blog::-webkit-scrollbar-thumb,
	body.blog::-webkit-scrollbar-thumb,
	body.page-template-page-home-php::-webkit-scrollbar-thumb { border-top: 75px solid #f1f1f1 }
}

/* Get rid of scrollers on iPads */
@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) {
	body { position: relative; top: auto; left: auto; bottom: auto; right: auto; overflow: auto }
}
