#content {
  display: none;
}
input[type="text"]{
    color: transparent;
    text-shadow: 0 0 0 #000;
    padding: 0px 0px;
	border: none;
    width: 100%;
	font-size: 18px;
}
input[type="text"]:hover{
    color: #714629;
	text-decoration: underline;
	font-weight: bold;
}
input:focus + div#content {
  display: block;
}