@charset "utf-8";

.table_web, .tr_web, .td_web {
	border: 1px solid black;
	padding: 5px;
	border-collapse: collapse;
	font-family: Tahoma;
	font-size: 12px;
}

/* CSS Document */
body {font-family: Tahoma, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 600; /* Sit on top */
  padding-top: 110px; /* Location of the box */
  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 */
.modal-content {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 0;
  border: 1px solid #888;
  width: 70%;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: zoom;
  -webkit-animation-duration: 0.6s;
  animation-name: zoom;
  animation-duration: 0.6s
}

/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}

/* moiflk begin */
@-webkit-keyframes zoom {
	from {-webkit-transform:scale(1)}
	to {-webkit-transform:scale(2)}
}
 
@keyframes zoom {
	from {transform:scale(0.4)}
	to {transform:scale(1)}
}

@-webkit-keyframes zoom-out {
	from {transform:scale(1)}
	to {transform:scale(0)}
}
@keyframes zoom-out {
	from {transform:scale(1)}
	to {transform:scale(0)}
}

@-webkit-keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;}
}

.zoom1-out {
  animation-name: zoom-out;
  animation-duration: 0.6s;
}

.fadeout1 {
  animation-name: fadeOut;
  -webkit-animation-name: fadeOut;
  animation-duration: 0.6s;
}
/* moiflk end */

/* The Close Button */
.modal-close {
  color: white;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.modal-close:hover,
.modal-close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}

.modal-header {
  padding: 2px 16px;
  background-color:#fff;
  color: white;
}

.modal-body {padding: 2px 16px;}

.modal-footer {
  padding: 2px 16px;
  background-color:#fff;
  height:110px;
  color: white;
}

