body {
	padding: 0px;
	font-family: Arial, Sans-Serif;
	font-size: 16px;
  color: black;
  margin: 0;
}

.page {
  background: #ededed ;
  padding: 20px;
}

a {
  color: black;
}

.field {
  margin-bottom: 15px;
}

.field label {
  display: inline-block;
  margin-bottom: 3px;
  width: 300px;
  vertical-align: top;
  margin-right: 20px;
}

.results {
  margin: 30px 0;
  display: none;
  font-size: 16px;
}

.results span {
  font-weight: bold;
}

#result {
  font-weight: bold;
}

input[type=text] {
  border: 1px #2e6da4  solid;
  width: 80px;
  padding: 0 4px;
  height: 26px;
  border-radius: 2px;
  font-size: 16px;
}

input[type=button] {
  border: 1px #2e6da4 solid;
  color: white;
  cursor: pointer;
  margin-top: 10px;

  background-color: #337ab7;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 6px;
}

.btn-primary {
  color: #ffffff;
  background-color: #337ab7;
  border-color: #2e6da4;
}

input[type=button]:disabled {
  cursor: default;
  color: #c9c9c9;
  opacity: .5;
}

.details {
  margin: 7px 0 20px 0;
  font-size: 13px;
  font-style: italic;
}

.details div {
  display: none;
}

.details span {
  cursor: pointer;
  border-bottom: 1px dashed;
}

.error {
  display: none;
  margin-left: 10px;
  color: #FF6D71;
  font-style: italic;
  font-size: 13px;
}

.print {
  display: none;
}

@media print {
  .print {
    display: block;
    margin: 30px 0 20px 0;
  }

  .page {
    border: 0 none;
    background: none;
    padding: 0;
  }

  input[type=button] {
    display: none;
  }

}