
    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_ef91b827eca536e16e0ddf4e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.666504;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_2a4b20e28bbacc0922cd452e.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_be54f2699d062794c9c216d1.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.112305;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_5b364512be0748a26fa532ed.woff2')format("woff");}.ff4{font-family:ff4;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;}
.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:-22.768066px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.321681px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:-36.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws0{word-spacing:-10.800000px;}
.ws2{word-spacing:-9.000000px;}
.ws3{word-spacing:0.000000px;}
._0{margin-left:-7.033967px;}
._b{margin-left:-5.027327px;}
._e{margin-left:-2.531231px;}
._1{margin-left:-1.001361px;}
._5{width:4.500001px;}
._4{width:8.999991px;}
._3{width:13.499999px;}
._2{width:22.500000px;}
._a{width:27.000002px;}
._9{width:31.500015px;}
._8{width:36.000001px;}
._10{width:40.499999px;}
._d{width:54.000022px;}
._c{width:58.500000px;}
._7{width:63.000000px;}
._6{width:67.500002px;}
._f{width:198.000000px;}
._12{width:499.499989px;}
._11{width:504.000000px;}
.fc1{color:rgb(17,85,204);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:36.000000px;}
.fs3{font-size:43.200002px;}
.fs5{font-size:59.999999px;}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y4c{bottom:17.016358px;}
.y2c{bottom:17.016724px;}
.y8f{bottom:17.017090px;}
.ybb{bottom:37.157959px;}
.y4b{bottom:37.158326px;}
.y2b{bottom:37.158418px;}
.y8d{bottom:70.444328px;}
.y29{bottom:70.444613px;}
.y49{bottom:70.444703px;}
.y28{bottom:109.684934px;}
.y48{bottom:110.379998px;}
.y79{bottom:112.425293px;}
.y8c{bottom:120.341678px;}
.y27{bottom:132.625485px;}
.y47{bottom:132.716862px;}
.y78{bottom:134.761958px;}
.y8b{bottom:142.678707px;}
.yba{bottom:146.786866px;}
.y77{bottom:157.098998px;}
.yb9{bottom:169.123535px;}
.y76{bottom:179.435662px;}
.y26{bottom:179.941497px;}
.yb8{bottom:191.460938px;}
.y75{bottom:201.772715px;}
.y25{bottom:202.278351px;}
.y74{bottom:224.109380px;}
.y24{bottom:224.615203px;}
.yb7{bottom:225.797242px;}
.y73{bottom:246.446412px;}
.y23{bottom:246.952057px;}
.yb6{bottom:248.134274px;}
.y72{bottom:268.783086px;}
.y22{bottom:269.288909px;}
.yb5{bottom:270.470948px;}
.y71{bottom:291.120127px;}
.y21{bottom:291.625762px;}
.yb4{bottom:304.808339px;}
.y20{bottom:312.324007px;}
.y70{bottom:313.456792px;}
.yb3{bottom:327.145013px;}
.y1f{bottom:333.022252px;}
.y6f{bottom:335.793824px;}
.y6e{bottom:358.130498px;}
.yb2{bottom:361.481693px;}
.y1e{bottom:367.359007px;}
.y6d{bottom:380.467527px;}
.yb1{bottom:383.818364px;}
.y1d{bottom:401.695859px;}
.y6c{bottom:402.804201px;}
.yb0{bottom:406.155398px;}
.y1c{bottom:424.032712px;}
.y6b{bottom:425.141242px;}
.yaf{bottom:440.492062px;}
.y1b{bottom:446.369573px;}
.y6a{bottom:447.477907px;}
.yae{bottom:462.829094px;}
.y1a{bottom:468.706418px;}
.y69{bottom:469.814939px;}
.yad{bottom:485.165768px;}
.y19{bottom:491.043322px;}
.y68{bottom:492.151612px;}
.yac{bottom:505.864012px;}
.y18{bottom:513.380174px;}
.y67{bottom:514.488652px;}
.yab{bottom:526.562257px;}
.y17{bottom:535.717027px;}
.y66{bottom:536.825318px;}
.yaa{bottom:547.260503px;}
.y16{bottom:558.053879px;}
.y65{bottom:559.162358px;}
.ya9{bottom:567.958747px;}
.y15{bottom:580.390732px;}
.y64{bottom:581.499021px;}
.y46{bottom:581.499022px;}
.ya8{bottom:588.656979px;}
.y14{bottom:602.727584px;}
.y45{bottom:603.835883px;}
.y63{bottom:603.836062px;}
.ya7{bottom:609.355222px;}
.y13{bottom:625.064437px;}
.y62{bottom:626.172727px;}
.y44{bottom:626.172732px;}
.ya6{bottom:630.053463px;}
.y12{bottom:647.401289px;}
.y43{bottom:648.509586px;}
.y61{bottom:648.509759px;}
.ya5{bottom:650.751706px;}
.y11{bottom:669.738146px;}
.y8a{bottom:670.846427px;}
.y60{bottom:670.846432px;}
.y42{bottom:670.846438px;}
.ya4{bottom:671.449948px;}
.y10{bottom:692.075000px;}
.ya3{bottom:692.148190px;}
.y41{bottom:693.183292px;}
.y5f{bottom:693.183462px;}
.y89{bottom:693.183470px;}
.ya2{bottom:712.846432px;}
.yf{bottom:714.411852px;}
.y5e{bottom:715.520136px;}
.y88{bottom:715.520142px;}
.y40{bottom:715.520144px;}
.ya1{bottom:733.544679px;}
.ye{bottom:736.748706px;}
.y3f{bottom:737.856998px;}
.y87{bottom:737.857176px;}
.y5d{bottom:737.857177px;}
.ya0{bottom:754.242922px;}
.yd{bottom:759.085558px;}
.y86{bottom:760.193839px;}
.y5c{bottom:760.193842px;}
.y3e{bottom:760.193846px;}
.y9f{bottom:774.941163px;}
.yc{bottom:781.422412px;}
.y3d{bottom:782.530700px;}
.y5b{bottom:782.530874px;}
.y85{bottom:782.530882px;}
.y9e{bottom:795.639406px;}
.yb{bottom:803.759264px;}
.y5a{bottom:804.867548px;}
.y3c{bottom:804.867552px;}
.y84{bottom:804.867554px;}
.y9d{bottom:816.337648px;}
.ya{bottom:826.096118px;}
.y3b{bottom:827.204406px;}
.y59{bottom:827.204585px;}
.y83{bottom:827.204588px;}
.y9c{bottom:837.035890px;}
.y9{bottom:848.432962px;}
.y58{bottom:849.541253px;}
.y82{bottom:849.541257px;}
.y3a{bottom:849.541258px;}
.y9b{bottom:857.734132px;}
.y8{bottom:870.769822px;}
.y39{bottom:871.878112px;}
.y81{bottom:871.878291px;}
.y57{bottom:871.878296px;}
.y9a{bottom:878.432371px;}
.y7{bottom:893.106667px;}
.y80{bottom:894.214954px;}
.y38{bottom:894.214964px;}
.y56{bottom:894.214968px;}
.y99{bottom:899.130613px;}
.y37{bottom:916.551817px;}
.y7f{bottom:916.551997px;}
.y55{bottom:916.552002px;}
.y98{bottom:919.828855px;}
.y6{bottom:928.365556px;}
.y54{bottom:938.888665px;}
.y7e{bottom:938.888669px;}
.y36{bottom:938.888677px;}
.y97{bottom:940.527098px;}
.y5{bottom:954.425194px;}
.y96{bottom:961.225343px;}
.y35{bottom:961.225523px;}
.y7d{bottom:961.225703px;}
.y53{bottom:961.225708px;}
.y4{bottom:980.484881px;}
.y95{bottom:983.562007px;}
.y52{bottom:983.562380px;}
.y34{bottom:983.562383px;}
.y94{bottom:1005.899048px;}
.y33{bottom:1005.899231px;}
.y51{bottom:1005.899414px;}
.y7c{bottom:1005.899415px;}
.y3{bottom:1018.544540px;}
.y7b{bottom:1028.236078px;}
.y32{bottom:1028.236083px;}
.y50{bottom:1028.236085px;}
.y1{bottom:1038.150009px;}
.y93{bottom:1050.572748px;}
.y31{bottom:1050.572937px;}
.y4f{bottom:1050.573120px;}
.y92{bottom:1072.909425px;}
.y30{bottom:1072.909789px;}
.y7a{bottom:1072.909793px;}
.y91{bottom:1095.246463px;}
.y2f{bottom:1095.246643px;}
.y4e{bottom:1095.246826px;}
.ybc{bottom:1117.583492px;}
.y2e{bottom:1117.583495px;}
.y90{bottom:1139.920165px;}
.y2d{bottom:1139.920349px;}
.y4d{bottom:1139.920531px;}
.y8e{bottom:1156.724853px;}
.y2a{bottom:1156.725036px;}
.y4a{bottom:1156.725219px;}
.h7{height:32.273438px;}
.h2{height:43.989259px;}
.h8{height:53.789061px;}
.h4{height:63.949219px;}
.h6{height:64.546875px;}
.h5{height:65.691214px;}
.h3{height:74.607419px;}
.hb{height:105.899775px;}
.h9{height:105.899970px;}
.hd{height:105.900150px;}
.hc{height:106.274781px;}
.ha{height:106.274964px;}
.he{height:106.275147px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x6{left:127.575005px;}
.x3{left:160.353452px;}
.x4{left:163.658054px;}
.x8{left:180.450005px;}
.xb{left:291.492342px;}
.xe{left:313.007967px;}
.xc{left:330.247715px;}
.x7{left:359.295563px;}
.x9{left:381.167150px;}
.x5{left:407.103674px;}
.x2{left:446.456716px;}
.x1{left:636.019216px;}
.xd{left:776.700005px;}
.xa{left:782.325005px;}
@media print{
.v2{vertical-align:-20.238281pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.285938pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:-32.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws0{word-spacing:-9.600000pt;}
.ws2{word-spacing:-8.000000pt;}
.ws3{word-spacing:0.000000pt;}
._0{margin-left:-6.252416pt;}
._b{margin-left:-4.468736pt;}
._e{margin-left:-2.249983pt;}
._1{margin-left:-0.890099pt;}
._5{width:4.000001pt;}
._4{width:7.999992pt;}
._3{width:11.999999pt;}
._2{width:20.000000pt;}
._a{width:24.000002pt;}
._9{width:28.000014pt;}
._8{width:32.000001pt;}
._10{width:35.999999pt;}
._d{width:48.000020pt;}
._c{width:52.000000pt;}
._7{width:56.000000pt;}
._6{width:60.000002pt;}
._f{width:176.000000pt;}
._12{width:443.999990pt;}
._11{width:448.000000pt;}
.fs4{font-size:32.000000pt;}
.fs3{font-size:38.400002pt;}
.fs5{font-size:53.333332pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y4c{bottom:15.125651pt;}
.y2c{bottom:15.125977pt;}
.y8f{bottom:15.126302pt;}
.ybb{bottom:33.029297pt;}
.y4b{bottom:33.029623pt;}
.y2b{bottom:33.029705pt;}
.y8d{bottom:62.617180pt;}
.y29{bottom:62.617434pt;}
.y49{bottom:62.617514pt;}
.y28{bottom:97.497719pt;}
.y48{bottom:98.115553pt;}
.y79{bottom:99.933593pt;}
.y8c{bottom:106.970380pt;}
.y27{bottom:117.889320pt;}
.y47{bottom:117.970544pt;}
.y78{bottom:119.788407pt;}
.y8b{bottom:126.825517pt;}
.yba{bottom:130.477215pt;}
.y77{bottom:139.643553pt;}
.yb9{bottom:150.332032pt;}
.y76{bottom:159.498367pt;}
.y26{bottom:159.947997pt;}
.yb8{bottom:170.187500pt;}
.y75{bottom:179.353525pt;}
.y25{bottom:179.802978pt;}
.y74{bottom:199.208337pt;}
.y24{bottom:199.657958pt;}
.yb7{bottom:200.708660pt;}
.y73{bottom:219.063478pt;}
.y23{bottom:219.512939pt;}
.yb6{bottom:220.563800pt;}
.y72{bottom:238.918299pt;}
.y22{bottom:239.367919pt;}
.yb5{bottom:240.418620pt;}
.y71{bottom:258.773446pt;}
.y21{bottom:259.222900pt;}
.yb4{bottom:270.940746pt;}
.y20{bottom:277.621340pt;}
.y70{bottom:278.628260pt;}
.yb3{bottom:290.795567pt;}
.y1f{bottom:296.019780pt;}
.y6f{bottom:298.483399pt;}
.y6e{bottom:318.338220pt;}
.yb2{bottom:321.317060pt;}
.y1e{bottom:326.541340pt;}
.y6d{bottom:338.193357pt;}
.yb1{bottom:341.171880pt;}
.y1d{bottom:357.062986pt;}
.y6c{bottom:358.048178pt;}
.yb0{bottom:361.027020pt;}
.y1c{bottom:376.917967pt;}
.y6b{bottom:377.903326pt;}
.yaf{bottom:391.548500pt;}
.y1b{bottom:396.772953pt;}
.y6a{bottom:397.758139pt;}
.yae{bottom:411.403639pt;}
.y1a{bottom:416.627927pt;}
.y69{bottom:417.613279pt;}
.yad{bottom:431.258460pt;}
.y19{bottom:436.482953pt;}
.y68{bottom:437.468100pt;}
.yac{bottom:449.656900pt;}
.y18{bottom:456.337933pt;}
.y67{bottom:457.323247pt;}
.yab{bottom:468.055340pt;}
.y17{bottom:476.192912pt;}
.y66{bottom:477.178060pt;}
.yaa{bottom:486.453780pt;}
.y16{bottom:496.047893pt;}
.y65{bottom:497.033207pt;}
.ya9{bottom:504.852220pt;}
.y15{bottom:515.902873pt;}
.y64{bottom:516.888019pt;}
.y46{bottom:516.888020pt;}
.ya8{bottom:523.250648pt;}
.y14{bottom:535.757853pt;}
.y45{bottom:536.743007pt;}
.y63{bottom:536.743166pt;}
.ya7{bottom:541.649086pt;}
.y13{bottom:555.612833pt;}
.y62{bottom:556.597979pt;}
.y44{bottom:556.597984pt;}
.ya6{bottom:560.047523pt;}
.y12{bottom:575.467813pt;}
.y43{bottom:576.452965pt;}
.y61{bottom:576.453119pt;}
.ya5{bottom:578.445961pt;}
.y11{bottom:595.322796pt;}
.y8a{bottom:596.307935pt;}
.y60{bottom:596.307940pt;}
.y42{bottom:596.307945pt;}
.ya4{bottom:596.844398pt;}
.y10{bottom:615.177778pt;}
.ya3{bottom:615.242836pt;}
.y41{bottom:616.162926pt;}
.y5f{bottom:616.163077pt;}
.y89{bottom:616.163084pt;}
.ya2{bottom:633.641273pt;}
.yf{bottom:635.032758pt;}
.y5e{bottom:636.017899pt;}
.y88{bottom:636.017904pt;}
.y40{bottom:636.017906pt;}
.ya1{bottom:652.039714pt;}
.ye{bottom:654.887739pt;}
.y3f{bottom:655.872887pt;}
.y87{bottom:655.873045pt;}
.y5d{bottom:655.873046pt;}
.ya0{bottom:670.438153pt;}
.yd{bottom:674.742719pt;}
.y86{bottom:675.727857pt;}
.y5c{bottom:675.727860pt;}
.y3e{bottom:675.727863pt;}
.y9f{bottom:688.836589pt;}
.yc{bottom:694.597700pt;}
.y3d{bottom:695.582844pt;}
.y5b{bottom:695.583000pt;}
.y85{bottom:695.583006pt;}
.y9e{bottom:707.235028pt;}
.yb{bottom:714.452680pt;}
.y5a{bottom:715.437820pt;}
.y3c{bottom:715.437824pt;}
.y84{bottom:715.437826pt;}
.y9d{bottom:725.633464pt;}
.ya{bottom:734.307660pt;}
.y3b{bottom:735.292805pt;}
.y59{bottom:735.292964pt;}
.y83{bottom:735.292967pt;}
.y9c{bottom:744.031903pt;}
.y9{bottom:754.162633pt;}
.y58{bottom:755.147780pt;}
.y82{bottom:755.147784pt;}
.y3a{bottom:755.147785pt;}
.y9b{bottom:762.430340pt;}
.y8{bottom:774.017620pt;}
.y39{bottom:775.002766pt;}
.y81{bottom:775.002925pt;}
.y57{bottom:775.002929pt;}
.y9a{bottom:780.828774pt;}
.y7{bottom:793.872593pt;}
.y80{bottom:794.857737pt;}
.y38{bottom:794.857746pt;}
.y56{bottom:794.857750pt;}
.y99{bottom:799.227211pt;}
.y37{bottom:814.712727pt;}
.y7f{bottom:814.712886pt;}
.y55{bottom:814.712890pt;}
.y98{bottom:817.625649pt;}
.y6{bottom:825.213827pt;}
.y54{bottom:834.567702pt;}
.y7e{bottom:834.567706pt;}
.y36{bottom:834.567713pt;}
.y97{bottom:836.024087pt;}
.y5{bottom:848.377950pt;}
.y96{bottom:854.422527pt;}
.y35{bottom:854.422687pt;}
.y7d{bottom:854.422847pt;}
.y53{bottom:854.422851pt;}
.y4{bottom:871.542116pt;}
.y95{bottom:874.277340pt;}
.y52{bottom:874.277671pt;}
.y34{bottom:874.277673pt;}
.y94{bottom:894.132487pt;}
.y33{bottom:894.132649pt;}
.y51{bottom:894.132812pt;}
.y7c{bottom:894.132813pt;}
.y3{bottom:905.372924pt;}
.y7b{bottom:913.987625pt;}
.y32{bottom:913.987630pt;}
.y50{bottom:913.987631pt;}
.y1{bottom:922.800008pt;}
.y93{bottom:933.842442pt;}
.y31{bottom:933.842610pt;}
.y4f{bottom:933.842773pt;}
.y92{bottom:953.697266pt;}
.y30{bottom:953.697590pt;}
.y7a{bottom:953.697594pt;}
.y91{bottom:973.552411pt;}
.y2f{bottom:973.552571pt;}
.y4e{bottom:973.552735pt;}
.ybc{bottom:993.407549pt;}
.y2e{bottom:993.407551pt;}
.y90{bottom:1013.262369pt;}
.y2d{bottom:1013.262532pt;}
.y4d{bottom:1013.262695pt;}
.y8e{bottom:1028.199869pt;}
.y2a{bottom:1028.200032pt;}
.y4a{bottom:1028.200195pt;}
.h7{height:28.687500pt;}
.h2{height:39.101563pt;}
.h8{height:47.812499pt;}
.h4{height:56.843750pt;}
.h6{height:57.375000pt;}
.h5{height:58.392190pt;}
.h3{height:66.317706pt;}
.hb{height:94.133133pt;}
.h9{height:94.133307pt;}
.hd{height:94.133467pt;}
.hc{height:94.466472pt;}
.ha{height:94.466635pt;}
.he{height:94.466797pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x6{left:113.400004pt;}
.x3{left:142.536402pt;}
.x4{left:145.473826pt;}
.x8{left:160.400004pt;}
.xb{left:259.104304pt;}
.xe{left:278.229304pt;}
.xc{left:293.553524pt;}
.x7{left:319.373834pt;}
.x9{left:338.815244pt;}
.x5{left:361.869932pt;}
.x2{left:396.850414pt;}
.x1{left:565.350414pt;}
.xd{left:690.400004pt;}
.xa{left:695.400004pt;}
}




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