/* CSS Document */

#tblexportData {
  font-family: Cambria;
  border-collapse: collapse;
  width: 100%;
  font-size:13px
}

#tblexportData td, #tblexportData th {
  border: 1px solid #FFFFFF;
  padding: 5px;
}

#tblexportData tr:nth-child(even){background-color: #f2f2f2;}
#tblexportData tr:nth-child(odd){background-color: #CCFFFF;}

#tblexportData tr:hover {background-color: #ddd;}

#tblexportData th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: center;
  background-color: #00FFFF;
  color: #006600;
  font-family:Cambria;
}



input[type=text],[type=password], select {
  width: 100%;
  padding: 4px 8px;
  margin: 4px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

input[type=submit],[type=reset] {
  width: 100%;
  background-color: DodgerBlue;
  color: white;
  padding: 6px 12px;
  margin: 4px 0;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family:Cambria;
}

input[type=submit]:hover {
  background-color: #45a049;
}

input[type=reset]:hover {
  background-color: #45a049;
}

textarea {
  width: 100%;
  height: 150px;
  padding: 8px 16px;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  background-color: #f8f8f8;
  font-size: 16px;
  resize: none;
}

hr.new {
  border: 1px solid teal;
}
th {
  background: #00FFFF;
  text-align:center;
  position: sticky;
  top: 0; /* Don't forget this, required for the stickiness */
  box-shadow: 0 2px 2px -1px rgba(0, 0, 0, 0.4);
}