Advertisement
Guest User

Untitled

a guest
Jun 5th, 2013
541
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 2.17 KB | None | 0 0
  1. /* Font declararions */
  2. @font-face {
  3.   font-family: "Times New Roman";
  4.   src: url(../fonts/Times_New_Roman.ttf);
  5. }
  6. @font-face {
  7.   font-family: "Times New Roman";
  8.   src: url(../fonts/Times_New_Roman_Italic.ttf);
  9.   font-style: italic;
  10. }
  11. @font-face {
  12.   font-family: "Times New Roman";
  13.   src: url(../fonts/Times_New_Roman_Bold.ttf);
  14.   font-weight: bold;
  15. }
  16. /* End Font declarations */
  17. @page  {
  18.   size: a4 portrait;
  19.   margin: 2cm 1.5cm 1.25cm 3cm;
  20. }
  21. body {
  22.   margin: 0;
  23.   padding: 0;
  24. }
  25. body div.page {
  26.   font-size: 10pt;
  27.   color: #000000;
  28.   font-family: "Times New Roman";
  29.   font-weight: normal;
  30.   width: 210mm;
  31.   height: 265mm;
  32. }
  33. body div.page p {
  34.   margin: 0;
  35. }
  36. body div.page p.doc-heading {
  37.   text-align: right;
  38.   font-size: 10pt;
  39.   color: #000000;
  40.   font-family: "Times New Roman";
  41.   font-weight: normal;
  42.   font-style: italic;
  43. }
  44. body div.page p.doc-title {
  45.   margin-top: 12pt;
  46.   font-size: 12pt;
  47.   color: #000000;
  48.   font-family: "Times New Roman";
  49.   font-weight: bold;
  50.   text-align: center;
  51.   -pdf-keep-with-next: false;
  52. }
  53. body div.page table.main-table {
  54.   border-collapse: collapse;
  55.   width: 100%;
  56.   font-size: 8pt;
  57.   color: #000000;
  58.   font-family: "Times New Roman";
  59.   font-weight: normal;
  60. }
  61. body div.page table.main-table tr.row-height1 {
  62.   height: 8pt;
  63. }
  64. body div.page table.main-table tr.row-height1 {
  65.   height: 16pt;
  66. }
  67. body div.page table.main-table tr.row-height3 {
  68.   height: 24pt;
  69. }
  70. body div.page table.main-table tr td {
  71.   border: 1px solid black;
  72.   padding: 0 2mm;
  73.   line-height: 14pt;
  74.   vertical-align: bottom;
  75. }
  76. body div.page table.main-table tr td.six-cell-row-cell1 {
  77.   width: 45mm;
  78.   font-size: 10pt;
  79.   color: #000000;
  80.   font-family: "Times New Roman";
  81.   font-weight: bold;
  82. }
  83. body div.page table.main-table tr td.six-cell-row-cell2 {
  84.   width: 5mm;
  85. }
  86. body div.page table.main-table tr td.six-cell-row-cell3 {
  87.   width: 60mm;
  88. }
  89. body div.page table.main-table tr td.six-cell-row-cell4 {
  90.   width: 45mm;
  91. }
  92. body div.page table.main-table tr td.six-cell-row-cell5 {
  93.   width: 5mm;
  94. }
  95. body div.page table.main-table tr td.six-cell-row-cell6 {
  96.   width: 32mm;
  97. }
  98. body.screen div.page {
  99.   margin: 20mm 15mm 12mm 30mm;
  100. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement