
    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_8061d2823dc55c6410b062d0.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_c7a502d9a0795882dae6d927.woff')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_807baf0018ddadcb12df9a6a.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_f834e1f54101a0f9b46e38a6.woff')format("woff");}.ff4{font-family:ff4;line-height:1.104004;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_d02e68bb8067cf0c33918ee8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.938965;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_71300c7f8dcdda4f62174167.woff')format("woff");}.ff6{font-family:ff6;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_defca4745d71b77212ec84c0.woff')format("woff");}.ff7{font-family:ff7;line-height:1.003906;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_afced36d0140b16781d5d775.woff')format("woff");}.ff8{font-family:ff8;line-height:0.767578;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:ff9;src:url('chunks/assets/font_030b63902574477789b5679a.woff')format("woff");}.ff9{font-family:ff9;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-70.560000px;}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-1.440000px;}
.ls2b{letter-spacing:-0.612000px;}
.ls2c{letter-spacing:-0.460200px;}
.ls1b{letter-spacing:-0.457800px;}
.lsf{letter-spacing:-0.360000px;}
.ls1d{letter-spacing:-0.305400px;}
.lse{letter-spacing:-0.269400px;}
.ls27{letter-spacing:-0.158400px;}
.ls1e{letter-spacing:-0.144000px;}
.ls12{letter-spacing:-0.126000px;}
.ls13{letter-spacing:-0.108000px;}
.lsd{letter-spacing:-0.053280px;}
.ls28{letter-spacing:-0.018000px;}
.lsb{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.018000px;}
.lsc{letter-spacing:0.106800px;}
.ls11{letter-spacing:0.108000px;}
.ls26{letter-spacing:0.109200px;}
.ls1c{letter-spacing:0.109440px;}
.ls29{letter-spacing:0.126000px;}
.ls2a{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.228000px;}
.ls16{letter-spacing:0.230400px;}
.ls1{letter-spacing:0.259920px;}
.ls15{letter-spacing:0.262080px;}
.ls10{letter-spacing:0.269400px;}
.ls0{letter-spacing:0.360000px;}
.ls8{letter-spacing:2.340000px;}
.ls9{letter-spacing:4.500000px;}
.ls20{letter-spacing:5.760000px;}
.ls2{letter-spacing:6.636000px;}
.ls4{letter-spacing:6.660000px;}
.ls19{letter-spacing:12.960000px;}
.ls18{letter-spacing:13.656000px;}
.ls6{letter-spacing:13.860000px;}
.ls25{letter-spacing:20.880000px;}
.ls22{letter-spacing:23.760000px;}
.ls21{letter-spacing:24.480000px;}
.ls24{letter-spacing:30.960000px;}
.ls7{letter-spacing:31.140000px;}
.lsa{letter-spacing:33.300000px;}
.ls17{letter-spacing:34.740000px;}
.ls23{letter-spacing:36.000000px;}
.ls14{letter-spacing:49.860000px;}
.ls1f{letter-spacing:119.081280px;}
.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;}
}
.ws10{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.ws11{word-spacing:-16.401600px;}
.wsf{word-spacing:-16.254600px;}
.wse{word-spacing:-16.102200px;}
.ws1{word-spacing:-15.300000px;}
.wsd{word-spacing:-15.120000px;}
.ws2{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws6{word-spacing:-13.860000px;}
.ws13{word-spacing:-13.626000px;}
.ws8{word-spacing:-13.500000px;}
.ws12{word-spacing:-13.482000px;}
.wsa{word-spacing:-13.392000px;}
.ws9{word-spacing:-13.374000px;}
.ws7{word-spacing:-13.140000px;}
.ws14{word-spacing:-12.888000px;}
.ws5{word-spacing:-12.060000px;}
.ws3{word-spacing:-11.790600px;}
.ws4{word-spacing:-11.700000px;}
.wsc{word-spacing:0.000000px;}
._2{margin-left:-2.558880px;}
._1{margin-left:-1.156320px;}
._0{width:1.122960px;}
._b{width:2.646000px;}
._f{width:3.856320px;}
._13{width:4.921440px;}
._3{width:6.336000px;}
._14{width:7.385040px;}
._e{width:8.446320px;}
._d{width:9.558000px;}
._21{width:11.232000px;}
._12{width:12.474000px;}
._27{width:13.554720px;}
._6{width:14.718000px;}
._11{width:15.952320px;}
._a{width:17.464320px;}
._9{width:19.170000px;}
._24{width:20.414880px;}
._31{width:22.154400px;}
._15{width:23.581440px;}
._16{width:25.032960px;}
._1a{width:26.146080px;}
._36{width:27.365760px;}
._33{width:28.615680px;}
._7{width:30.366000px;}
._8{width:31.475040px;}
._c{width:33.054960px;}
._25{width:34.543200px;}
._34{width:35.781120px;}
._20{width:37.359360px;}
._30{width:39.101760px;}
._2f{width:40.117680px;}
._26{width:41.165280px;}
._1e{width:42.194880px;}
._1f{width:44.091360px;}
._22{width:47.427840px;}
._19{width:49.216320px;}
._1b{width:50.671200px;}
._29{width:51.973920px;}
._10{width:54.216000px;}
._18{width:55.375680px;}
._17{width:56.802240px;}
._3b{width:58.026240px;}
._23{width:59.050080px;}
._28{width:60.410880px;}
._2a{width:64.054080px;}
._4{width:67.932000px;}
._5{width:69.358320px;}
._2b{width:72.201600px;}
._2c{width:73.321920px;}
._3a{width:84.919680px;}
._39{width:86.376960px;}
._1c{width:89.092800px;}
._1d{width:90.447840px;}
._37{width:93.729600px;}
._38{width:94.885920px;}
._3c{width:98.570880px;}
._35{width:120.123360px;}
._2d{width:147.384000px;}
._2e{width:148.672800px;}
._32{width:469.269120px;}
._3e{width:636.138000px;}
._3d{width:637.185840px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:12.240000px;}
.fs2{font-size:48.240000px;}
.fs5{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs4{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:56.880000px;}
.y56{bottom:90.360000px;}
.y6c{bottom:95.220000px;}
.y2f{bottom:95.580000px;}
.y5f{bottom:97.560000px;}
.y86{bottom:98.136000px;}
.y55{bottom:109.476000px;}
.y2e{bottom:114.696000px;}
.y5e{bottom:116.496000px;}
.y85{bottom:117.036000px;}
.y54{bottom:128.376000px;}
.y6b{bottom:130.176000px;}
.y2d{bottom:133.596000px;}
.y5d{bottom:135.396000px;}
.y84{bottom:136.116000px;}
.y53{bottom:147.456000px;}
.y6a{bottom:149.256000px;}
.y2c{bottom:152.490000px;}
.y5c{bottom:154.470000px;}
.y83{bottom:155.010000px;}
.y52{bottom:166.350000px;}
.y69{bottom:168.150000px;}
.y2b{bottom:171.570000px;}
.y5b{bottom:173.370000px;}
.y82{bottom:174.090000px;}
.y51{bottom:185.250000px;}
.y68{bottom:187.230000px;}
.y2a{bottom:190.470000px;}
.y5a{bottom:192.450000px;}
.y81{bottom:192.990000px;}
.y50{bottom:204.330000px;}
.y67{bottom:206.130000px;}
.y29{bottom:208.650000px;}
.y59{bottom:211.350000px;}
.y80{bottom:211.890000px;}
.y4f{bottom:223.230000px;}
.y28{bottom:224.310000px;}
.y66{bottom:225.030000px;}
.y58{bottom:230.250000px;}
.y7f{bottom:230.970000px;}
.y27{bottom:239.790000px;}
.y4e{bottom:242.310000px;}
.y65{bottom:243.570000px;}
.y57{bottom:245.550000px;}
.y7e{bottom:249.870000px;}
.y26{bottom:255.270000px;}
.y4d{bottom:261.210000px;}
.y64{bottom:261.390000px;}
.y7d{bottom:268.950000px;}
.y25{bottom:270.750000px;}
.y4c{bottom:280.155000px;}
.y63{bottom:280.335000px;}
.y24{bottom:286.455000px;}
.y7c{bottom:287.895000px;}
.y4b{bottom:299.235000px;}
.y23{bottom:301.935000px;}
.y7b{bottom:306.795000px;}
.y22{bottom:317.415000px;}
.y4a{bottom:318.135000px;}
.y62{bottom:318.315000px;}
.y7a{bottom:325.875000px;}
.y21{bottom:332.895000px;}
.y49{bottom:337.215000px;}
.y79{bottom:344.775000px;}
.y20{bottom:348.555000px;}
.y48{bottom:356.115000px;}
.y61{bottom:356.295000px;}
.y78{bottom:363.855000px;}
.y1f{bottom:364.035000px;}
.y60{bottom:371.595000px;}
.y47{bottom:375.195000px;}
.y1e{bottom:379.515000px;}
.y77{bottom:382.755000px;}
.y46{bottom:394.095000px;}
.y1d{bottom:394.995000px;}
.y76{bottom:401.655000px;}
.ya0{bottom:402.195000px;}
.y1c{bottom:410.655000px;}
.y45{bottom:412.995000px;}
.y9f{bottom:419.475000px;}
.y75{bottom:420.735000px;}
.y1b{bottom:426.135000px;}
.y44{bottom:432.075000px;}
.y9e{bottom:436.755000px;}
.y74{bottom:439.635000px;}
.y1a{bottom:441.615000px;}
.y43{bottom:450.975000px;}
.y9d{bottom:454.065000px;}
.y19{bottom:457.125000px;}
.y73{bottom:458.745000px;}
.y42{bottom:470.085000px;}
.y9c{bottom:470.985000px;}
.y18{bottom:472.785000px;}
.y72{bottom:477.645000px;}
.y9b{bottom:486.465000px;}
.y17{bottom:488.265000px;}
.y41{bottom:488.985000px;}
.y71{bottom:496.725000px;}
.y9a{bottom:501.945000px;}
.y16{bottom:503.745000px;}
.y40{bottom:507.885000px;}
.y70{bottom:515.625000px;}
.y99{bottom:517.605000px;}
.y15{bottom:519.225000px;}
.y3f{bottom:526.965000px;}
.y98{bottom:533.085000px;}
.y6f{bottom:534.525000px;}
.y14{bottom:534.885000px;}
.y3e{bottom:545.865000px;}
.y97{bottom:548.565000px;}
.y13{bottom:550.365000px;}
.y6e{bottom:553.605000px;}
.y96{bottom:564.045000px;}
.y3d{bottom:564.945000px;}
.y12{bottom:565.845000px;}
.y6d{bottom:568.905000px;}
.y95{bottom:579.705000px;}
.y11{bottom:581.325000px;}
.y3c{bottom:583.845000px;}
.y94{bottom:595.185000px;}
.y10{bottom:596.985000px;}
.y3b{bottom:602.745000px;}
.y93{bottom:610.665000px;}
.yf{bottom:612.465000px;}
.y3a{bottom:621.825000px;}
.y92{bottom:626.145000px;}
.ye{bottom:627.945000px;}
.y39{bottom:640.770000px;}
.y91{bottom:641.850000px;}
.yd{bottom:643.470000px;}
.y90{bottom:657.330000px;}
.yc{bottom:658.950000px;}
.y38{bottom:659.850000px;}
.y8f{bottom:672.810000px;}
.yb{bottom:674.610000px;}
.y37{bottom:678.750000px;}
.y8e{bottom:688.290000px;}
.ya{bottom:689.730000px;}
.y36{bottom:697.650000px;}
.y8d{bottom:703.950000px;}
.y9{bottom:704.670000px;}
.y35{bottom:716.730000px;}
.y8c{bottom:719.430000px;}
.y8{bottom:723.570000px;}
.y8b{bottom:734.910000px;}
.y34{bottom:735.630000px;}
.y7{bottom:742.650000px;}
.y8a{bottom:750.390000px;}
.y33{bottom:754.710000px;}
.y6{bottom:761.550000px;}
.y89{bottom:766.050000px;}
.y32{bottom:773.610000px;}
.y5{bottom:777.570000px;}
.y88{bottom:781.170000px;}
.y4{bottom:782.790000px;}
.y31{bottom:792.690000px;}
.y87{bottom:795.390000px;}
.y3{bottom:796.650000px;}
.y30{bottom:824.580000px;}
.y1{bottom:825.840000px;}
.h5{height:12.335625px;}
.ha{height:39.049805px;}
.h4{height:47.344922px;}
.hc{height:47.901094px;}
.h8{height:52.998047px;}
.h9{height:54.421875px;}
.h11{height:58.621992px;}
.hf{height:58.651172px;}
.h6{height:58.833281px;}
.h2{height:60.226875px;}
.hd{height:64.978594px;}
.hb{height:65.010937px;}
.he{height:65.884219px;}
.h7{height:66.757500px;}
.h10{height:68.084282px;}
.h3{height:70.664062px;}
.h0{height:892.980000px;}
.h1{height:893.250000px;}
.w1{width:629.250000px;}
.w2{width:629.459991px;}
.w0{width:629.460000px;}
.x0{left:0.000000px;}
.x3{left:84.995991px;}
.x1{left:98.855991px;}
.x4{left:122.615991px;}
.x8{left:131.795991px;}
.x5{left:165.269991px;}
.x9{left:212.474991px;}
.x7{left:262.874991px;}
.xd{left:267.914991px;}
.x2{left:301.214991px;}
.x6{left:314.714991px;}
.xe{left:329.474991px;}
.xc{left:531.869991px;}
.xa{left:539.429991px;}
.xb{left:564.629991px;}
@media print{
.v1{vertical-align:-62.720000pt;}
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-1.280000pt;}
.ls2b{letter-spacing:-0.544000pt;}
.ls2c{letter-spacing:-0.409067pt;}
.ls1b{letter-spacing:-0.406933pt;}
.lsf{letter-spacing:-0.320000pt;}
.ls1d{letter-spacing:-0.271467pt;}
.lse{letter-spacing:-0.239467pt;}
.ls27{letter-spacing:-0.140800pt;}
.ls1e{letter-spacing:-0.128000pt;}
.ls12{letter-spacing:-0.112000pt;}
.ls13{letter-spacing:-0.096000pt;}
.lsd{letter-spacing:-0.047360pt;}
.ls28{letter-spacing:-0.016000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.016000pt;}
.lsc{letter-spacing:0.094933pt;}
.ls11{letter-spacing:0.096000pt;}
.ls26{letter-spacing:0.097067pt;}
.ls1c{letter-spacing:0.097280pt;}
.ls29{letter-spacing:0.112000pt;}
.ls2a{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.202667pt;}
.ls16{letter-spacing:0.204800pt;}
.ls1{letter-spacing:0.231040pt;}
.ls15{letter-spacing:0.232960pt;}
.ls10{letter-spacing:0.239467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls8{letter-spacing:2.080000pt;}
.ls9{letter-spacing:4.000000pt;}
.ls20{letter-spacing:5.120000pt;}
.ls2{letter-spacing:5.898667pt;}
.ls4{letter-spacing:5.920000pt;}
.ls19{letter-spacing:11.520000pt;}
.ls18{letter-spacing:12.138667pt;}
.ls6{letter-spacing:12.320000pt;}
.ls25{letter-spacing:18.560000pt;}
.ls22{letter-spacing:21.120000pt;}
.ls21{letter-spacing:21.760000pt;}
.ls24{letter-spacing:27.520000pt;}
.ls7{letter-spacing:27.680000pt;}
.lsa{letter-spacing:29.600000pt;}
.ls17{letter-spacing:30.880000pt;}
.ls23{letter-spacing:32.000000pt;}
.ls14{letter-spacing:44.320000pt;}
.ls1f{letter-spacing:105.850027pt;}
.ws10{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.ws11{word-spacing:-14.579200pt;}
.wsf{word-spacing:-14.448533pt;}
.wse{word-spacing:-14.313067pt;}
.ws1{word-spacing:-13.600000pt;}
.wsd{word-spacing:-13.440000pt;}
.ws2{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws6{word-spacing:-12.320000pt;}
.ws13{word-spacing:-12.112000pt;}
.ws8{word-spacing:-12.000000pt;}
.ws12{word-spacing:-11.984000pt;}
.wsa{word-spacing:-11.904000pt;}
.ws9{word-spacing:-11.888000pt;}
.ws7{word-spacing:-11.680000pt;}
.ws14{word-spacing:-11.456000pt;}
.ws5{word-spacing:-10.720000pt;}
.ws3{word-spacing:-10.480533pt;}
.ws4{word-spacing:-10.400000pt;}
.wsc{word-spacing:0.000000pt;}
._2{margin-left:-2.274560pt;}
._1{margin-left:-1.027840pt;}
._0{width:0.998187pt;}
._b{width:2.352000pt;}
._f{width:3.427840pt;}
._13{width:4.374613pt;}
._3{width:5.632000pt;}
._14{width:6.564480pt;}
._e{width:7.507840pt;}
._d{width:8.496000pt;}
._21{width:9.984000pt;}
._12{width:11.088000pt;}
._27{width:12.048640pt;}
._6{width:13.082667pt;}
._11{width:14.179840pt;}
._a{width:15.523840pt;}
._9{width:17.040000pt;}
._24{width:18.146560pt;}
._31{width:19.692800pt;}
._15{width:20.961280pt;}
._16{width:22.251520pt;}
._1a{width:23.240960pt;}
._36{width:24.325120pt;}
._33{width:25.436160pt;}
._7{width:26.992000pt;}
._8{width:27.977813pt;}
._c{width:29.382187pt;}
._25{width:30.705067pt;}
._34{width:31.805440pt;}
._20{width:33.208320pt;}
._30{width:34.757120pt;}
._2f{width:35.660160pt;}
._26{width:36.591360pt;}
._1e{width:37.506560pt;}
._1f{width:39.192320pt;}
._22{width:42.158080pt;}
._19{width:43.747840pt;}
._1b{width:45.041067pt;}
._29{width:46.199040pt;}
._10{width:48.192000pt;}
._18{width:49.222827pt;}
._17{width:50.490880pt;}
._3b{width:51.578880pt;}
._23{width:52.488960pt;}
._28{width:53.698560pt;}
._2a{width:56.936960pt;}
._4{width:60.384000pt;}
._5{width:61.651840pt;}
._2b{width:64.179200pt;}
._2c{width:65.175040pt;}
._3a{width:75.484160pt;}
._39{width:76.779520pt;}
._1c{width:79.193600pt;}
._1d{width:80.398080pt;}
._37{width:83.315200pt;}
._38{width:84.343040pt;}
._3c{width:87.618560pt;}
._35{width:106.776320pt;}
._2d{width:131.008000pt;}
._2e{width:132.153600pt;}
._32{width:417.128107pt;}
._3e{width:565.456000pt;}
._3d{width:566.387413pt;}
.fs3{font-size:10.880000pt;}
.fs2{font-size:42.880000pt;}
.fs5{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs4{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:50.560000pt;}
.y56{bottom:80.320000pt;}
.y6c{bottom:84.640000pt;}
.y2f{bottom:84.960000pt;}
.y5f{bottom:86.720000pt;}
.y86{bottom:87.232000pt;}
.y55{bottom:97.312000pt;}
.y2e{bottom:101.952000pt;}
.y5e{bottom:103.552000pt;}
.y85{bottom:104.032000pt;}
.y54{bottom:114.112000pt;}
.y6b{bottom:115.712000pt;}
.y2d{bottom:118.752000pt;}
.y5d{bottom:120.352000pt;}
.y84{bottom:120.992000pt;}
.y53{bottom:131.072000pt;}
.y6a{bottom:132.672000pt;}
.y2c{bottom:135.546667pt;}
.y5c{bottom:137.306667pt;}
.y83{bottom:137.786667pt;}
.y52{bottom:147.866667pt;}
.y69{bottom:149.466667pt;}
.y2b{bottom:152.506667pt;}
.y5b{bottom:154.106667pt;}
.y82{bottom:154.746667pt;}
.y51{bottom:164.666667pt;}
.y68{bottom:166.426667pt;}
.y2a{bottom:169.306667pt;}
.y5a{bottom:171.066667pt;}
.y81{bottom:171.546667pt;}
.y50{bottom:181.626667pt;}
.y67{bottom:183.226667pt;}
.y29{bottom:185.466667pt;}
.y59{bottom:187.866667pt;}
.y80{bottom:188.346667pt;}
.y4f{bottom:198.426667pt;}
.y28{bottom:199.386667pt;}
.y66{bottom:200.026667pt;}
.y58{bottom:204.666667pt;}
.y7f{bottom:205.306667pt;}
.y27{bottom:213.146667pt;}
.y4e{bottom:215.386667pt;}
.y65{bottom:216.506667pt;}
.y57{bottom:218.266667pt;}
.y7e{bottom:222.106667pt;}
.y26{bottom:226.906667pt;}
.y4d{bottom:232.186667pt;}
.y64{bottom:232.346667pt;}
.y7d{bottom:239.066667pt;}
.y25{bottom:240.666667pt;}
.y4c{bottom:249.026667pt;}
.y63{bottom:249.186667pt;}
.y24{bottom:254.626667pt;}
.y7c{bottom:255.906667pt;}
.y4b{bottom:265.986667pt;}
.y23{bottom:268.386667pt;}
.y7b{bottom:272.706667pt;}
.y22{bottom:282.146667pt;}
.y4a{bottom:282.786667pt;}
.y62{bottom:282.946667pt;}
.y7a{bottom:289.666667pt;}
.y21{bottom:295.906667pt;}
.y49{bottom:299.746667pt;}
.y79{bottom:306.466667pt;}
.y20{bottom:309.826667pt;}
.y48{bottom:316.546667pt;}
.y61{bottom:316.706667pt;}
.y78{bottom:323.426667pt;}
.y1f{bottom:323.586667pt;}
.y60{bottom:330.306667pt;}
.y47{bottom:333.506667pt;}
.y1e{bottom:337.346667pt;}
.y77{bottom:340.226667pt;}
.y46{bottom:350.306667pt;}
.y1d{bottom:351.106667pt;}
.y76{bottom:357.026667pt;}
.ya0{bottom:357.506667pt;}
.y1c{bottom:365.026667pt;}
.y45{bottom:367.106667pt;}
.y9f{bottom:372.866667pt;}
.y75{bottom:373.986667pt;}
.y1b{bottom:378.786667pt;}
.y44{bottom:384.066667pt;}
.y9e{bottom:388.226667pt;}
.y74{bottom:390.786667pt;}
.y1a{bottom:392.546667pt;}
.y43{bottom:400.866667pt;}
.y9d{bottom:403.613333pt;}
.y19{bottom:406.333333pt;}
.y73{bottom:407.773333pt;}
.y42{bottom:417.853333pt;}
.y9c{bottom:418.653333pt;}
.y18{bottom:420.253333pt;}
.y72{bottom:424.573333pt;}
.y9b{bottom:432.413333pt;}
.y17{bottom:434.013333pt;}
.y41{bottom:434.653333pt;}
.y71{bottom:441.533333pt;}
.y9a{bottom:446.173333pt;}
.y16{bottom:447.773333pt;}
.y40{bottom:451.453333pt;}
.y70{bottom:458.333333pt;}
.y99{bottom:460.093333pt;}
.y15{bottom:461.533333pt;}
.y3f{bottom:468.413333pt;}
.y98{bottom:473.853333pt;}
.y6f{bottom:475.133333pt;}
.y14{bottom:475.453333pt;}
.y3e{bottom:485.213333pt;}
.y97{bottom:487.613333pt;}
.y13{bottom:489.213333pt;}
.y6e{bottom:492.093333pt;}
.y96{bottom:501.373333pt;}
.y3d{bottom:502.173333pt;}
.y12{bottom:502.973333pt;}
.y6d{bottom:505.693333pt;}
.y95{bottom:515.293333pt;}
.y11{bottom:516.733333pt;}
.y3c{bottom:518.973333pt;}
.y94{bottom:529.053333pt;}
.y10{bottom:530.653333pt;}
.y3b{bottom:535.773333pt;}
.y93{bottom:542.813333pt;}
.yf{bottom:544.413333pt;}
.y3a{bottom:552.733333pt;}
.y92{bottom:556.573333pt;}
.ye{bottom:558.173333pt;}
.y39{bottom:569.573333pt;}
.y91{bottom:570.533333pt;}
.yd{bottom:571.973333pt;}
.y90{bottom:584.293333pt;}
.yc{bottom:585.733333pt;}
.y38{bottom:586.533333pt;}
.y8f{bottom:598.053333pt;}
.yb{bottom:599.653333pt;}
.y37{bottom:603.333333pt;}
.y8e{bottom:611.813333pt;}
.ya{bottom:613.093333pt;}
.y36{bottom:620.133333pt;}
.y8d{bottom:625.733333pt;}
.y9{bottom:626.373333pt;}
.y35{bottom:637.093333pt;}
.y8c{bottom:639.493333pt;}
.y8{bottom:643.173333pt;}
.y8b{bottom:653.253333pt;}
.y34{bottom:653.893333pt;}
.y7{bottom:660.133333pt;}
.y8a{bottom:667.013333pt;}
.y33{bottom:670.853333pt;}
.y6{bottom:676.933333pt;}
.y89{bottom:680.933333pt;}
.y32{bottom:687.653333pt;}
.y5{bottom:691.173333pt;}
.y88{bottom:694.373333pt;}
.y4{bottom:695.813333pt;}
.y31{bottom:704.613333pt;}
.y87{bottom:707.013333pt;}
.y3{bottom:708.133333pt;}
.y30{bottom:732.960000pt;}
.y1{bottom:734.080000pt;}
.h5{height:10.965000pt;}
.ha{height:34.710938pt;}
.h4{height:42.084375pt;}
.hc{height:42.578750pt;}
.h8{height:47.109375pt;}
.h9{height:48.375000pt;}
.h11{height:52.108438pt;}
.hf{height:52.134375pt;}
.h6{height:52.296250pt;}
.h2{height:53.535000pt;}
.hd{height:57.758750pt;}
.hb{height:57.787500pt;}
.he{height:58.563750pt;}
.h7{height:59.340000pt;}
.h10{height:60.519362pt;}
.h3{height:62.812500pt;}
.h0{height:793.760000pt;}
.h1{height:794.000000pt;}
.w1{width:559.333333pt;}
.w2{width:559.519992pt;}
.w0{width:559.520000pt;}
.x0{left:0.000000pt;}
.x3{left:75.551992pt;}
.x1{left:87.871992pt;}
.x4{left:108.991992pt;}
.x8{left:117.151992pt;}
.x5{left:146.906658pt;}
.x9{left:188.866658pt;}
.x7{left:233.666658pt;}
.xd{left:238.146658pt;}
.x2{left:267.746658pt;}
.x6{left:279.746658pt;}
.xe{left:292.866658pt;}
.xc{left:472.773325pt;}
.xa{left:479.493325pt;}
.xb{left:501.893325pt;}
}




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