
    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_58ba0db1e15aaa2089b633b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_0a2a9e08b58990d32fc1590e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_4cd792984a67388ebd445e0c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958984;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_fb65a8b4e88dbe74cb34af6a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.762207;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_efb2cb773517aa81a6be839a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_6ae0947d5cd0955d3ce1c5f8.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284668;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_a600fa8f124b2a086e3f63ba.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.914062;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_941727f72e13b05dde734a7a.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.311035;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_2b2c57fd61c1fae471a3f7a5.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_90809799f4d9cf5405d8e3ef.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.402354;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:ffb;src:url('chunks/assets/font_f999b6362758b1d5736ff41d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.758789;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:ffc;src:url('chunks/assets/font_7a6baa2455cee6c3bd979b54.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.284180;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);}
.v2{vertical-align:-91.440000px;}
.v1{vertical-align:-84.240000px;}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:-0.504000px;}
.lsb{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.180000px;}
.ls5{letter-spacing:-0.144000px;}
.ls2{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.216000px;}
.ls8{letter-spacing:0.341400px;}
.ls7{letter-spacing:0.360000px;}
.ls4{letter-spacing:0.457800px;}
.ls0{letter-spacing:18.083520px;}
.lse{letter-spacing:31.080000px;}
.lsd{letter-spacing:33.960000px;}
.lsc{letter-spacing:81.000000px;}
.ls6{letter-spacing:849.185760px;}
.ls1{letter-spacing:2300.136000px;}
.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;}
}
.wsa{word-spacing:-72.000000px;}
.ws7{word-spacing:-27.216000px;}
.ws8{word-spacing:-21.060000px;}
.ws9{word-spacing:-20.700000px;}
.ws5{word-spacing:-20.638800px;}
.ws6{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws3{word-spacing:-17.017800px;}
.ws2{word-spacing:-16.560000px;}
.ws1{word-spacing:0.000000px;}
.ws0{word-spacing:2.657280px;}
._8{margin-left:-2.280960px;}
._1{margin-left:-1.019520px;}
._0{width:1.059840px;}
._a{width:2.274720px;}
._1a{width:5.087520px;}
._9{width:15.408000px;}
._3{width:16.593120px;}
._2{width:17.915760px;}
._4{width:19.118160px;}
._5{width:21.408240px;}
._15{width:33.081120px;}
._b{width:46.188000px;}
._12{width:74.213280px;}
._18{width:83.988000px;}
._f{width:86.124000px;}
._d{width:117.119520px;}
._7{width:125.976000px;}
._1b{width:129.744000px;}
._1c{width:141.023520px;}
._e{width:149.940000px;}
._10{width:152.251680px;}
._16{width:161.964000px;}
._17{width:165.119520px;}
._13{width:169.987680px;}
._14{width:180.317280px;}
._19{width:186.012000px;}
._c{width:198.000000px;}
._11{width:199.091520px;}
._6{width:2021.316000px;}
.fc2{color:rgb(83,129,53);}
.fc1{color:rgb(128,128,128);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs5{font-size:95.760000px;}
.fs6{font-size:108.000000px;}
.fs2{font-size:120.240000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y35{bottom:4.320000px;}
.y7b{bottom:4.365000px;}
.y87{bottom:4.680000px;}
.y78{bottom:5.220000px;}
.y74{bottom:5.400000px;}
.y83{bottom:5.760000px;}
.y68{bottom:6.660000px;}
.y3e{bottom:8.100000px;}
.y43{bottom:8.280000px;}
.ye6{bottom:16.200000px;}
.yd4{bottom:18.900000px;}
.ydd{bottom:19.080000px;}
.yd8{bottom:19.125000px;}
.y8e{bottom:21.240000px;}
.y61{bottom:24.840000px;}
.ye1{bottom:25.014000px;}
.y49{bottom:25.020000px;}
.y34{bottom:25.050000px;}
.y7a{bottom:25.065000px;}
.ycf{bottom:25.200000px;}
.y86{bottom:25.380000px;}
.y77{bottom:25.920000px;}
.y73{bottom:26.100000px;}
.y82{bottom:26.460000px;}
.y67{bottom:27.360000px;}
.y3d{bottom:28.800000px;}
.y3b{bottom:28.980000px;}
.y41{bottom:29.025000px;}
.ye7{bottom:36.540000px;}
.ye5{bottom:36.900000px;}
.yd2{bottom:39.240000px;}
.yde{bottom:39.420000px;}
.yd9{bottom:39.465000px;}
.yd1{bottom:39.600000px;}
.ydc{bottom:39.780000px;}
.yd7{bottom:39.825000px;}
.yce{bottom:42.300000px;}
.ye2{bottom:45.354000px;}
.ye0{bottom:45.714000px;}
.y33{bottom:45.750000px;}
.y5{bottom:60.660000px;}
.y6e{bottom:114.336000px;}
.y4a{bottom:117.216000px;}
.y22{bottom:117.576000px;}
.y9a{bottom:128.556000px;}
.y6d{bottom:135.036000px;}
.ydf{bottom:141.156000px;}
.y21{bottom:151.950000px;}
.y99{bottom:152.670000px;}
.y6c{bottom:155.730000px;}
.y48{bottom:159.330000px;}
.y109{bottom:166.710000px;}
.y6b{bottom:176.430000px;}
.y98{bottom:176.790000px;}
.y20{bottom:186.330000px;}
.y6a{bottom:193.530000px;}
.y97{bottom:200.910000px;}
.ydb{bottom:203.970000px;}
.y108{bottom:204.330000px;}
.y47{bottom:205.410000px;}
.y69{bottom:214.950000px;}
.y1f{bottom:220.530000px;}
.y96{bottom:224.670000px;}
.y46{bottom:226.110000px;}
.y107{bottom:227.910000px;}
.y66{bottom:238.710000px;}
.y95{bottom:241.770000px;}
.y45{bottom:247.170000px;}
.y106{bottom:248.610000px;}
.y1e{bottom:254.910000px;}
.yda{bottom:260.850000px;}
.y44{bottom:267.870000px;}
.y105{bottom:269.310000px;}
.y42{bottom:284.970000px;}
.y65{bottom:287.130000px;}
.y94{bottom:287.850000px;}
.y1d{bottom:289.290000px;}
.y104{bottom:290.010000px;}
.y64{bottom:307.830000px;}
.y93{bottom:308.550000px;}
.y103{bottom:310.710000px;}
.yd6{bottom:317.550000px;}
.y1c{bottom:323.670000px;}
.y63{bottom:328.890000px;}
.y92{bottom:329.610000px;}
.y40{bottom:331.050000px;}
.y102{bottom:331.410000px;}
.y62{bottom:349.635000px;}
.y91{bottom:350.355000px;}
.y101{bottom:352.155000px;}
.y1b{bottom:357.915000px;}
.y60{bottom:366.915000px;}
.y90{bottom:367.635000px;}
.y100{bottom:372.855000px;}
.yd5{bottom:374.475000px;}
.y3f{bottom:377.175000px;}
.y1a{bottom:378.255000px;}
.yff{bottom:393.555000px;}
.y19{bottom:398.955000px;}
.y5f{bottom:409.035000px;}
.y8f{bottom:409.755000px;}
.yfe{bottom:414.255000px;}
.ybc{bottom:421.095000px;}
.y3c{bottom:423.255000px;}
.yd3{bottom:431.175000px;}
.yfd{bottom:434.955000px;}
.y18{bottom:440.715000px;}
.ybb{bottom:441.795000px;}
.y5e{bottom:451.155000px;}
.y8d{bottom:451.875000px;}
.yfc{bottom:455.655000px;}
.y17{bottom:461.055000px;}
.yba{bottom:462.495000px;}
.y3a{bottom:469.155000px;}
.yfb{bottom:476.355000px;}
.y16{bottom:482.115000px;}
.yb9{bottom:483.195000px;}
.yd0{bottom:488.055000px;}
.y5d{bottom:493.275000px;}
.y8c{bottom:494.175000px;}
.yfa{bottom:497.055000px;}
.y15{bottom:502.455000px;}
.yb8{bottom:503.895000px;}
.y8b{bottom:514.875000px;}
.yf9{bottom:517.755000px;}
.y39{bottom:519.195000px;}
.y14{bottom:523.515000px;}
.yb7{bottom:524.595000px;}
.y8a{bottom:535.935000px;}
.yf8{bottom:538.455000px;}
.y5c{bottom:539.355000px;}
.y38{bottom:539.895000px;}
.y13{bottom:544.215000px;}
.ycd{bottom:544.755000px;}
.yb6{bottom:545.295000px;}
.y89{bottom:556.635000px;}
.yf7{bottom:559.155000px;}
.y5b{bottom:560.055000px;}
.y37{bottom:560.955000px;}
.y12{bottom:564.915000px;}
.yb5{bottom:565.995000px;}
.y88{bottom:573.735000px;}
.yf6{bottom:579.855000px;}
.y5a{bottom:581.115000px;}
.y36{bottom:581.655000px;}
.y11{bottom:585.615000px;}
.yb4{bottom:586.695000px;}
.y32{bottom:598.755000px;}
.yf5{bottom:600.555000px;}
.y59{bottom:601.815000px;}
.y10{bottom:606.345000px;}
.yb3{bottom:607.425000px;}
.y85{bottom:615.885000px;}
.y58{bottom:618.945000px;}
.ycc{bottom:620.925000px;}
.yf4{bottom:621.285000px;}
.yf{bottom:627.045000px;}
.yb2{bottom:628.125000px;}
.yf3{bottom:641.985000px;}
.ye{bottom:647.745000px;}
.yb1{bottom:648.825000px;}
.y84{bottom:658.365000px;}
.y57{bottom:661.065000px;}
.yf2{bottom:662.685000px;}
.ycb{bottom:663.405000px;}
.y31{bottom:665.925000px;}
.yd{bottom:668.445000px;}
.yb0{bottom:669.525000px;}
.yf1{bottom:683.385000px;}
.y30{bottom:686.625000px;}
.yc{bottom:689.145000px;}
.yaf{bottom:690.225000px;}
.y81{bottom:700.485000px;}
.y56{bottom:703.365000px;}
.yf0{bottom:704.085000px;}
.yca{bottom:704.265000px;}
.y2f{bottom:707.325000px;}
.yb{bottom:709.845000px;}
.yae{bottom:710.925000px;}
.yef{bottom:724.785000px;}
.yc9{bottom:728.205000px;}
.ya{bottom:730.545000px;}
.yad{bottom:731.625000px;}
.y2e{bottom:741.345000px;}
.y80{bottom:744.045000px;}
.y55{bottom:745.485000px;}
.yac{bottom:752.325000px;}
.y9{bottom:753.405000px;}
.yee{bottom:766.185000px;}
.yab{bottom:773.025000px;}
.yc8{bottom:776.625000px;}
.y2d{bottom:776.985000px;}
.yed{bottom:786.885000px;}
.y54{bottom:787.605000px;}
.y7f{bottom:790.485000px;}
.yaa{bottom:793.725000px;}
.y8{bottom:796.245000px;}
.yc7{bottom:800.745000px;}
.yec{bottom:807.585000px;}
.y7e{bottom:810.825000px;}
.ya9{bottom:814.425000px;}
.y2c{bottom:815.505000px;}
.yc6{bottom:824.865000px;}
.y7d{bottom:831.885000px;}
.y53{bottom:833.685000px;}
.ya8{bottom:835.125000px;}
.y7{bottom:839.265000px;}
.yc5{bottom:848.625000px;}
.y2b{bottom:848.805000px;}
.yeb{bottom:851.145000px;}
.y7c{bottom:852.585000px;}
.y52{bottom:854.385000px;}
.ya7{bottom:855.825000px;}
.y79{bottom:869.685000px;}
.yc4{bottom:872.790000px;}
.y51{bottom:875.490000px;}
.ya6{bottom:876.570000px;}
.y2a{bottom:878.550000px;}
.yea{bottom:882.330000px;}
.y50{bottom:896.190000px;}
.ya5{bottom:897.270000px;}
.y29{bottom:908.430000px;}
.y76{bottom:912.030000px;}
.yc3{bottom:912.750000px;}
.y4f{bottom:913.290000px;}
.ya4{bottom:917.970000px;}
.y28{bottom:936.870000px;}
.ya3{bottom:938.670000px;}
.ye9{bottom:941.730000px;}
.yc2{bottom:943.710000px;}
.y75{bottom:955.230000px;}
.y4e{bottom:955.410000px;}
.ye8{bottom:959.190000px;}
.ya2{bottom:959.370000px;}
.y27{bottom:965.310000px;}
.yc1{bottom:974.850000px;}
.ya1{bottom:980.070000px;}
.y26{bottom:993.750000px;}
.y72{bottom:997.350000px;}
.y4d{bottom:997.530000px;}
.ya0{bottom:1000.770000px;}
.yc0{bottom:1005.810000px;}
.ye4{bottom:1013.190000px;}
.y9f{bottom:1021.470000px;}
.y25{bottom:1028.130000px;}
.ybf{bottom:1036.950000px;}
.y4c{bottom:1039.830000px;}
.y71{bottom:1040.550000px;}
.y9e{bottom:1042.170000px;}
.y9d{bottom:1062.870000px;}
.ye3{bottom:1067.190000px;}
.ybe{bottom:1067.910000px;}
.y24{bottom:1068.450000px;}
.y4b{bottom:1081.950000px;}
.y9c{bottom:1083.570000px;}
.y70{bottom:1086.630000px;}
.y6{bottom:1091.130000px;}
.ybd{bottom:1099.050000px;}
.y9b{bottom:1104.630000px;}
.y23{bottom:1104.810000px;}
.y6f{bottom:1107.330000px;}
.y4{bottom:1128.570000px;}
.y3{bottom:1150.920000px;}
.y2{bottom:1171.440000px;}
.y1{bottom:1193.040000px;}
.h19{height:20.700000px;}
.h18{height:23.040000px;}
.h1f{height:37.620000px;}
.h16{height:41.220000px;}
.h14{height:41.400000px;}
.h1c{height:41.436000px;}
.h1e{height:41.760000px;}
.h1b{height:42.300000px;}
.h1a{height:42.480000px;}
.h1d{height:42.840000px;}
.h17{height:43.740000px;}
.h12{height:45.180000px;}
.h11{height:45.360000px;}
.h13{height:45.396000px;}
.h15{height:50.273438px;}
.h28{height:53.280000px;}
.h3{height:54.000000px;}
.h23{height:55.980000px;}
.h26{height:56.160000px;}
.h25{height:56.196000px;}
.h24{height:58.651172px;}
.h27{height:62.100000px;}
.h10{height:62.136000px;}
.hb{height:63.180000px;}
.he{height:65.010937px;}
.h4{height:65.884219px;}
.hd{height:66.757500px;}
.h2{height:67.824844px;}
.ha{height:70.628906px;}
.h8{height:70.664062px;}
.h9{height:72.562500px;}
.h2a{height:74.004654px;}
.h7{height:82.635820px;}
.h21{height:82.676953px;}
.hf{height:84.898125px;}
.h5{height:90.180000px;}
.h22{height:93.983203px;}
.hc{height:96.508125px;}
.h29{height:105.996094px;}
.h6{height:108.000000px;}
.h20{height:108.843750px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w20{width:41.040000px;}
.w1a{width:41.436000px;}
.w16{width:41.616000px;}
.w23{width:41.796000px;}
.wd{width:41.976000px;}
.w11{width:42.336000px;}
.w1d{width:45.180000px;}
.w1e{width:45.216000px;}
.w1f{width:45.360000px;}
.w19{width:45.540000px;}
.w18{width:45.576000px;}
.w15{width:45.720000px;}
.w14{width:45.756000px;}
.w13{width:45.900000px;}
.w25{width:45.936000px;}
.wa{width:46.080000px;}
.w22{width:46.116000px;}
.wc{width:46.260000px;}
.wb{width:46.296000px;}
.wf{width:46.620000px;}
.w10{width:46.656000px;}
.w28{width:52.200000px;}
.w29{width:72.756000px;}
.w27{width:72.900000px;}
.w2b{width:72.936000px;}
.w2a{width:83.340000px;}
.w6{width:88.956000px;}
.w4{width:96.876000px;}
.w7{width:97.056000px;}
.w3{width:99.180000px;}
.w5{width:110.160000px;}
.w8{width:132.876000px;}
.w1c{width:458.895000px;}
.w17{width:463.035000px;}
.w1b{width:464.475000px;}
.w12{width:465.195000px;}
.w24{width:466.635000px;}
.w21{width:467.355000px;}
.w9{width:468.615000px;}
.we{width:472.215000px;}
.w26{width:482.865000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1b{left:7.740000px;}
.x4d{left:9.720000px;}
.x1a{left:10.980000px;}
.x50{left:13.860000px;}
.x4e{left:15.660000px;}
.xa{left:17.100000px;}
.xd{left:18.900000px;}
.x4a{left:20.160000px;}
.x10{left:23.220000px;}
.x17{left:26.640000px;}
.x14{left:33.120000px;}
.x51{left:36.360000px;}
.x12{left:38.340000px;}
.xc{left:41.940000px;}
.x16{left:43.065000px;}
.xf{left:48.960000px;}
.x19{left:61.200000px;}
.x3{left:108.035987px;}
.x1{left:114.155987px;}
.x52{left:135.035987px;}
.x53{left:148.535987px;}
.x7{left:162.029987px;}
.x4{left:183.809987px;}
.xb{left:208.650000px;}
.x49{left:214.230000px;}
.x6{left:216.029987px;}
.x2{left:255.089987px;}
.x9{left:259.229987px;}
.x45{left:288.614987px;}
.xe{left:306.255000px;}
.x46{left:308.234987px;}
.x48{left:330.734987px;}
.x43{left:374.474987px;}
.x54{left:388.154987px;}
.x8{left:396.074987px;}
.x11{left:417.135000px;}
.x47{left:428.474987px;}
.x44{left:446.474987px;}
.x13{left:506.805000px;}
.x5{left:560.084987px;}
.x35{left:568.365000px;}
.x2e{left:572.505000px;}
.x28{left:574.665000px;}
.x3b{left:576.825000px;}
.x1c{left:578.265000px;}
.x4b{left:580.605000px;}
.x22{left:581.685000px;}
.x36{left:614.265000px;}
.x15{left:617.685000px;}
.x2f{left:618.945000px;}
.x29{left:621.285000px;}
.x3c{left:623.625000px;}
.x1d{left:625.065000px;}
.x23{left:629.025000px;}
.x4c{left:633.525000px;}
.x37{left:660.390000px;}
.x30{left:665.250000px;}
.x2a{left:667.950000px;}
.x3d{left:670.470000px;}
.x1e{left:672.090000px;}
.x24{left:676.410000px;}
.x38{left:706.290000px;}
.x31{left:711.690000px;}
.x2b{left:714.390000px;}
.x18{left:715.650000px;}
.x3e{left:717.270000px;}
.x1f{left:719.070000px;}
.x25{left:723.750000px;}
.x39{left:752.190000px;}
.x32{left:757.950000px;}
.x2c{left:761.010000px;}
.x41{left:762.990000px;}
.x3f{left:764.070000px;}
.x20{left:766.050000px;}
.x26{left:771.090000px;}
.x4f{left:791.250000px;}
.x3a{left:798.270000px;}
.x33{left:804.390000px;}
.x34{left:806.550000px;}
.x2d{left:807.630000px;}
.x42{left:809.790000px;}
.x40{left:810.870000px;}
.x21{left:813.030000px;}
.x27{left:818.430000px;}
@media print{
.v2{vertical-align:-81.280000pt;}
.v1{vertical-align:-74.880000pt;}
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:-0.448000pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.160000pt;}
.ls5{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.192000pt;}
.ls8{letter-spacing:0.303467pt;}
.ls7{letter-spacing:0.320000pt;}
.ls4{letter-spacing:0.406933pt;}
.ls0{letter-spacing:16.074240pt;}
.lse{letter-spacing:27.626667pt;}
.lsd{letter-spacing:30.186667pt;}
.lsc{letter-spacing:72.000000pt;}
.ls6{letter-spacing:754.831787pt;}
.ls1{letter-spacing:2044.565333pt;}
.wsa{word-spacing:-64.000000pt;}
.ws7{word-spacing:-24.192000pt;}
.ws8{word-spacing:-18.720000pt;}
.ws9{word-spacing:-18.400000pt;}
.ws5{word-spacing:-18.345600pt;}
.ws6{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws3{word-spacing:-15.126933pt;}
.ws2{word-spacing:-14.720000pt;}
.ws1{word-spacing:0.000000pt;}
.ws0{word-spacing:2.362027pt;}
._8{margin-left:-2.027520pt;}
._1{margin-left:-0.906240pt;}
._0{width:0.942080pt;}
._a{width:2.021973pt;}
._1a{width:4.522240pt;}
._9{width:13.696000pt;}
._3{width:14.749440pt;}
._2{width:15.925120pt;}
._4{width:16.993920pt;}
._5{width:19.029547pt;}
._15{width:29.405440pt;}
._b{width:41.056000pt;}
._12{width:65.967360pt;}
._18{width:74.656000pt;}
._f{width:76.554667pt;}
._d{width:104.106240pt;}
._7{width:111.978667pt;}
._1b{width:115.328000pt;}
._1c{width:125.354240pt;}
._e{width:133.280000pt;}
._10{width:135.334827pt;}
._16{width:143.968000pt;}
._17{width:146.772907pt;}
._13{width:151.100160pt;}
._14{width:160.282027pt;}
._19{width:165.344000pt;}
._c{width:176.000000pt;}
._11{width:176.970240pt;}
._6{width:1796.725333pt;}
.fs7{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs5{font-size:85.120000pt;}
.fs6{font-size:96.000000pt;}
.fs2{font-size:106.880000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y35{bottom:3.840000pt;}
.y7b{bottom:3.880000pt;}
.y87{bottom:4.160000pt;}
.y78{bottom:4.640000pt;}
.y74{bottom:4.800000pt;}
.y83{bottom:5.120000pt;}
.y68{bottom:5.920000pt;}
.y3e{bottom:7.200000pt;}
.y43{bottom:7.360000pt;}
.ye6{bottom:14.400000pt;}
.yd4{bottom:16.800000pt;}
.ydd{bottom:16.960000pt;}
.yd8{bottom:17.000000pt;}
.y8e{bottom:18.880000pt;}
.y61{bottom:22.080000pt;}
.ye1{bottom:22.234667pt;}
.y49{bottom:22.240000pt;}
.y34{bottom:22.266667pt;}
.y7a{bottom:22.280000pt;}
.ycf{bottom:22.400000pt;}
.y86{bottom:22.560000pt;}
.y77{bottom:23.040000pt;}
.y73{bottom:23.200000pt;}
.y82{bottom:23.520000pt;}
.y67{bottom:24.320000pt;}
.y3d{bottom:25.600000pt;}
.y3b{bottom:25.760000pt;}
.y41{bottom:25.800000pt;}
.ye7{bottom:32.480000pt;}
.ye5{bottom:32.800000pt;}
.yd2{bottom:34.880000pt;}
.yde{bottom:35.040000pt;}
.yd9{bottom:35.080000pt;}
.yd1{bottom:35.200000pt;}
.ydc{bottom:35.360000pt;}
.yd7{bottom:35.400000pt;}
.yce{bottom:37.600000pt;}
.ye2{bottom:40.314667pt;}
.ye0{bottom:40.634667pt;}
.y33{bottom:40.666667pt;}
.y5{bottom:53.920000pt;}
.y6e{bottom:101.632000pt;}
.y4a{bottom:104.192000pt;}
.y22{bottom:104.512000pt;}
.y9a{bottom:114.272000pt;}
.y6d{bottom:120.032000pt;}
.ydf{bottom:125.472000pt;}
.y21{bottom:135.066667pt;}
.y99{bottom:135.706667pt;}
.y6c{bottom:138.426667pt;}
.y48{bottom:141.626667pt;}
.y109{bottom:148.186667pt;}
.y6b{bottom:156.826667pt;}
.y98{bottom:157.146667pt;}
.y20{bottom:165.626667pt;}
.y6a{bottom:172.026667pt;}
.y97{bottom:178.586667pt;}
.ydb{bottom:181.306667pt;}
.y108{bottom:181.626667pt;}
.y47{bottom:182.586667pt;}
.y69{bottom:191.066667pt;}
.y1f{bottom:196.026667pt;}
.y96{bottom:199.706667pt;}
.y46{bottom:200.986667pt;}
.y107{bottom:202.586667pt;}
.y66{bottom:212.186667pt;}
.y95{bottom:214.906667pt;}
.y45{bottom:219.706667pt;}
.y106{bottom:220.986667pt;}
.y1e{bottom:226.586667pt;}
.yda{bottom:231.866667pt;}
.y44{bottom:238.106667pt;}
.y105{bottom:239.386667pt;}
.y42{bottom:253.306667pt;}
.y65{bottom:255.226667pt;}
.y94{bottom:255.866667pt;}
.y1d{bottom:257.146667pt;}
.y104{bottom:257.786667pt;}
.y64{bottom:273.626667pt;}
.y93{bottom:274.266667pt;}
.y103{bottom:276.186667pt;}
.yd6{bottom:282.266667pt;}
.y1c{bottom:287.706667pt;}
.y63{bottom:292.346667pt;}
.y92{bottom:292.986667pt;}
.y40{bottom:294.266667pt;}
.y102{bottom:294.586667pt;}
.y62{bottom:310.786667pt;}
.y91{bottom:311.426667pt;}
.y101{bottom:313.026667pt;}
.y1b{bottom:318.146667pt;}
.y60{bottom:326.146667pt;}
.y90{bottom:326.786667pt;}
.y100{bottom:331.426667pt;}
.yd5{bottom:332.866667pt;}
.y3f{bottom:335.266667pt;}
.y1a{bottom:336.226667pt;}
.yff{bottom:349.826667pt;}
.y19{bottom:354.626667pt;}
.y5f{bottom:363.586667pt;}
.y8f{bottom:364.226667pt;}
.yfe{bottom:368.226667pt;}
.ybc{bottom:374.306667pt;}
.y3c{bottom:376.226667pt;}
.yd3{bottom:383.266667pt;}
.yfd{bottom:386.626667pt;}
.y18{bottom:391.746667pt;}
.ybb{bottom:392.706667pt;}
.y5e{bottom:401.026667pt;}
.y8d{bottom:401.666667pt;}
.yfc{bottom:405.026667pt;}
.y17{bottom:409.826667pt;}
.yba{bottom:411.106667pt;}
.y3a{bottom:417.026667pt;}
.yfb{bottom:423.426667pt;}
.y16{bottom:428.546667pt;}
.yb9{bottom:429.506667pt;}
.yd0{bottom:433.826667pt;}
.y5d{bottom:438.466667pt;}
.y8c{bottom:439.266667pt;}
.yfa{bottom:441.826667pt;}
.y15{bottom:446.626667pt;}
.yb8{bottom:447.906667pt;}
.y8b{bottom:457.666667pt;}
.yf9{bottom:460.226667pt;}
.y39{bottom:461.506667pt;}
.y14{bottom:465.346667pt;}
.yb7{bottom:466.306667pt;}
.y8a{bottom:476.386667pt;}
.yf8{bottom:478.626667pt;}
.y5c{bottom:479.426667pt;}
.y38{bottom:479.906667pt;}
.y13{bottom:483.746667pt;}
.ycd{bottom:484.226667pt;}
.yb6{bottom:484.706667pt;}
.y89{bottom:494.786667pt;}
.yf7{bottom:497.026667pt;}
.y5b{bottom:497.826667pt;}
.y37{bottom:498.626667pt;}
.y12{bottom:502.146667pt;}
.yb5{bottom:503.106667pt;}
.y88{bottom:509.986667pt;}
.yf6{bottom:515.426667pt;}
.y5a{bottom:516.546667pt;}
.y36{bottom:517.026667pt;}
.y11{bottom:520.546667pt;}
.yb4{bottom:521.506667pt;}
.y32{bottom:532.226667pt;}
.yf5{bottom:533.826667pt;}
.y59{bottom:534.946667pt;}
.y10{bottom:538.973333pt;}
.yb3{bottom:539.933333pt;}
.y85{bottom:547.453333pt;}
.y58{bottom:550.173333pt;}
.ycc{bottom:551.933333pt;}
.yf4{bottom:552.253333pt;}
.yf{bottom:557.373333pt;}
.yb2{bottom:558.333333pt;}
.yf3{bottom:570.653333pt;}
.ye{bottom:575.773333pt;}
.yb1{bottom:576.733333pt;}
.y84{bottom:585.213333pt;}
.y57{bottom:587.613333pt;}
.yf2{bottom:589.053333pt;}
.ycb{bottom:589.693333pt;}
.y31{bottom:591.933333pt;}
.yd{bottom:594.173333pt;}
.yb0{bottom:595.133333pt;}
.yf1{bottom:607.453333pt;}
.y30{bottom:610.333333pt;}
.yc{bottom:612.573333pt;}
.yaf{bottom:613.533333pt;}
.y81{bottom:622.653333pt;}
.y56{bottom:625.213333pt;}
.yf0{bottom:625.853333pt;}
.yca{bottom:626.013333pt;}
.y2f{bottom:628.733333pt;}
.yb{bottom:630.973333pt;}
.yae{bottom:631.933333pt;}
.yef{bottom:644.253333pt;}
.yc9{bottom:647.293333pt;}
.ya{bottom:649.373333pt;}
.yad{bottom:650.333333pt;}
.y2e{bottom:658.973333pt;}
.y80{bottom:661.373333pt;}
.y55{bottom:662.653333pt;}
.yac{bottom:668.733333pt;}
.y9{bottom:669.693333pt;}
.yee{bottom:681.053333pt;}
.yab{bottom:687.133333pt;}
.yc8{bottom:690.333333pt;}
.y2d{bottom:690.653333pt;}
.yed{bottom:699.453333pt;}
.y54{bottom:700.093333pt;}
.y7f{bottom:702.653333pt;}
.yaa{bottom:705.533333pt;}
.y8{bottom:707.773333pt;}
.yc7{bottom:711.773333pt;}
.yec{bottom:717.853333pt;}
.y7e{bottom:720.733333pt;}
.ya9{bottom:723.933333pt;}
.y2c{bottom:724.893333pt;}
.yc6{bottom:733.213333pt;}
.y7d{bottom:739.453333pt;}
.y53{bottom:741.053333pt;}
.ya8{bottom:742.333333pt;}
.y7{bottom:746.013333pt;}
.yc5{bottom:754.333333pt;}
.y2b{bottom:754.493333pt;}
.yeb{bottom:756.573333pt;}
.y7c{bottom:757.853333pt;}
.y52{bottom:759.453333pt;}
.ya7{bottom:760.733333pt;}
.y79{bottom:773.053333pt;}
.yc4{bottom:775.813333pt;}
.y51{bottom:778.213333pt;}
.ya6{bottom:779.173333pt;}
.y2a{bottom:780.933333pt;}
.yea{bottom:784.293333pt;}
.y50{bottom:796.613333pt;}
.ya5{bottom:797.573333pt;}
.y29{bottom:807.493333pt;}
.y76{bottom:810.693333pt;}
.yc3{bottom:811.333333pt;}
.y4f{bottom:811.813333pt;}
.ya4{bottom:815.973333pt;}
.y28{bottom:832.773333pt;}
.ya3{bottom:834.373333pt;}
.ye9{bottom:837.093333pt;}
.yc2{bottom:838.853333pt;}
.y75{bottom:849.093333pt;}
.y4e{bottom:849.253333pt;}
.ye8{bottom:852.613333pt;}
.ya2{bottom:852.773333pt;}
.y27{bottom:858.053333pt;}
.yc1{bottom:866.533333pt;}
.ya1{bottom:871.173333pt;}
.y26{bottom:883.333333pt;}
.y72{bottom:886.533333pt;}
.y4d{bottom:886.693333pt;}
.ya0{bottom:889.573333pt;}
.yc0{bottom:894.053333pt;}
.ye4{bottom:900.613333pt;}
.y9f{bottom:907.973333pt;}
.y25{bottom:913.893333pt;}
.ybf{bottom:921.733333pt;}
.y4c{bottom:924.293333pt;}
.y71{bottom:924.933333pt;}
.y9e{bottom:926.373333pt;}
.y9d{bottom:944.773333pt;}
.ye3{bottom:948.613333pt;}
.ybe{bottom:949.253333pt;}
.y24{bottom:949.733333pt;}
.y4b{bottom:961.733333pt;}
.y9c{bottom:963.173333pt;}
.y70{bottom:965.893333pt;}
.y6{bottom:969.893333pt;}
.ybd{bottom:976.933333pt;}
.y9b{bottom:981.893333pt;}
.y23{bottom:982.053333pt;}
.y6f{bottom:984.293333pt;}
.y4{bottom:1003.173333pt;}
.y3{bottom:1023.040000pt;}
.y2{bottom:1041.280000pt;}
.y1{bottom:1060.480000pt;}
.h19{height:18.400000pt;}
.h18{height:20.480000pt;}
.h1f{height:33.440000pt;}
.h16{height:36.640000pt;}
.h14{height:36.800000pt;}
.h1c{height:36.832000pt;}
.h1e{height:37.120000pt;}
.h1b{height:37.600000pt;}
.h1a{height:37.760000pt;}
.h1d{height:38.080000pt;}
.h17{height:38.880000pt;}
.h12{height:40.160000pt;}
.h11{height:40.320000pt;}
.h13{height:40.352000pt;}
.h15{height:44.687500pt;}
.h28{height:47.360000pt;}
.h3{height:48.000000pt;}
.h23{height:49.760000pt;}
.h26{height:49.920000pt;}
.h25{height:49.952000pt;}
.h24{height:52.134375pt;}
.h27{height:55.200000pt;}
.h10{height:55.232000pt;}
.hb{height:56.160000pt;}
.he{height:57.787500pt;}
.h4{height:58.563750pt;}
.hd{height:59.340000pt;}
.h2{height:60.288750pt;}
.ha{height:62.781250pt;}
.h8{height:62.812500pt;}
.h9{height:64.500000pt;}
.h2a{height:65.781915pt;}
.h7{height:73.454062pt;}
.h21{height:73.490625pt;}
.hf{height:75.465000pt;}
.h5{height:80.160000pt;}
.h22{height:83.540625pt;}
.hc{height:85.785000pt;}
.h29{height:94.218750pt;}
.h6{height:96.000000pt;}
.h20{height:96.750000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w20{width:36.480000pt;}
.w1a{width:36.832000pt;}
.w16{width:36.992000pt;}
.w23{width:37.152000pt;}
.wd{width:37.312000pt;}
.w11{width:37.632000pt;}
.w1d{width:40.160000pt;}
.w1e{width:40.192000pt;}
.w1f{width:40.320000pt;}
.w19{width:40.480000pt;}
.w18{width:40.512000pt;}
.w15{width:40.640000pt;}
.w14{width:40.672000pt;}
.w13{width:40.800000pt;}
.w25{width:40.832000pt;}
.wa{width:40.960000pt;}
.w22{width:40.992000pt;}
.wc{width:41.120000pt;}
.wb{width:41.152000pt;}
.wf{width:41.440000pt;}
.w10{width:41.472000pt;}
.w28{width:46.400000pt;}
.w29{width:64.672000pt;}
.w27{width:64.800000pt;}
.w2b{width:64.832000pt;}
.w2a{width:74.080000pt;}
.w6{width:79.072000pt;}
.w4{width:86.112000pt;}
.w7{width:86.272000pt;}
.w3{width:88.160000pt;}
.w5{width:97.920000pt;}
.w8{width:118.112000pt;}
.w1c{width:407.906667pt;}
.w17{width:411.586667pt;}
.w1b{width:412.866667pt;}
.w12{width:413.506667pt;}
.w24{width:414.786667pt;}
.w21{width:415.426667pt;}
.w9{width:416.546667pt;}
.we{width:419.746667pt;}
.w26{width:429.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1b{left:6.880000pt;}
.x4d{left:8.640000pt;}
.x1a{left:9.760000pt;}
.x50{left:12.320000pt;}
.x4e{left:13.920000pt;}
.xa{left:15.200000pt;}
.xd{left:16.800000pt;}
.x4a{left:17.920000pt;}
.x10{left:20.640000pt;}
.x17{left:23.680000pt;}
.x14{left:29.440000pt;}
.x51{left:32.320000pt;}
.x12{left:34.080000pt;}
.xc{left:37.280000pt;}
.x16{left:38.280000pt;}
.xf{left:43.520000pt;}
.x19{left:54.400000pt;}
.x3{left:96.031988pt;}
.x1{left:101.471988pt;}
.x52{left:120.031988pt;}
.x53{left:132.031988pt;}
.x7{left:144.026655pt;}
.x4{left:163.386655pt;}
.xb{left:185.466667pt;}
.x49{left:190.426667pt;}
.x6{left:192.026655pt;}
.x2{left:226.746655pt;}
.x9{left:230.426655pt;}
.x45{left:256.546655pt;}
.xe{left:272.226667pt;}
.x46{left:273.986655pt;}
.x48{left:293.986655pt;}
.x43{left:332.866655pt;}
.x54{left:345.026655pt;}
.x8{left:352.066655pt;}
.x11{left:370.786667pt;}
.x47{left:380.866655pt;}
.x44{left:396.866655pt;}
.x13{left:450.493333pt;}
.x5{left:497.853322pt;}
.x35{left:505.213333pt;}
.x2e{left:508.893333pt;}
.x28{left:510.813333pt;}
.x3b{left:512.733333pt;}
.x1c{left:514.013333pt;}
.x4b{left:516.093333pt;}
.x22{left:517.053333pt;}
.x36{left:546.013333pt;}
.x15{left:549.053333pt;}
.x2f{left:550.173333pt;}
.x29{left:552.253333pt;}
.x3c{left:554.333333pt;}
.x1d{left:555.613333pt;}
.x23{left:559.133333pt;}
.x4c{left:563.133333pt;}
.x37{left:587.013333pt;}
.x30{left:591.333333pt;}
.x2a{left:593.733333pt;}
.x3d{left:595.973333pt;}
.x1e{left:597.413333pt;}
.x24{left:601.253333pt;}
.x38{left:627.813333pt;}
.x31{left:632.613333pt;}
.x2b{left:635.013333pt;}
.x18{left:636.133333pt;}
.x3e{left:637.573333pt;}
.x1f{left:639.173333pt;}
.x25{left:643.333333pt;}
.x39{left:668.613333pt;}
.x32{left:673.733333pt;}
.x2c{left:676.453333pt;}
.x41{left:678.213333pt;}
.x3f{left:679.173333pt;}
.x20{left:680.933333pt;}
.x26{left:685.413333pt;}
.x4f{left:703.333333pt;}
.x3a{left:709.573333pt;}
.x33{left:715.013333pt;}
.x34{left:716.933333pt;}
.x2d{left:717.893333pt;}
.x42{left:719.813333pt;}
.x40{left:720.773333pt;}
.x21{left:722.693333pt;}
.x27{left:727.493333pt;}
}




    .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; }
  