body {
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f3f3;   /* page background */
    margin: 0;
    padding: 20px;
  }

  .page {
    width: 8.5in;
    margin: 0 auto;
    padding: 20px 45px;
    background: #ffffff;      /* form/paper */
    box-shadow: 0 0 15px rgba(0,0,0,.15);
  }

  .logo {
    text-align: center;
    margin-bottom: 8px;
  }

  .logo img {
    max-width: 210px;
  }

  h1 {
    font-size: 12px;
    text-align: center;
    margin: 6px 0 10px;
    font-weight: bold;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    font-size: 12px;
  }

  td, th {
    border: 1px solid #000;
    padding: 3px 4px;
    vertical-align: middle;
  }

  .section {
    background: #bccbdd;
    text-align: center;
    font-weight: bold;
	font-size: 12px;
	letter-spacing: 0.3px;
  }

  .subsection {
    background: #d4deea;
    text-align: center;
    font-weight: bold;
	font-size: 12px;
  }

  .label {
    width: 40%;
    font-weight: bold;
	background: #eef2f7;
  }

  .input-cell {
    background: #fafcff;
  }

  input, select, textarea {
    width: 100%;
    border: 1px solid #b40000;
    box-sizing: border-box;
    font-size: 14px;
    padding: 2px;
    font-family: Arial, Helvetica, sans-serif;
  }

  textarea {
    height: 45px;
    resize: none;
  }

  .no-border-input {
    border: none;
    background: transparent;
  }

  .amount-header {
    text-align: center;
    font-weight: bold;
  }

  .signature-row td {
    height: 18px;
  }

  .note {
    font-size: 8px;
    margin-top: 6px;
    font-style: italic;
  }

  .rev {
    text-align: right;
    font-size: 9px;
    margin-top: 24px;
  }

  @media print {
    body {
      margin: 0;
    }

    .page {
      width: auto;
      margin: 0;
      padding: 0.35in;
    }

    input, select, textarea {
      border: none;
      background: transparent;
    }
  }
  
  .form-actions {
    margin-top: 14px;
    text-align: right;
 }

  .form-actions button {
    padding: 8px 14px;
    font-size: 11px;
    font-weight: bold;
    border: none;
    background: #003f7f;
    color: #fff;
    cursor: pointer;
  }

  .form-actions button:hover {
    background: #002f5f;
  }

  input:disabled,
  select:disabled,
  textarea:disabled {
    background: #f5f5f5;
    color: #555;
    border: 1px solid #b8b8b8;
    cursor: not-allowed;
 }

  .no-border-input:disabled {
    background: #f5f5f5;
  }