
    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_460970ca6949bebdcd157355.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_cb8556db4bc4f084b5acdc22.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1d9226a854984f82072810f2.woff')format("woff");}.ff3{font-family:ff3;line-height:0.972656;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_4273230278093d6f73b88d3f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.916016;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_c03338b22a5e42411820d882.woff')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_7ef6f8d826503f773d70c7a4.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_242a5b2b8c50212f76aa1d83.woff')format("woff");}.ff7{font-family:ff7;line-height:1.040039;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_a772891979848fd792bcbd34.woff')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v4{vertical-align:-82.800000px;}
.v2{vertical-align:-27.360000px;}
.v3{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-4.320000px;}
.lse{letter-spacing:-0.936000px;}
.ls8{letter-spacing:-0.720000px;}
.ls10{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.387600px;}
.ls6{letter-spacing:-0.288000px;}
.lsa{letter-spacing:-0.216000px;}
.ls11{letter-spacing:-0.144000px;}
.ls4{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.072000px;}
.ls12{letter-spacing:0.120000px;}
.ls5{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.180000px;}
.ls3{letter-spacing:0.252720px;}
.ls0{letter-spacing:0.360000px;}
.lsc{letter-spacing:0.576000px;}
.lsb{letter-spacing:1.080000px;}
.ls2{letter-spacing:5.760000px;}
.lsf{letter-spacing:734.520000px;}
.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;}
}
.ws6{word-spacing:-28.977840px;}
.ws7{word-spacing:-28.590240px;}
.ws9{word-spacing:-21.060000px;}
.ws2{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws1{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws3{word-spacing:-17.712000px;}
.wse{word-spacing:-17.496000px;}
.ws5{word-spacing:-17.280000px;}
.wsc{word-spacing:-17.064000px;}
.ws4{word-spacing:-13.680000px;}
.wsa{word-spacing:-12.420000px;}
.ws0{word-spacing:-12.060000px;}
.ws8{word-spacing:0.000000px;}
._5{margin-left:-8.496000px;}
._4{margin-left:-5.040000px;}
._6{margin-left:-3.912000px;}
._2{margin-left:-2.184000px;}
._0{margin-left:-1.104000px;}
._1{width:1.548000px;}
._7{width:3.168000px;}
._8{width:4.536000px;}
._3{width:5.760000px;}
._9{width:6.780000px;}
._a{width:8.256000px;}
._f{width:9.780000px;}
._d{width:10.848000px;}
._e{width:11.880000px;}
._1d{width:13.488000px;}
._18{width:14.604000px;}
._15{width:15.984000px;}
._19{width:16.992000px;}
._12{width:19.944000px;}
._b{width:22.248000px;}
._c{width:23.832000px;}
._17{width:24.984000px;}
._10{width:26.784000px;}
._11{width:27.792000px;}
._1c{width:29.352000px;}
._1a{width:30.384000px;}
._1b{width:31.560000px;}
._16{width:35.232000px;}
._14{width:36.264000px;}
._13{width:37.320000px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,32,96);}
.fc5{color:rgb(38,38,38);}
.fc1{color:rgb(0,0,0);}
.fc2{color:rgb(192,0,0);}
.fc0{color:rgb(57,85,160);}
.fs3{font-size:48.240000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.fs4{font-size:120.240000px;}
.y1f{bottom:-30.060000px;}
.y29{bottom:-14.760060px;}
.y24{bottom:-8.820000px;}
.y5{bottom:-6.300000px;}
.y0{bottom:0.000000px;}
.yb1{bottom:3.960000px;}
.yee{bottom:3.990000px;}
.yb4{bottom:4.320000px;}
.yd6{bottom:4.350000px;}
.ye2{bottom:4.365000px;}
.ya6{bottom:6.840000px;}
.y1e{bottom:8.640000px;}
.ya9{bottom:9.000000px;}
.y28{bottom:9.180000px;}
.ya4{bottom:9.540000px;}
.ya8{bottom:13.680000px;}
.yb0{bottom:14.220000px;}
.yec{bottom:14.250000px;}
.ycb{bottom:14.400000px;}
.y23{bottom:14.580000px;}
.yd1{bottom:14.760000px;}
.yd7{bottom:14.790000px;}
.y21{bottom:14.940000px;}
.yc6{bottom:15.120000px;}
.y25{bottom:16.200000px;}
.y4{bottom:17.460000px;}
.y1{bottom:24.480000px;}
.y60{bottom:24.660000px;}
.yed{bottom:24.690000px;}
.yd0{bottom:25.020000px;}
.yd5{bottom:25.050000px;}
.yc2{bottom:26.280000px;}
.y27{bottom:32.940000px;}
.ycf{bottom:36.540000px;}
.ye0{bottom:36.585000px;}
.yb6{bottom:37.080000px;}
.ybc{bottom:37.110000px;}
.ye6{bottom:38.700000px;}
.y3{bottom:41.400000px;}
.yf0{bottom:45.720000px;}
.y5f{bottom:56.340000px;}
.y26{bottom:56.700000px;}
.y1d{bottom:59.790000px;}
.y2{bottom:65.160000px;}
.y6{bottom:76.500000px;}
.y5e{bottom:87.300000px;}
.y2b{bottom:97.920000px;}
.y81{bottom:112.500000px;}
.y9b{bottom:117.720000px;}
.y5d{bottom:118.440000px;}
.y90{bottom:120.420000px;}
.y10c{bottom:127.260000px;}
.y4a{bottom:133.236000px;}
.y114{bottom:138.456000px;}
.yd3{bottom:140.436000px;}
.y80{bottom:143.676000px;}
.y9a{bottom:148.716000px;}
.y5c{bottom:149.400000px;}
.y8f{bottom:151.410000px;}
.y10b{bottom:158.430000px;}
.y115{bottom:159.690000px;}
.yd2{bottom:162.210000px;}
.y49{bottom:164.370000px;}
.y113{bottom:169.410000px;}
.y7f{bottom:174.630000px;}
.y99{bottom:179.850000px;}
.y5b{bottom:180.540000px;}
.y8e{bottom:182.370000px;}
.yce{bottom:183.990000px;}
.y10a{bottom:189.390000px;}
.y48{bottom:195.330000px;}
.y112{bottom:200.550000px;}
.y7e{bottom:205.770000px;}
.y98{bottom:210.810000px;}
.y5a{bottom:211.530000px;}
.y8d{bottom:213.510000px;}
.y109{bottom:220.530000px;}
.y47{bottom:226.470000px;}
.y111{bottom:231.510000px;}
.y7d{bottom:236.730000px;}
.y97{bottom:241.950000px;}
.y59{bottom:242.670000px;}
.y8c{bottom:244.470000px;}
.ycd{bottom:248.430000px;}
.y108{bottom:251.490000px;}
.y46{bottom:257.430000px;}
.y110{bottom:262.650000px;}
.y7c{bottom:267.690000px;}
.ycc{bottom:270.210000px;}
.y96{bottom:272.910000px;}
.y58{bottom:273.630000px;}
.y8b{bottom:275.610000px;}
.y107{bottom:282.630000px;}
.y45{bottom:290.550000px;}
.yca{bottom:291.990000px;}
.y10f{bottom:295.770000px;}
.y7b{bottom:298.830000px;}
.y95{bottom:304.050000px;}
.y57{bottom:304.770000px;}
.yf8{bottom:306.030000px;}
.y8a{bottom:306.570000px;}
.y106{bottom:313.590000px;}
.yf7{bottom:325.830000px;}
.y44{bottom:326.730000px;}
.y7a{bottom:329.790000px;}
.y10e{bottom:331.950000px;}
.y94{bottom:335.010000px;}
.y56{bottom:335.730000px;}
.y89{bottom:337.710000px;}
.y105{bottom:344.730000px;}
.yf6{bottom:347.610000px;}
.y79{bottom:360.930000px;}
.yc9{bottom:361.470000px;}
.y43{bottom:363.090000px;}
.y93{bottom:366.150000px;}
.y55{bottom:366.870000px;}
.y88{bottom:368.715000px;}
.yf5{bottom:369.435000px;}
.y104{bottom:375.735000px;}
.yc8{bottom:379.335000px;}
.y78{bottom:391.935000px;}
.y4b{bottom:397.155000px;}
.y54{bottom:397.830000px;}
.y42{bottom:399.315000px;}
.y87{bottom:399.855000px;}
.yc7{bottom:401.115000px;}
.y103{bottom:406.875000px;}
.yf4{bottom:411.915000px;}
.ya2{bottom:423.075000px;}
.y77{bottom:425.235000px;}
.y92{bottom:428.295000px;}
.y53{bottom:428.970000px;}
.y86{bottom:430.815000px;}
.y41{bottom:435.495000px;}
.y102{bottom:437.835000px;}
.yc5{bottom:444.855000px;}
.y1b{bottom:446.655000px;}
.ya1{bottom:454.035000px;}
.yf3{bottom:454.575000px;}
.y76{bottom:458.895000px;}
.y10d{bottom:459.255000px;}
.y52{bottom:459.975000px;}
.y85{bottom:461.955000px;}
.yc4{bottom:466.635000px;}
.y101{bottom:468.975000px;}
.y40{bottom:471.675000px;}
.ya0{bottom:485.175000px;}
.y1a{bottom:486.255000px;}
.yc1{bottom:488.415000px;}
.y91{bottom:490.035000px;}
.y75{bottom:490.395000px;}
.y51{bottom:491.115000px;}
.y84{bottom:492.915000px;}
.yf2{bottom:497.055000px;}
.y100{bottom:499.935000px;}
.y3f{bottom:508.035000px;}
.yc3{bottom:510.375000px;}
.y9f{bottom:516.135000px;}
.yf1{bottom:518.835000px;}
.y74{bottom:521.355000px;}
.y50{bottom:522.075000px;}
.y83{bottom:524.055000px;}
.y19{bottom:526.035000px;}
.yff{bottom:531.075000px;}
.yc0{bottom:532.155000px;}
.yef{bottom:540.615000px;}
.y3e{bottom:544.215000px;}
.y9e{bottom:547.275000px;}
.y82{bottom:550.695000px;}
.y73{bottom:552.495000px;}
.y4f{bottom:553.215000px;}
.ybf{bottom:553.935000px;}
.yfe{bottom:562.035000px;}
.y18{bottom:565.635000px;}
.ybb{bottom:575.715000px;}
.y9d{bottom:578.235000px;}
.y3d{bottom:580.395000px;}
.y72{bottom:583.455000px;}
.y4e{bottom:584.175000px;}
.yfd{bottom:593.175000px;}
.ybe{bottom:597.495000px;}
.yeb{bottom:603.975000px;}
.y9c{bottom:611.565000px;}
.y3c{bottom:614.265000px;}
.y71{bottom:614.625000px;}
.y4d{bottom:615.315000px;}
.y17{bottom:616.785000px;}
.ybd{bottom:619.485000px;}
.yfc{bottom:626.325000px;}
.yba{bottom:641.265000px;}
.y3b{bottom:645.225000px;}
.y70{bottom:645.585000px;}
.y4c{bottom:645.915000px;}
.y16{bottom:647.745000px;}
.yea{bottom:652.605000px;}
.yfb{bottom:659.985000px;}
.yb9{bottom:663.045000px;}
.y3a{bottom:676.365000px;}
.y6f{bottom:676.725000px;}
.y15{bottom:678.885000px;}
.ye9{bottom:684.105000px;}
.yb5{bottom:684.825000px;}
.yfa{bottom:691.485000px;}
.y14{bottom:702.285000px;}
.yb8{bottom:706.785000px;}
.y39{bottom:707.325000px;}
.y6e{bottom:707.685000px;}
.ye8{bottom:715.065000px;}
.yf9{bottom:718.125000px;}
.y13{bottom:726.405000px;}
.yb7{bottom:728.565000px;}
.ye5{bottom:734.865000px;}
.y38{bottom:738.465000px;}
.y6d{bottom:738.825000px;}
.yb3{bottom:750.345000px;}
.y12{bottom:757.005000px;}
.ye7{bottom:758.985000px;}
.y37{bottom:769.425000px;}
.y6c{bottom:769.785000px;}
.yb2{bottom:772.125000px;}
.y11{bottom:780.765000px;}
.yaf{bottom:794.085000px;}
.y36{bottom:800.385000px;}
.y6b{bottom:800.745000px;}
.ye4{bottom:803.625000px;}
.y10{bottom:804.525000px;}
.ye3{bottom:825.585000px;}
.yf{bottom:828.465000px;}
.y35{bottom:831.525000px;}
.y6a{bottom:831.885000px;}
.ydf{bottom:847.365000px;}
.ye{bottom:852.270000px;}
.yae{bottom:853.530000px;}
.y34{bottom:862.530000px;}
.y69{bottom:862.890000px;}
.ye1{bottom:869.190000px;}
.yd{bottom:875.670000px;}
.yad{bottom:884.490000px;}
.y33{bottom:893.670000px;}
.y68{bottom:894.030000px;}
.yc{bottom:896.730000px;}
.yde{bottom:911.670000px;}
.yac{bottom:915.630000px;}
.yb{bottom:922.470000px;}
.y32{bottom:924.630000px;}
.y67{bottom:924.990000px;}
.yab{bottom:932.730000px;}
.ydd{bottom:933.630000px;}
.ya{bottom:954.330000px;}
.ydb{bottom:955.410000px;}
.y31{bottom:955.770000px;}
.y66{bottom:956.130000px;}
.yaa{bottom:959.370000px;}
.ydc{bottom:977.190000px;}
.y9{bottom:986.010000px;}
.y30{bottom:986.730000px;}
.y65{bottom:987.090000px;}
.ya7{bottom:1012.650000px;}
.y2f{bottom:1017.870000px;}
.y64{bottom:1018.230000px;}
.y8{bottom:1018.590000px;}
.yda{bottom:1019.670000px;}
.yd9{bottom:1041.630000px;}
.ya5{bottom:1043.430000px;}
.y2e{bottom:1048.830000px;}
.y63{bottom:1049.190000px;}
.y1c{bottom:1052.970000px;}
.y7{bottom:1053.870000px;}
.yd8{bottom:1063.410000px;}
.ya3{bottom:1070.070000px;}
.y2d{bottom:1079.970000px;}
.y62{bottom:1080.330000px;}
.yd4{bottom:1085.190000px;}
.y2c{bottom:1110.960000px;}
.y61{bottom:1111.320000px;}
.y2a{bottom:1131.120000px;}
.y22{bottom:1133.280000px;}
.y20{bottom:1133.640000px;}
.h16{height:20.700000px;}
.h19{height:20.736000px;}
.h13{height:25.920000px;}
.h12{height:25.956000px;}
.h14{height:30.060000px;}
.hc{height:33.660000px;}
.hb{height:34.560000px;}
.h15{height:41.400000px;}
.h1d{height:41.436000px;}
.h1b{height:42.480000px;}
.h4{height:58.651172px;}
.h11{height:59.343750px;}
.h21{height:62.100000px;}
.h1a{height:64.440000px;}
.ha{height:65.010937px;}
.h10{height:70.628906px;}
.h3{height:70.664062px;}
.h7{height:72.562500px;}
.hd{height:73.080000px;}
.h6{height:74.704922px;}
.h22{height:74.848922px;}
.h2{height:81.540000px;}
.he{height:84.898125px;}
.h1e{height:84.960000px;}
.h1f{height:84.996000px;}
.h1c{height:85.140000px;}
.h17{height:86.220000px;}
.h18{height:86.256000px;}
.h8{height:87.156000px;}
.h20{height:89.460000px;}
.h9{height:90.884531px;}
.h5{height:96.508125px;}
.hf{height:673.275000px;}
.h1{height:1200.000000px;}
.h0{height:1200.060000px;}
.w5{width:103.896000px;}
.w11{width:115.020000px;}
.w16{width:126.756000px;}
.wc{width:127.476000px;}
.w15{width:127.836000px;}
.w13{width:127.980000px;}
.w14{width:128.016000px;}
.wd{width:128.520000px;}
.we{width:128.556000px;}
.wb{width:138.276000px;}
.w10{width:140.976000px;}
.w12{width:146.196000px;}
.w9{width:151.410000px;}
.wa{width:162.210000px;}
.w8{width:279.210000px;}
.w4{width:619.710000px;}
.w3{width:642.570000px;}
.wf{width:644.910000px;}
.w7{width:704.850000px;}
.w1{width:824.400000px;}
.w6{width:831.600000px;}
.w2{width:899.999987px;}
.w0{width:900.000000px;}
.x0{left:0.000000px;}
.x10{left:1.440000px;}
.x14{left:2.520000px;}
.x2b{left:6.480000px;}
.x1b{left:7.740000px;}
.xf{left:10.800000px;}
.x33{left:13.140000px;}
.x38{left:14.220000px;}
.x2{left:15.300000px;}
.x32{left:16.560000px;}
.x13{left:18.900000px;}
.x3{left:20.880000px;}
.x2e{left:23.760000px;}
.x21{left:25.560000px;}
.x2d{left:28.614000px;}
.x1f{left:30.060000px;}
.x22{left:31.140000px;}
.x28{left:32.580000px;}
.x3f{left:34.014000px;}
.x20{left:35.640000px;}
.x25{left:37.614000px;}
.x27{left:38.700000px;}
.x3d{left:39.954000px;}
.x1{left:41.760000px;}
.x12{left:43.200000px;}
.x2c{left:45.714000px;}
.x34{left:46.974000px;}
.x35{left:48.420000px;}
.x40{left:50.034000px;}
.x2f{left:51.300000px;}
.x30{left:52.374000px;}
.x6{left:57.059987px;}
.x3e{left:59.400000px;}
.x42{left:66.059987px;}
.xb{left:75.419987px;}
.x1a{left:83.376000px;}
.xd{left:85.715987px;}
.x8{left:89.135987px;}
.x18{left:90.575987px;}
.x9{left:98.855987px;}
.x16{left:103.536000px;}
.x37{left:119.556000px;}
.xa{left:124.415987px;}
.x24{left:127.656000px;}
.x36{left:206.129987px;}
.x4{left:213.195000px;}
.xe{left:238.170000px;}
.x23{left:247.889987px;}
.x26{left:256.215000px;}
.x19{left:264.674987px;}
.x39{left:266.835000px;}
.x31{left:269.715000px;}
.x1c{left:363.495000px;}
.x29{left:385.815000px;}
.x3a{left:395.895000px;}
.x5{left:402.225000px;}
.x15{left:405.825000px;}
.xc{left:440.204987px;}
.x1d{left:515.625000px;}
.x3b{left:524.985000px;}
.x2a{left:645.090000px;}
.x3c{left:653.910000px;}
.x1e{left:678.570000px;}
.x11{left:717.990000px;}
.x43{left:768.239987px;}
.x41{left:802.259987px;}
.x7{left:834.119987px;}
.x17{left:843.119987px;}
@media print{
.v4{vertical-align:-73.600000pt;}
.v2{vertical-align:-24.320000pt;}
.v3{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-3.840000pt;}
.lse{letter-spacing:-0.832000pt;}
.ls8{letter-spacing:-0.640000pt;}
.ls10{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.344533pt;}
.ls6{letter-spacing:-0.256000pt;}
.lsa{letter-spacing:-0.192000pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls4{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.064000pt;}
.ls12{letter-spacing:0.106667pt;}
.ls5{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls3{letter-spacing:0.224640pt;}
.ls0{letter-spacing:0.320000pt;}
.lsc{letter-spacing:0.512000pt;}
.lsb{letter-spacing:0.960000pt;}
.ls2{letter-spacing:5.120000pt;}
.lsf{letter-spacing:652.906667pt;}
.ws6{word-spacing:-25.758080pt;}
.ws7{word-spacing:-25.413547pt;}
.ws9{word-spacing:-18.720000pt;}
.ws2{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws1{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws3{word-spacing:-15.744000pt;}
.wse{word-spacing:-15.552000pt;}
.ws5{word-spacing:-15.360000pt;}
.wsc{word-spacing:-15.168000pt;}
.ws4{word-spacing:-12.160000pt;}
.wsa{word-spacing:-11.040000pt;}
.ws0{word-spacing:-10.720000pt;}
.ws8{word-spacing:0.000000pt;}
._5{margin-left:-7.552000pt;}
._4{margin-left:-4.480000pt;}
._6{margin-left:-3.477333pt;}
._2{margin-left:-1.941333pt;}
._0{margin-left:-0.981333pt;}
._1{width:1.376000pt;}
._7{width:2.816000pt;}
._8{width:4.032000pt;}
._3{width:5.120000pt;}
._9{width:6.026667pt;}
._a{width:7.338667pt;}
._f{width:8.693333pt;}
._d{width:9.642667pt;}
._e{width:10.560000pt;}
._1d{width:11.989333pt;}
._18{width:12.981333pt;}
._15{width:14.208000pt;}
._19{width:15.104000pt;}
._12{width:17.728000pt;}
._b{width:19.776000pt;}
._c{width:21.184000pt;}
._17{width:22.208000pt;}
._10{width:23.808000pt;}
._11{width:24.704000pt;}
._1c{width:26.090667pt;}
._1a{width:27.008000pt;}
._1b{width:28.053333pt;}
._16{width:31.317333pt;}
._14{width:32.234667pt;}
._13{width:33.173333pt;}
.fs3{font-size:42.880000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.fs4{font-size:106.880000pt;}
.y1f{bottom:-26.720000pt;}
.y29{bottom:-13.120053pt;}
.y24{bottom:-7.840000pt;}
.y5{bottom:-5.600000pt;}
.y0{bottom:0.000000pt;}
.yb1{bottom:3.520000pt;}
.yee{bottom:3.546667pt;}
.yb4{bottom:3.840000pt;}
.yd6{bottom:3.866667pt;}
.ye2{bottom:3.880000pt;}
.ya6{bottom:6.080000pt;}
.y1e{bottom:7.680000pt;}
.ya9{bottom:8.000000pt;}
.y28{bottom:8.160000pt;}
.ya4{bottom:8.480000pt;}
.ya8{bottom:12.160000pt;}
.yb0{bottom:12.640000pt;}
.yec{bottom:12.666667pt;}
.ycb{bottom:12.800000pt;}
.y23{bottom:12.960000pt;}
.yd1{bottom:13.120000pt;}
.yd7{bottom:13.146667pt;}
.y21{bottom:13.280000pt;}
.yc6{bottom:13.440000pt;}
.y25{bottom:14.400000pt;}
.y4{bottom:15.520000pt;}
.y1{bottom:21.760000pt;}
.y60{bottom:21.920000pt;}
.yed{bottom:21.946667pt;}
.yd0{bottom:22.240000pt;}
.yd5{bottom:22.266667pt;}
.yc2{bottom:23.360000pt;}
.y27{bottom:29.280000pt;}
.ycf{bottom:32.480000pt;}
.ye0{bottom:32.520000pt;}
.yb6{bottom:32.960000pt;}
.ybc{bottom:32.986667pt;}
.ye6{bottom:34.400000pt;}
.y3{bottom:36.800000pt;}
.yf0{bottom:40.640000pt;}
.y5f{bottom:50.080000pt;}
.y26{bottom:50.400000pt;}
.y1d{bottom:53.146667pt;}
.y2{bottom:57.920000pt;}
.y6{bottom:68.000000pt;}
.y5e{bottom:77.600000pt;}
.y2b{bottom:87.040000pt;}
.y81{bottom:100.000000pt;}
.y9b{bottom:104.640000pt;}
.y5d{bottom:105.280000pt;}
.y90{bottom:107.040000pt;}
.y10c{bottom:113.120000pt;}
.y4a{bottom:118.432000pt;}
.y114{bottom:123.072000pt;}
.yd3{bottom:124.832000pt;}
.y80{bottom:127.712000pt;}
.y9a{bottom:132.192000pt;}
.y5c{bottom:132.800000pt;}
.y8f{bottom:134.586667pt;}
.y10b{bottom:140.826667pt;}
.y115{bottom:141.946667pt;}
.yd2{bottom:144.186667pt;}
.y49{bottom:146.106667pt;}
.y113{bottom:150.586667pt;}
.y7f{bottom:155.226667pt;}
.y99{bottom:159.866667pt;}
.y5b{bottom:160.480000pt;}
.y8e{bottom:162.106667pt;}
.yce{bottom:163.546667pt;}
.y10a{bottom:168.346667pt;}
.y48{bottom:173.626667pt;}
.y112{bottom:178.266667pt;}
.y7e{bottom:182.906667pt;}
.y98{bottom:187.386667pt;}
.y5a{bottom:188.026667pt;}
.y8d{bottom:189.786667pt;}
.y109{bottom:196.026667pt;}
.y47{bottom:201.306667pt;}
.y111{bottom:205.786667pt;}
.y7d{bottom:210.426667pt;}
.y97{bottom:215.066667pt;}
.y59{bottom:215.706667pt;}
.y8c{bottom:217.306667pt;}
.ycd{bottom:220.826667pt;}
.y108{bottom:223.546667pt;}
.y46{bottom:228.826667pt;}
.y110{bottom:233.466667pt;}
.y7c{bottom:237.946667pt;}
.ycc{bottom:240.186667pt;}
.y96{bottom:242.586667pt;}
.y58{bottom:243.226667pt;}
.y8b{bottom:244.986667pt;}
.y107{bottom:251.226667pt;}
.y45{bottom:258.266667pt;}
.yca{bottom:259.546667pt;}
.y10f{bottom:262.906667pt;}
.y7b{bottom:265.626667pt;}
.y95{bottom:270.266667pt;}
.y57{bottom:270.906667pt;}
.yf8{bottom:272.026667pt;}
.y8a{bottom:272.506667pt;}
.y106{bottom:278.746667pt;}
.yf7{bottom:289.626667pt;}
.y44{bottom:290.426667pt;}
.y7a{bottom:293.146667pt;}
.y10e{bottom:295.066667pt;}
.y94{bottom:297.786667pt;}
.y56{bottom:298.426667pt;}
.y89{bottom:300.186667pt;}
.y105{bottom:306.426667pt;}
.yf6{bottom:308.986667pt;}
.y79{bottom:320.826667pt;}
.yc9{bottom:321.306667pt;}
.y43{bottom:322.746667pt;}
.y93{bottom:325.466667pt;}
.y55{bottom:326.106667pt;}
.y88{bottom:327.746667pt;}
.yf5{bottom:328.386667pt;}
.y104{bottom:333.986667pt;}
.yc8{bottom:337.186667pt;}
.y78{bottom:348.386667pt;}
.y4b{bottom:353.026667pt;}
.y54{bottom:353.626667pt;}
.y42{bottom:354.946667pt;}
.y87{bottom:355.426667pt;}
.yc7{bottom:356.546667pt;}
.y103{bottom:361.666667pt;}
.yf4{bottom:366.146667pt;}
.ya2{bottom:376.066667pt;}
.y77{bottom:377.986667pt;}
.y92{bottom:380.706667pt;}
.y53{bottom:381.306667pt;}
.y86{bottom:382.946667pt;}
.y41{bottom:387.106667pt;}
.y102{bottom:389.186667pt;}
.yc5{bottom:395.426667pt;}
.y1b{bottom:397.026667pt;}
.ya1{bottom:403.586667pt;}
.yf3{bottom:404.066667pt;}
.y76{bottom:407.906667pt;}
.y10d{bottom:408.226667pt;}
.y52{bottom:408.866667pt;}
.y85{bottom:410.626667pt;}
.yc4{bottom:414.786667pt;}
.y101{bottom:416.866667pt;}
.y40{bottom:419.266667pt;}
.ya0{bottom:431.266667pt;}
.y1a{bottom:432.226667pt;}
.yc1{bottom:434.146667pt;}
.y91{bottom:435.586667pt;}
.y75{bottom:435.906667pt;}
.y51{bottom:436.546667pt;}
.y84{bottom:438.146667pt;}
.yf2{bottom:441.826667pt;}
.y100{bottom:444.386667pt;}
.y3f{bottom:451.586667pt;}
.yc3{bottom:453.666667pt;}
.y9f{bottom:458.786667pt;}
.yf1{bottom:461.186667pt;}
.y74{bottom:463.426667pt;}
.y50{bottom:464.066667pt;}
.y83{bottom:465.826667pt;}
.y19{bottom:467.586667pt;}
.yff{bottom:472.066667pt;}
.yc0{bottom:473.026667pt;}
.yef{bottom:480.546667pt;}
.y3e{bottom:483.746667pt;}
.y9e{bottom:486.466667pt;}
.y82{bottom:489.506667pt;}
.y73{bottom:491.106667pt;}
.y4f{bottom:491.746667pt;}
.ybf{bottom:492.386667pt;}
.yfe{bottom:499.586667pt;}
.y18{bottom:502.786667pt;}
.ybb{bottom:511.746667pt;}
.y9d{bottom:513.986667pt;}
.y3d{bottom:515.906667pt;}
.y72{bottom:518.626667pt;}
.y4e{bottom:519.266667pt;}
.yfd{bottom:527.266667pt;}
.ybe{bottom:531.106667pt;}
.yeb{bottom:536.866667pt;}
.y9c{bottom:543.613333pt;}
.y3c{bottom:546.013333pt;}
.y71{bottom:546.333333pt;}
.y4d{bottom:546.946667pt;}
.y17{bottom:548.253333pt;}
.ybd{bottom:550.653333pt;}
.yfc{bottom:556.733333pt;}
.yba{bottom:570.013333pt;}
.y3b{bottom:573.533333pt;}
.y70{bottom:573.853333pt;}
.y4c{bottom:574.146667pt;}
.y16{bottom:575.773333pt;}
.yea{bottom:580.093333pt;}
.yfb{bottom:586.653333pt;}
.yb9{bottom:589.373333pt;}
.y3a{bottom:601.213333pt;}
.y6f{bottom:601.533333pt;}
.y15{bottom:603.453333pt;}
.ye9{bottom:608.093333pt;}
.yb5{bottom:608.733333pt;}
.yfa{bottom:614.653333pt;}
.y14{bottom:624.253333pt;}
.yb8{bottom:628.253333pt;}
.y39{bottom:628.733333pt;}
.y6e{bottom:629.053333pt;}
.ye8{bottom:635.613333pt;}
.yf9{bottom:638.333333pt;}
.y13{bottom:645.693333pt;}
.yb7{bottom:647.613333pt;}
.ye5{bottom:653.213333pt;}
.y38{bottom:656.413333pt;}
.y6d{bottom:656.733333pt;}
.yb3{bottom:666.973333pt;}
.y12{bottom:672.893333pt;}
.ye7{bottom:674.653333pt;}
.y37{bottom:683.933333pt;}
.y6c{bottom:684.253333pt;}
.yb2{bottom:686.333333pt;}
.y11{bottom:694.013333pt;}
.yaf{bottom:705.853333pt;}
.y36{bottom:711.453333pt;}
.y6b{bottom:711.773333pt;}
.ye4{bottom:714.333333pt;}
.y10{bottom:715.133333pt;}
.ye3{bottom:733.853333pt;}
.yf{bottom:736.413333pt;}
.y35{bottom:739.133333pt;}
.y6a{bottom:739.453333pt;}
.ydf{bottom:753.213333pt;}
.ye{bottom:757.573333pt;}
.yae{bottom:758.693333pt;}
.y34{bottom:766.693333pt;}
.y69{bottom:767.013333pt;}
.ye1{bottom:772.613333pt;}
.yd{bottom:778.373333pt;}
.yad{bottom:786.213333pt;}
.y33{bottom:794.373333pt;}
.y68{bottom:794.693333pt;}
.yc{bottom:797.093333pt;}
.yde{bottom:810.373333pt;}
.yac{bottom:813.893333pt;}
.yb{bottom:819.973333pt;}
.y32{bottom:821.893333pt;}
.y67{bottom:822.213333pt;}
.yab{bottom:829.093333pt;}
.ydd{bottom:829.893333pt;}
.ya{bottom:848.293333pt;}
.ydb{bottom:849.253333pt;}
.y31{bottom:849.573333pt;}
.y66{bottom:849.893333pt;}
.yaa{bottom:852.773333pt;}
.ydc{bottom:868.613333pt;}
.y9{bottom:876.453333pt;}
.y30{bottom:877.093333pt;}
.y65{bottom:877.413333pt;}
.ya7{bottom:900.133333pt;}
.y2f{bottom:904.773333pt;}
.y64{bottom:905.093333pt;}
.y8{bottom:905.413333pt;}
.yda{bottom:906.373333pt;}
.yd9{bottom:925.893333pt;}
.ya5{bottom:927.493333pt;}
.y2e{bottom:932.293333pt;}
.y63{bottom:932.613333pt;}
.y1c{bottom:935.973333pt;}
.y7{bottom:936.773333pt;}
.yd8{bottom:945.253333pt;}
.ya3{bottom:951.173333pt;}
.y2d{bottom:959.973333pt;}
.y62{bottom:960.293333pt;}
.yd4{bottom:964.613333pt;}
.y2c{bottom:987.520000pt;}
.y61{bottom:987.840000pt;}
.y2a{bottom:1005.440000pt;}
.y22{bottom:1007.360000pt;}
.y20{bottom:1007.680000pt;}
.h16{height:18.400000pt;}
.h19{height:18.432000pt;}
.h13{height:23.040000pt;}
.h12{height:23.072000pt;}
.h14{height:26.720000pt;}
.hc{height:29.920000pt;}
.hb{height:30.720000pt;}
.h15{height:36.800000pt;}
.h1d{height:36.832000pt;}
.h1b{height:37.760000pt;}
.h4{height:52.134375pt;}
.h11{height:52.750000pt;}
.h21{height:55.200000pt;}
.h1a{height:57.280000pt;}
.ha{height:57.787500pt;}
.h10{height:62.781250pt;}
.h3{height:62.812500pt;}
.h7{height:64.500000pt;}
.hd{height:64.960000pt;}
.h6{height:66.404375pt;}
.h22{height:66.532375pt;}
.h2{height:72.480000pt;}
.he{height:75.465000pt;}
.h1e{height:75.520000pt;}
.h1f{height:75.552000pt;}
.h1c{height:75.680000pt;}
.h17{height:76.640000pt;}
.h18{height:76.672000pt;}
.h8{height:77.472000pt;}
.h20{height:79.520000pt;}
.h9{height:80.786250pt;}
.h5{height:85.785000pt;}
.hf{height:598.466667pt;}
.h1{height:1066.666667pt;}
.h0{height:1066.720000pt;}
.w5{width:92.352000pt;}
.w11{width:102.240000pt;}
.w16{width:112.672000pt;}
.wc{width:113.312000pt;}
.w15{width:113.632000pt;}
.w13{width:113.760000pt;}
.w14{width:113.792000pt;}
.wd{width:114.240000pt;}
.we{width:114.272000pt;}
.wb{width:122.912000pt;}
.w10{width:125.312000pt;}
.w12{width:129.952000pt;}
.w9{width:134.586667pt;}
.wa{width:144.186667pt;}
.w8{width:248.186667pt;}
.w4{width:550.853333pt;}
.w3{width:571.173333pt;}
.wf{width:573.253333pt;}
.w7{width:626.533333pt;}
.w1{width:732.800000pt;}
.w6{width:739.200000pt;}
.w2{width:799.999988pt;}
.w0{width:800.000000pt;}
.x0{left:0.000000pt;}
.x10{left:1.280000pt;}
.x14{left:2.240000pt;}
.x2b{left:5.760000pt;}
.x1b{left:6.880000pt;}
.xf{left:9.600000pt;}
.x33{left:11.680000pt;}
.x38{left:12.640000pt;}
.x2{left:13.600000pt;}
.x32{left:14.720000pt;}
.x13{left:16.800000pt;}
.x3{left:18.560000pt;}
.x2e{left:21.120000pt;}
.x21{left:22.720000pt;}
.x2d{left:25.434667pt;}
.x1f{left:26.720000pt;}
.x22{left:27.680000pt;}
.x28{left:28.960000pt;}
.x3f{left:30.234667pt;}
.x20{left:31.680000pt;}
.x25{left:33.434667pt;}
.x27{left:34.400000pt;}
.x3d{left:35.514667pt;}
.x1{left:37.120000pt;}
.x12{left:38.400000pt;}
.x2c{left:40.634667pt;}
.x34{left:41.754667pt;}
.x35{left:43.040000pt;}
.x40{left:44.474667pt;}
.x2f{left:45.600000pt;}
.x30{left:46.554667pt;}
.x6{left:50.719988pt;}
.x3e{left:52.800000pt;}
.x42{left:58.719988pt;}
.xb{left:67.039988pt;}
.x1a{left:74.112000pt;}
.xd{left:76.191988pt;}
.x8{left:79.231988pt;}
.x18{left:80.511988pt;}
.x9{left:87.871988pt;}
.x16{left:92.032000pt;}
.x37{left:106.272000pt;}
.xa{left:110.591988pt;}
.x24{left:113.472000pt;}
.x36{left:183.226655pt;}
.x4{left:189.506667pt;}
.xe{left:211.706667pt;}
.x23{left:220.346655pt;}
.x26{left:227.746667pt;}
.x19{left:235.266655pt;}
.x39{left:237.186667pt;}
.x31{left:239.746667pt;}
.x1c{left:323.106667pt;}
.x29{left:342.946667pt;}
.x3a{left:351.906667pt;}
.x5{left:357.533333pt;}
.x15{left:360.733333pt;}
.xc{left:391.293321pt;}
.x1d{left:458.333333pt;}
.x3b{left:466.653333pt;}
.x2a{left:573.413333pt;}
.x3c{left:581.253333pt;}
.x1e{left:603.173333pt;}
.x11{left:638.213333pt;}
.x43{left:682.879988pt;}
.x41{left:713.119988pt;}
.x7{left:741.439988pt;}
.x17{left:749.439988pt;}
}




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