@charset "UTF-8";
/* ACCESSIBILITY MENU CSS */

/* MENU */
#menu{
	display: none;
}

.menuContent {
	
	box-sizing: border-box;
	z-index: 1;
	width: 70%;
	margin-left:15%;
	margin-right:15%;
	padding: 0;
	display:block;
}

.menuContent .menuHeader {
	text-align: center;
	margin: 0; 
	padding: 0;
}

.menuContent .closeMenu {
	text-align: center;
	margin: 0; 
	padding: 0;
	text-decoration: none;
	display: block;
	padding-top: 20px;
	padding-bottom: 20px;
	cursor: pointer;
}

.row {
	text-align: center;
	position:relative;
	margin: 0; 
	padding: 10px 30px 30px 30px;

}

.accessSub{
	padding:0;
}

.column {
	float: left;
	width: 33.33%;
	margin: 0; 
	padding: 0px 5px 0px 5px;
}

.column a {
  text-decoration: none;
  display: block;
  text-align: center;

}

.column a.bWhite:hover {
	background-color: #eee;
	color: #333;	
}

.column a.wBlack:hover {
	background-color: #333;
	color: #eee;	
}

.column a.bYellow:hover {
	background-color: #FFFF00;
	color: #333;
}

.column a.yBlack:hover {
	background-color: #333;
	color: #FFFF00;	
}

.column a.pPink:hover {
	background-color: #FFDDFF;
	color: #333;
}

.column a.pCreme:hover {
	background-color: #FFFFDD;
	color: #333;	
}


.column a.courier:hover {
	font-family: "Courier New", Courier, monospace;
	font-style: normal;
}

.column a:hover, .column a:focus {
  
	background-color: #41B6E6;
	color: #fff;
}



.btnSelected {
	background-color:#41B6E6;
	color: #ffffff;
}





.row:after {
  content: "";
  display: table;
  clear: both;

}


/* OVERLAY */

.overlay {
  height: 0%;
  width: 100%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-y: hidden;
  transition: 0.25s;
}

.overlay-content {
  position: relative;
  top: 15%;
  width: 100%;
  text-align: center;
}

.overlay a {
  text-decoration: none;
  display: block;
  transition: 0.3s;
}