 .nodisplay{
	 display:none;
 }
 
 
 .hidden{
visibility:hidden;
}

.hand{
cursor:pointer;
cursor:hand;
font-weight:normal;
}

.hand:hover {background-color: plum;}


.button {
  /*
  padding: 15px 25px;
  background-color: #c9d0d7;
  box-shadow: 0 9px #999;
  border-radius: 15px;
  */
  padding: 10px 10px;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
  outline: none;
  color: #000000;
  
  background-color: #f7cf05;

  border: none;
  border-radius: 6px;
  
}

.button:hover {background-color: #c9d0d7}

.button:active {
  background-color: #c9d0d7;
  /*box-shadow: 0 5px #666;*/
  transform: translateY(4px);
}



input[type=text]:focus, textarea:focus {
background-color: #FFFFBE;
  /*box-shadow: 0 0 5px rgba(81, 203, 238, 1);
  border: 1px solid rgba(81, 203, 238, 1);
  */
  border: 2px solid rgba(0, 0, 0, 1);
}

input[type=text] {
/*
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  
  -webkit-transition: all 0.30s ease-in-out;
  -moz-transition: all 0.30s ease-in-out;
  -ms-transition: all 0.30s ease-in-out;
  -o-transition: all 0.30s ease-in-out;
  outline: none;
  border: 1px solid #DDDDDD;
*/
  border: 1px solid #DDDDDD;
  outline: none;
  border-radius: 5px;
}

input[type=text]:read-only {
  background-color: #F0F0F0;
}

textarea:read-only {
  background-color: #F0F0F0;
}