
  .searchbtn {
	  cursor: pointer;
  }

  /* The Modal (background) */
  .modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 10005; /* 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/Box */
  .modal-content {
	position: relative;
	background-color: #fefefe;
	margin-left: 60px;
	margin-top: 200px;
	/*margin: 15% auto;*/ /* 15% from the top and centered */
	border: 1px solid #888;
	max-width: 500px;
	width: 100%; /* Could be more or less, depending on screen size */
  }
  .modal-content .title{
	  text-align: center;
	  margin-top: 10px;
  }

  .modal-content .cursor .txtcontent {
	  text-align: center;
	  padding: 8px;
	  font-size: 15px;
	  font-weight: bold;
	  border: 1px solid #e1e1e1;
	  cursor: pointer;
  }
  .modal-content .cursor:first-of-type .txtcontent{
	  margin-top: 55px;
  }
  .modal-content .cursor:nth-child(odd) .txtcontent {
	  background: #fff;	  
  }
  .modal-content .cursor:nth-child(even) .txtcontent {
      background: #eee;	  
  }
  .modal-content .cursor:active .txtcontent {
	border: 1px solid #be2222;
	color: #be2222;
  }

  
  /* The Close Button */
  .closebar {
	width: 100%;
	height: 55px;
	color: #fff;
	background: #363636;
	float: left;
	font-size: 28px;
	font-weight: bold;
  }

  .close {
	padding: 5px;
	position: absolute;
	cursor: pointer;
  }

  
  /*
  .close:hover,
  .close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
  }
  */