
    body { margin: 0; background: #f3f4f6; overflow-x: hidden; }
    #page-container { position: relative; margin: 0 auto; padding: 0; overflow: visible; max-width: 100%; }
    .scieee-lazy-chunk { display: block; width: 100%; max-width: 100%; margin: 0 auto 24px auto; overflow-x: hidden; overflow-y: visible; box-sizing: border-box; }
    .scieee-lazy-chunk-content { width: 100%; max-width: 100%; overflow-x: hidden; box-sizing: border-box; }
    .scieee-lazy-chunk style { display: none !important; }
    .scieee-lazy-placeholder { width: 100%; max-width: 900px; margin: 12px auto; padding: 18px; box-sizing: border-box; background: #fff; color: #6b7280; border: 1px solid #e5e7eb; font: 13px system-ui, sans-serif; text-align: center; }
    .scieee-lazy-chunk.is-loaded { min-height: 0 !important; }
    .scieee-lazy-chunk.is-loaded > .scieee-lazy-placeholder { display: none; }
    .pf { margin-left: auto !important; margin-right: auto !important; }
  



/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Base CSS for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
/* Part 1: Web Page Layout: Free to modify, except for a few of them which are required by pdf2htmlEX.js, see the comments */
#sidebar { /* Sidebar */
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:250px;
  padding:0;
  margin:0px;
  overflow:auto;
}
#page-container { /* PDF container */
  position:absolute; /* required for calculating relative positions of pages in pdf2htmlEX.js */
  top:0;
  left:0px;
  margin:0; 
  padding:0;
  border:0; /* required for lazy page loading in pdf2htmlEX.js (page visibility test) */
}
@media screen {
  /* for sidebar */
  #sidebar.opened + #page-container { left:250px; }
  #page-container {
    /* `bottom' and `right' are required for lazy page loading in pdf2htmlEX.js (page visibility test)
     * alternatively you may set width and height
     */
    bottom:0;
    right:0;
    overflow:auto;
  }
  .loading-indicator {
    display:none;
  }
  .loading-indicator.active {
    display:block;
    position:absolute;
    width:64px;
    height:64px;
    top:50%;
    left:50%;
    margin-top:-32px;
    margin-left:-32px;
  }
  .loading-indicator img {
    position:absolute;
    top:0;
    left:0;
    bottom:0;
    right:0;
  }
}
@media print { 
  @page { margin:0; }
  html { margin:0; }
  body { 
    margin:0; 
    -webkit-print-color-adjust:exact; /* enable printing background images for WebKit */
  }
  #sidebar { display:none; }
  #page-container {
    width:auto;
    height:auto;
    overflow:visible;
    background-color:transparent;
  }
  .d { display:none; }
}
/* Part 2: Page Elements: Modify with caution
 * The followings are base classes, some of which are meant to be override by PDF specific classes
 * So do not increase the specificity (e.g. ".classname" -> "#page-container .classname")
 */
.pf { /* page */
  position:relative;
  background-color:white;
  overflow: hidden;
  margin:0; 
  border:0; /* required by pdf2htmlEX.js for page visibility test */
}
.pc { /* content of a page */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  top:0;
  left:0;
  width:100%;
  height:100%;
  overflow:hidden;
  display:block;
  /* set transform-origin for scaling */
  transform-origin:0% 0%;
  -ms-transform-origin:0% 0%;
  -webkit-transform-origin:0% 0%;
}
.pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
  display:block;
}
.bf { /* images that occupies the whole page */
  position:absolute;
  border:0;
  margin:0;
  top:0;
  bottom:0;
  width:100%;
  height:100%;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
.bi { /* images that cover only a part of the page */
  position:absolute;
  border:0;
  margin:0;
  -ms-user-select:none;
  -moz-user-select:none;
  -webkit-user-select:none;
  user-select:none;
}
@media print {
  .pf {
    margin:0;
    box-shadow:none;
    page-break-after:always;
    page-break-inside:avoid;
  }
  @-moz-document url-prefix() {
    /* fix page truncation for FireFox */
    .pf {
      overflow:visible;
      border:1px solid #FFFFFF;
    }
    .pc {overflow:visible;}
  }
}
.c { /* clip box */
  position:absolute;
  border:0;
  padding:0;
  margin:0;
  overflow:hidden;
  display:block;
}
.t { /* text line */
  position:absolute;
  white-space:pre;
  font-size:1px;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
  unicode-bidi:bidi-override;/* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
  -moz-font-feature-settings:"liga" 0;/* We don't want Firefox to recognize ligatures */
}
.t:after { /* webkit #35443 */
  content: '';
}
.t:before { /* Workaround Blink(up to 41)/Webkit bug of word-spacing with leading spaces (chromium #404444 and pdf2htmlEX #412) */
  content: '';
  display: inline-block;
}
.t span { /* text blocks within a line */
  /* Blink(up to 41)/Webkit have bug with negative word-spacing and inline-block (pdf2htmlEX #416), so keep normal span inline. */
  position:relative;
  unicode-bidi:bidi-override; /* For rtl languages, e.g. Hebrew, we don't want the default Unicode behaviour */
}
._ { /* text shift */
  /* Blink(up to 41)/Webkit have bug with inline element, continuous spaces and word-spacing. Workaround by inline-block. */
  display: inline-block;
  color: transparent;
  z-index: -1;
}
/* selection background should not be opaque, for fallback mode */
::selection{
  background: rgba(127,255,255,0.4);
}
::-moz-selection{
  background: rgba(127,255,255,0.4);
}
.pi { /* info for Javascript */
  display:none;
}
.l { /* annotation links */
}
/* transparent color - WebKit */
.d { /* css drawing */
  position:absolute;
  transform-origin:0% 100%;
  -ms-transform-origin:0% 100%;
  -webkit-transform-origin:0% 100%;
}
/* for the forms */
.it {
  border: none;
  background-color: rgba(255, 255, 255, 0.0);
}

.ir:hover {
  cursor: pointer;
}

/* Base CSS END */





/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab filetype=css: */
/*! 
 * Fancy styles for pdf2htmlEX
 * Copyright 2012,2013 Lu Wang <coolwanglu@gmail.com> 
 * https://github.com/pdf2htmlEX/pdf2htmlEX/blob/master/share/LICENSE
 */
@keyframes fadein { from { opacity:0;} to { opacity:1;} }
@-webkit-keyframes fadein { from { opacity:0;} to { opacity:1;} }
@keyframes swing {
  0%  { transform: rotate(0deg); }
  10% { transform: rotate(0deg); }
  90% { transform: rotate(720deg); }
  100%{ transform: rotate(720deg); }
}
@-webkit-keyframes swing {
  0%  { -webkit-transform: rotate(0deg); }
  10% { -webkit-transform: rotate(0deg); }
  90% { -webkit-transform: rotate(720deg); }
  100%{ -webkit-transform: rotate(720deg); }
}
@media screen { 
  #sidebar {
    background-color:#2f3236;
    /* modified from http://philbit.com/svgpatterns/#crossstripes */
    background-image:url("scieee-document-assets/asset_278c76fec4fbf2399910664b.svg");
  }
  #outline {
    font-family:Georgia,Times,"Times New Roman",serif;
    font-size:13px;
    margin:2em 1em;
  }
  #outline ul {
    padding:0;
  }
  #outline li {
    list-style-type:none;
    margin:1em 0;
  }
  #outline li > ul {
    margin-left: 1em;
  }
  #outline a,
  #outline a:visited,
  #outline a:hover,
  #outline a:active {
    line-height:1.2;
    color:#e8e8e8;
    text-overflow:ellipsis;
    white-space:nowrap;
    text-decoration:none;
    display:block;
    overflow:hidden;
    outline:0;
  }
  #outline a:hover {
    color:rgb(0,204,255);
  }
  #page-container {
    background-color:#9e9e9e;
    /* http://philbit.com/svgpatterns/#thinstripes */
    background-image: url("scieee-document-assets/asset_c60347c0de373fe817019620.svg");
    -webkit-transition:left 500ms;
    transition:left 500ms;
  }
  .pf {
    margin: 13px auto;
    box-shadow: 1px 1px 3px 1px #333;
    /* Needed by IE to make box-shadow works * https://developer.mozilla.org/en-US/docs/Web/CSS/box-shadow */
    border-collapse: separate;
  }
  .pc.opened { /* used by pdf2htmlEX.js, to show/hide pages */
    -webkit-animation: fadein 100ms;
    animation: fadein 100ms; 
  }
  .loading-indicator.active {
    /* 
     * use 0.01s instead of 0s,
     * since YUI Compressor will change 0s to 0,
     * which is not recognized by Firefox
     */
    -webkit-animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
    animation: swing 1.5s ease-in-out 0.01s infinite alternate none;
  }
  .checked {
    background: no-repeat url(scieee-document-assets/asset_58a067f15ffcfc2435a4b346.png);
  }
}
/* Fancy CSS END */





.ff0{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff1;src:url('chunks/assets/font_3500d24d9d29ffb4a28b132d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.090332;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_4a5ddd918d9689fa37ec036d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_b9f0dcf56ef769de47d33608.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_2ab19c8ed805ce6a8945d08e.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3bf55f5b004bafc9d1a0589b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_e4514896be4d441bd8e7e42d.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.970703;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_256e3c2f4e9aa8c99b8d855f.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.091309;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_01ce8cbd34e42b9a86a59126.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_6549731b1b795c18cee95127.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.976562;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.ls10{letter-spacing:-0.720000px;}
.lsc{letter-spacing:-0.288000px;}
.lsd{letter-spacing:-0.216000px;}
.ls9{letter-spacing:-0.144000px;}
.ls1{letter-spacing:-0.092400px;}
.ls2{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.072000px;}
.ls6{letter-spacing:0.144000px;}
.lse{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.216000px;}
.ls7{letter-spacing:0.269280px;}
.ls8{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.720000px;}
.lsa{letter-spacing:31.656000px;}
.ls5{letter-spacing:54.840000px;}
.lsb{letter-spacing:139.656000px;}
.ls0{letter-spacing:833.916000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws1{word-spacing:-72.000000px;}
.ws5{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.072000px;}
.ws2{word-spacing:-18.000000px;}
.ws6{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.712000px;}
.ws0{word-spacing:-13.354320px;}
.ws4{word-spacing:0.000000px;}
._4{margin-left:-4.968000px;}
._3{margin-left:-3.816000px;}
._8{margin-left:-2.664000px;}
._1{margin-left:-1.104000px;}
._0{width:1.008000px;}
._7{width:2.160000px;}
._a{width:3.660000px;}
._d{width:5.328000px;}
._e{width:6.624000px;}
._16{width:7.632000px;}
._13{width:8.928000px;}
._9{width:10.080000px;}
._12{width:11.712000px;}
._5{width:12.816000px;}
._6{width:13.896000px;}
._10{width:15.408000px;}
._18{width:16.992000px;}
._f{width:19.008000px;}
._11{width:20.112000px;}
._14{width:21.552000px;}
._b{width:23.184000px;}
._c{width:24.192000px;}
._17{width:25.260000px;}
._15{width:27.072000px;}
._26{width:29.436000px;}
._28{width:30.672000px;}
._27{width:31.896000px;}
._24{width:33.264000px;}
._25{width:34.560000px;}
._2a{width:35.724000px;}
._22{width:39.816000px;}
._23{width:40.932000px;}
._1e{width:51.672000px;}
._21{width:53.664000px;}
._1c{width:119.352000px;}
._1d{width:123.960000px;}
._1b{width:139.512000px;}
._19{width:146.016000px;}
._29{width:157.824000px;}
._1a{width:159.672000px;}
._2{width:272.388000px;}
._1f{width:569.736000px;}
._20{width:578.484000px;}
.fc3{color:rgb(0,122,195);}
.fc1{color:rgb(70,120,134);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:48.240000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y59{bottom:7.020000px;}
.y5e{bottom:7.065000px;}
.y56{bottom:7.200000px;}
.y78{bottom:7.245000px;}
.y85{bottom:14.220000px;}
.ya0{bottom:14.250000px;}
.y83{bottom:14.400000px;}
.y58{bottom:30.780000px;}
.y55{bottom:30.960000px;}
.ybe{bottom:45.180000px;}
.yb3{bottom:45.360000px;}
.yc0{bottom:45.390000px;}
.y2{bottom:55.620000px;}
.y1{bottom:75.636000px;}
.yaf{bottom:113.256000px;}
.ycf{bottom:115.956000px;}
.y76{bottom:125.136000px;}
.yef{bottom:125.496000px;}
.y52{bottom:126.756000px;}
.y92{bottom:128.556000px;}
.y4f{bottom:130.716000px;}
.y2b{bottom:131.616000px;}
.yae{bottom:144.216000px;}
.yce{bottom:147.096000px;}
.y128{bottom:148.356000px;}
.y91{bottom:153.210000px;}
.y75{bottom:156.270000px;}
.yee{bottom:156.630000px;}
.y51{bottom:158.970000px;}
.y4e{bottom:161.850000px;}
.y2a{bottom:162.570000px;}
.y102{bottom:167.790000px;}
.y127{bottom:172.110000px;}
.y74{bottom:173.730000px;}
.yad{bottom:175.170000px;}
.ycd{bottom:178.050000px;}
.yed{bottom:187.590000px;}
.y50{bottom:191.370000px;}
.y101{bottom:191.550000px;}
.y4d{bottom:192.810000px;}
.y29{bottom:193.530000px;}
.y126{bottom:195.870000px;}
.y73{bottom:198.210000px;}
.y90{bottom:201.450000px;}
.yac{bottom:206.310000px;}
.ycc{bottom:210.450000px;}
.y100{bottom:215.310000px;}
.yec{bottom:218.730000px;}
.y125{bottom:219.810000px;}
.y4c{bottom:223.950000px;}
.y28{bottom:224.670000px;}
.yab{bottom:237.270000px;}
.yff{bottom:239.070000px;}
.y8f{bottom:240.330000px;}
.ycb{bottom:241.410000px;}
.y124{bottom:243.570000px;}
.y72{bottom:246.630000px;}
.yeb{bottom:249.690000px;}
.y4b{bottom:254.910000px;}
.y27{bottom:255.630000px;}
.yfe{bottom:263.010000px;}
.y123{bottom:267.330000px;}
.yaa{bottom:268.410000px;}
.y71{bottom:271.110000px;}
.y8e{bottom:271.470000px;}
.yca{bottom:272.370000px;}
.yea{bottom:280.830000px;}
.y4a{bottom:286.050000px;}
.y26{bottom:286.770000px;}
.y122{bottom:291.090000px;}
.ya9{bottom:299.370000px;}
.y8d{bottom:302.430000px;}
.yc9{bottom:304.950000px;}
.yfd{bottom:310.530000px;}
.ye9{bottom:311.790000px;}
.y121{bottom:315.030000px;}
.y49{bottom:317.010000px;}
.y25{bottom:317.730000px;}
.y70{bottom:319.530000px;}
.ya8{bottom:330.510000px;}
.y8c{bottom:333.570000px;}
.yc8{bottom:335.730000px;}
.y120{bottom:338.835000px;}
.yfc{bottom:341.715000px;}
.ye8{bottom:342.975000px;}
.y6f{bottom:344.055000px;}
.y48{bottom:348.015000px;}
.y24{bottom:348.915000px;}
.ya7{bottom:361.515000px;}
.y11f{bottom:362.595000px;}
.y8b{bottom:364.575000px;}
.yc7{bottom:368.355000px;}
.y23{bottom:372.675000px;}
.ye7{bottom:373.935000px;}
.y47{bottom:379.155000px;}
.y6e{bottom:382.935000px;}
.y11e{bottom:386.355000px;}
.ya6{bottom:392.655000px;}
.y8a{bottom:395.715000px;}
.y22{bottom:396.435000px;}
.yc6{bottom:399.135000px;}
.yfb{bottom:403.815000px;}
.ye6{bottom:405.075000px;}
.y46{bottom:410.115000px;}
.y6d{bottom:414.075000px;}
.y21{bottom:420.375000px;}
.ya5{bottom:423.615000px;}
.y89{bottom:426.675000px;}
.yc5{bottom:431.715000px;}
.y11d{bottom:434.055000px;}
.yfa{bottom:434.775000px;}
.ye5{bottom:436.035000px;}
.y45{bottom:441.255000px;}
.y20{bottom:444.135000px;}
.y6c{bottom:445.035000px;}
.ya4{bottom:454.755000px;}
.y88{bottom:457.815000px;}
.yc4{bottom:462.675000px;}
.yf9{bottom:465.735000px;}
.ye4{bottom:467.175000px;}
.y1f{bottom:467.895000px;}
.y44{bottom:472.215000px;}
.y6b{bottom:476.175000px;}
.y11c{bottom:481.575000px;}
.y87{bottom:488.775000px;}
.y1e{bottom:491.655000px;}
.yc3{bottom:495.075000px;}
.ye3{bottom:498.135000px;}
.y43{bottom:503.355000px;}
.ya3{bottom:504.075000px;}
.y11b{bottom:505.335000px;}
.y6a{bottom:507.135000px;}
.y12e{bottom:509.475000px;}
.y1d{bottom:515.595000px;}
.y86{bottom:519.735000px;}
.yc2{bottom:526.215000px;}
.ye2{bottom:529.275000px;}
.y42{bottom:534.315000px;}
.ya2{bottom:535.755000px;}
.y84{bottom:537.375000px;}
.y69{bottom:538.275000px;}
.y1c{bottom:539.355000px;}
.y12d{bottom:540.615000px;}
.yc1{bottom:543.675000px;}
.y11a{bottom:553.035000px;}
.yf8{bottom:560.055000px;}
.ye1{bottom:560.235000px;}
.y1b{bottom:563.115000px;}
.y41{bottom:565.455000px;}
.ya1{bottom:567.615000px;}
.y82{bottom:569.055000px;}
.y68{bottom:569.235000px;}
.y12c{bottom:571.575000px;}
.ybf{bottom:575.355000px;}
.y119{bottom:576.795000px;}
.y1a{bottom:586.875000px;}
.ye0{bottom:591.375000px;}
.yf7{bottom:592.635000px;}
.y40{bottom:596.415000px;}
.y9f{bottom:599.475000px;}
.y67{bottom:600.375000px;}
.y118{bottom:600.555000px;}
.y12b{bottom:602.715000px;}
.y19{bottom:610.845000px;}
.y81{bottom:615.165000px;}
.ydf{bottom:622.365000px;}
.yf6{bottom:623.625000px;}
.y117{bottom:624.525000px;}
.y3f{bottom:627.585000px;}
.y9e{bottom:631.185000px;}
.y66{bottom:631.365000px;}
.y12a{bottom:633.705000px;}
.y18{bottom:634.605000px;}
.ybd{bottom:638.385000px;}
.y80{bottom:646.305000px;}
.y116{bottom:648.285000px;}
.yde{bottom:653.505000px;}
.yf5{bottom:656.025000px;}
.y17{bottom:658.365000px;}
.y3e{bottom:658.545000px;}
.y65{bottom:662.325000px;}
.y129{bottom:664.845000px;}
.y115{bottom:672.045000px;}
.y7f{bottom:677.265000px;}
.y16{bottom:682.125000px;}
.ydd{bottom:684.465000px;}
.yf4{bottom:686.985000px;}
.y3d{bottom:689.685000px;}
.y64{bottom:693.465000px;}
.y114{bottom:695.805000px;}
.ybc{bottom:701.205000px;}
.y15{bottom:705.885000px;}
.y7e{bottom:708.405000px;}
.ydc{bottom:715.605000px;}
.yf3{bottom:717.945000px;}
.y113{bottom:719.745000px;}
.y3c{bottom:720.645000px;}
.y63{bottom:724.425000px;}
.y14{bottom:729.825000px;}
.y7d{bottom:739.365000px;}
.y112{bottom:743.505000px;}
.ydb{bottom:746.565000px;}
.ybb{bottom:747.285000px;}
.yf2{bottom:750.525000px;}
.y3b{bottom:751.785000px;}
.y13{bottom:753.585000px;}
.y62{bottom:755.565000px;}
.y111{bottom:767.265000px;}
.y7c{bottom:770.505000px;}
.yda{bottom:777.705000px;}
.yba{bottom:778.245000px;}
.yf1{bottom:781.485000px;}
.y3a{bottom:782.745000px;}
.y12{bottom:784.545000px;}
.y61{bottom:786.525000px;}
.y110{bottom:791.025000px;}
.y7b{bottom:801.465000px;}
.yd9{bottom:808.665000px;}
.yb9{bottom:809.385000px;}
.yf0{bottom:812.445000px;}
.y39{bottom:813.885000px;}
.y10f{bottom:814.965000px;}
.y11{bottom:815.685000px;}
.y60{bottom:817.665000px;}
.y7a{bottom:819.105000px;}
.y9d{bottom:832.605000px;}
.y10e{bottom:838.725000px;}
.yd8{bottom:839.805000px;}
.yb8{bottom:840.345000px;}
.y79{bottom:843.585000px;}
.y38{bottom:844.845000px;}
.y10{bottom:846.645000px;}
.y5f{bottom:848.625000px;}
.y10d{bottom:862.485000px;}
.y9c{bottom:863.565000px;}
.y5d{bottom:866.265000px;}
.y77{bottom:868.065000px;}
.yd7{bottom:870.810000px;}
.yb7{bottom:871.530000px;}
.y37{bottom:876.030000px;}
.yf{bottom:877.830000px;}
.y10c{bottom:886.290000px;}
.y5c{bottom:890.790000px;}
.y9b{bottom:894.750000px;}
.yd6{bottom:901.770000px;}
.yb6{bottom:902.490000px;}
.y36{bottom:906.990000px;}
.ye{bottom:908.790000px;}
.y10b{bottom:910.050000px;}
.yb5{bottom:919.950000px;}
.y9a{bottom:925.710000px;}
.y10a{bottom:933.990000px;}
.yd5{bottom:934.170000px;}
.y35{bottom:938.130000px;}
.y5b{bottom:939.210000px;}
.yd{bottom:939.930000px;}
.yb4{bottom:951.810000px;}
.y99{bottom:956.850000px;}
.y109{bottom:957.750000px;}
.y5a{bottom:963.690000px;}
.yd4{bottom:965.130000px;}
.y34{bottom:969.090000px;}
.yc{bottom:970.890000px;}
.y108{bottom:981.510000px;}
.yb2{bottom:983.670000px;}
.y98{bottom:987.810000px;}
.yd3{bottom:997.530000px;}
.y33{bottom:1000.230000px;}
.yb{bottom:1002.030000px;}
.y107{bottom:1005.270000px;}
.y57{bottom:1012.110000px;}
.y97{bottom:1018.950000px;}
.yd2{bottom:1028.490000px;}
.y106{bottom:1029.210000px;}
.y32{bottom:1031.190000px;}
.ya{bottom:1032.990000px;}
.yb1{bottom:1046.490000px;}
.y96{bottom:1049.910000px;}
.y105{bottom:1052.970000px;}
.y54{bottom:1060.350000px;}
.yd1{bottom:1060.890000px;}
.y31{bottom:1062.330000px;}
.y9{bottom:1064.130000px;}
.y95{bottom:1067.370000px;}
.y104{bottom:1076.730000px;}
.yb0{bottom:1078.170000px;}
.y8{bottom:1087.890000px;}
.yd0{bottom:1091.850000px;}
.y94{bottom:1092.030000px;}
.y30{bottom:1093.290000px;}
.y103{bottom:1100.490000px;}
.y7{bottom:1111.650000px;}
.y93{bottom:1116.510000px;}
.y53{bottom:1122.990000px;}
.y2f{bottom:1124.430000px;}
.y6{bottom:1135.590000px;}
.y2e{bottom:1145.880000px;}
.y5{bottom:1159.380000px;}
.y2d{bottom:1168.380000px;}
.y4{bottom:1183.140000px;}
.y2c{bottom:1192.140000px;}
.y3{bottom:1214.100000px;}
.h9{height:23.760000px;}
.ha{height:23.796000px;}
.he{height:23.940000px;}
.hb{height:23.976000px;}
.hd{height:30.960000px;}
.hf{height:30.996000px;}
.hc{height:31.140000px;}
.h8{height:47.520000px;}
.h7{height:47.700000px;}
.h3{height:50.800781px;}
.h6{height:52.171875px;}
.h5{height:54.773438px;}
.h2{height:57.410156px;}
.h11{height:61.920000px;}
.h10{height:62.100000px;}
.h12{height:62.136000px;}
.h4{height:63.035156px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wb{width:43.596000px;}
.w1c{width:54.000000px;}
.wf{width:58.536000px;}
.w1f{width:59.580000px;}
.w1b{width:60.516000px;}
.w4{width:71.460000px;}
.w20{width:74.520000px;}
.w18{width:80.280000px;}
.wc{width:93.636000px;}
.w12{width:96.480000px;}
.w6{width:100.440000px;}
.w14{width:100.620000px;}
.w13{width:101.556000px;}
.w15{width:107.316000px;}
.w7{width:109.440000px;}
.w19{width:113.976000px;}
.w17{width:120.816000px;}
.w11{width:123.876000px;}
.w21{width:129.096000px;}
.wa{width:140.976000px;}
.w16{width:141.156000px;}
.w1d{width:150.870000px;}
.w8{width:153.570000px;}
.we{width:154.470000px;}
.w3{width:157.710000px;}
.w10{width:160.920000px;}
.w9{width:172.650000px;}
.wd{width:174.600000px;}
.w1a{width:250.230000px;}
.w5{width:308.775000px;}
.w1e{width:334.335000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.740000px;}
.x2{left:108.035987px;}
.xf{left:126.216000px;}
.xe{left:135.035987px;}
.x9{left:144.935987px;}
.x2d{left:146.736000px;}
.x15{left:157.170000px;}
.x14{left:162.029987px;}
.x13{left:172.829987px;}
.xc{left:179.129987px;}
.x20{left:180.210000px;}
.x29{left:187.590000px;}
.x25{left:217.290000px;}
.x19{left:239.070000px;}
.x1d{left:258.870000px;}
.x16{left:267.330000px;}
.x1a{left:283.395000px;}
.x11{left:284.655000px;}
.x21{left:304.815000px;}
.x4{left:332.354987px;}
.xd{left:346.934987px;}
.xa{left:356.654987px;}
.x26{left:359.175000px;}
.xb{left:363.494987px;}
.x1b{left:384.735000px;}
.x22{left:402.015000px;}
.x1e{left:414.075000px;}
.x17{left:421.635000px;}
.x1{left:433.334987px;}
.x2a{left:438.555000px;}
.x3{left:446.474987px;}
.x1f{left:473.325000px;}
.x1c{left:479.265000px;}
.x27{left:480.705000px;}
.x2e{left:481.785000px;}
.x2b{left:499.785000px;}
.x23{left:504.285000px;}
.x2f{left:542.085000px;}
.x8{left:545.504987px;}
.x2c{left:554.685000px;}
.x28{left:561.705000px;}
.x7{left:576.464987px;}
.x6{left:592.484987px;}
.x18{left:595.005000px;}
.x24{left:605.625000px;}
.x30{left:617.325000px;}
.x5{left:618.944987px;}
.x12{left:666.510000px;}
@media print{
.v1{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.ls10{letter-spacing:-0.640000pt;}
.lsc{letter-spacing:-0.256000pt;}
.lsd{letter-spacing:-0.192000pt;}
.ls9{letter-spacing:-0.128000pt;}
.ls1{letter-spacing:-0.082133pt;}
.ls2{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.064000pt;}
.ls6{letter-spacing:0.128000pt;}
.lse{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.192000pt;}
.ls7{letter-spacing:0.239360pt;}
.ls8{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.640000pt;}
.lsa{letter-spacing:28.138667pt;}
.ls5{letter-spacing:48.746667pt;}
.lsb{letter-spacing:124.138667pt;}
.ls0{letter-spacing:741.258667pt;}
.ws1{word-spacing:-64.000000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.064000pt;}
.ws2{word-spacing:-16.000000pt;}
.ws6{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws0{word-spacing:-11.870507pt;}
.ws4{word-spacing:0.000000pt;}
._4{margin-left:-4.416000pt;}
._3{margin-left:-3.392000pt;}
._8{margin-left:-2.368000pt;}
._1{margin-left:-0.981333pt;}
._0{width:0.896000pt;}
._7{width:1.920000pt;}
._a{width:3.253333pt;}
._d{width:4.736000pt;}
._e{width:5.888000pt;}
._16{width:6.784000pt;}
._13{width:7.936000pt;}
._9{width:8.960000pt;}
._12{width:10.410667pt;}
._5{width:11.392000pt;}
._6{width:12.352000pt;}
._10{width:13.696000pt;}
._18{width:15.104000pt;}
._f{width:16.896000pt;}
._11{width:17.877333pt;}
._14{width:19.157333pt;}
._b{width:20.608000pt;}
._c{width:21.504000pt;}
._17{width:22.453333pt;}
._15{width:24.064000pt;}
._26{width:26.165333pt;}
._28{width:27.264000pt;}
._27{width:28.352000pt;}
._24{width:29.568000pt;}
._25{width:30.720000pt;}
._2a{width:31.754667pt;}
._22{width:35.392000pt;}
._23{width:36.384000pt;}
._1e{width:45.930667pt;}
._21{width:47.701333pt;}
._1c{width:106.090667pt;}
._1d{width:110.186667pt;}
._1b{width:124.010667pt;}
._19{width:129.792000pt;}
._29{width:140.288000pt;}
._1a{width:141.930667pt;}
._2{width:242.122667pt;}
._1f{width:506.432000pt;}
._20{width:514.208000pt;}
.fs2{font-size:42.880000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y59{bottom:6.240000pt;}
.y5e{bottom:6.280000pt;}
.y56{bottom:6.400000pt;}
.y78{bottom:6.440000pt;}
.y85{bottom:12.640000pt;}
.ya0{bottom:12.666667pt;}
.y83{bottom:12.800000pt;}
.y58{bottom:27.360000pt;}
.y55{bottom:27.520000pt;}
.ybe{bottom:40.160000pt;}
.yb3{bottom:40.320000pt;}
.yc0{bottom:40.346667pt;}
.y2{bottom:49.440000pt;}
.y1{bottom:67.232000pt;}
.yaf{bottom:100.672000pt;}
.ycf{bottom:103.072000pt;}
.y76{bottom:111.232000pt;}
.yef{bottom:111.552000pt;}
.y52{bottom:112.672000pt;}
.y92{bottom:114.272000pt;}
.y4f{bottom:116.192000pt;}
.y2b{bottom:116.992000pt;}
.yae{bottom:128.192000pt;}
.yce{bottom:130.752000pt;}
.y128{bottom:131.872000pt;}
.y91{bottom:136.186667pt;}
.y75{bottom:138.906667pt;}
.yee{bottom:139.226667pt;}
.y51{bottom:141.306667pt;}
.y4e{bottom:143.866667pt;}
.y2a{bottom:144.506667pt;}
.y102{bottom:149.146667pt;}
.y127{bottom:152.986667pt;}
.y74{bottom:154.426667pt;}
.yad{bottom:155.706667pt;}
.ycd{bottom:158.266667pt;}
.yed{bottom:166.746667pt;}
.y50{bottom:170.106667pt;}
.y101{bottom:170.266667pt;}
.y4d{bottom:171.386667pt;}
.y29{bottom:172.026667pt;}
.y126{bottom:174.106667pt;}
.y73{bottom:176.186667pt;}
.y90{bottom:179.066667pt;}
.yac{bottom:183.386667pt;}
.ycc{bottom:187.066667pt;}
.y100{bottom:191.386667pt;}
.yec{bottom:194.426667pt;}
.y125{bottom:195.386667pt;}
.y4c{bottom:199.066667pt;}
.y28{bottom:199.706667pt;}
.yab{bottom:210.906667pt;}
.yff{bottom:212.506667pt;}
.y8f{bottom:213.626667pt;}
.ycb{bottom:214.586667pt;}
.y124{bottom:216.506667pt;}
.y72{bottom:219.226667pt;}
.yeb{bottom:221.946667pt;}
.y4b{bottom:226.586667pt;}
.y27{bottom:227.226667pt;}
.yfe{bottom:233.786667pt;}
.y123{bottom:237.626667pt;}
.yaa{bottom:238.586667pt;}
.y71{bottom:240.986667pt;}
.y8e{bottom:241.306667pt;}
.yca{bottom:242.106667pt;}
.yea{bottom:249.626667pt;}
.y4a{bottom:254.266667pt;}
.y26{bottom:254.906667pt;}
.y122{bottom:258.746667pt;}
.ya9{bottom:266.106667pt;}
.y8d{bottom:268.826667pt;}
.yc9{bottom:271.066667pt;}
.yfd{bottom:276.026667pt;}
.ye9{bottom:277.146667pt;}
.y121{bottom:280.026667pt;}
.y49{bottom:281.786667pt;}
.y25{bottom:282.426667pt;}
.y70{bottom:284.026667pt;}
.ya8{bottom:293.786667pt;}
.y8c{bottom:296.506667pt;}
.yc8{bottom:298.426667pt;}
.y120{bottom:301.186667pt;}
.yfc{bottom:303.746667pt;}
.ye8{bottom:304.866667pt;}
.y6f{bottom:305.826667pt;}
.y48{bottom:309.346667pt;}
.y24{bottom:310.146667pt;}
.ya7{bottom:321.346667pt;}
.y11f{bottom:322.306667pt;}
.y8b{bottom:324.066667pt;}
.yc7{bottom:327.426667pt;}
.y23{bottom:331.266667pt;}
.ye7{bottom:332.386667pt;}
.y47{bottom:337.026667pt;}
.y6e{bottom:340.386667pt;}
.y11e{bottom:343.426667pt;}
.ya6{bottom:349.026667pt;}
.y8a{bottom:351.746667pt;}
.y22{bottom:352.386667pt;}
.yc6{bottom:354.786667pt;}
.yfb{bottom:358.946667pt;}
.ye6{bottom:360.066667pt;}
.y46{bottom:364.546667pt;}
.y6d{bottom:368.066667pt;}
.y21{bottom:373.666667pt;}
.ya5{bottom:376.546667pt;}
.y89{bottom:379.266667pt;}
.yc5{bottom:383.746667pt;}
.y11d{bottom:385.826667pt;}
.yfa{bottom:386.466667pt;}
.ye5{bottom:387.586667pt;}
.y45{bottom:392.226667pt;}
.y20{bottom:394.786667pt;}
.y6c{bottom:395.586667pt;}
.ya4{bottom:404.226667pt;}
.y88{bottom:406.946667pt;}
.yc4{bottom:411.266667pt;}
.yf9{bottom:413.986667pt;}
.ye4{bottom:415.266667pt;}
.y1f{bottom:415.906667pt;}
.y44{bottom:419.746667pt;}
.y6b{bottom:423.266667pt;}
.y11c{bottom:428.066667pt;}
.y87{bottom:434.466667pt;}
.y1e{bottom:437.026667pt;}
.yc3{bottom:440.066667pt;}
.ye3{bottom:442.786667pt;}
.y43{bottom:447.426667pt;}
.ya3{bottom:448.066667pt;}
.y11b{bottom:449.186667pt;}
.y6a{bottom:450.786667pt;}
.y12e{bottom:452.866667pt;}
.y1d{bottom:458.306667pt;}
.y86{bottom:461.986667pt;}
.yc2{bottom:467.746667pt;}
.ye2{bottom:470.466667pt;}
.y42{bottom:474.946667pt;}
.ya2{bottom:476.226667pt;}
.y84{bottom:477.666667pt;}
.y69{bottom:478.466667pt;}
.y1c{bottom:479.426667pt;}
.y12d{bottom:480.546667pt;}
.yc1{bottom:483.266667pt;}
.y11a{bottom:491.586667pt;}
.yf8{bottom:497.826667pt;}
.ye1{bottom:497.986667pt;}
.y1b{bottom:500.546667pt;}
.y41{bottom:502.626667pt;}
.ya1{bottom:504.546667pt;}
.y82{bottom:505.826667pt;}
.y68{bottom:505.986667pt;}
.y12c{bottom:508.066667pt;}
.ybf{bottom:511.426667pt;}
.y119{bottom:512.706667pt;}
.y1a{bottom:521.666667pt;}
.ye0{bottom:525.666667pt;}
.yf7{bottom:526.786667pt;}
.y40{bottom:530.146667pt;}
.y9f{bottom:532.866667pt;}
.y67{bottom:533.666667pt;}
.y118{bottom:533.826667pt;}
.y12b{bottom:535.746667pt;}
.y19{bottom:542.973333pt;}
.y81{bottom:546.813333pt;}
.ydf{bottom:553.213333pt;}
.yf6{bottom:554.333333pt;}
.y117{bottom:555.133333pt;}
.y3f{bottom:557.853333pt;}
.y9e{bottom:561.053333pt;}
.y66{bottom:561.213333pt;}
.y12a{bottom:563.293333pt;}
.y18{bottom:564.093333pt;}
.ybd{bottom:567.453333pt;}
.y80{bottom:574.493333pt;}
.y116{bottom:576.253333pt;}
.yde{bottom:580.893333pt;}
.yf5{bottom:583.133333pt;}
.y17{bottom:585.213333pt;}
.y3e{bottom:585.373333pt;}
.y65{bottom:588.733333pt;}
.y129{bottom:590.973333pt;}
.y115{bottom:597.373333pt;}
.y7f{bottom:602.013333pt;}
.y16{bottom:606.333333pt;}
.ydd{bottom:608.413333pt;}
.yf4{bottom:610.653333pt;}
.y3d{bottom:613.053333pt;}
.y64{bottom:616.413333pt;}
.y114{bottom:618.493333pt;}
.ybc{bottom:623.293333pt;}
.y15{bottom:627.453333pt;}
.y7e{bottom:629.693333pt;}
.ydc{bottom:636.093333pt;}
.yf3{bottom:638.173333pt;}
.y113{bottom:639.773333pt;}
.y3c{bottom:640.573333pt;}
.y63{bottom:643.933333pt;}
.y14{bottom:648.733333pt;}
.y7d{bottom:657.213333pt;}
.y112{bottom:660.893333pt;}
.ydb{bottom:663.613333pt;}
.ybb{bottom:664.253333pt;}
.yf2{bottom:667.133333pt;}
.y3b{bottom:668.253333pt;}
.y13{bottom:669.853333pt;}
.y62{bottom:671.613333pt;}
.y111{bottom:682.013333pt;}
.y7c{bottom:684.893333pt;}
.yda{bottom:691.293333pt;}
.yba{bottom:691.773333pt;}
.yf1{bottom:694.653333pt;}
.y3a{bottom:695.773333pt;}
.y12{bottom:697.373333pt;}
.y61{bottom:699.133333pt;}
.y110{bottom:703.133333pt;}
.y7b{bottom:712.413333pt;}
.yd9{bottom:718.813333pt;}
.yb9{bottom:719.453333pt;}
.yf0{bottom:722.173333pt;}
.y39{bottom:723.453333pt;}
.y10f{bottom:724.413333pt;}
.y11{bottom:725.053333pt;}
.y60{bottom:726.813333pt;}
.y7a{bottom:728.093333pt;}
.y9d{bottom:740.093333pt;}
.y10e{bottom:745.533333pt;}
.yd8{bottom:746.493333pt;}
.yb8{bottom:746.973333pt;}
.y79{bottom:749.853333pt;}
.y38{bottom:750.973333pt;}
.y10{bottom:752.573333pt;}
.y5f{bottom:754.333333pt;}
.y10d{bottom:766.653333pt;}
.y9c{bottom:767.613333pt;}
.y5d{bottom:770.013333pt;}
.y77{bottom:771.613333pt;}
.yd7{bottom:774.053333pt;}
.yb7{bottom:774.693333pt;}
.y37{bottom:778.693333pt;}
.yf{bottom:780.293333pt;}
.y10c{bottom:787.813333pt;}
.y5c{bottom:791.813333pt;}
.y9b{bottom:795.333333pt;}
.yd6{bottom:801.573333pt;}
.yb6{bottom:802.213333pt;}
.y36{bottom:806.213333pt;}
.ye{bottom:807.813333pt;}
.y10b{bottom:808.933333pt;}
.yb5{bottom:817.733333pt;}
.y9a{bottom:822.853333pt;}
.y10a{bottom:830.213333pt;}
.yd5{bottom:830.373333pt;}
.y35{bottom:833.893333pt;}
.y5b{bottom:834.853333pt;}
.yd{bottom:835.493333pt;}
.yb4{bottom:846.053333pt;}
.y99{bottom:850.533333pt;}
.y109{bottom:851.333333pt;}
.y5a{bottom:856.613333pt;}
.yd4{bottom:857.893333pt;}
.y34{bottom:861.413333pt;}
.yc{bottom:863.013333pt;}
.y108{bottom:872.453333pt;}
.yb2{bottom:874.373333pt;}
.y98{bottom:878.053333pt;}
.yd3{bottom:886.693333pt;}
.y33{bottom:889.093333pt;}
.yb{bottom:890.693333pt;}
.y107{bottom:893.573333pt;}
.y57{bottom:899.653333pt;}
.y97{bottom:905.733333pt;}
.yd2{bottom:914.213333pt;}
.y106{bottom:914.853333pt;}
.y32{bottom:916.613333pt;}
.ya{bottom:918.213333pt;}
.yb1{bottom:930.213333pt;}
.y96{bottom:933.253333pt;}
.y105{bottom:935.973333pt;}
.y54{bottom:942.533333pt;}
.yd1{bottom:943.013333pt;}
.y31{bottom:944.293333pt;}
.y9{bottom:945.893333pt;}
.y95{bottom:948.773333pt;}
.y104{bottom:957.093333pt;}
.yb0{bottom:958.373333pt;}
.y8{bottom:967.013333pt;}
.yd0{bottom:970.533333pt;}
.y94{bottom:970.693333pt;}
.y30{bottom:971.813333pt;}
.y103{bottom:978.213333pt;}
.y7{bottom:988.133333pt;}
.y93{bottom:992.453333pt;}
.y53{bottom:998.213333pt;}
.y2f{bottom:999.493333pt;}
.y6{bottom:1009.413333pt;}
.y2e{bottom:1018.560000pt;}
.y5{bottom:1030.560000pt;}
.y2d{bottom:1038.560000pt;}
.y4{bottom:1051.680000pt;}
.y2c{bottom:1059.680000pt;}
.y3{bottom:1079.200000pt;}
.h9{height:21.120000pt;}
.ha{height:21.152000pt;}
.he{height:21.280000pt;}
.hb{height:21.312000pt;}
.hd{height:27.520000pt;}
.hf{height:27.552000pt;}
.hc{height:27.680000pt;}
.h8{height:42.240000pt;}
.h7{height:42.400000pt;}
.h3{height:45.156250pt;}
.h6{height:46.375000pt;}
.h5{height:48.687500pt;}
.h2{height:51.031250pt;}
.h11{height:55.040000pt;}
.h10{height:55.200000pt;}
.h12{height:55.232000pt;}
.h4{height:56.031250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wb{width:38.752000pt;}
.w1c{width:48.000000pt;}
.wf{width:52.032000pt;}
.w1f{width:52.960000pt;}
.w1b{width:53.792000pt;}
.w4{width:63.520000pt;}
.w20{width:66.240000pt;}
.w18{width:71.360000pt;}
.wc{width:83.232000pt;}
.w12{width:85.760000pt;}
.w6{width:89.280000pt;}
.w14{width:89.440000pt;}
.w13{width:90.272000pt;}
.w15{width:95.392000pt;}
.w7{width:97.280000pt;}
.w19{width:101.312000pt;}
.w17{width:107.392000pt;}
.w11{width:110.112000pt;}
.w21{width:114.752000pt;}
.wa{width:125.312000pt;}
.w16{width:125.472000pt;}
.w1d{width:134.106667pt;}
.w8{width:136.506667pt;}
.we{width:137.306667pt;}
.w3{width:140.186667pt;}
.w10{width:143.040000pt;}
.w9{width:153.466667pt;}
.wd{width:155.200000pt;}
.w1a{width:222.426667pt;}
.w5{width:274.466667pt;}
.w1e{width:297.186667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.880000pt;}
.x2{left:96.031988pt;}
.xf{left:112.192000pt;}
.xe{left:120.031988pt;}
.x9{left:128.831988pt;}
.x2d{left:130.432000pt;}
.x15{left:139.706667pt;}
.x14{left:144.026655pt;}
.x13{left:153.626655pt;}
.xc{left:159.226655pt;}
.x20{left:160.186667pt;}
.x29{left:166.746667pt;}
.x25{left:193.146667pt;}
.x19{left:212.506667pt;}
.x1d{left:230.106667pt;}
.x16{left:237.626667pt;}
.x1a{left:251.906667pt;}
.x11{left:253.026667pt;}
.x21{left:270.946667pt;}
.x4{left:295.426655pt;}
.xd{left:308.386655pt;}
.xa{left:317.026655pt;}
.x26{left:319.266667pt;}
.xb{left:323.106655pt;}
.x1b{left:341.986667pt;}
.x22{left:357.346667pt;}
.x1e{left:368.066667pt;}
.x17{left:374.786667pt;}
.x1{left:385.186655pt;}
.x2a{left:389.826667pt;}
.x3{left:396.866655pt;}
.x1f{left:420.733333pt;}
.x1c{left:426.013333pt;}
.x27{left:427.293333pt;}
.x2e{left:428.253333pt;}
.x2b{left:444.253333pt;}
.x23{left:448.253333pt;}
.x2f{left:481.853333pt;}
.x8{left:484.893322pt;}
.x2c{left:493.053333pt;}
.x28{left:499.293333pt;}
.x7{left:512.413322pt;}
.x6{left:526.653322pt;}
.x18{left:528.893333pt;}
.x24{left:538.333333pt;}
.x30{left:548.733333pt;}
.x5{left:550.173322pt;}
.x12{left:592.453333pt;}
}




    .paper-inline-ad { box-sizing: border-box; margin: 13px auto; max-width: 100%; min-height: 120px; background: #fff; border: 1px solid #e5e7eb; overflow: hidden; }
    .paper-inline-ad-label { padding: 6px 10px 0 10px; font: 10px system-ui, sans-serif; color: #9ca3af; text-transform: uppercase; letter-spacing: .04em; }
    .paper-inline-ad-slot { min-height: 100px; }
    .paper-inline-ad--internal { padding: 0; }
    .paper-internal-promo { padding: 14px 16px 16px 16px; font: 13px system-ui, sans-serif; line-height: 1.45; color: #374151; }
    .paper-internal-promo-title { font-size: 17px; font-weight: 800; color: #111827; margin-bottom: 7px; }
    .paper-internal-promo-body { margin-bottom: 12px; }
    .paper-internal-promo-actions { display: flex; flex-wrap: wrap; gap: 8px; }
    .paper-internal-promo-actions a { display: inline-block; padding: 7px 10px; border: 1px solid #d1d5db; border-radius: 8px; text-decoration: none; color: #111827; background: #f9fafb; font-weight: 700; }
  