
    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_87357efbb361b4a21d65ee6a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.575000;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_24eca2fb77a30354488c1342.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.575000;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_ae1041885a1cfaf2df5a5225.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.592000;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:-22.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:22.500000px;}
.ls2{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.006000px;}
.lsa{letter-spacing:0.012000px;}
.ls8{letter-spacing:0.018000px;}
.lsd{letter-spacing:0.906000px;}
.ls4{letter-spacing:0.933000px;}
.ls0{letter-spacing:1.482000px;}
.ls1{letter-spacing:1.488000px;}
.lsc{letter-spacing:1.494000px;}
.lsb{letter-spacing:1.500000px;}
.ls6{letter-spacing:1.506000px;}
.ls9{letter-spacing:1.512000px;}
.ls3{letter-spacing:1.518000px;}
.lsf{letter-spacing:3.006000px;}
.lse{letter-spacing:13.500000px;}
.ls5{letter-spacing:18.933000px;}
.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;}
}
.ws1a{word-spacing:-19.062000px;}
.ws18{word-spacing:-18.168000px;}
.ws19{word-spacing:-17.724000px;}
.ws1c{word-spacing:-17.550000px;}
.ws4e{word-spacing:-17.520000px;}
.ws1b{word-spacing:-17.490000px;}
.ws3c{word-spacing:-17.454000px;}
.ws53{word-spacing:-17.388000px;}
.ws3e{word-spacing:-17.328000px;}
.ws26{word-spacing:-17.322000px;}
.ws64{word-spacing:-17.304000px;}
.ws44{word-spacing:-17.268000px;}
.ws3b{word-spacing:-17.256000px;}
.wsc{word-spacing:-17.202000px;}
.ws55{word-spacing:-17.148000px;}
.ws17{word-spacing:-17.130000px;}
.ws40{word-spacing:-17.088000px;}
.ws8{word-spacing:-17.070000px;}
.ws5c{word-spacing:-17.064000px;}
.ws67{word-spacing:-16.980000px;}
.wsb{word-spacing:-16.956000px;}
.ws5b{word-spacing:-16.950000px;}
.ws9{word-spacing:-16.854000px;}
.ws14{word-spacing:-16.800000px;}
.ws24{word-spacing:-16.782000px;}
.ws39{word-spacing:-16.758000px;}
.ws5d{word-spacing:-16.686000px;}
.ws54{word-spacing:-16.656000px;}
.ws68{word-spacing:-16.650000px;}
.ws16{word-spacing:-16.620000px;}
.ws6a{word-spacing:-16.602000px;}
.ws66{word-spacing:-16.584000px;}
.ws7{word-spacing:-16.560000px;}
.ws43{word-spacing:-16.548000px;}
.ws31{word-spacing:-16.536000px;}
.ws33{word-spacing:-16.500000px;}
.ws7f{word-spacing:-16.476000px;}
.ws2b{word-spacing:-16.470000px;}
.ws1f{word-spacing:-16.452000px;}
.ws25{word-spacing:-16.446000px;}
.ws32{word-spacing:-16.434000px;}
.ws3d{word-spacing:-16.398000px;}
.ws3f{word-spacing:-16.386000px;}
.ws22{word-spacing:-16.380000px;}
.ws2e{word-spacing:-16.374000px;}
.wsd{word-spacing:-16.368000px;}
.ws4d{word-spacing:-16.350000px;}
.ws51{word-spacing:-16.314000px;}
.ws58{word-spacing:-16.308000px;}
.ws15{word-spacing:-16.296000px;}
.ws73{word-spacing:-16.260000px;}
.ws29{word-spacing:-16.212000px;}
.ws4c{word-spacing:-16.200000px;}
.ws10{word-spacing:-16.170000px;}
.ws50{word-spacing:-16.158000px;}
.ws27{word-spacing:-16.146000px;}
.ws59{word-spacing:-16.128000px;}
.ws57{word-spacing:-16.086000px;}
.ws13{word-spacing:-16.068000px;}
.ws4b{word-spacing:-16.062000px;}
.ws2f{word-spacing:-16.026000px;}
.ws1e{word-spacing:-15.990000px;}
.ws12{word-spacing:-15.978000px;}
.ws2c{word-spacing:-15.894000px;}
.ws2a{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.828000px;}
.ws37{word-spacing:-15.810000px;}
.ws2d{word-spacing:-15.768000px;}
.ws4f{word-spacing:-15.762000px;}
.ws56{word-spacing:-15.756000px;}
.ws4a{word-spacing:-15.732000px;}
.ws23{word-spacing:-15.726000px;}
.ws61{word-spacing:-15.714000px;}
.ws60{word-spacing:-15.702000px;}
.ws42{word-spacing:-15.672000px;}
.ws5e{word-spacing:-15.636000px;}
.ws30{word-spacing:-15.540000px;}
.ws28{word-spacing:-15.528000px;}
.ws46{word-spacing:-15.510000px;}
.ws75{word-spacing:-15.480000px;}
.ws47{word-spacing:-15.282000px;}
.ws38{word-spacing:-15.222000px;}
.ws7a{word-spacing:-15.120000px;}
.ws41{word-spacing:-15.096000px;}
.ws62{word-spacing:-15.000000px;}
.ws7c{word-spacing:-14.898000px;}
.ws65{word-spacing:-14.850000px;}
.ws48{word-spacing:-14.784000px;}
.ws6c{word-spacing:-14.772000px;}
.ws11{word-spacing:-14.706000px;}
.ws45{word-spacing:-14.700000px;}
.ws49{word-spacing:-14.550000px;}
.ws78{word-spacing:-14.400000px;}
.ws82{word-spacing:-14.130000px;}
.ws81{word-spacing:-13.998000px;}
.ws7e{word-spacing:-12.726000px;}
.ws76{word-spacing:-12.694500px;}
.ws72{word-spacing:-12.510000px;}
.ws85{word-spacing:-12.127500px;}
.ws6f{word-spacing:-11.709000px;}
.wse{word-spacing:-11.542500px;}
.ws79{word-spacing:-11.367000px;}
.ws77{word-spacing:-11.308500px;}
.ws63{word-spacing:-11.250000px;}
.ws6d{word-spacing:-11.209500px;}
.ws89{word-spacing:-11.205000px;}
.ws71{word-spacing:-11.200500px;}
.ws7b{word-spacing:-11.151000px;}
.ws8a{word-spacing:-11.115000px;}
.ws83{word-spacing:-11.065500px;}
.ws74{word-spacing:-11.052000px;}
.ws6b{word-spacing:-11.025000px;}
.ws6e{word-spacing:-11.020500px;}
.ws7d{word-spacing:-10.813500px;}
.ws70{word-spacing:-10.786500px;}
.ws80{word-spacing:-10.251000px;}
.ws84{word-spacing:-10.192500px;}
.ws88{word-spacing:-10.165500px;}
.ws1{word-spacing:-10.125000px;}
.ws35{word-spacing:-0.912000px;}
.ws5f{word-spacing:-0.858000px;}
.ws69{word-spacing:-0.822000px;}
.ws52{word-spacing:-0.816000px;}
.ws20{word-spacing:-0.762000px;}
.ws5a{word-spacing:-0.732000px;}
.ws34{word-spacing:-0.690000px;}
.wsf{word-spacing:-0.078000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:0.606000px;}
.ws1d{word-spacing:0.714000px;}
.ws3a{word-spacing:0.804000px;}
.ws0{word-spacing:0.826500px;}
.ws36{word-spacing:1.116000px;}
.ws21{word-spacing:1.260000px;}
.ws87{word-spacing:4.134000px;}
.ws86{word-spacing:4.644000px;}
.ws5{word-spacing:6.504000px;}
.ws4{word-spacing:6.630000px;}
.ws3{word-spacing:35.706000px;}
._f{margin-left:-7.545000px;}
._e{margin-left:-6.099000px;}
._b{margin-left:-4.758000px;}
._2{margin-left:-2.964000px;}
._0{margin-left:-1.482000px;}
._1{width:1.539000px;}
._3{width:3.021000px;}
._13{width:4.164000px;}
._d{width:5.250000px;}
._12{width:7.038000px;}
._11{width:8.886000px;}
._10{width:10.422000px;}
._17{width:11.451000px;}
._18{width:12.762000px;}
._19{width:13.767000px;}
._16{width:15.042000px;}
._a{width:16.518000px;}
._8{width:18.018000px;}
._15{width:22.506000px;}
._14{width:24.024000px;}
._9{width:26.310000px;}
._5{width:47.880000px;}
._7{width:49.518000px;}
._4{width:69.012000px;}
._c{width:539.532000px;}
._6{width:1297.380000px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:40.500000px;}
.fs9{font-size:45.000000px;}
.fs7{font-size:46.170000px;}
.fs3{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fs0{font-size:57.000000px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1b{bottom:47.911425px;}
.yef{bottom:48.286425px;}
.ycb{bottom:49.036425px;}
.y93{bottom:50.536425px;}
.yff{bottom:52.786425px;}
.y12a{bottom:53.536425px;}
.y46{bottom:62.161425px;}
.yca{bottom:66.286425px;}
.y92{bottom:67.786425px;}
.yfe{bottom:68.536425px;}
.y129{bottom:69.286425px;}
.yee{bottom:74.161425px;}
.y45{bottom:76.411425px;}
.yc9{bottom:83.536425px;}
.yfd{bottom:84.286425px;}
.y91{bottom:85.036425px;}
.y6d{bottom:90.661425px;}
.yed{bottom:100.036425px;}
.y128{bottom:100.786425px;}
.y90{bottom:102.286425px;}
.y1a{bottom:102.661425px;}
.y6c{bottom:104.911425px;}
.yfc{bottom:115.786425px;}
.y127{bottom:116.536425px;}
.y19{bottom:117.661425px;}
.yc8{bottom:118.036425px;}
.y6b{bottom:119.161425px;}
.y8f{bottom:119.536425px;}
.yfb{bottom:131.536425px;}
.yb0{bottom:131.911425px;}
.y126{bottom:132.286425px;}
.y6a{bottom:133.411425px;}
.yc7{bottom:135.286425px;}
.y8e{bottom:136.786425px;}
.y18{bottom:138.661425px;}
.yf4{bottom:145.411425px;}
.yfa{bottom:147.286425px;}
.y69{bottom:147.661425px;}
.yec{bottom:148.036425px;}
.yaf{bottom:149.161425px;}
.yc6{bottom:152.536425px;}
.y17{bottom:153.661425px;}
.y8d{bottom:154.036425px;}
.yda{bottom:158.536425px;}
.y68{bottom:161.911425px;}
.yf3{bottom:162.661425px;}
.yf9{bottom:163.036425px;}
.y125{bottom:163.786425px;}
.y16{bottom:168.661425px;}
.yc5{bottom:169.786425px;}
.y8c{bottom:171.286425px;}
.y44{bottom:175.036425px;}
.yd9{bottom:175.786425px;}
.yf8{bottom:178.786425px;}
.y124{bottom:179.536425px;}
.yf2{bottom:179.911425px;}
.y15{bottom:183.661425px;}
.yc4{bottom:187.036425px;}
.y8b{bottom:188.536425px;}
.y43{bottom:192.286425px;}
.yd8{bottom:193.036425px;}
.yeb{bottom:194.536425px;}
.y123{bottom:195.286425px;}
.yf1{bottom:197.161425px;}
.y14{bottom:198.661425px;}
.y8a{bottom:205.786425px;}
.y42{bottom:209.536425px;}
.yf7{bottom:210.286425px;}
.y122{bottom:211.036425px;}
.yea{bottom:211.786425px;}
.yc3{bottom:212.911425px;}
.y13{bottom:213.661425px;}
.y67{bottom:214.411425px;}
.yae{bottom:218.161425px;}
.yd7{bottom:218.911425px;}
.y89{bottom:223.036425px;}
.yf6{bottom:226.036425px;}
.y41{bottom:226.786425px;}
.y12{bottom:228.661425px;}
.y66{bottom:231.661425px;}
.yad{bottom:235.411425px;}
.ye9{bottom:237.661425px;}
.y88{bottom:240.286425px;}
.yf5{bottom:241.786425px;}
.y121{bottom:242.536425px;}
.y11{bottom:243.661425px;}
.y40{bottom:244.036425px;}
.y65{bottom:248.911425px;}
.yac{bottom:252.661425px;}
.y87{bottom:257.536425px;}
.y120{bottom:258.286425px;}
.y10{bottom:258.661425px;}
.y3f{bottom:261.286425px;}
.yd6{bottom:262.036425px;}
.y64{bottom:266.161425px;}
.yab{bottom:269.911425px;}
.yf{bottom:273.661425px;}
.y11f{bottom:274.036425px;}
.y86{bottom:274.786425px;}
.y3e{bottom:278.536425px;}
.yd5{bottom:279.286425px;}
.ye8{bottom:280.786425px;}
.y63{bottom:283.411425px;}
.yaa{bottom:287.161425px;}
.y11e{bottom:289.786425px;}
.y85{bottom:292.036425px;}
.y3d{bottom:295.786425px;}
.yd4{bottom:296.536425px;}
.ye7{bottom:298.036425px;}
.y62{bottom:300.661425px;}
.ye{bottom:303.661425px;}
.yc2{bottom:304.411425px;}
.y11d{bottom:305.536425px;}
.y84{bottom:309.286425px;}
.y3c{bottom:313.036425px;}
.yd3{bottom:313.786425px;}
.ye6{bottom:315.286425px;}
.y61{bottom:317.911425px;}
.yd{bottom:318.661425px;}
.y11c{bottom:321.286425px;}
.y83{bottom:326.536425px;}
.y3b{bottom:330.286425px;}
.yd2{bottom:331.036425px;}
.y60{bottom:335.161425px;}
.y11b{bottom:337.036425px;}
.ye5{bottom:341.161425px;}
.y82{bottom:343.786425px;}
.ya9{bottom:345.661425px;}
.y3a{bottom:347.536425px;}
.yd1{bottom:348.286425px;}
.y5f{bottom:352.411425px;}
.y11a{bottom:352.786425px;}
.yc{bottom:354.661425px;}
.y81{bottom:361.036425px;}
.y39{bottom:364.786425px;}
.yd0{bottom:365.536425px;}
.y119{bottom:368.536425px;}
.yb{bottom:369.661425px;}
.ye4{bottom:372.286425px;}
.yc1{bottom:373.411425px;}
.y80{bottom:378.286425px;}
.y38{bottom:382.036425px;}
.y118{bottom:384.286425px;}
.y5e{bottom:386.911425px;}
.ya{bottom:390.661425px;}
.ycf{bottom:391.411425px;}
.ya8{bottom:392.536425px;}
.y7f{bottom:395.536425px;}
.y37{bottom:399.286425px;}
.y117{bottom:400.036425px;}
.ye3{bottom:403.786425px;}
.y5d{bottom:404.161425px;}
.y9{bottom:405.661425px;}
.yc0{bottom:407.911425px;}
.ya7{bottom:409.786425px;}
.y7e{bottom:412.786425px;}
.y116{bottom:415.786425px;}
.y36{bottom:416.536425px;}
.y8{bottom:420.661425px;}
.y5c{bottom:421.411425px;}
.yce{bottom:424.036425px;}
.ybf{bottom:425.161425px;}
.ya6{bottom:427.036425px;}
.y7d{bottom:430.036425px;}
.y115{bottom:431.536425px;}
.y35{bottom:433.786425px;}
.y7{bottom:435.661425px;}
.y5b{bottom:438.661425px;}
.ybe{bottom:442.411425px;}
.ycd{bottom:446.536425px;}
.y97{bottom:447.286425px;}
.y6{bottom:450.661425px;}
.y34{bottom:451.036425px;}
.ya5{bottom:452.911425px;}
.y5a{bottom:455.911425px;}
.ye2{bottom:457.786425px;}
.ybd{bottom:459.661425px;}
.y114{bottom:463.036425px;}
.y96{bottom:464.536425px;}
.y5{bottom:465.661425px;}
.y33{bottom:468.286425px;}
.y59{bottom:473.161425px;}
.ye1{bottom:475.036425px;}
.ycc{bottom:478.036425px;}
.y113{bottom:478.786425px;}
.y4{bottom:480.661425px;}
.y95{bottom:481.786425px;}
.y32{bottom:485.536425px;}
.y58{bottom:490.411425px;}
.y112{bottom:494.536425px;}
.y3{bottom:495.661425px;}
.ya4{bottom:496.036425px;}
.y94{bottom:499.036425px;}
.ye0{bottom:500.911425px;}
.y31{bottom:502.786425px;}
.y57{bottom:507.661425px;}
.y111{bottom:510.286425px;}
.y2{bottom:510.661425px;}
.ya3{bottom:513.286425px;}
.y7c{bottom:516.286425px;}
.ybc{bottom:518.161425px;}
.y30{bottom:520.036425px;}
.y56{bottom:524.911425px;}
.y110{bottom:526.036425px;}
.ya2{bottom:530.536425px;}
.y7b{bottom:533.536425px;}
.ybb{bottom:535.411425px;}
.y2f{bottom:537.286425px;}
.y1{bottom:540.661425px;}
.y10f{bottom:541.786425px;}
.y55{bottom:542.161425px;}
.ydf{bottom:544.036425px;}
.ya1{bottom:547.786425px;}
.y7a{bottom:550.786425px;}
.y2e{bottom:554.536425px;}
.y10e{bottom:557.536425px;}
.y54{bottom:559.411425px;}
.yde{bottom:561.286425px;}
.ya0{bottom:565.036425px;}
.y79{bottom:568.036425px;}
.y2d{bottom:571.786425px;}
.y10d{bottom:573.286425px;}
.y53{bottom:576.661425px;}
.yba{bottom:578.536425px;}
.y78{bottom:585.286425px;}
.y10c{bottom:589.036425px;}
.y52{bottom:593.911425px;}
.ydd{bottom:595.786425px;}
.y2c{bottom:597.661425px;}
.y9f{bottom:599.536425px;}
.y77{bottom:602.536425px;}
.yb9{bottom:604.411425px;}
.y10b{bottom:604.786425px;}
.y51{bottom:611.161425px;}
.ydc{bottom:613.036425px;}
.y9e{bottom:616.786425px;}
.y76{bottom:619.786425px;}
.y10a{bottom:620.536425px;}
.y50{bottom:628.411425px;}
.ydb{bottom:630.286425px;}
.y9d{bottom:634.036425px;}
.y109{bottom:636.286425px;}
.y75{bottom:637.036425px;}
.y4f{bottom:645.661425px;}
.yb8{bottom:647.536425px;}
.y9c{bottom:651.286425px;}
.y108{bottom:652.036425px;}
.y2b{bottom:653.536425px;}
.y74{bottom:654.286425px;}
.y4e{bottom:662.911425px;}
.yb7{bottom:664.786425px;}
.y107{bottom:667.786425px;}
.y2a{bottom:668.536425px;}
.y73{bottom:671.536425px;}
.y4d{bottom:680.161425px;}
.yb6{bottom:682.036425px;}
.y106{bottom:683.536425px;}
.y9b{bottom:685.786425px;}
.y72{bottom:688.786425px;}
.y29{bottom:689.536425px;}
.y4c{bottom:697.411425px;}
.yb5{bottom:699.286425px;}
.y9a{bottom:703.036425px;}
.y28{bottom:704.536425px;}
.y21{bottom:706.036425px;}
.y4b{bottom:714.661425px;}
.y105{bottom:715.036425px;}
.yb4{bottom:716.536425px;}
.y27{bottom:719.536425px;}
.y20{bottom:720.286425px;}
.y71{bottom:723.286425px;}
.y99{bottom:728.911425px;}
.y104{bottom:730.786425px;}
.y4a{bottom:731.911425px;}
.yb3{bottom:733.786425px;}
.y26{bottom:734.536425px;}
.y1f{bottom:738.286425px;}
.y70{bottom:740.536425px;}
.y103{bottom:746.536425px;}
.y49{bottom:749.161425px;}
.y25{bottom:749.536425px;}
.yb2{bottom:751.036425px;}
.y6f{bottom:757.786425px;}
.y102{bottom:762.286425px;}
.y24{bottom:764.536425px;}
.y98{bottom:766.036425px;}
.y48{bottom:766.411425px;}
.y6e{bottom:775.036425px;}
.yb1{bottom:776.911425px;}
.y101{bottom:778.036425px;}
.y23{bottom:779.536425px;}
.y1e{bottom:783.286425px;}
.yf0{bottom:783.661425px;}
.y47{bottom:792.286425px;}
.y100{bottom:793.786425px;}
.y1d{bottom:807.286425px;}
.y22{bottom:809.536425px;}
.y1c{bottom:858.286425px;}
.h5{height:51.216000px;}
.h4{height:57.618000px;}
.hb{height:58.536000px;}
.h2{height:60.819000px;}
.h3{height:61.788000px;}
.hd{height:64.020000px;}
.hc{height:65.040000px;}
.h8{height:70.422000px;}
.ha{height:71.544000px;}
.h9{height:71.763390px;}
.h7{height:76.824000px;}
.h6{height:102.432000px;}
.h1{height:909.750000px;}
.h0{height:910.086615px;}
.w1{width:594.750000px;}
.w0{width:594.862200px;}
.x0{left:0.000000px;}
.x1{left:50.868600px;}
.x5{left:65.487600px;}
.x4{left:68.033100px;}
.x3{left:73.004100px;}
.x2{left:410.868600px;}
@media print{
.v2{vertical-align:-20.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:20.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.005333pt;}
.lsa{letter-spacing:0.010667pt;}
.ls8{letter-spacing:0.016000pt;}
.lsd{letter-spacing:0.805333pt;}
.ls4{letter-spacing:0.829333pt;}
.ls0{letter-spacing:1.317333pt;}
.ls1{letter-spacing:1.322667pt;}
.lsc{letter-spacing:1.328000pt;}
.lsb{letter-spacing:1.333333pt;}
.ls6{letter-spacing:1.338667pt;}
.ls9{letter-spacing:1.344000pt;}
.ls3{letter-spacing:1.349333pt;}
.lsf{letter-spacing:2.672000pt;}
.lse{letter-spacing:12.000000pt;}
.ls5{letter-spacing:16.829333pt;}
.ws1a{word-spacing:-16.944000pt;}
.ws18{word-spacing:-16.149333pt;}
.ws19{word-spacing:-15.754667pt;}
.ws1c{word-spacing:-15.600000pt;}
.ws4e{word-spacing:-15.573333pt;}
.ws1b{word-spacing:-15.546667pt;}
.ws3c{word-spacing:-15.514667pt;}
.ws53{word-spacing:-15.456000pt;}
.ws3e{word-spacing:-15.402667pt;}
.ws26{word-spacing:-15.397333pt;}
.ws64{word-spacing:-15.381333pt;}
.ws44{word-spacing:-15.349333pt;}
.ws3b{word-spacing:-15.338667pt;}
.wsc{word-spacing:-15.290667pt;}
.ws55{word-spacing:-15.242667pt;}
.ws17{word-spacing:-15.226667pt;}
.ws40{word-spacing:-15.189333pt;}
.ws8{word-spacing:-15.173333pt;}
.ws5c{word-spacing:-15.168000pt;}
.ws67{word-spacing:-15.093333pt;}
.wsb{word-spacing:-15.072000pt;}
.ws5b{word-spacing:-15.066667pt;}
.ws9{word-spacing:-14.981333pt;}
.ws14{word-spacing:-14.933333pt;}
.ws24{word-spacing:-14.917333pt;}
.ws39{word-spacing:-14.896000pt;}
.ws5d{word-spacing:-14.832000pt;}
.ws54{word-spacing:-14.805333pt;}
.ws68{word-spacing:-14.800000pt;}
.ws16{word-spacing:-14.773333pt;}
.ws6a{word-spacing:-14.757333pt;}
.ws66{word-spacing:-14.741333pt;}
.ws7{word-spacing:-14.720000pt;}
.ws43{word-spacing:-14.709333pt;}
.ws31{word-spacing:-14.698667pt;}
.ws33{word-spacing:-14.666667pt;}
.ws7f{word-spacing:-14.645333pt;}
.ws2b{word-spacing:-14.640000pt;}
.ws1f{word-spacing:-14.624000pt;}
.ws25{word-spacing:-14.618667pt;}
.ws32{word-spacing:-14.608000pt;}
.ws3d{word-spacing:-14.576000pt;}
.ws3f{word-spacing:-14.565333pt;}
.ws22{word-spacing:-14.560000pt;}
.ws2e{word-spacing:-14.554667pt;}
.wsd{word-spacing:-14.549333pt;}
.ws4d{word-spacing:-14.533333pt;}
.ws51{word-spacing:-14.501333pt;}
.ws58{word-spacing:-14.496000pt;}
.ws15{word-spacing:-14.485333pt;}
.ws73{word-spacing:-14.453333pt;}
.ws29{word-spacing:-14.410667pt;}
.ws4c{word-spacing:-14.400000pt;}
.ws10{word-spacing:-14.373333pt;}
.ws50{word-spacing:-14.362667pt;}
.ws27{word-spacing:-14.352000pt;}
.ws59{word-spacing:-14.336000pt;}
.ws57{word-spacing:-14.298667pt;}
.ws13{word-spacing:-14.282667pt;}
.ws4b{word-spacing:-14.277333pt;}
.ws2f{word-spacing:-14.245333pt;}
.ws1e{word-spacing:-14.213333pt;}
.ws12{word-spacing:-14.202667pt;}
.ws2c{word-spacing:-14.128000pt;}
.ws2a{word-spacing:-14.080000pt;}
.ws6{word-spacing:-14.069333pt;}
.ws37{word-spacing:-14.053333pt;}
.ws2d{word-spacing:-14.016000pt;}
.ws4f{word-spacing:-14.010667pt;}
.ws56{word-spacing:-14.005333pt;}
.ws4a{word-spacing:-13.984000pt;}
.ws23{word-spacing:-13.978667pt;}
.ws61{word-spacing:-13.968000pt;}
.ws60{word-spacing:-13.957333pt;}
.ws42{word-spacing:-13.930667pt;}
.ws5e{word-spacing:-13.898667pt;}
.ws30{word-spacing:-13.813333pt;}
.ws28{word-spacing:-13.802667pt;}
.ws46{word-spacing:-13.786667pt;}
.ws75{word-spacing:-13.760000pt;}
.ws47{word-spacing:-13.584000pt;}
.ws38{word-spacing:-13.530667pt;}
.ws7a{word-spacing:-13.440000pt;}
.ws41{word-spacing:-13.418667pt;}
.ws62{word-spacing:-13.333333pt;}
.ws7c{word-spacing:-13.242667pt;}
.ws65{word-spacing:-13.200000pt;}
.ws48{word-spacing:-13.141333pt;}
.ws6c{word-spacing:-13.130667pt;}
.ws11{word-spacing:-13.072000pt;}
.ws45{word-spacing:-13.066667pt;}
.ws49{word-spacing:-12.933333pt;}
.ws78{word-spacing:-12.800000pt;}
.ws82{word-spacing:-12.560000pt;}
.ws81{word-spacing:-12.442667pt;}
.ws7e{word-spacing:-11.312000pt;}
.ws76{word-spacing:-11.284000pt;}
.ws72{word-spacing:-11.120000pt;}
.ws85{word-spacing:-10.780000pt;}
.ws6f{word-spacing:-10.408000pt;}
.wse{word-spacing:-10.260000pt;}
.ws79{word-spacing:-10.104000pt;}
.ws77{word-spacing:-10.052000pt;}
.ws63{word-spacing:-10.000000pt;}
.ws6d{word-spacing:-9.964000pt;}
.ws89{word-spacing:-9.960000pt;}
.ws71{word-spacing:-9.956000pt;}
.ws7b{word-spacing:-9.912000pt;}
.ws8a{word-spacing:-9.880000pt;}
.ws83{word-spacing:-9.836000pt;}
.ws74{word-spacing:-9.824000pt;}
.ws6b{word-spacing:-9.800000pt;}
.ws6e{word-spacing:-9.796000pt;}
.ws7d{word-spacing:-9.612000pt;}
.ws70{word-spacing:-9.588000pt;}
.ws80{word-spacing:-9.112000pt;}
.ws84{word-spacing:-9.060000pt;}
.ws88{word-spacing:-9.036000pt;}
.ws1{word-spacing:-9.000000pt;}
.ws35{word-spacing:-0.810667pt;}
.ws5f{word-spacing:-0.762667pt;}
.ws69{word-spacing:-0.730667pt;}
.ws52{word-spacing:-0.725333pt;}
.ws20{word-spacing:-0.677333pt;}
.ws5a{word-spacing:-0.650667pt;}
.ws34{word-spacing:-0.613333pt;}
.wsf{word-spacing:-0.069333pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:0.538667pt;}
.ws1d{word-spacing:0.634667pt;}
.ws3a{word-spacing:0.714667pt;}
.ws0{word-spacing:0.734667pt;}
.ws36{word-spacing:0.992000pt;}
.ws21{word-spacing:1.120000pt;}
.ws87{word-spacing:3.674667pt;}
.ws86{word-spacing:4.128000pt;}
.ws5{word-spacing:5.781333pt;}
.ws4{word-spacing:5.893333pt;}
.ws3{word-spacing:31.738667pt;}
._f{margin-left:-6.706667pt;}
._e{margin-left:-5.421333pt;}
._b{margin-left:-4.229333pt;}
._2{margin-left:-2.634667pt;}
._0{margin-left:-1.317333pt;}
._1{width:1.368000pt;}
._3{width:2.685333pt;}
._13{width:3.701333pt;}
._d{width:4.666667pt;}
._12{width:6.256000pt;}
._11{width:7.898667pt;}
._10{width:9.264000pt;}
._17{width:10.178667pt;}
._18{width:11.344000pt;}
._19{width:12.237333pt;}
._16{width:13.370667pt;}
._a{width:14.682667pt;}
._8{width:16.016000pt;}
._15{width:20.005333pt;}
._14{width:21.354667pt;}
._9{width:23.386667pt;}
._5{width:42.560000pt;}
._7{width:44.016000pt;}
._4{width:61.344000pt;}
._c{width:479.584000pt;}
._6{width:1153.226667pt;}
.fs2{font-size:36.000000pt;}
.fs9{font-size:40.000000pt;}
.fs7{font-size:41.040000pt;}
.fs3{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fs0{font-size:50.666667pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1b{bottom:42.587933pt;}
.yef{bottom:42.921267pt;}
.ycb{bottom:43.587933pt;}
.y93{bottom:44.921267pt;}
.yff{bottom:46.921267pt;}
.y12a{bottom:47.587933pt;}
.y46{bottom:55.254600pt;}
.yca{bottom:58.921267pt;}
.y92{bottom:60.254600pt;}
.yfe{bottom:60.921267pt;}
.y129{bottom:61.587933pt;}
.yee{bottom:65.921267pt;}
.y45{bottom:67.921267pt;}
.yc9{bottom:74.254600pt;}
.yfd{bottom:74.921267pt;}
.y91{bottom:75.587933pt;}
.y6d{bottom:80.587933pt;}
.yed{bottom:88.921267pt;}
.y128{bottom:89.587933pt;}
.y90{bottom:90.921267pt;}
.y1a{bottom:91.254600pt;}
.y6c{bottom:93.254600pt;}
.yfc{bottom:102.921267pt;}
.y127{bottom:103.587933pt;}
.y19{bottom:104.587933pt;}
.yc8{bottom:104.921267pt;}
.y6b{bottom:105.921267pt;}
.y8f{bottom:106.254600pt;}
.yfb{bottom:116.921267pt;}
.yb0{bottom:117.254600pt;}
.y126{bottom:117.587933pt;}
.y6a{bottom:118.587933pt;}
.yc7{bottom:120.254600pt;}
.y8e{bottom:121.587933pt;}
.y18{bottom:123.254600pt;}
.yf4{bottom:129.254600pt;}
.yfa{bottom:130.921267pt;}
.y69{bottom:131.254600pt;}
.yec{bottom:131.587933pt;}
.yaf{bottom:132.587933pt;}
.yc6{bottom:135.587933pt;}
.y17{bottom:136.587933pt;}
.y8d{bottom:136.921267pt;}
.yda{bottom:140.921267pt;}
.y68{bottom:143.921267pt;}
.yf3{bottom:144.587933pt;}
.yf9{bottom:144.921267pt;}
.y125{bottom:145.587933pt;}
.y16{bottom:149.921267pt;}
.yc5{bottom:150.921267pt;}
.y8c{bottom:152.254600pt;}
.y44{bottom:155.587933pt;}
.yd9{bottom:156.254600pt;}
.yf8{bottom:158.921267pt;}
.y124{bottom:159.587933pt;}
.yf2{bottom:159.921267pt;}
.y15{bottom:163.254600pt;}
.yc4{bottom:166.254600pt;}
.y8b{bottom:167.587933pt;}
.y43{bottom:170.921267pt;}
.yd8{bottom:171.587933pt;}
.yeb{bottom:172.921267pt;}
.y123{bottom:173.587933pt;}
.yf1{bottom:175.254600pt;}
.y14{bottom:176.587933pt;}
.y8a{bottom:182.921267pt;}
.y42{bottom:186.254600pt;}
.yf7{bottom:186.921267pt;}
.y122{bottom:187.587933pt;}
.yea{bottom:188.254600pt;}
.yc3{bottom:189.254600pt;}
.y13{bottom:189.921267pt;}
.y67{bottom:190.587933pt;}
.yae{bottom:193.921267pt;}
.yd7{bottom:194.587933pt;}
.y89{bottom:198.254600pt;}
.yf6{bottom:200.921267pt;}
.y41{bottom:201.587933pt;}
.y12{bottom:203.254600pt;}
.y66{bottom:205.921267pt;}
.yad{bottom:209.254600pt;}
.ye9{bottom:211.254600pt;}
.y88{bottom:213.587933pt;}
.yf5{bottom:214.921267pt;}
.y121{bottom:215.587933pt;}
.y11{bottom:216.587933pt;}
.y40{bottom:216.921267pt;}
.y65{bottom:221.254600pt;}
.yac{bottom:224.587933pt;}
.y87{bottom:228.921267pt;}
.y120{bottom:229.587933pt;}
.y10{bottom:229.921267pt;}
.y3f{bottom:232.254600pt;}
.yd6{bottom:232.921267pt;}
.y64{bottom:236.587933pt;}
.yab{bottom:239.921267pt;}
.yf{bottom:243.254600pt;}
.y11f{bottom:243.587933pt;}
.y86{bottom:244.254600pt;}
.y3e{bottom:247.587933pt;}
.yd5{bottom:248.254600pt;}
.ye8{bottom:249.587933pt;}
.y63{bottom:251.921267pt;}
.yaa{bottom:255.254600pt;}
.y11e{bottom:257.587933pt;}
.y85{bottom:259.587933pt;}
.y3d{bottom:262.921267pt;}
.yd4{bottom:263.587933pt;}
.ye7{bottom:264.921267pt;}
.y62{bottom:267.254600pt;}
.ye{bottom:269.921267pt;}
.yc2{bottom:270.587933pt;}
.y11d{bottom:271.587933pt;}
.y84{bottom:274.921267pt;}
.y3c{bottom:278.254600pt;}
.yd3{bottom:278.921267pt;}
.ye6{bottom:280.254600pt;}
.y61{bottom:282.587933pt;}
.yd{bottom:283.254600pt;}
.y11c{bottom:285.587933pt;}
.y83{bottom:290.254600pt;}
.y3b{bottom:293.587933pt;}
.yd2{bottom:294.254600pt;}
.y60{bottom:297.921267pt;}
.y11b{bottom:299.587933pt;}
.ye5{bottom:303.254600pt;}
.y82{bottom:305.587933pt;}
.ya9{bottom:307.254600pt;}
.y3a{bottom:308.921267pt;}
.yd1{bottom:309.587933pt;}
.y5f{bottom:313.254600pt;}
.y11a{bottom:313.587933pt;}
.yc{bottom:315.254600pt;}
.y81{bottom:320.921267pt;}
.y39{bottom:324.254600pt;}
.yd0{bottom:324.921267pt;}
.y119{bottom:327.587933pt;}
.yb{bottom:328.587933pt;}
.ye4{bottom:330.921267pt;}
.yc1{bottom:331.921267pt;}
.y80{bottom:336.254600pt;}
.y38{bottom:339.587933pt;}
.y118{bottom:341.587933pt;}
.y5e{bottom:343.921267pt;}
.ya{bottom:347.254600pt;}
.ycf{bottom:347.921267pt;}
.ya8{bottom:348.921267pt;}
.y7f{bottom:351.587933pt;}
.y37{bottom:354.921267pt;}
.y117{bottom:355.587933pt;}
.ye3{bottom:358.921267pt;}
.y5d{bottom:359.254600pt;}
.y9{bottom:360.587933pt;}
.yc0{bottom:362.587933pt;}
.ya7{bottom:364.254600pt;}
.y7e{bottom:366.921267pt;}
.y116{bottom:369.587933pt;}
.y36{bottom:370.254600pt;}
.y8{bottom:373.921267pt;}
.y5c{bottom:374.587933pt;}
.yce{bottom:376.921267pt;}
.ybf{bottom:377.921267pt;}
.ya6{bottom:379.587933pt;}
.y7d{bottom:382.254600pt;}
.y115{bottom:383.587933pt;}
.y35{bottom:385.587933pt;}
.y7{bottom:387.254600pt;}
.y5b{bottom:389.921267pt;}
.ybe{bottom:393.254600pt;}
.ycd{bottom:396.921267pt;}
.y97{bottom:397.587933pt;}
.y6{bottom:400.587933pt;}
.y34{bottom:400.921267pt;}
.ya5{bottom:402.587933pt;}
.y5a{bottom:405.254600pt;}
.ye2{bottom:406.921267pt;}
.ybd{bottom:408.587933pt;}
.y114{bottom:411.587933pt;}
.y96{bottom:412.921267pt;}
.y5{bottom:413.921267pt;}
.y33{bottom:416.254600pt;}
.y59{bottom:420.587933pt;}
.ye1{bottom:422.254600pt;}
.ycc{bottom:424.921267pt;}
.y113{bottom:425.587933pt;}
.y4{bottom:427.254600pt;}
.y95{bottom:428.254600pt;}
.y32{bottom:431.587933pt;}
.y58{bottom:435.921267pt;}
.y112{bottom:439.587933pt;}
.y3{bottom:440.587933pt;}
.ya4{bottom:440.921267pt;}
.y94{bottom:443.587933pt;}
.ye0{bottom:445.254600pt;}
.y31{bottom:446.921267pt;}
.y57{bottom:451.254600pt;}
.y111{bottom:453.587933pt;}
.y2{bottom:453.921267pt;}
.ya3{bottom:456.254600pt;}
.y7c{bottom:458.921267pt;}
.ybc{bottom:460.587933pt;}
.y30{bottom:462.254600pt;}
.y56{bottom:466.587933pt;}
.y110{bottom:467.587933pt;}
.ya2{bottom:471.587933pt;}
.y7b{bottom:474.254600pt;}
.ybb{bottom:475.921267pt;}
.y2f{bottom:477.587933pt;}
.y1{bottom:480.587933pt;}
.y10f{bottom:481.587933pt;}
.y55{bottom:481.921267pt;}
.ydf{bottom:483.587933pt;}
.ya1{bottom:486.921267pt;}
.y7a{bottom:489.587933pt;}
.y2e{bottom:492.921267pt;}
.y10e{bottom:495.587933pt;}
.y54{bottom:497.254600pt;}
.yde{bottom:498.921267pt;}
.ya0{bottom:502.254600pt;}
.y79{bottom:504.921267pt;}
.y2d{bottom:508.254600pt;}
.y10d{bottom:509.587933pt;}
.y53{bottom:512.587933pt;}
.yba{bottom:514.254600pt;}
.y78{bottom:520.254600pt;}
.y10c{bottom:523.587933pt;}
.y52{bottom:527.921267pt;}
.ydd{bottom:529.587933pt;}
.y2c{bottom:531.254600pt;}
.y9f{bottom:532.921267pt;}
.y77{bottom:535.587933pt;}
.yb9{bottom:537.254600pt;}
.y10b{bottom:537.587933pt;}
.y51{bottom:543.254600pt;}
.ydc{bottom:544.921267pt;}
.y9e{bottom:548.254600pt;}
.y76{bottom:550.921267pt;}
.y10a{bottom:551.587933pt;}
.y50{bottom:558.587933pt;}
.ydb{bottom:560.254600pt;}
.y9d{bottom:563.587933pt;}
.y109{bottom:565.587933pt;}
.y75{bottom:566.254600pt;}
.y4f{bottom:573.921267pt;}
.yb8{bottom:575.587933pt;}
.y9c{bottom:578.921267pt;}
.y108{bottom:579.587933pt;}
.y2b{bottom:580.921267pt;}
.y74{bottom:581.587933pt;}
.y4e{bottom:589.254600pt;}
.yb7{bottom:590.921267pt;}
.y107{bottom:593.587933pt;}
.y2a{bottom:594.254600pt;}
.y73{bottom:596.921267pt;}
.y4d{bottom:604.587933pt;}
.yb6{bottom:606.254600pt;}
.y106{bottom:607.587933pt;}
.y9b{bottom:609.587933pt;}
.y72{bottom:612.254600pt;}
.y29{bottom:612.921267pt;}
.y4c{bottom:619.921267pt;}
.yb5{bottom:621.587933pt;}
.y9a{bottom:624.921267pt;}
.y28{bottom:626.254600pt;}
.y21{bottom:627.587933pt;}
.y4b{bottom:635.254600pt;}
.y105{bottom:635.587933pt;}
.yb4{bottom:636.921267pt;}
.y27{bottom:639.587933pt;}
.y20{bottom:640.254600pt;}
.y71{bottom:642.921267pt;}
.y99{bottom:647.921267pt;}
.y104{bottom:649.587933pt;}
.y4a{bottom:650.587933pt;}
.yb3{bottom:652.254600pt;}
.y26{bottom:652.921267pt;}
.y1f{bottom:656.254600pt;}
.y70{bottom:658.254600pt;}
.y103{bottom:663.587933pt;}
.y49{bottom:665.921267pt;}
.y25{bottom:666.254600pt;}
.yb2{bottom:667.587933pt;}
.y6f{bottom:673.587933pt;}
.y102{bottom:677.587933pt;}
.y24{bottom:679.587933pt;}
.y98{bottom:680.921267pt;}
.y48{bottom:681.254600pt;}
.y6e{bottom:688.921267pt;}
.yb1{bottom:690.587933pt;}
.y101{bottom:691.587933pt;}
.y23{bottom:692.921267pt;}
.y1e{bottom:696.254600pt;}
.yf0{bottom:696.587933pt;}
.y47{bottom:704.254600pt;}
.y100{bottom:705.587933pt;}
.y1d{bottom:717.587933pt;}
.y22{bottom:719.587933pt;}
.y1c{bottom:762.921267pt;}
.h5{height:45.525333pt;}
.h4{height:51.216000pt;}
.hb{height:52.032000pt;}
.h2{height:54.061333pt;}
.h3{height:54.922667pt;}
.hd{height:56.906667pt;}
.hc{height:57.813333pt;}
.h8{height:62.597333pt;}
.ha{height:63.594667pt;}
.h9{height:63.789680pt;}
.h7{height:68.288000pt;}
.h6{height:91.050667pt;}
.h1{height:808.666667pt;}
.h0{height:808.965880pt;}
.w1{width:528.666667pt;}
.w0{width:528.766400pt;}
.x0{left:0.000000pt;}
.x1{left:45.216533pt;}
.x5{left:58.211200pt;}
.x4{left:60.473867pt;}
.x3{left:64.892533pt;}
.x2{left:365.216533pt;}
}




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