| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 <!DOCTYPE html> | 
|  | 2 <html> | 
|  | 3   <head> | 
|  | 4     <meta http-equiv="x-ua-compatible" content="IE=8"> | 
|  | 5     <style> | 
|  | 6     * { | 
|  | 7       cursor: default; | 
|  | 8     } | 
|  | 9 | 
|  | 10     a { | 
|  | 11       cursor: pointer; | 
|  | 12     } | 
|  | 13 | 
|  | 14     html, body, div { | 
|  | 15       margin: 0; | 
|  | 16     } | 
|  | 17     .caption { | 
|  | 18       background-color: white; | 
|  | 19       min-height: 18px; | 
|  | 20       clear: both; | 
|  | 21     } | 
|  | 22     .closeButton { | 
|  | 23       background-color: grey; | 
|  | 24       color: white; | 
|  | 25       font-weight: bold; | 
|  | 26       font-family: "Consolas, monaco, monospace"; | 
|  | 27       text-decoration: none; | 
|  | 28       width: 18px; | 
|  | 29       height: 18px; | 
|  | 30       vertical-align: middle; | 
|  | 31       text-align: center; | 
|  | 32       margin-right: 10px; | 
|  | 33       cursor: default; | 
|  | 34     } | 
|  | 35     .closeButton:hover { | 
|  | 36       background-color: red; | 
|  | 37       text-decoration: none; | 
|  | 38     } | 
|  | 39     .title { | 
|  | 40       color: #000000; | 
|  | 41       font-family: Arial, sans-serif; | 
|  | 42       font-size: 16px; | 
|  | 43       font-weight: bold; | 
|  | 44       padding: 16px 20px 0px 0px; | 
|  | 45     } | 
|  | 46     .body { | 
|  | 47       font-family: Arial, sans-serif; | 
|  | 48       font-size: 12px; | 
|  | 49       font-weight: normal; | 
|  | 50       overflow-x: hidden; | 
|  | 51       overflow-y: auto; | 
|  | 52       text-align: justify; | 
|  | 53       padding: 2px 20px 20px 0px; | 
|  | 54     } | 
|  | 55     </style> | 
|  | 56   </head> | 
|  | 57   <body> | 
|  | 58     <div class="caption"> | 
|  | 59       <a class="closeButton" style="float: right;" href="#">×</a> | 
|  | 60       <div class="title"><!--Title--></div> | 
|  | 61     </div> | 
|  | 62     <div class="body"><!--Body--></div> | 
|  | 63   </body> | 
|  | 64 </html> | 
| OLD | NEW | 
|---|