
    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_ad372021c0453132af47087a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.680664;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_d676d93c20bfad9f626e56ad.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.932129;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_97789faf8f91bbe384ab4f9e.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.098633;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_0e0cbf8233baaec4662420d6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916992;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_45d6334c6addbccecdcfc316.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.936523;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;}
.m4{transform:matrix(0.140728,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.140728,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.140728,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.159505,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.160425,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.165873,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165873,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165873,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.165953,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.165953,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.165953,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-ms-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,0);-webkit-transform:matrix(0.241482,0.000000,-0.064703,0.241482,0,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);}
.v1{vertical-align:-46.260000px;}
.v7{vertical-align:-44.898000px;}
.v2{vertical-align:-43.710000px;}
.v3{vertical-align:-42.012000px;}
.v6{vertical-align:-40.134000px;}
.v5{vertical-align:-38.268000px;}
.v4{vertical-align:-36.054000px;}
.va{vertical-align:-33.678000px;}
.v9{vertical-align:-32.484000px;}
.vb{vertical-align:-10.884000px;}
.v8{vertical-align:-8.334000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:10.884000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.283356px;}
.ls7{letter-spacing:1.788360px;}
.ls3{letter-spacing:3.660360px;}
.lsd{letter-spacing:6.036360px;}
.lsa{letter-spacing:6.042360px;}
.ls6{letter-spacing:6.817320px;}
.ls2{letter-spacing:19.559796px;}
.ls5{letter-spacing:21.256272px;}
.ls4{letter-spacing:22.948272px;}
.ls8{letter-spacing:22.954272px;}
.lsc{letter-spacing:32.665524px;}
.ls9{letter-spacing:32.671524px;}
.lsb{letter-spacing:34.369524px;}
.lse{letter-spacing:34.537524px;}
.ls13{letter-spacing:60.191748px;}
.ls14{letter-spacing:63.477168px;}
.ls11{letter-spacing:66.051492px;}
.ls10{letter-spacing:74.158332px;}
.lsf{letter-spacing:80.178288px;}
.ls12{letter-spacing:82.890768px;}
.ls1{letter-spacing:84.470400px;}
.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;}
}
.wsd{word-spacing:-73.118028px;}
.ws0{word-spacing:-53.188986px;}
.ws10{word-spacing:-52.010628px;}
.wse{word-spacing:-46.216896px;}
.wsf{word-spacing:-41.363856px;}
.ws13{word-spacing:-39.244806px;}
.ws12{word-spacing:-37.218828px;}
.ws1{word-spacing:-29.916000px;}
.ws6{word-spacing:-27.765000px;}
.ws14{word-spacing:-22.754442px;}
.ws11{word-spacing:-17.289786px;}
.ws3{word-spacing:-0.111060px;}
.ws9{word-spacing:-0.066672px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:16.696860px;}
.wsb{word-spacing:16.742160px;}
.ws7{word-spacing:16.864860px;}
.ws4{word-spacing:17.420160px;}
.wsc{word-spacing:30.945180px;}
.ws5{word-spacing:31.010940px;}
.ws8{word-spacing:31.016940px;}
._4{margin-left:-20.258628px;}
._3{margin-left:-13.918956px;}
._b{margin-left:-12.767952px;}
._7{margin-left:-10.897224px;}
._8{margin-left:-7.585116px;}
._6{margin-left:-6.048000px;}
._2{margin-left:-4.319676px;}
._c{margin-left:-2.792040px;}
._1{margin-left:-1.199910px;}
._5{width:1.053750px;}
._d{width:3.696438px;}
._a{width:12.024180px;}
._9{width:14.018880px;}
._0{width:2113.657500px;}
.fc2{color:rgb(201,33,30);}
.fc3{color:rgb(255,64,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fs19{font-size:59.358000px;}
.fs18{font-size:62.418000px;}
.fs1b{font-size:62.928000px;}
.fsf{font-size:66.672000px;}
.fs14{font-size:67.182000px;}
.fs12{font-size:74.322000px;}
.fs10{font-size:80.448000px;}
.fs1d{font-size:82.146000px;}
.fs0{font-size:84.018000px;}
.fs16{font-size:84.528000px;}
.fs5{font-size:86.400000px;}
.fs3{font-size:108.000000px;}
.fs7{font-size:111.060000px;}
.fsd{font-size:114.977508px;}
.fs1a{font-size:134.364000px;}
.fs1c{font-size:141.678000px;}
.fs15{font-size:149.328000px;}
.fs13{font-size:166.848000px;}
.fs11{font-size:179.946000px;}
.fs6{font-size:185.388000px;}
.fs17{font-size:187.764000px;}
.fs9{font-size:191.927339px;}
.fs2{font-size:192.018000px;}
.fs1{font-size:239.982000px;}
.fs4{font-size:263.964000px;}
.fs8{font-size:338.964000px;}
.fsa{font-size:354.612000px;}
.fse{font-size:418.734000px;}
.fsc{font-size:421.284000px;}
.fsb{font-size:477.072000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y12{bottom:11.011500px;}
.y80{bottom:18.793500px;}
.y64{bottom:20.154000px;}
.y20{bottom:20.281500px;}
.y2f{bottom:20.409000px;}
.y51{bottom:20.620500px;}
.y33{bottom:21.939000px;}
.y44{bottom:23.002500px;}
.y58{bottom:23.173500px;}
.y15{bottom:23.299500px;}
.y25{bottom:23.386500px;}
.y39{bottom:23.725500px;}
.y7c{bottom:24.022500px;}
.y4b{bottom:29.635500px;}
.y5f{bottom:29.763000px;}
.y2b{bottom:29.848500px;}
.y1b{bottom:29.890500px;}
.y66{bottom:30.231000px;}
.y31{bottom:30.316500px;}
.y22{bottom:30.358500px;}
.y53{bottom:30.528000px;}
.y50{bottom:31.123500px;}
.y63{bottom:31.251000px;}
.y2e{bottom:31.336500px;}
.y1f{bottom:31.422000px;}
.y2c{bottom:32.868000px;}
.y1d{bottom:32.910000px;}
.y4d{bottom:35.631000px;}
.y60{bottom:35.758500px;}
.y3e{bottom:35.844000px;}
.y3a{bottom:35.886000px;}
.y5e{bottom:40.266000px;}
.y2a{bottom:40.351500px;}
.y1a{bottom:40.393500px;}
.y4a{bottom:40.563000px;}
.y2{bottom:40.989000px;}
.y17{bottom:41.286000px;}
.y27{bottom:41.413500px;}
.y46{bottom:45.070500px;}
.y5a{bottom:45.240000px;}
.ya4{bottom:45.793500px;}
.y26{bottom:54.297000px;}
.y16{bottom:54.339000px;}
.y45{bottom:54.510000px;}
.y59{bottom:54.679500px;}
.y8{bottom:59.739000px;}
.yb9{bottom:61.228500px;}
.y4f{bottom:72.537000px;}
.y62{bottom:72.666000px;}
.y3c{bottom:72.793500px;}
.y40{bottom:72.879000px;}
.y2d{bottom:73.813500px;}
.y1e{bottom:73.855500px;}
.y5c{bottom:74.749500px;}
.y48{bottom:75.088500px;}
.y19{bottom:77.299500px;}
.y29{bottom:77.386500px;}
.y5d{bottom:79.723500px;}
.y49{bottom:80.020500px;}
.y57{bottom:81.211500px;}
.y24{bottom:81.297000px;}
.y14{bottom:81.339000px;}
.y43{bottom:81.510000px;}
.y3b{bottom:81.807000px;}
.y3f{bottom:81.892500px;}
.y4e{bottom:82.104000px;}
.y61{bottom:82.275000px;}
.ya1{bottom:83.295000px;}
.y18{bottom:87.802500px;}
.y28{bottom:87.888000px;}
.y6e{bottom:87.930000px;}
.y54{bottom:88.143000px;}
.y67{bottom:88.270500px;}
.y8a{bottom:90.183000px;}
.y47{bottom:90.523500px;}
.y5b{bottom:90.651000px;}
.y21{bottom:96.816000px;}
.y30{bottom:96.903000px;}
.yb8{bottom:100.983000px;}
.y52{bottom:105.064500px;}
.y65{bottom:105.235500px;}
.y41{bottom:105.279000px;}
.y3d{bottom:105.363000px;}
.y55{bottom:111.060000px;}
.y68{bottom:111.231000px;}
.y32{bottom:111.316500px;}
.y1c{bottom:111.358500px;}
.y4c{bottom:114.079500px;}
.y99{bottom:114.505500px;}
.y81{bottom:126.793500px;}
.y92{bottom:129.046500px;}
.ya0{bottom:136.701000px;}
.y6d{bottom:138.061500px;}
.y89{bottom:146.734500px;}
.yb7{bottom:148.989000px;}
.y56{bottom:154.813500px;}
.y7{bottom:156.642000px;}
.y23{bottom:156.684000px;}
.yf{bottom:159.789000px;}
.yad{bottom:162.510000px;}
.y98{bottom:166.846500px;}
.y76{bottom:174.330000px;}
.y91{bottom:179.602500px;}
.y6c{bottom:188.277000px;}
.y9f{bottom:190.233000px;}
.yb6{bottom:195.930000px;}
.y88{bottom:201.628500px;}
.y75{bottom:204.646500px;}
.yac{bottom:207.793500px;}
.y6{bottom:210.472500px;}
.y97{bottom:219.358500px;}
.y10{bottom:221.739000px;}
.ye{bottom:224.758500px;}
.y90{bottom:228.798000px;}
.y74{bottom:234.793500px;}
.y9e{bottom:243.637500px;}
.yb5{bottom:244.105500px;}
.yb0{bottom:245.295000px;}
.y6b{bottom:249.334500px;}
.yab{bottom:251.886000px;}
.y87{bottom:258.051000px;}
.y11{bottom:261.793500px;}
.y7b{bottom:266.725500px;}
.y8f{bottom:279.354000px;}
.y96{bottom:282.925500px;}
.ya6{bottom:284.286000px;}
.y38{bottom:290.877000px;}
.y9d{bottom:297.042000px;}
.yaa{bottom:297.211500px;}
.yaf{bottom:299.125500px;}
.yd{bottom:299.422500px;}
.y5{bottom:301.251000px;}
.y6a{bottom:308.734500px;}
.y35{bottom:311.158500px;}
.y86{bottom:312.945000px;}
.y37{bottom:321.022500px;}
.y9b{bottom:321.789000px;}
.y8e{bottom:328.549500px;}
.y7a{bottom:331.695000px;}
.yb4{bottom:339.051000px;}
.y34{bottom:341.305500px;}
.y95{bottom:344.877000px;}
.ya5{bottom:349.255500px;}
.y36{bottom:351.339000px;}
.yae{bottom:352.998000px;}
.y9c{bottom:362.011500px;}
.yc{bottom:362.734500px;}
.y42{bottom:368.560500px;}
.y85{bottom:369.325500px;}
.y69{bottom:369.793500px;}
.y13{bottom:371.281500px;}
.y8d{bottom:379.105500px;}
.ya9{bottom:386.589000px;}
.yb3{bottom:394.411500px;}
.ya2{bottom:398.281500px;}
.y79{bottom:406.402500px;}
.y94{bottom:408.655500px;}
.y4{bottom:411.505500px;}
.yb{bottom:416.139000px;}
.ya3{bottom:423.793500px;}
.y84{bottom:434.295000px;}
.y8c{bottom:437.272500px;}
.ya8{bottom:438.633000px;}
.y7f{bottom:440.758500px;}
.yb2{bottom:441.354000px;}
.y70{bottom:462.486000px;}
.y3{bottom:478.389000px;}
.y83{bottom:480.472500px;}
.ya{bottom:481.110000px;}
.y93{bottom:481.833000px;}
.y9a{bottom:488.295000px;}
.yb1{bottom:489.358500px;}
.ya7{bottom:490.846500px;}
.y6f{bottom:492.633000px;}
.y7e{bottom:514.530000px;}
.y77{bottom:537.958500px;}
.y78{bottom:545.739000px;}
.y82{bottom:554.286000px;}
.y73{bottom:556.072500px;}
.y8b{bottom:556.539000px;}
.y9{bottom:564.193500px;}
.y72{bottom:586.261500px;}
.y7d{bottom:588.345000px;}
.y71{bottom:589.705500px;}
.h19{height:46.943859px;}
.h3{height:55.998325px;}
.h29{height:64.877414px;}
.h2a{height:65.045414px;}
.h2e{height:68.305207px;}
.h30{height:68.473207px;}
.h2f{height:68.479207px;}
.h2c{height:68.983207px;}
.h31{height:69.151207px;}
.h22{height:72.144469px;}
.h24{height:72.150469px;}
.h21{height:72.318469px;}
.h11{height:74.021924px;}
.h10{height:78.197520px;}
.h6{height:78.257812px;}
.h20{height:80.591625px;}
.h1d{height:80.765625px;}
.h1e{height:81.443625px;}
.h1b{height:87.190559px;}
.h25{height:90.473555px;}
.h26{height:90.479555px;}
.h28{height:91.157555px;}
.h8{height:92.878043px;}
.ha{height:93.388043px;}
.h9{height:93.562043px;}
.h13{height:95.821787px;}
.h2b{height:97.361414px;}
.h16{height:99.201786px;}
.h2d{height:102.661207px;}
.h23{height:108.204469px;}
.h1f{height:120.899625px;}
.h1c{height:130.390559px;}
.hc{height:130.531980px;}
.hb{height:135.849000px;}
.h27{height:136.055555px;}
.h1a{height:137.721000px;}
.h17{height:138.571500px;}
.h5{height:139.138043px;}
.hd{height:159.951463px;}
.hf{height:165.593559px;}
.h4{height:173.893207px;}
.h7{height:191.270789px;}
.he{height:292.455756px;}
.h12{height:305.956740px;}
.h18{height:361.280751px;}
.h15{height:363.480873px;}
.h14{height:411.614367px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w4{width:596.721000px;}
.w3{width:626.016000px;}
.w6{width:650.635500px;}
.w5{width:679.932000px;}
.w8{width:699.618000px;}
.w7{width:728.914500px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x12{left:11.481000px;}
.x11{left:18.964500px;}
.x87{left:22.663500px;}
.x96{left:27.595500px;}
.x95{left:32.103000px;}
.x2{left:34.483500px;}
.xd{left:37.630500px;}
.x77{left:38.991000px;}
.xb{left:40.947000px;}
.x8c{left:42.307500px;}
.x8b{left:48.132000px;}
.x1{left:59.569500px;}
.x27{left:61.483500px;}
.x51{left:64.630500px;}
.x97{left:68.413500px;}
.x89{left:69.435000px;}
.x85{left:70.668000px;}
.x8{left:72.283500px;}
.x13{left:75.090000px;}
.x93{left:76.492500px;}
.x8d{left:79.809000px;}
.x64{left:96.009000px;}
.x28{left:97.030500px;}
.x8a{left:99.283500px;}
.x86{left:103.960500px;}
.x52{left:109.404000px;}
.x9{left:110.551500px;}
.x6{left:113.230500px;}
.x94{left:114.760500px;}
.x29{left:118.503000px;}
.x84{left:121.351500px;}
.x65{left:125.560500px;}
.x16{left:131.938500px;}
.x53{left:138.955500px;}
.x69{left:142.951500px;}
.x66{left:144.013500px;}
.x14{left:146.013000px;}
.x2a{left:150.435000px;}
.x54{left:157.408500px;}
.xf{left:161.830500px;}
.x17{left:163.999500px;}
.x88{left:170.716500px;}
.x38{left:172.630500px;}
.x6a{left:175.053000px;}
.x15{left:177.988500px;}
.x57{left:188.490000px;}
.x67{left:193.507500px;}
.x55{left:206.901000px;}
.x90{left:211.195500px;}
.x79{left:216.892500px;}
.x8f{left:218.380500px;}
.x7e{left:224.248500px;}
.x68{left:225.439500px;}
.x2b{left:231.435000px;}
.x56{left:239.004000px;}
.x26{left:243.000000px;}
.x18{left:244.999500px;}
.x10{left:246.231000px;}
.x2c{left:250.059000px;}
.x78{left:251.121000px;}
.x19{left:261.964500px;}
.x98{left:271.488000px;}
.xa{left:277.483500px;}
.x48{left:279.013500px;}
.x2d{left:284.541000px;}
.x58{left:291.090000px;}
.x6b{left:298.488000px;}
.x1c{left:304.399500px;}
.x3a{left:306.949500px;}
.x2f{left:307.969500px;}
.x59{left:311.032500px;}
.x1a{left:312.052500px;}
.x2e{left:315.453000px;}
.x49{left:319.068000px;}
.x3{left:321.321000px;}
.x5a{left:325.999500px;}
.x6c{left:328.039500px;}
.x3e{left:331.399500px;}
.x1d{left:335.481000px;}
.x30{left:340.030500px;}
.x1b{left:342.964500px;}
.x92{left:344.239500px;}
.x3b{left:346.408500px;}
.x6f{left:352.956000px;}
.x5b{left:356.017500px;}
.x31{left:359.547000px;}
.x3f{left:362.481000px;}
.x1e{left:368.008500px;}
.x3c{left:371.452500px;}
.x32{left:375.448500px;}
.x7a{left:378.169500px;}
.x5d{left:380.466000px;}
.x70{left:383.995500px;}
.x1f{left:387.525000px;}
.x7d{left:388.630500px;}
.x5{left:390.160500px;}
.x6d{left:393.009000px;}
.x40{left:395.008500px;}
.x3d{left:402.534000px;}
.x20{left:403.555500px;}
.x4a{left:411.463500px;}
.x33{left:412.951500px;}
.x71{left:415.969500px;}
.x7{left:418.819500px;}
.x5c{left:420.520500px;}
.x6e{left:424.048500px;}
.x4b{left:429.448500px;}
.x41{left:439.399500px;}
.x35{left:441.013500px;}
.x21{left:443.013000px;}
.x4{left:451.516500px;}
.x34{left:454.960500px;}
.x42{left:456.960000px;}
.x72{left:460.488000px;}
.x4c{left:466.951500px;}
.x23{left:470.905500px;}
.x73{left:478.516500px;}
.x22{left:484.555500px;}
.x5e{left:488.466000px;}
.x4e{left:495.013500px;}
.x43{left:496.588500px;}
.x5f{left:506.028000px;}
.x4d{left:508.960500px;}
.x74{left:516.019500px;}
.x45{left:524.481000px;}
.x36{left:537.448500px;}
.x44{left:538.555500px;}
.x75{left:544.039500px;}
.x60{left:545.485500px;}
.x37{left:557.560500px;}
.x24{left:567.085500px;}
.x61{left:573.505500px;}
.x7b{left:577.630500px;}
.x25{left:586.560000px;}
.x4f{left:591.448500px;}
.x8e{left:598.635000px;}
.x50{left:611.560500px;}
.x46{left:621.085500px;}
.x47{left:640.560000px;}
.x76{left:660.459000px;}
.x62{left:669.982500px;}
.x63{left:689.457000px;}
.x82{left:808.639500px;}
.x7c{left:839.551500px;}
.x80{left:859.492500px;}
.x39{left:870.165000px;}
.xc{left:874.630500px;}
.x81{left:877.819500px;}
.x7f{left:880.369500px;}
.x83{left:928.630500px;}
.x91{left:952.780500px;}
.xe{left:955.630500px;}
@media print{
.v1{vertical-align:-41.120000pt;}
.v7{vertical-align:-39.909333pt;}
.v2{vertical-align:-38.853333pt;}
.v3{vertical-align:-37.344000pt;}
.v6{vertical-align:-35.674667pt;}
.v5{vertical-align:-34.016000pt;}
.v4{vertical-align:-32.048000pt;}
.va{vertical-align:-29.936000pt;}
.v9{vertical-align:-28.874667pt;}
.vb{vertical-align:-9.674667pt;}
.v8{vertical-align:-7.408000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:9.674667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.251872pt;}
.ls7{letter-spacing:1.589653pt;}
.ls3{letter-spacing:3.253653pt;}
.lsd{letter-spacing:5.365653pt;}
.lsa{letter-spacing:5.370987pt;}
.ls6{letter-spacing:6.059840pt;}
.ls2{letter-spacing:17.386485pt;}
.ls5{letter-spacing:18.894464pt;}
.ls4{letter-spacing:20.398464pt;}
.ls8{letter-spacing:20.403797pt;}
.lsc{letter-spacing:29.036021pt;}
.ls9{letter-spacing:29.041355pt;}
.lsb{letter-spacing:30.550688pt;}
.lse{letter-spacing:30.700021pt;}
.ls13{letter-spacing:53.503776pt;}
.ls14{letter-spacing:56.424149pt;}
.ls11{letter-spacing:58.712437pt;}
.ls10{letter-spacing:65.918517pt;}
.lsf{letter-spacing:71.269589pt;}
.ls12{letter-spacing:73.680683pt;}
.ls1{letter-spacing:75.084800pt;}
.wsd{word-spacing:-64.993803pt;}
.ws0{word-spacing:-47.279099pt;}
.ws10{word-spacing:-46.231669pt;}
.wse{word-spacing:-41.081685pt;}
.wsf{word-spacing:-36.767872pt;}
.ws13{word-spacing:-34.884272pt;}
.ws12{word-spacing:-33.083403pt;}
.ws1{word-spacing:-26.592000pt;}
.ws6{word-spacing:-24.680000pt;}
.ws14{word-spacing:-20.226171pt;}
.ws11{word-spacing:-15.368699pt;}
.ws3{word-spacing:-0.098720pt;}
.ws9{word-spacing:-0.059264pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:14.841653pt;}
.wsb{word-spacing:14.881920pt;}
.ws7{word-spacing:14.990987pt;}
.ws4{word-spacing:15.484587pt;}
.wsc{word-spacing:27.506827pt;}
.ws5{word-spacing:27.565280pt;}
.ws8{word-spacing:27.570613pt;}
._4{margin-left:-18.007669pt;}
._3{margin-left:-12.372405pt;}
._b{margin-left:-11.349291pt;}
._7{margin-left:-9.686421pt;}
._8{margin-left:-6.742325pt;}
._6{margin-left:-5.376000pt;}
._2{margin-left:-3.839712pt;}
._c{margin-left:-2.481813pt;}
._1{margin-left:-1.066587pt;}
._5{width:0.936667pt;}
._d{width:3.285723pt;}
._a{width:10.688160pt;}
._9{width:12.461227pt;}
._0{width:1878.806667pt;}
.fs19{font-size:52.762667pt;}
.fs18{font-size:55.482667pt;}
.fs1b{font-size:55.936000pt;}
.fsf{font-size:59.264000pt;}
.fs14{font-size:59.717333pt;}
.fs12{font-size:66.064000pt;}
.fs10{font-size:71.509333pt;}
.fs1d{font-size:73.018667pt;}
.fs0{font-size:74.682667pt;}
.fs16{font-size:75.136000pt;}
.fs5{font-size:76.800000pt;}
.fs3{font-size:96.000000pt;}
.fs7{font-size:98.720000pt;}
.fsd{font-size:102.202230pt;}
.fs1a{font-size:119.434667pt;}
.fs1c{font-size:125.936000pt;}
.fs15{font-size:132.736000pt;}
.fs13{font-size:148.309333pt;}
.fs11{font-size:159.952000pt;}
.fs6{font-size:164.789333pt;}
.fs17{font-size:166.901333pt;}
.fs9{font-size:170.602080pt;}
.fs2{font-size:170.682667pt;}
.fs1{font-size:213.317333pt;}
.fs4{font-size:234.634667pt;}
.fs8{font-size:301.301333pt;}
.fsa{font-size:315.210667pt;}
.fse{font-size:372.208000pt;}
.fsc{font-size:374.474667pt;}
.fsb{font-size:424.064000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y12{bottom:9.788000pt;}
.y80{bottom:16.705333pt;}
.y64{bottom:17.914667pt;}
.y20{bottom:18.028000pt;}
.y2f{bottom:18.141333pt;}
.y51{bottom:18.329333pt;}
.y33{bottom:19.501333pt;}
.y44{bottom:20.446667pt;}
.y58{bottom:20.598667pt;}
.y15{bottom:20.710667pt;}
.y25{bottom:20.788000pt;}
.y39{bottom:21.089333pt;}
.y7c{bottom:21.353333pt;}
.y4b{bottom:26.342667pt;}
.y5f{bottom:26.456000pt;}
.y2b{bottom:26.532000pt;}
.y1b{bottom:26.569333pt;}
.y66{bottom:26.872000pt;}
.y31{bottom:26.948000pt;}
.y22{bottom:26.985333pt;}
.y53{bottom:27.136000pt;}
.y50{bottom:27.665333pt;}
.y63{bottom:27.778667pt;}
.y2e{bottom:27.854667pt;}
.y1f{bottom:27.930667pt;}
.y2c{bottom:29.216000pt;}
.y1d{bottom:29.253333pt;}
.y4d{bottom:31.672000pt;}
.y60{bottom:31.785333pt;}
.y3e{bottom:31.861333pt;}
.y3a{bottom:31.898667pt;}
.y5e{bottom:35.792000pt;}
.y2a{bottom:35.868000pt;}
.y1a{bottom:35.905333pt;}
.y4a{bottom:36.056000pt;}
.y2{bottom:36.434667pt;}
.y17{bottom:36.698667pt;}
.y27{bottom:36.812000pt;}
.y46{bottom:40.062667pt;}
.y5a{bottom:40.213333pt;}
.ya4{bottom:40.705333pt;}
.y26{bottom:48.264000pt;}
.y16{bottom:48.301333pt;}
.y45{bottom:48.453333pt;}
.y59{bottom:48.604000pt;}
.y8{bottom:53.101333pt;}
.yb9{bottom:54.425333pt;}
.y4f{bottom:64.477333pt;}
.y62{bottom:64.592000pt;}
.y3c{bottom:64.705333pt;}
.y40{bottom:64.781333pt;}
.y2d{bottom:65.612000pt;}
.y1e{bottom:65.649333pt;}
.y5c{bottom:66.444000pt;}
.y48{bottom:66.745333pt;}
.y19{bottom:68.710667pt;}
.y29{bottom:68.788000pt;}
.y5d{bottom:70.865333pt;}
.y49{bottom:71.129333pt;}
.y57{bottom:72.188000pt;}
.y24{bottom:72.264000pt;}
.y14{bottom:72.301333pt;}
.y43{bottom:72.453333pt;}
.y3b{bottom:72.717333pt;}
.y3f{bottom:72.793333pt;}
.y4e{bottom:72.981333pt;}
.y61{bottom:73.133333pt;}
.ya1{bottom:74.040000pt;}
.y18{bottom:78.046667pt;}
.y28{bottom:78.122667pt;}
.y6e{bottom:78.160000pt;}
.y54{bottom:78.349333pt;}
.y67{bottom:78.462667pt;}
.y8a{bottom:80.162667pt;}
.y47{bottom:80.465333pt;}
.y5b{bottom:80.578667pt;}
.y21{bottom:86.058667pt;}
.y30{bottom:86.136000pt;}
.yb8{bottom:89.762667pt;}
.y52{bottom:93.390667pt;}
.y65{bottom:93.542667pt;}
.y41{bottom:93.581333pt;}
.y3d{bottom:93.656000pt;}
.y55{bottom:98.720000pt;}
.y68{bottom:98.872000pt;}
.y32{bottom:98.948000pt;}
.y1c{bottom:98.985333pt;}
.y4c{bottom:101.404000pt;}
.y99{bottom:101.782667pt;}
.y81{bottom:112.705333pt;}
.y92{bottom:114.708000pt;}
.ya0{bottom:121.512000pt;}
.y6d{bottom:122.721333pt;}
.y89{bottom:130.430667pt;}
.yb7{bottom:132.434667pt;}
.y56{bottom:137.612000pt;}
.y7{bottom:139.237333pt;}
.y23{bottom:139.274667pt;}
.yf{bottom:142.034667pt;}
.yad{bottom:144.453333pt;}
.y98{bottom:148.308000pt;}
.y76{bottom:154.960000pt;}
.y91{bottom:159.646667pt;}
.y6c{bottom:167.357333pt;}
.y9f{bottom:169.096000pt;}
.yb6{bottom:174.160000pt;}
.y88{bottom:179.225333pt;}
.y75{bottom:181.908000pt;}
.yac{bottom:184.705333pt;}
.y6{bottom:187.086667pt;}
.y97{bottom:194.985333pt;}
.y10{bottom:197.101333pt;}
.ye{bottom:199.785333pt;}
.y90{bottom:203.376000pt;}
.y74{bottom:208.705333pt;}
.y9e{bottom:216.566667pt;}
.yb5{bottom:216.982667pt;}
.yb0{bottom:218.040000pt;}
.y6b{bottom:221.630667pt;}
.yab{bottom:223.898667pt;}
.y87{bottom:229.378667pt;}
.y11{bottom:232.705333pt;}
.y7b{bottom:237.089333pt;}
.y8f{bottom:248.314667pt;}
.y96{bottom:251.489333pt;}
.ya6{bottom:252.698667pt;}
.y38{bottom:258.557333pt;}
.y9d{bottom:264.037333pt;}
.yaa{bottom:264.188000pt;}
.yaf{bottom:265.889333pt;}
.yd{bottom:266.153333pt;}
.y5{bottom:267.778667pt;}
.y6a{bottom:274.430667pt;}
.y35{bottom:276.585333pt;}
.y86{bottom:278.173333pt;}
.y37{bottom:285.353333pt;}
.y9b{bottom:286.034667pt;}
.y8e{bottom:292.044000pt;}
.y7a{bottom:294.840000pt;}
.yb4{bottom:301.378667pt;}
.y34{bottom:303.382667pt;}
.y95{bottom:306.557333pt;}
.ya5{bottom:310.449333pt;}
.y36{bottom:312.301333pt;}
.yae{bottom:313.776000pt;}
.y9c{bottom:321.788000pt;}
.yc{bottom:322.430667pt;}
.y42{bottom:327.609333pt;}
.y85{bottom:328.289333pt;}
.y69{bottom:328.705333pt;}
.y13{bottom:330.028000pt;}
.y8d{bottom:336.982667pt;}
.ya9{bottom:343.634667pt;}
.yb3{bottom:350.588000pt;}
.ya2{bottom:354.028000pt;}
.y79{bottom:361.246667pt;}
.y94{bottom:363.249333pt;}
.y4{bottom:365.782667pt;}
.yb{bottom:369.901333pt;}
.ya3{bottom:376.705333pt;}
.y84{bottom:386.040000pt;}
.y8c{bottom:388.686667pt;}
.ya8{bottom:389.896000pt;}
.y7f{bottom:391.785333pt;}
.yb2{bottom:392.314667pt;}
.y70{bottom:411.098667pt;}
.y3{bottom:425.234667pt;}
.y83{bottom:427.086667pt;}
.ya{bottom:427.653333pt;}
.y93{bottom:428.296000pt;}
.y9a{bottom:434.040000pt;}
.yb1{bottom:434.985333pt;}
.ya7{bottom:436.308000pt;}
.y6f{bottom:437.896000pt;}
.y7e{bottom:457.360000pt;}
.y77{bottom:478.185333pt;}
.y78{bottom:485.101333pt;}
.y82{bottom:492.698667pt;}
.y73{bottom:494.286667pt;}
.y8b{bottom:494.701333pt;}
.y9{bottom:501.505333pt;}
.y72{bottom:521.121333pt;}
.y7d{bottom:522.973333pt;}
.y71{bottom:524.182667pt;}
.h19{height:41.727875pt;}
.h3{height:49.776289pt;}
.h29{height:57.668813pt;}
.h2a{height:57.818146pt;}
.h2e{height:60.715740pt;}
.h30{height:60.865073pt;}
.h2f{height:60.870406pt;}
.h2c{height:61.318406pt;}
.h31{height:61.467740pt;}
.h22{height:64.128417pt;}
.h24{height:64.133750pt;}
.h21{height:64.283083pt;}
.h11{height:65.797266pt;}
.h10{height:69.508906pt;}
.h6{height:69.562500pt;}
.h20{height:71.637000pt;}
.h1d{height:71.791667pt;}
.h1e{height:72.394333pt;}
.h1b{height:77.502719pt;}
.h25{height:80.420938pt;}
.h26{height:80.426271pt;}
.h28{height:81.028938pt;}
.h8{height:82.558260pt;}
.ha{height:83.011594pt;}
.h9{height:83.166260pt;}
.h13{height:85.174922pt;}
.h2b{height:86.543479pt;}
.h16{height:88.179365pt;}
.h2d{height:91.254406pt;}
.h23{height:96.181750pt;}
.h1f{height:107.466333pt;}
.h1c{height:115.902719pt;}
.hc{height:116.028427pt;}
.hb{height:120.754667pt;}
.h27{height:120.938271pt;}
.h1a{height:122.418667pt;}
.h17{height:123.174667pt;}
.h5{height:123.678260pt;}
.hd{height:142.179078pt;}
.hf{height:147.194275pt;}
.h4{height:154.571740pt;}
.h7{height:170.018479pt;}
.he{height:259.960672pt;}
.h12{height:271.961547pt;}
.h18{height:321.138445pt;}
.h15{height:323.094109pt;}
.h14{height:365.879437pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w4{width:530.418667pt;}
.w3{width:556.458667pt;}
.w6{width:578.342667pt;}
.w5{width:604.384000pt;}
.w8{width:621.882667pt;}
.w7{width:647.924000pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x12{left:10.205333pt;}
.x11{left:16.857333pt;}
.x87{left:20.145333pt;}
.x96{left:24.529333pt;}
.x95{left:28.536000pt;}
.x2{left:30.652000pt;}
.xd{left:33.449333pt;}
.x77{left:34.658667pt;}
.xb{left:36.397333pt;}
.x8c{left:37.606667pt;}
.x8b{left:42.784000pt;}
.x1{left:52.950667pt;}
.x27{left:54.652000pt;}
.x51{left:57.449333pt;}
.x97{left:60.812000pt;}
.x89{left:61.720000pt;}
.x85{left:62.816000pt;}
.x8{left:64.252000pt;}
.x13{left:66.746667pt;}
.x93{left:67.993333pt;}
.x8d{left:70.941333pt;}
.x64{left:85.341333pt;}
.x28{left:86.249333pt;}
.x8a{left:88.252000pt;}
.x86{left:92.409333pt;}
.x52{left:97.248000pt;}
.x9{left:98.268000pt;}
.x6{left:100.649333pt;}
.x94{left:102.009333pt;}
.x29{left:105.336000pt;}
.x84{left:107.868000pt;}
.x65{left:111.609333pt;}
.x16{left:117.278667pt;}
.x53{left:123.516000pt;}
.x69{left:127.068000pt;}
.x66{left:128.012000pt;}
.x14{left:129.789333pt;}
.x2a{left:133.720000pt;}
.x54{left:139.918667pt;}
.xf{left:143.849333pt;}
.x17{left:145.777333pt;}
.x88{left:151.748000pt;}
.x38{left:153.449333pt;}
.x6a{left:155.602667pt;}
.x15{left:158.212000pt;}
.x57{left:167.546667pt;}
.x67{left:172.006667pt;}
.x55{left:183.912000pt;}
.x90{left:187.729333pt;}
.x79{left:192.793333pt;}
.x8f{left:194.116000pt;}
.x7e{left:199.332000pt;}
.x68{left:200.390667pt;}
.x2b{left:205.720000pt;}
.x56{left:212.448000pt;}
.x26{left:216.000000pt;}
.x18{left:217.777333pt;}
.x10{left:218.872000pt;}
.x2c{left:222.274667pt;}
.x78{left:223.218667pt;}
.x19{left:232.857333pt;}
.x98{left:241.322667pt;}
.xa{left:246.652000pt;}
.x48{left:248.012000pt;}
.x2d{left:252.925333pt;}
.x58{left:258.746667pt;}
.x6b{left:265.322667pt;}
.x1c{left:270.577333pt;}
.x3a{left:272.844000pt;}
.x2f{left:273.750667pt;}
.x59{left:276.473333pt;}
.x1a{left:277.380000pt;}
.x2e{left:280.402667pt;}
.x49{left:283.616000pt;}
.x3{left:285.618667pt;}
.x5a{left:289.777333pt;}
.x6c{left:291.590667pt;}
.x3e{left:294.577333pt;}
.x1d{left:298.205333pt;}
.x30{left:302.249333pt;}
.x1b{left:304.857333pt;}
.x92{left:305.990667pt;}
.x3b{left:307.918667pt;}
.x6f{left:313.738667pt;}
.x5b{left:316.460000pt;}
.x31{left:319.597333pt;}
.x3f{left:322.205333pt;}
.x1e{left:327.118667pt;}
.x3c{left:330.180000pt;}
.x32{left:333.732000pt;}
.x7a{left:336.150667pt;}
.x5d{left:338.192000pt;}
.x70{left:341.329333pt;}
.x1f{left:344.466667pt;}
.x7d{left:345.449333pt;}
.x5{left:346.809333pt;}
.x6d{left:349.341333pt;}
.x40{left:351.118667pt;}
.x3d{left:357.808000pt;}
.x20{left:358.716000pt;}
.x4a{left:365.745333pt;}
.x33{left:367.068000pt;}
.x71{left:369.750667pt;}
.x7{left:372.284000pt;}
.x5c{left:373.796000pt;}
.x6e{left:376.932000pt;}
.x4b{left:381.732000pt;}
.x41{left:390.577333pt;}
.x35{left:392.012000pt;}
.x21{left:393.789333pt;}
.x4{left:401.348000pt;}
.x34{left:404.409333pt;}
.x42{left:406.186667pt;}
.x72{left:409.322667pt;}
.x4c{left:415.068000pt;}
.x23{left:418.582667pt;}
.x73{left:425.348000pt;}
.x22{left:430.716000pt;}
.x5e{left:434.192000pt;}
.x4e{left:440.012000pt;}
.x43{left:441.412000pt;}
.x5f{left:449.802667pt;}
.x4d{left:452.409333pt;}
.x74{left:458.684000pt;}
.x45{left:466.205333pt;}
.x36{left:477.732000pt;}
.x44{left:478.716000pt;}
.x75{left:483.590667pt;}
.x60{left:484.876000pt;}
.x37{left:495.609333pt;}
.x24{left:504.076000pt;}
.x61{left:509.782667pt;}
.x7b{left:513.449333pt;}
.x25{left:521.386667pt;}
.x4f{left:525.732000pt;}
.x8e{left:532.120000pt;}
.x50{left:543.609333pt;}
.x46{left:552.076000pt;}
.x47{left:569.386667pt;}
.x76{left:587.074667pt;}
.x62{left:595.540000pt;}
.x63{left:612.850667pt;}
.x82{left:718.790667pt;}
.x7c{left:746.268000pt;}
.x80{left:763.993333pt;}
.x39{left:773.480000pt;}
.xc{left:777.449333pt;}
.x81{left:780.284000pt;}
.x7f{left:782.550667pt;}
.x83{left:825.449333pt;}
.x91{left:846.916000pt;}
.xe{left:849.449333pt;}
}




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