
    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_44ab2ef4ff2bc355e74aa6bc.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0e77d8dcd0cb644e2a264d5b.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_37c2bbff1c13c5dba53e1b26.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_1d0e89298526dda76401a793.woff')format("woff");}.ff4{font-family:ff4;line-height:1.064941;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_8830a46d087402534a05792e.woff')format("woff");}.ff5{font-family:ff5;line-height:1.435059;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_e0df9735ddad92e29dd9be85.woff')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_af86a53a424ebab7114f4711.woff')format("woff");}.ff7{font-family:ff7;line-height:1.064941;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_3737a176d81e371e9baf96fd.woff')format("woff");}.ff8{font-family:ff8;line-height:1.372070;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);}
.v1{vertical-align:-20.880000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls7{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.lsa{letter-spacing:-0.326400px;}
.lse{letter-spacing:-0.036000px;}
.lsc{letter-spacing:-0.010800px;}
.ls5{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.012960px;}
.ls2{letter-spacing:0.013200px;}
.ls14{letter-spacing:0.060480px;}
.ls8{letter-spacing:0.070800px;}
.ls3{letter-spacing:0.132960px;}
.ls6{letter-spacing:0.144000px;}
.ls1{letter-spacing:0.168480px;}
.ls18{letter-spacing:0.195000px;}
.ls4{letter-spacing:0.211680px;}
.ls1e{letter-spacing:0.319680px;}
.ls15{letter-spacing:0.347760px;}
.ls1b{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.385800px;}
.ls17{letter-spacing:0.598800px;}
.ls12{letter-spacing:0.666720px;}
.lsb{letter-spacing:0.708000px;}
.ls0{letter-spacing:0.720000px;}
.ls1a{letter-spacing:0.732000px;}
.ls11{letter-spacing:1.080000px;}
.ls13{letter-spacing:1.252800px;}
.ls16{letter-spacing:7.732800px;}
.ls1d{letter-spacing:10.612800px;}
.ls1c{letter-spacing:47.466720px;}
.ls10{letter-spacing:64.026720px;}
.ls19{letter-spacing:81.450720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wsc{word-spacing:-59.760000px;}
.wsb{word-spacing:-14.958600px;}
.ws7{word-spacing:-14.572800px;}
.wsf{word-spacing:-13.879200px;}
.wsd{word-spacing:-13.746000px;}
.wse{word-spacing:-13.342200px;}
.ws4{word-spacing:-13.160400px;}
.wsa{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.ws8{word-spacing:-13.111200px;}
.ws1{word-spacing:-9.979200px;}
.ws3{word-spacing:-9.652800px;}
.ws2{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws9{word-spacing:0.000000px;}
.ws6{word-spacing:2.408040px;}
._e{margin-left:-3.311398px;}
._9{margin-left:-2.205000px;}
._0{margin-left:-1.159200px;}
._1{width:1.110000px;}
._d{width:2.111640px;}
._2{width:3.242640px;}
._4{width:4.544412px;}
._3{width:6.035999px;}
._7{width:7.196401px;}
._8{width:8.964000px;}
._a{width:10.355399px;}
._6{width:11.798399px;}
._5{width:14.760600px;}
._f{width:16.135320px;}
._11{width:17.234881px;}
._10{width:18.382558px;}
._12{width:22.111200px;}
._c{width:24.681000px;}
._b{width:25.876200px;}
._13{width:28.027440px;}
._14{width:29.271600px;}
._15{width:30.754560px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs7{font-size:48.240000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8e{bottom:7.740000px;}
.y89{bottom:7.920000px;}
.y2{bottom:73.260000px;}
.y29{bottom:74.160000px;}
.y1{bottom:101.340000px;}
.yad{bottom:124.920000px;}
.yd5{bottom:127.620000px;}
.y85{bottom:140.220000px;}
.yac{bottom:142.560000px;}
.y58{bottom:143.820000px;}
.yd4{bottom:145.260000px;}
.y27{bottom:149.400000px;}
.y84{bottom:157.860000px;}
.yab{bottom:160.230000px;}
.y57{bottom:161.310000px;}
.y26{bottom:167.070000px;}
.yd3{bottom:171.750000px;}
.y83{bottom:175.350000px;}
.yaa{bottom:177.870000px;}
.y56{bottom:179.850000px;}
.y25{bottom:184.710000px;}
.yd2{bottom:189.390000px;}
.y82{bottom:192.990000px;}
.ya9{bottom:195.330000px;}
.y55{bottom:197.310000px;}
.y24{bottom:202.170000px;}
.y81{bottom:210.630000px;}
.ya8{bottom:212.970000px;}
.yd1{bottom:216.030000px;}
.y54{bottom:224.850000px;}
.y80{bottom:228.090000px;}
.ya7{bottom:230.610000px;}
.yd0{bottom:233.670000px;}
.y23{bottom:237.810000px;}
.y7f{bottom:245.730000px;}
.y22{bottom:255.450000px;}
.ycf{bottom:260.130000px;}
.y53{bottom:260.310000px;}
.y7e{bottom:263.370000px;}
.ya6{bottom:266.070000px;}
.y21{bottom:272.910000px;}
.yce{bottom:277.770000px;}
.y52{bottom:277.950000px;}
.y7d{bottom:280.830000px;}
.ya5{bottom:283.710000px;}
.y20{bottom:290.550000px;}
.y51{bottom:296.490000px;}
.y7c{bottom:298.470000px;}
.ya4{bottom:301.350000px;}
.ycd{bottom:304.230000px;}
.y1f{bottom:308.190000px;}
.y50{bottom:313.950000px;}
.y7b{bottom:316.110000px;}
.ycc{bottom:321.870000px;}
.y1e{bottom:325.650000px;}
.ya3{bottom:327.810000px;}
.y7a{bottom:333.750000px;}
.y4f{bottom:341.310000px;}
.ycb{bottom:348.510000px;}
.y79{bottom:351.210000px;}
.y1d{bottom:361.290000px;}
.ya2{bottom:363.450000px;}
.yca{bottom:366.150000px;}
.y78{bottom:368.850000px;}
.y4e{bottom:376.950000px;}
.y1c{bottom:378.930000px;}
.ya1{bottom:381.090000px;}
.y77{bottom:386.490000px;}
.yc9{bottom:392.610000px;}
.y4d{bottom:394.410000px;}
.y1b{bottom:396.570000px;}
.ya0{bottom:398.730000px;}
.y76{bottom:403.950000px;}
.yc8{bottom:410.295000px;}
.y4c{bottom:412.995000px;}
.y1a{bottom:414.075000px;}
.y75{bottom:421.635000px;}
.yc7{bottom:427.935000px;}
.y4b{bottom:430.635000px;}
.y19{bottom:431.715000px;}
.y9f{bottom:434.235000px;}
.y74{bottom:439.275000px;}
.y4a{bottom:448.095000px;}
.y18{bottom:449.355000px;}
.y9e{bottom:451.875000px;}
.yc6{bottom:454.395000px;}
.y73{bottom:456.735000px;}
.y9d{bottom:469.515000px;}
.yc5{bottom:472.035000px;}
.y72{bottom:474.375000px;}
.y49{bottom:475.635000px;}
.y17{bottom:475.995000px;}
.y9c{bottom:486.975000px;}
.yc4{bottom:498.855000px;}
.y71{bottom:510.015000px;}
.y48{bottom:511.095000px;}
.y9b{bottom:513.795000px;}
.y16{bottom:524.775000px;}
.y47{bottom:528.735000px;}
.y70{bottom:536.655000px;}
.y46{bottom:547.275000px;}
.y9a{bottom:561.495000px;}
.y15{bottom:561.675000px;}
.y45{bottom:564.735000px;}
.y99{bottom:573.555000px;}
.yc3{bottom:574.095000px;}
.y14{bottom:579.315000px;}
.y44{bottom:583.275000px;}
.y6f{bottom:585.075000px;}
.y13{bottom:596.955000px;}
.y43{bottom:600.735000px;}
.y98{bottom:600.915000px;}
.y6e{bottom:602.535000px;}
.yc2{bottom:611.355000px;}
.y12{bottom:614.595000px;}
.y42{bottom:628.095000px;}
.y97{bottom:628.275000px;}
.y6d{bottom:630.075000px;}
.y11{bottom:632.235000px;}
.y10{bottom:649.695000px;}
.y96{bottom:655.665000px;}
.yc1{bottom:659.805000px;}
.y41{bottom:663.765000px;}
.y6c{bottom:665.745000px;}
.yf{bottom:667.365000px;}
.yc0{bottom:677.445000px;}
.y40{bottom:681.405000px;}
.y95{bottom:683.025000px;}
.y6b{bottom:683.205000px;}
.ye{bottom:685.005000px;}
.ybf{bottom:694.905000px;}
.yd{bottom:702.465000px;}
.y3f{bottom:708.045000px;}
.y94{bottom:710.385000px;}
.y6a{bottom:710.745000px;}
.ybe{bottom:712.545000px;}
.ye8{bottom:716.505000px;}
.yc{bottom:720.105000px;}
.ybd{bottom:730.185000px;}
.ye7{bottom:734.145000px;}
.yb{bottom:737.745000px;}
.y3e{bottom:743.505000px;}
.y69{bottom:746.385000px;}
.ybc{bottom:747.645000px;}
.ye6{bottom:751.785000px;}
.ya{bottom:755.205000px;}
.y3d{bottom:761.145000px;}
.y68{bottom:763.845000px;}
.y93{bottom:764.925000px;}
.ybb{bottom:774.465000px;}
.ye5{bottom:778.245000px;}
.y3c{bottom:778.785000px;}
.y9{bottom:782.025000px;}
.y67{bottom:791.385000px;}
.y92{bottom:792.285000px;}
.ye4{bottom:795.885000px;}
.y3b{bottom:796.425000px;}
.y3a{bottom:813.885000px;}
.y91{bottom:819.645000px;}
.ye3{bottom:822.525000px;}
.yba{bottom:822.885000px;}
.y66{bottom:826.845000px;}
.y8{bottom:830.445000px;}
.y39{bottom:832.425000px;}
.ye2{bottom:840.165000px;}
.yb9{bottom:840.525000px;}
.y65{bottom:844.485000px;}
.y90{bottom:847.005000px;}
.y38{bottom:849.885000px;}
.ye1{bottom:857.625000px;}
.yb8{bottom:858.165000px;}
.y7{bottom:865.905000px;}
.y37{bottom:867.345000px;}
.y64{bottom:871.845000px;}
.y8f{bottom:874.365000px;}
.yb7{bottom:875.625000px;}
.ye0{bottom:884.265000px;}
.y36{bottom:885.885000px;}
.yb6{bottom:893.265000px;}
.y6{bottom:901.770000px;}
.ydf{bottom:901.950000px;}
.y35{bottom:903.390000px;}
.y63{bottom:907.530000px;}
.y34{bottom:921.930000px;}
.y62{bottom:925.170000px;}
.yde{bottom:928.410000px;}
.yb5{bottom:928.770000px;}
.y8d{bottom:929.130000px;}
.y5{bottom:937.770000px;}
.y33{bottom:939.570000px;}
.y61{bottom:942.630000px;}
.ydd{bottom:946.050000px;}
.yb4{bottom:946.410000px;}
.y8c{bottom:956.310000px;}
.y32{bottom:957.030000px;}
.yb3{bottom:964.050000px;}
.y60{bottom:970.170000px;}
.ydc{bottom:972.510000px;}
.y4{bottom:973.950000px;}
.y31{bottom:975.390000px;}
.yb2{bottom:981.690000px;}
.y8b{bottom:983.670000px;}
.ydb{bottom:990.150000px;}
.y30{bottom:993.930000px;}
.y5f{bottom:1005.630000px;}
.y8a{bottom:1011.030000px;}
.y3{bottom:1012.290000px;}
.yda{bottom:1016.790000px;}
.yb1{bottom:1017.150000px;}
.y2f{bottom:1021.650000px;}
.y5e{bottom:1023.270000px;}
.yd9{bottom:1034.430000px;}
.yb0{bottom:1034.790000px;}
.y88{bottom:1038.390000px;}
.y5d{bottom:1041.810000px;}
.yaf{bottom:1052.430000px;}
.y5c{bottom:1059.270000px;}
.yd8{bottom:1060.890000px;}
.y2e{bottom:1069.890000px;}
.yae{bottom:1070.070000px;}
.y5b{bottom:1077.810000px;}
.yd7{bottom:1078.530000px;}
.y87{bottom:1087.170000px;}
.y2d{bottom:1087.530000px;}
.y5a{bottom:1095.270000px;}
.yd6{bottom:1096.170000px;}
.y2c{bottom:1105.170000px;}
.y59{bottom:1112.730000px;}
.y86{bottom:1122.630000px;}
.y2b{bottom:1122.810000px;}
.y2a{bottom:1140.270000px;}
.y28{bottom:1194.300000px;}
.hc{height:26.460000px;}
.hb{height:26.640000px;}
.hd{height:26.676000px;}
.h2{height:29.717578px;}
.h3{height:38.405391px;}
.he{height:40.843828px;}
.h6{height:50.597578px;}
.h5{height:56.084062px;}
.ha{height:59.614102px;}
.h8{height:61.423863px;}
.h9{height:62.211094px;}
.h7{height:68.956875px;}
.h4{height:71.324297px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w3{width:36.180000px;}
.w6{width:136.116000px;}
.w5{width:178.050000px;}
.w4{width:227.730000px;}
.w2{width:893.159987px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x7{left:7.740000px;}
.x1{left:68.040000px;}
.x4{left:95.075987px;}
.xb{left:111.275987px;}
.x5{left:122.075987px;}
.x6{left:156.450000px;}
.x2{left:192.449987px;}
.xa{left:263.189987px;}
.x8{left:421.815000px;}
.x9{left:600.765000px;}
.x3{left:800.429987px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls7{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.lsa{letter-spacing:-0.290133pt;}
.lse{letter-spacing:-0.032000pt;}
.lsc{letter-spacing:-0.009600pt;}
.ls5{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.011520pt;}
.ls2{letter-spacing:0.011733pt;}
.ls14{letter-spacing:0.053760pt;}
.ls8{letter-spacing:0.062933pt;}
.ls3{letter-spacing:0.118187pt;}
.ls6{letter-spacing:0.128000pt;}
.ls1{letter-spacing:0.149760pt;}
.ls18{letter-spacing:0.173333pt;}
.ls4{letter-spacing:0.188160pt;}
.ls1e{letter-spacing:0.284160pt;}
.ls15{letter-spacing:0.309120pt;}
.ls1b{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.342933pt;}
.ls17{letter-spacing:0.532267pt;}
.ls12{letter-spacing:0.592640pt;}
.lsb{letter-spacing:0.629333pt;}
.ls0{letter-spacing:0.640000pt;}
.ls1a{letter-spacing:0.650667pt;}
.ls11{letter-spacing:0.960000pt;}
.ls13{letter-spacing:1.113600pt;}
.ls16{letter-spacing:6.873600pt;}
.ls1d{letter-spacing:9.433600pt;}
.ls1c{letter-spacing:42.192640pt;}
.ls10{letter-spacing:56.912640pt;}
.ls19{letter-spacing:72.400640pt;}
.wsc{word-spacing:-53.120000pt;}
.wsb{word-spacing:-13.296533pt;}
.ws7{word-spacing:-12.953600pt;}
.wsf{word-spacing:-12.337067pt;}
.wsd{word-spacing:-12.218667pt;}
.wse{word-spacing:-11.859733pt;}
.ws4{word-spacing:-11.698133pt;}
.wsa{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.ws8{word-spacing:-11.654400pt;}
.ws1{word-spacing:-8.870400pt;}
.ws3{word-spacing:-8.580267pt;}
.ws2{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws9{word-spacing:0.000000pt;}
.ws6{word-spacing:2.140480pt;}
._e{margin-left:-2.943465pt;}
._9{margin-left:-1.960000pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.986667pt;}
._d{width:1.877013pt;}
._2{width:2.882347pt;}
._4{width:4.039478pt;}
._3{width:5.365332pt;}
._7{width:6.396801pt;}
._8{width:7.968000pt;}
._a{width:9.204799pt;}
._6{width:10.487466pt;}
._5{width:13.120534pt;}
._f{width:14.342506pt;}
._11{width:15.319894pt;}
._10{width:16.340052pt;}
._12{width:19.654400pt;}
._c{width:21.938666pt;}
._b{width:23.001066pt;}
._13{width:24.913280pt;}
._14{width:26.019200pt;}
._15{width:27.337387pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs7{font-size:42.880000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8e{bottom:6.880000pt;}
.y89{bottom:7.040000pt;}
.y2{bottom:65.120000pt;}
.y29{bottom:65.920000pt;}
.y1{bottom:90.080000pt;}
.yad{bottom:111.040000pt;}
.yd5{bottom:113.440000pt;}
.y85{bottom:124.640000pt;}
.yac{bottom:126.720000pt;}
.y58{bottom:127.840000pt;}
.yd4{bottom:129.120000pt;}
.y27{bottom:132.800000pt;}
.y84{bottom:140.320000pt;}
.yab{bottom:142.426667pt;}
.y57{bottom:143.386667pt;}
.y26{bottom:148.506667pt;}
.yd3{bottom:152.666667pt;}
.y83{bottom:155.866667pt;}
.yaa{bottom:158.106667pt;}
.y56{bottom:159.866667pt;}
.y25{bottom:164.186667pt;}
.yd2{bottom:168.346667pt;}
.y82{bottom:171.546667pt;}
.ya9{bottom:173.626667pt;}
.y55{bottom:175.386667pt;}
.y24{bottom:179.706667pt;}
.y81{bottom:187.226667pt;}
.ya8{bottom:189.306667pt;}
.yd1{bottom:192.026667pt;}
.y54{bottom:199.866667pt;}
.y80{bottom:202.746667pt;}
.ya7{bottom:204.986667pt;}
.yd0{bottom:207.706667pt;}
.y23{bottom:211.386667pt;}
.y7f{bottom:218.426667pt;}
.y22{bottom:227.066667pt;}
.ycf{bottom:231.226667pt;}
.y53{bottom:231.386667pt;}
.y7e{bottom:234.106667pt;}
.ya6{bottom:236.506667pt;}
.y21{bottom:242.586667pt;}
.yce{bottom:246.906667pt;}
.y52{bottom:247.066667pt;}
.y7d{bottom:249.626667pt;}
.ya5{bottom:252.186667pt;}
.y20{bottom:258.266667pt;}
.y51{bottom:263.546667pt;}
.y7c{bottom:265.306667pt;}
.ya4{bottom:267.866667pt;}
.ycd{bottom:270.426667pt;}
.y1f{bottom:273.946667pt;}
.y50{bottom:279.066667pt;}
.y7b{bottom:280.986667pt;}
.ycc{bottom:286.106667pt;}
.y1e{bottom:289.466667pt;}
.ya3{bottom:291.386667pt;}
.y7a{bottom:296.666667pt;}
.y4f{bottom:303.386667pt;}
.ycb{bottom:309.786667pt;}
.y79{bottom:312.186667pt;}
.y1d{bottom:321.146667pt;}
.ya2{bottom:323.066667pt;}
.yca{bottom:325.466667pt;}
.y78{bottom:327.866667pt;}
.y4e{bottom:335.066667pt;}
.y1c{bottom:336.826667pt;}
.ya1{bottom:338.746667pt;}
.y77{bottom:343.546667pt;}
.yc9{bottom:348.986667pt;}
.y4d{bottom:350.586667pt;}
.y1b{bottom:352.506667pt;}
.ya0{bottom:354.426667pt;}
.y76{bottom:359.066667pt;}
.yc8{bottom:364.706667pt;}
.y4c{bottom:367.106667pt;}
.y1a{bottom:368.066667pt;}
.y75{bottom:374.786667pt;}
.yc7{bottom:380.386667pt;}
.y4b{bottom:382.786667pt;}
.y19{bottom:383.746667pt;}
.y9f{bottom:385.986667pt;}
.y74{bottom:390.466667pt;}
.y4a{bottom:398.306667pt;}
.y18{bottom:399.426667pt;}
.y9e{bottom:401.666667pt;}
.yc6{bottom:403.906667pt;}
.y73{bottom:405.986667pt;}
.y9d{bottom:417.346667pt;}
.yc5{bottom:419.586667pt;}
.y72{bottom:421.666667pt;}
.y49{bottom:422.786667pt;}
.y17{bottom:423.106667pt;}
.y9c{bottom:432.866667pt;}
.yc4{bottom:443.426667pt;}
.y71{bottom:453.346667pt;}
.y48{bottom:454.306667pt;}
.y9b{bottom:456.706667pt;}
.y16{bottom:466.466667pt;}
.y47{bottom:469.986667pt;}
.y70{bottom:477.026667pt;}
.y46{bottom:486.466667pt;}
.y9a{bottom:499.106667pt;}
.y15{bottom:499.266667pt;}
.y45{bottom:501.986667pt;}
.y99{bottom:509.826667pt;}
.yc3{bottom:510.306667pt;}
.y14{bottom:514.946667pt;}
.y44{bottom:518.466667pt;}
.y6f{bottom:520.066667pt;}
.y13{bottom:530.626667pt;}
.y43{bottom:533.986667pt;}
.y98{bottom:534.146667pt;}
.y6e{bottom:535.586667pt;}
.yc2{bottom:543.426667pt;}
.y12{bottom:546.306667pt;}
.y42{bottom:558.306667pt;}
.y97{bottom:558.466667pt;}
.y6d{bottom:560.066667pt;}
.y11{bottom:561.986667pt;}
.y10{bottom:577.506667pt;}
.y96{bottom:582.813333pt;}
.yc1{bottom:586.493333pt;}
.y41{bottom:590.013333pt;}
.y6c{bottom:591.773333pt;}
.yf{bottom:593.213333pt;}
.yc0{bottom:602.173333pt;}
.y40{bottom:605.693333pt;}
.y95{bottom:607.133333pt;}
.y6b{bottom:607.293333pt;}
.ye{bottom:608.893333pt;}
.ybf{bottom:617.693333pt;}
.yd{bottom:624.413333pt;}
.y3f{bottom:629.373333pt;}
.y94{bottom:631.453333pt;}
.y6a{bottom:631.773333pt;}
.ybe{bottom:633.373333pt;}
.ye8{bottom:636.893333pt;}
.yc{bottom:640.093333pt;}
.ybd{bottom:649.053333pt;}
.ye7{bottom:652.573333pt;}
.yb{bottom:655.773333pt;}
.y3e{bottom:660.893333pt;}
.y69{bottom:663.453333pt;}
.ybc{bottom:664.573333pt;}
.ye6{bottom:668.253333pt;}
.ya{bottom:671.293333pt;}
.y3d{bottom:676.573333pt;}
.y68{bottom:678.973333pt;}
.y93{bottom:679.933333pt;}
.ybb{bottom:688.413333pt;}
.ye5{bottom:691.773333pt;}
.y3c{bottom:692.253333pt;}
.y9{bottom:695.133333pt;}
.y67{bottom:703.453333pt;}
.y92{bottom:704.253333pt;}
.ye4{bottom:707.453333pt;}
.y3b{bottom:707.933333pt;}
.y3a{bottom:723.453333pt;}
.y91{bottom:728.573333pt;}
.ye3{bottom:731.133333pt;}
.yba{bottom:731.453333pt;}
.y66{bottom:734.973333pt;}
.y8{bottom:738.173333pt;}
.y39{bottom:739.933333pt;}
.ye2{bottom:746.813333pt;}
.yb9{bottom:747.133333pt;}
.y65{bottom:750.653333pt;}
.y90{bottom:752.893333pt;}
.y38{bottom:755.453333pt;}
.ye1{bottom:762.333333pt;}
.yb8{bottom:762.813333pt;}
.y7{bottom:769.693333pt;}
.y37{bottom:770.973333pt;}
.y64{bottom:774.973333pt;}
.y8f{bottom:777.213333pt;}
.yb7{bottom:778.333333pt;}
.ye0{bottom:786.013333pt;}
.y36{bottom:787.453333pt;}
.yb6{bottom:794.013333pt;}
.y6{bottom:801.573333pt;}
.ydf{bottom:801.733333pt;}
.y35{bottom:803.013333pt;}
.y63{bottom:806.693333pt;}
.y34{bottom:819.493333pt;}
.y62{bottom:822.373333pt;}
.yde{bottom:825.253333pt;}
.yb5{bottom:825.573333pt;}
.y8d{bottom:825.893333pt;}
.y5{bottom:833.573333pt;}
.y33{bottom:835.173333pt;}
.y61{bottom:837.893333pt;}
.ydd{bottom:840.933333pt;}
.yb4{bottom:841.253333pt;}
.y8c{bottom:850.053333pt;}
.y32{bottom:850.693333pt;}
.yb3{bottom:856.933333pt;}
.y60{bottom:862.373333pt;}
.ydc{bottom:864.453333pt;}
.y4{bottom:865.733333pt;}
.y31{bottom:867.013333pt;}
.yb2{bottom:872.613333pt;}
.y8b{bottom:874.373333pt;}
.ydb{bottom:880.133333pt;}
.y30{bottom:883.493333pt;}
.y5f{bottom:893.893333pt;}
.y8a{bottom:898.693333pt;}
.y3{bottom:899.813333pt;}
.yda{bottom:903.813333pt;}
.yb1{bottom:904.133333pt;}
.y2f{bottom:908.133333pt;}
.y5e{bottom:909.573333pt;}
.yd9{bottom:919.493333pt;}
.yb0{bottom:919.813333pt;}
.y88{bottom:923.013333pt;}
.y5d{bottom:926.053333pt;}
.yaf{bottom:935.493333pt;}
.y5c{bottom:941.573333pt;}
.yd8{bottom:943.013333pt;}
.y2e{bottom:951.013333pt;}
.yae{bottom:951.173333pt;}
.y5b{bottom:958.053333pt;}
.yd7{bottom:958.693333pt;}
.y87{bottom:966.373333pt;}
.y2d{bottom:966.693333pt;}
.y5a{bottom:973.573333pt;}
.yd6{bottom:974.373333pt;}
.y2c{bottom:982.373333pt;}
.y59{bottom:989.093333pt;}
.y86{bottom:997.893333pt;}
.y2b{bottom:998.053333pt;}
.y2a{bottom:1013.573333pt;}
.y28{bottom:1061.600000pt;}
.hc{height:23.520000pt;}
.hb{height:23.680000pt;}
.hd{height:23.712000pt;}
.h2{height:26.415625pt;}
.h3{height:34.138125pt;}
.he{height:36.305625pt;}
.h6{height:44.975625pt;}
.h5{height:49.852500pt;}
.ha{height:52.990313pt;}
.h8{height:54.598989pt;}
.h9{height:55.298750pt;}
.h7{height:61.295000pt;}
.h4{height:63.399375pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w3{width:32.160000pt;}
.w6{width:120.992000pt;}
.w5{width:158.266667pt;}
.w4{width:202.426667pt;}
.w2{width:793.919988pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x7{left:6.880000pt;}
.x1{left:60.480000pt;}
.x4{left:84.511988pt;}
.xb{left:98.911988pt;}
.x5{left:108.511988pt;}
.x6{left:139.066667pt;}
.x2{left:171.066655pt;}
.xa{left:233.946655pt;}
.x8{left:374.946667pt;}
.x9{left:534.013333pt;}
.x3{left:711.493322pt;}
}




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