
    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_32db731ea590b74ddd9383ea.woff2')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_4da9812e48594ae53b0c8aa6.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_63e8904d88bd2ae291030b32.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_4cd380defb59eeba3db94329.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_c76098ae173c61c3fed3a1df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bbda7661082e683f3880a4a6.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_a0e50a0d4e4a9bf0d2c2ba56.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.046387;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);}
.v2{vertical-align:-68.400000px;}
.v5{vertical-align:-64.800000px;}
.v1{vertical-align:-62.640000px;}
.v6{vertical-align:-61.200000px;}
.vb{vertical-align:-54.030000px;}
.v9{vertical-align:-45.024000px;}
.v8{vertical-align:-31.518000px;}
.v4{vertical-align:-23.760000px;}
.v7{vertical-align:-9.360000px;}
.v0{vertical-align:0.000000px;}
.vc{vertical-align:13.506000px;}
.va{vertical-align:18.012000px;}
.v3{vertical-align:30.240000px;}
.vd{vertical-align:45.024000px;}
.ls19{letter-spacing:-0.936000px;}
.lsf{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.360000px;}
.lsd{letter-spacing:-0.220800px;}
.ls21{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.027360px;}
.lsa{letter-spacing:0.000000px;}
.ls16{letter-spacing:0.018000px;}
.ls10{letter-spacing:0.108000px;}
.ls1{letter-spacing:0.180000px;}
.ls1f{letter-spacing:0.324000px;}
.ls2{letter-spacing:0.360000px;}
.ls20{letter-spacing:0.738000px;}
.ls4{letter-spacing:0.900000px;}
.ls1e{letter-spacing:2.988000px;}
.ls5{letter-spacing:10.260000px;}
.ls1a{letter-spacing:30.348000px;}
.ls15{letter-spacing:31.140000px;}
.ls13{letter-spacing:45.468000px;}
.ls6{letter-spacing:52.560000px;}
.ls8{letter-spacing:55.620000px;}
.ls3{letter-spacing:66.420000px;}
.ls12{letter-spacing:68.628000px;}
.ls0{letter-spacing:154.980000px;}
.ls11{letter-spacing:1007.700000px;}
.ls9{letter-spacing:1295.700000px;}
.ls7{letter-spacing:1367.340000px;}
.ls18{letter-spacing:1410.900000px;}
.ls17{letter-spacing:1428.300000px;}
.ls1b{letter-spacing:1823.700000px;}
.ls1c{letter-spacing:1859.700000px;}
.ls1d{letter-spacing:2043.900000px;}
.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:-54.000000px;}
.ws1{word-spacing:-19.980000px;}
.ws0{word-spacing:-18.000000px;}
.wsc{word-spacing:-16.102200px;}
.ws3{word-spacing:-14.580000px;}
.ws5{word-spacing:-14.220000px;}
.ws2{word-spacing:-14.192640px;}
.ws4{word-spacing:-13.999200px;}
.ws9{word-spacing:-13.860000px;}
.ws8{word-spacing:-13.500000px;}
.wse{word-spacing:-13.284000px;}
.wsa{word-spacing:-13.140000px;}
.ws6{word-spacing:-10.440000px;}
.ws7{word-spacing:-9.000000px;}
.wsb{word-spacing:0.000000px;}
._15{margin-left:-331.998720px;}
._1{margin-left:-3.225600px;}
._0{margin-left:-1.368000px;}
._2{width:1.524240px;}
._6{width:3.234000px;}
._5{width:4.374000px;}
._7{width:5.513760px;}
._a{width:7.175040px;}
._d{width:8.267760px;}
._8{width:9.954000px;}
._9{width:11.531760px;}
._10{width:15.138000px;}
._b{width:16.757760px;}
._12{width:20.225760px;}
._11{width:21.348000px;}
._e{width:25.866000px;}
._f{width:27.041760px;}
._c{width:1041.240000px;}
._4{width:1441.260000px;}
._3{width:1574.460000px;}
._13{width:1701.575280px;}
._14{width:1747.295520px;}
._17{width:2490.503520px;}
._16{width:2706.095280px;}
.fc6{color:transparent;}
.fc4{color:rgb(32,36,41);}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,112,186);}
.fc5{color:rgb(0,0,255);}
.fc1{color:rgb(23,110,184);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs4{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fsa{font-size:63.360000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs3{font-size:81.360000px;}
.fs6{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.ya4{bottom:26.325000px;}
.y77{bottom:34.215000px;}
.yd3{bottom:38.535000px;}
.y2{bottom:43.125000px;}
.y3e{bottom:54.060000px;}
.y4{bottom:57.960000px;}
.ye7{bottom:59.944500px;}
.ya3{bottom:65.910000px;}
.y76{bottom:70.185000px;}
.yd2{bottom:70.560000px;}
.y3{bottom:76.890000px;}
.ya2{bottom:81.420000px;}
.y75{bottom:85.695000px;}
.yd1{bottom:86.070000px;}
.ya1{bottom:96.900000px;}
.y1{bottom:100.530000px;}
.y74{bottom:101.355000px;}
.y3b{bottom:101.370000px;}
.yd0{bottom:101.730000px;}
.ya0{bottom:112.380000px;}
.y73{bottom:116.475000px;}
.y3a{bottom:116.850000px;}
.ycf{bottom:117.210000px;}
.y9f{bottom:128.040000px;}
.y72{bottom:132.135000px;}
.y39{bottom:132.510000px;}
.yce{bottom:132.690000px;}
.y9e{bottom:143.520000px;}
.y38{bottom:147.810000px;}
.y71{bottom:148.155000px;}
.ycd{bottom:148.170000px;}
.y9d{bottom:159.000000px;}
.y37{bottom:163.290000px;}
.y70{bottom:163.635000px;}
.ycc{bottom:163.830000px;}
.y9c{bottom:174.480000px;}
.y36{bottom:178.950000px;}
.ycb{bottom:179.130000px;}
.y6f{bottom:179.295000px;}
.y9b{bottom:190.140000px;}
.y6e{bottom:194.775000px;}
.y9a{bottom:205.620000px;}
.y6d{bottom:210.255000px;}
.y35{bottom:210.450000px;}
.yca{bottom:210.630000px;}
.y99{bottom:221.100000px;}
.y34{bottom:226.110000px;}
.y6c{bottom:226.815000px;}
.y98{bottom:236.760000px;}
.y33{bottom:241.590000px;}
.y6b{bottom:243.375000px;}
.y97{bottom:251.880000px;}
.y32{bottom:257.070000px;}
.yc9{bottom:257.250000px;}
.y6a{bottom:259.935000px;}
.y96{bottom:267.540000px;}
.y31{bottom:272.550000px;}
.yc8{bottom:272.730000px;}
.y69{bottom:276.675000px;}
.y95{bottom:283.560000px;}
.y30{bottom:288.210000px;}
.y68{bottom:293.235000px;}
.y94{bottom:299.040000px;}
.y2f{bottom:303.690000px;}
.y67{bottom:309.795000px;}
.y2e{bottom:319.170000px;}
.yc7{bottom:319.350000px;}
.y66{bottom:326.355000px;}
.y93{bottom:330.000000px;}
.yc6{bottom:334.650000px;}
.y2d{bottom:334.830000px;}
.y65{bottom:342.060000px;}
.y92{bottom:342.825000px;}
.yc5{bottom:350.175000px;}
.y2c{bottom:350.355000px;}
.y64{bottom:357.180000px;}
.y2b{bottom:365.835000px;}
.y63{bottom:372.840000px;}
.y2a{bottom:381.315000px;}
.yc4{bottom:381.675000px;}
.y62{bottom:388.320000px;}
.y29{bottom:396.975000px;}
.yc3{bottom:397.335000px;}
.y61{bottom:404.340000px;}
.y28{bottom:412.455000px;}
.yc2{bottom:412.815000px;}
.y60{bottom:419.820000px;}
.y27{bottom:427.935000px;}
.yc1{bottom:428.295000px;}
.y5f{bottom:435.300000px;}
.yc0{bottom:443.775000px;}
.y5e{bottom:450.960000px;}
.y26{bottom:458.895000px;}
.ybf{bottom:459.435000px;}
.y5d{bottom:466.260000px;}
.ybe{bottom:474.915000px;}
.y5c{bottom:481.740000px;}
.y25{bottom:489.855000px;}
.ybd{bottom:490.395000px;}
.y5b{bottom:497.760000px;}
.ybc{bottom:505.875000px;}
.y24{bottom:508.035000px;}
.y5a{bottom:513.240000px;}
.ybb{bottom:521.355000px;}
.y59{bottom:528.720000px;}
.y23{bottom:537.015000px;}
.y58{bottom:544.380000px;}
.yba{bottom:552.495000px;}
.y22{bottom:555.195000px;}
.y57{bottom:559.860000px;}
.yb9{bottom:567.975000px;}
.y21{bottom:570.855000px;}
.y56{bottom:575.340000px;}
.yb8{bottom:583.455000px;}
.y20{bottom:586.335000px;}
.y55{bottom:590.820000px;}
.yb7{bottom:599.115000px;}
.y1f{bottom:601.815000px;}
.y54{bottom:606.510000px;}
.yb6{bottom:614.625000px;}
.y1e{bottom:617.505000px;}
.y53{bottom:622.170000px;}
.yb5{bottom:630.105000px;}
.y52{bottom:637.290000px;}
.y1d{bottom:639.825000px;}
.yb4{bottom:645.585000px;}
.y51{bottom:653.310000px;}
.y1c{bottom:655.485000px;}
.yb3{bottom:661.245000px;}
.y50{bottom:668.790000px;}
.y1b{bottom:670.965000px;}
.y91{bottom:676.725000px;}
.y4f{bottom:684.270000px;}
.y1a{bottom:686.445000px;}
.yb2{bottom:692.205000px;}
.y90{bottom:692.385000px;}
.y4e{bottom:699.750000px;}
.y19{bottom:701.925000px;}
.y8f{bottom:707.865000px;}
.y4d{bottom:716.490000px;}
.y18{bottom:717.585000px;}
.yb1{bottom:722.985000px;}
.y8e{bottom:723.345000px;}
.y4c{bottom:733.050000px;}
.yb0{bottom:738.645000px;}
.y8d{bottom:738.825000px;}
.y17{bottom:739.725000px;}
.y4b{bottom:748.530000px;}
.y8c{bottom:754.485000px;}
.yaf{bottom:754.665000px;}
.y4a{bottom:765.090000px;}
.y16{bottom:766.545000px;}
.y8b{bottom:769.965000px;}
.yae{bottom:770.145000px;}
.y49{bottom:781.830000px;}
.y15{bottom:782.025000px;}
.y8a{bottom:785.445000px;}
.yad{bottom:785.625000px;}
.y48{bottom:797.310000px;}
.y14{bottom:797.505000px;}
.y89{bottom:800.745000px;}
.yac{bottom:801.285000px;}
.y47{bottom:812.970000px;}
.y88{bottom:816.405000px;}
.yab{bottom:816.765000px;}
.y87{bottom:831.885000px;}
.y13{bottom:832.245000px;}
.y46{bottom:844.110000px;}
.yaa{bottom:847.725000px;}
.y86{bottom:847.905000px;}
.y12{bottom:853.665000px;}
.y45{bottom:856.350000px;}
.y85{bottom:863.385000px;}
.ya9{bottom:878.730000px;}
.y84{bottom:878.910000px;}
.y11{bottom:882.510000px;}
.y83{bottom:894.390000px;}
.ya8{bottom:909.870000px;}
.y82{bottom:910.050000px;}
.y10{bottom:917.430000px;}
.y81{bottom:925.710000px;}
.y80{bottom:940.830000px;}
.ya7{bottom:941.190000px;}
.yf{bottom:956.670000px;}
.y7f{bottom:956.850000px;}
.ye6{bottom:971.644500px;}
.y7e{bottom:972.330000px;}
.ye5{bottom:987.123000px;}
.ya6{bottom:987.810000px;}
.y7d{bottom:987.990000px;}
.ye2{bottom:1000.150500px;}
.ye4{bottom:1002.777000px;}
.ya5{bottom:1003.290000px;}
.y7c{bottom:1003.470000px;}
.yde{bottom:1013.452500px;}
.ye{bottom:1016.070000px;}
.ye3{bottom:1018.435500px;}
.y7b{bottom:1018.950000px;}
.ydb{bottom:1028.937000px;}
.ye1{bottom:1033.915500px;}
.yb{bottom:1034.070000px;}
.y7a{bottom:1034.430000px;}
.yd{bottom:1039.290000px;}
.ye0{bottom:1049.572500px;}
.y79{bottom:1049.910000px;}
.ydf{bottom:1051.732500px;}
.ya{bottom:1057.290000px;}
.ydd{bottom:1065.240000px;}
.y78{bottom:1065.570000px;}
.yc{bottom:1071.330000px;}
.ydc{bottom:1075.092000px;}
.yda{bottom:1080.717000px;}
.y44{bottom:1081.050000px;}
.y9{bottom:1086.630000px;}
.yd9{bottom:1096.374000px;}
.y43{bottom:1096.530000px;}
.yd7{bottom:1103.875500px;}
.y8{bottom:1105.710000px;}
.y42{bottom:1112.010000px;}
.yd8{bottom:1112.034000px;}
.y7{bottom:1122.990000px;}
.yd6{bottom:1127.520000px;}
.y41{bottom:1127.670000px;}
.y6{bottom:1140.300000px;}
.y40{bottom:1143.180000px;}
.yd5{bottom:1143.210000px;}
.y5{bottom:1158.300000px;}
.yd4{bottom:1158.510000px;}
.y3f{bottom:1158.660000px;}
.y3d{bottom:1175.160000px;}
.y3c{bottom:1193.700000px;}
.hb{height:35.314453px;}
.hf{height:38.158594px;}
.h10{height:47.344922px;}
.h6{height:48.616875px;}
.hc{height:52.971680px;}
.h11{height:52.998047px;}
.hd{height:54.421875px;}
.h13{height:55.503491px;}
.h7{height:55.796836px;}
.h12{height:55.824609px;}
.h8{height:58.621992px;}
.h3{height:60.226875px;}
.he{height:62.153438px;}
.h1{height:65.010937px;}
.h15{height:66.504047px;}
.h4{height:66.757500px;}
.h14{height:71.010047px;}
.ha{height:72.326250px;}
.h2{height:72.562500px;}
.h5{height:81.995625px;}
.h9{height:84.898125px;}
.h16{height:98.022047px;}
.h0{height:1263.000000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:29.925000px;}
.xc{left:46.980000px;}
.xe{left:50.448000px;}
.x11{left:74.325000px;}
.x15{left:82.905000px;}
.x12{left:101.415000px;}
.x7{left:244.170000px;}
.xa{left:245.520000px;}
.x5{left:270.300000px;}
.xb{left:280.980000px;}
.x6{left:290.610000px;}
.x16{left:393.450000px;}
.x18{left:403.860000px;}
.x13{left:409.200000px;}
.xd{left:412.803000px;}
.x17{left:418.140000px;}
.x24{left:431.571300px;}
.x2{left:433.200000px;}
.xf{left:449.778000px;}
.x3{left:465.525000px;}
.x8{left:478.965000px;}
.x9{left:506.580000px;}
.x10{left:581.055000px;}
.x14{left:631.305000px;}
.x1b{left:990.120000px;}
.x1a{left:1006.830000px;}
.x19{left:1019.400000px;}
.x1{left:1022.850000px;}
.x1c{left:1056.870000px;}
.x23{left:1121.196300px;}
.x20{left:1139.754000px;}
.x1d{left:1144.782000px;}
.x21{left:1189.029000px;}
.x22{left:1190.151300px;}
.x1f{left:1195.002000px;}
.x1e{left:1211.892000px;}
@media print{
.v2{vertical-align:-60.800000pt;}
.v5{vertical-align:-57.600000pt;}
.v1{vertical-align:-55.680000pt;}
.v6{vertical-align:-54.400000pt;}
.vb{vertical-align:-48.026667pt;}
.v9{vertical-align:-40.021333pt;}
.v8{vertical-align:-28.016000pt;}
.v4{vertical-align:-21.120000pt;}
.v7{vertical-align:-8.320000pt;}
.v0{vertical-align:0.000000pt;}
.vc{vertical-align:12.005333pt;}
.va{vertical-align:16.010667pt;}
.v3{vertical-align:26.880000pt;}
.vd{vertical-align:40.021333pt;}
.ls19{letter-spacing:-0.832000pt;}
.lsf{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.320000pt;}
.lsd{letter-spacing:-0.196267pt;}
.ls21{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.024320pt;}
.lsa{letter-spacing:0.000000pt;}
.ls16{letter-spacing:0.016000pt;}
.ls10{letter-spacing:0.096000pt;}
.ls1{letter-spacing:0.160000pt;}
.ls1f{letter-spacing:0.288000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls20{letter-spacing:0.656000pt;}
.ls4{letter-spacing:0.800000pt;}
.ls1e{letter-spacing:2.656000pt;}
.ls5{letter-spacing:9.120000pt;}
.ls1a{letter-spacing:26.976000pt;}
.ls15{letter-spacing:27.680000pt;}
.ls13{letter-spacing:40.416000pt;}
.ls6{letter-spacing:46.720000pt;}
.ls8{letter-spacing:49.440000pt;}
.ls3{letter-spacing:59.040000pt;}
.ls12{letter-spacing:61.002667pt;}
.ls0{letter-spacing:137.760000pt;}
.ls11{letter-spacing:895.733333pt;}
.ls9{letter-spacing:1151.733333pt;}
.ls7{letter-spacing:1215.413333pt;}
.ls18{letter-spacing:1254.133333pt;}
.ls17{letter-spacing:1269.600000pt;}
.ls1b{letter-spacing:1621.066667pt;}
.ls1c{letter-spacing:1653.066667pt;}
.ls1d{letter-spacing:1816.800000pt;}
.wsd{word-spacing:-48.000000pt;}
.ws1{word-spacing:-17.760000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsc{word-spacing:-14.313067pt;}
.ws3{word-spacing:-12.960000pt;}
.ws5{word-spacing:-12.640000pt;}
.ws2{word-spacing:-12.615680pt;}
.ws4{word-spacing:-12.443733pt;}
.ws9{word-spacing:-12.320000pt;}
.ws8{word-spacing:-12.000000pt;}
.wse{word-spacing:-11.808000pt;}
.wsa{word-spacing:-11.680000pt;}
.ws6{word-spacing:-9.280000pt;}
.ws7{word-spacing:-8.000000pt;}
.wsb{word-spacing:0.000000pt;}
._15{margin-left:-295.109973pt;}
._1{margin-left:-2.867200pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.354880pt;}
._6{width:2.874667pt;}
._5{width:3.888000pt;}
._7{width:4.901120pt;}
._a{width:6.377813pt;}
._d{width:7.349120pt;}
._8{width:8.848000pt;}
._9{width:10.250453pt;}
._10{width:13.456000pt;}
._b{width:14.895787pt;}
._12{width:17.978453pt;}
._11{width:18.976000pt;}
._e{width:22.992000pt;}
._f{width:24.037120pt;}
._c{width:925.546667pt;}
._4{width:1281.120000pt;}
._3{width:1399.520000pt;}
._13{width:1512.511360pt;}
._14{width:1553.151573pt;}
._17{width:2213.780907pt;}
._16{width:2405.418027pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs4{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fsa{font-size:56.320000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs3{font-size:72.320000pt;}
.fs6{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.ya4{bottom:23.400000pt;}
.y77{bottom:30.413333pt;}
.yd3{bottom:34.253333pt;}
.y2{bottom:38.333333pt;}
.y3e{bottom:48.053333pt;}
.y4{bottom:51.520000pt;}
.ye7{bottom:53.284000pt;}
.ya3{bottom:58.586667pt;}
.y76{bottom:62.386667pt;}
.yd2{bottom:62.720000pt;}
.y3{bottom:68.346667pt;}
.ya2{bottom:72.373333pt;}
.y75{bottom:76.173333pt;}
.yd1{bottom:76.506667pt;}
.ya1{bottom:86.133333pt;}
.y1{bottom:89.360000pt;}
.y74{bottom:90.093333pt;}
.y3b{bottom:90.106667pt;}
.yd0{bottom:90.426667pt;}
.ya0{bottom:99.893333pt;}
.y73{bottom:103.533333pt;}
.y3a{bottom:103.866667pt;}
.ycf{bottom:104.186667pt;}
.y9f{bottom:113.813333pt;}
.y72{bottom:117.453333pt;}
.y39{bottom:117.786667pt;}
.yce{bottom:117.946667pt;}
.y9e{bottom:127.573333pt;}
.y38{bottom:131.386667pt;}
.y71{bottom:131.693333pt;}
.ycd{bottom:131.706667pt;}
.y9d{bottom:141.333333pt;}
.y37{bottom:145.146667pt;}
.y70{bottom:145.453333pt;}
.ycc{bottom:145.626667pt;}
.y9c{bottom:155.093333pt;}
.y36{bottom:159.066667pt;}
.ycb{bottom:159.226667pt;}
.y6f{bottom:159.373333pt;}
.y9b{bottom:169.013333pt;}
.y6e{bottom:173.133333pt;}
.y9a{bottom:182.773333pt;}
.y6d{bottom:186.893333pt;}
.y35{bottom:187.066667pt;}
.yca{bottom:187.226667pt;}
.y99{bottom:196.533333pt;}
.y34{bottom:200.986667pt;}
.y6c{bottom:201.613333pt;}
.y98{bottom:210.453333pt;}
.y33{bottom:214.746667pt;}
.y6b{bottom:216.333333pt;}
.y97{bottom:223.893333pt;}
.y32{bottom:228.506667pt;}
.yc9{bottom:228.666667pt;}
.y6a{bottom:231.053333pt;}
.y96{bottom:237.813333pt;}
.y31{bottom:242.266667pt;}
.yc8{bottom:242.426667pt;}
.y69{bottom:245.933333pt;}
.y95{bottom:252.053333pt;}
.y30{bottom:256.186667pt;}
.y68{bottom:260.653333pt;}
.y94{bottom:265.813333pt;}
.y2f{bottom:269.946667pt;}
.y67{bottom:275.373333pt;}
.y2e{bottom:283.706667pt;}
.yc7{bottom:283.866667pt;}
.y66{bottom:290.093333pt;}
.y93{bottom:293.333333pt;}
.yc6{bottom:297.466667pt;}
.y2d{bottom:297.626667pt;}
.y65{bottom:304.053333pt;}
.y92{bottom:304.733333pt;}
.yc5{bottom:311.266667pt;}
.y2c{bottom:311.426667pt;}
.y64{bottom:317.493333pt;}
.y2b{bottom:325.186667pt;}
.y63{bottom:331.413333pt;}
.y2a{bottom:338.946667pt;}
.yc4{bottom:339.266667pt;}
.y62{bottom:345.173333pt;}
.y29{bottom:352.866667pt;}
.yc3{bottom:353.186667pt;}
.y61{bottom:359.413333pt;}
.y28{bottom:366.626667pt;}
.yc2{bottom:366.946667pt;}
.y60{bottom:373.173333pt;}
.y27{bottom:380.386667pt;}
.yc1{bottom:380.706667pt;}
.y5f{bottom:386.933333pt;}
.yc0{bottom:394.466667pt;}
.y5e{bottom:400.853333pt;}
.y26{bottom:407.906667pt;}
.ybf{bottom:408.386667pt;}
.y5d{bottom:414.453333pt;}
.ybe{bottom:422.146667pt;}
.y5c{bottom:428.213333pt;}
.y25{bottom:435.426667pt;}
.ybd{bottom:435.906667pt;}
.y5b{bottom:442.453333pt;}
.ybc{bottom:449.666667pt;}
.y24{bottom:451.586667pt;}
.y5a{bottom:456.213333pt;}
.ybb{bottom:463.426667pt;}
.y59{bottom:469.973333pt;}
.y23{bottom:477.346667pt;}
.y58{bottom:483.893333pt;}
.yba{bottom:491.106667pt;}
.y22{bottom:493.506667pt;}
.y57{bottom:497.653333pt;}
.yb9{bottom:504.866667pt;}
.y21{bottom:507.426667pt;}
.y56{bottom:511.413333pt;}
.yb8{bottom:518.626667pt;}
.y20{bottom:521.186667pt;}
.y55{bottom:525.173333pt;}
.yb7{bottom:532.546667pt;}
.y1f{bottom:534.946667pt;}
.y54{bottom:539.120000pt;}
.yb6{bottom:546.333333pt;}
.y1e{bottom:548.893333pt;}
.y53{bottom:553.040000pt;}
.yb5{bottom:560.093333pt;}
.y52{bottom:566.480000pt;}
.y1d{bottom:568.733333pt;}
.yb4{bottom:573.853333pt;}
.y51{bottom:580.720000pt;}
.y1c{bottom:582.653333pt;}
.yb3{bottom:587.773333pt;}
.y50{bottom:594.480000pt;}
.y1b{bottom:596.413333pt;}
.y91{bottom:601.533333pt;}
.y4f{bottom:608.240000pt;}
.y1a{bottom:610.173333pt;}
.yb2{bottom:615.293333pt;}
.y90{bottom:615.453333pt;}
.y4e{bottom:622.000000pt;}
.y19{bottom:623.933333pt;}
.y8f{bottom:629.213333pt;}
.y4d{bottom:636.880000pt;}
.y18{bottom:637.853333pt;}
.yb1{bottom:642.653333pt;}
.y8e{bottom:642.973333pt;}
.y4c{bottom:651.600000pt;}
.yb0{bottom:656.573333pt;}
.y8d{bottom:656.733333pt;}
.y17{bottom:657.533333pt;}
.y4b{bottom:665.360000pt;}
.y8c{bottom:670.653333pt;}
.yaf{bottom:670.813333pt;}
.y4a{bottom:680.080000pt;}
.y16{bottom:681.373333pt;}
.y8b{bottom:684.413333pt;}
.yae{bottom:684.573333pt;}
.y49{bottom:694.960000pt;}
.y15{bottom:695.133333pt;}
.y8a{bottom:698.173333pt;}
.yad{bottom:698.333333pt;}
.y48{bottom:708.720000pt;}
.y14{bottom:708.893333pt;}
.y89{bottom:711.773333pt;}
.yac{bottom:712.253333pt;}
.y47{bottom:722.640000pt;}
.y88{bottom:725.693333pt;}
.yab{bottom:726.013333pt;}
.y87{bottom:739.453333pt;}
.y13{bottom:739.773333pt;}
.y46{bottom:750.320000pt;}
.yaa{bottom:753.533333pt;}
.y86{bottom:753.693333pt;}
.y12{bottom:758.813333pt;}
.y45{bottom:761.200000pt;}
.y85{bottom:767.453333pt;}
.ya9{bottom:781.093333pt;}
.y84{bottom:781.253333pt;}
.y11{bottom:784.453333pt;}
.y83{bottom:795.013333pt;}
.ya8{bottom:808.773333pt;}
.y82{bottom:808.933333pt;}
.y10{bottom:815.493333pt;}
.y81{bottom:822.853333pt;}
.y80{bottom:836.293333pt;}
.ya7{bottom:836.613333pt;}
.yf{bottom:850.373333pt;}
.y7f{bottom:850.533333pt;}
.ye6{bottom:863.684000pt;}
.y7e{bottom:864.293333pt;}
.ye5{bottom:877.442667pt;}
.ya6{bottom:878.053333pt;}
.y7d{bottom:878.213333pt;}
.ye2{bottom:889.022667pt;}
.ye4{bottom:891.357333pt;}
.ya5{bottom:891.813333pt;}
.y7c{bottom:891.973333pt;}
.yde{bottom:900.846667pt;}
.ye{bottom:903.173333pt;}
.ye3{bottom:905.276000pt;}
.y7b{bottom:905.733333pt;}
.ydb{bottom:914.610667pt;}
.ye1{bottom:919.036000pt;}
.yb{bottom:919.173333pt;}
.y7a{bottom:919.493333pt;}
.yd{bottom:923.813333pt;}
.ye0{bottom:932.953333pt;}
.y79{bottom:933.253333pt;}
.ydf{bottom:934.873333pt;}
.ya{bottom:939.813333pt;}
.ydd{bottom:946.880000pt;}
.y78{bottom:947.173333pt;}
.yc{bottom:952.293333pt;}
.ydc{bottom:955.637333pt;}
.yda{bottom:960.637333pt;}
.y44{bottom:960.933333pt;}
.y9{bottom:965.893333pt;}
.yd9{bottom:974.554667pt;}
.y43{bottom:974.693333pt;}
.yd7{bottom:981.222667pt;}
.y8{bottom:982.853333pt;}
.y42{bottom:988.453333pt;}
.yd8{bottom:988.474667pt;}
.y7{bottom:998.213333pt;}
.yd6{bottom:1002.240000pt;}
.y41{bottom:1002.373333pt;}
.y6{bottom:1013.600000pt;}
.y40{bottom:1016.160000pt;}
.yd5{bottom:1016.186667pt;}
.y5{bottom:1029.600000pt;}
.yd4{bottom:1029.786667pt;}
.y3f{bottom:1029.920000pt;}
.y3d{bottom:1044.586667pt;}
.y3c{bottom:1061.066667pt;}
.hb{height:31.390625pt;}
.hf{height:33.918750pt;}
.h10{height:42.084375pt;}
.h6{height:43.215000pt;}
.hc{height:47.085938pt;}
.h11{height:47.109375pt;}
.hd{height:48.375000pt;}
.h13{height:49.336436pt;}
.h7{height:49.597187pt;}
.h12{height:49.621875pt;}
.h8{height:52.108438pt;}
.h3{height:53.535000pt;}
.he{height:55.247500pt;}
.h1{height:57.787500pt;}
.h15{height:59.114708pt;}
.h4{height:59.340000pt;}
.h14{height:63.120042pt;}
.ha{height:64.290000pt;}
.h2{height:64.500000pt;}
.h5{height:72.885000pt;}
.h9{height:75.465000pt;}
.h16{height:87.130708pt;}
.h0{height:1122.666667pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:26.600000pt;}
.xc{left:41.760000pt;}
.xe{left:44.842667pt;}
.x11{left:66.066667pt;}
.x15{left:73.693333pt;}
.x12{left:90.146667pt;}
.x7{left:217.040000pt;}
.xa{left:218.240000pt;}
.x5{left:240.266667pt;}
.xb{left:249.760000pt;}
.x6{left:258.320000pt;}
.x16{left:349.733333pt;}
.x18{left:358.986667pt;}
.x13{left:363.733333pt;}
.xd{left:366.936000pt;}
.x17{left:371.680000pt;}
.x24{left:383.618933pt;}
.x2{left:385.066667pt;}
.xf{left:399.802667pt;}
.x3{left:413.800000pt;}
.x8{left:425.746667pt;}
.x9{left:450.293333pt;}
.x10{left:516.493333pt;}
.x14{left:561.160000pt;}
.x1b{left:880.106667pt;}
.x1a{left:894.960000pt;}
.x19{left:906.133333pt;}
.x1{left:909.200000pt;}
.x1c{left:939.440000pt;}
.x23{left:996.618933pt;}
.x20{left:1013.114667pt;}
.x1d{left:1017.584000pt;}
.x21{left:1056.914667pt;}
.x22{left:1057.912267pt;}
.x1f{left:1062.224000pt;}
.x1e{left:1077.237333pt;}
}




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