/* ----------------------------------------------------------------
	Accessibility CSS Greenville County Schools
-----------------------------------------------------------------*/
/*This is for hiding content for sighted users */

.hidden 
{position:absolute;
left:-10000px;
top:auto;
width:1px;
height:1px;
overflow:hidden;}

/*This is for skipping repetitive content for sighted users 
<div id="skip"><a href="#content">Skip to Main Content</a></div>
*/
#skip a
{ 
position:absolute; 
left:-10000px; 
top:auto; 
width:1px; 
height:1px; 
overflow:hidden;
} 
 
#skip a:focus 
{ 
position:static; 
width:auto; 
height:auto; 
} 
/*This is for screen reader only content - alternative to .hidden above */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}