/* Safari-specific Hacks */

/*  corrrect sticky-top elements (ony sidebars; center column was already fine) top-position honoring the mainnav */
/* from: https://stackoverflow.com/questions/16348489/is-there-a-css-hack-for-safari-only-not-chrome */

/* Safari 10.1+ */
@media not all and (min-resolution:.001dpcm) { @media {

	#sponsors-container,
	#utility-container
	{
		top: 2px;
		/* border: solid 1px red; */ /* for test */
	}
	
	#utilities {
	z-index: 1;
	}
}}


/* Safari 6.1-10.0 (not 10.1) */

@media screen and (min-color-index:0) and(-webkit-min-device-pixel-ratio:0) 
{ @media {
	#sponsors-container,
	#utility-container
	{
		top: 2px;
		/* border: solid 1px red; */ /* for test */
	}
	
	#utilities {
	z-index: 1;
	}
}}
