 
 @media not print
 {
   #printout
     {
     display: none;
   }
   
   #calculator
     {
     font-family: Arial;
   }
   
   #calculator label
     {
     font-family: Arial;
     float: left;
     margin-bottom: 5px;
     font-size: 14px;
   }
   
   #calculator input[name='property_address']
     {
     width: 97%;
     text-align: left;
   }
   
   #calculator input
     {
     text-align: right;
     float: left;
     clear: left;
     font-size: 17px;
     width: 90%;
          border-style: solid;

     border-color: #ee8e00;
   }
   
   #calculator input[readonly]
     {
     border-style: solid;
     border-color: #888888;
   }
   
   #calculator td 
     {
     padding-bottom: 20px;
   }
   
   #calculator table 
     {
     margin: 0 auto;
     width: 100%;
   }
   
   #calculator .button
     {
     padding: 8px 100px;
     background: #ee8e00;
     color: white;
     margin: 0 auto;
     text-align: center;
     display: table;
     cursor: pointer;
   }
 }