body {
	margin: 0px;
	overflow: hidden;
	position: absolute;
	background-color: #f2f2f2;
	color: #000;
	font-family: sans-serif;
}

a {
	color: #000;
}

div {
	color: #000;
}

a:hover {
	color: #ff0;
}

a:active {
	color: white;
}
	
img {
	display:none;
}


 /* .loader {
	margin: -30px -30px;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	border-radius: 30px;
	animation: animloader 2s linear infinite;
  }
  
  @keyframes animloader {
	0% {
	  box-shadow: -70px 0 #FF0 inset;
	}
	50% {
	  box-shadow: 0px 0 #FFF inset;
	}
	100% {
	  box-shadow: 70px 0 #FF0 inset;
	}
  }
  */

 .modal {
	display: none; /* Hidden by default */
	margin-top: 0px;
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  .modal-content {
	background-color: rgba(240, 240, 240, 0.9);
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	width: 80%; /* Could be more or less, depending on screen size */
  }
  
  .btn {
	text-decoration: none;
	cursor: pointer;
}

  .close {
	color: #ff0;
	margin: -18px -14px;
	float: right;
	font-size: 20px;
	font-weight: lighter;
  }
  
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  } 