
    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_d1c6deea50cedf699d17ae75.woff')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_3970d6faad8313036d96bd31.woff')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_e27ee7b650aabab07ac3612c.woff')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_6e48a637c58ae397e676e0c6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_a07b03aeb653f47f86f218c7.woff')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_db632ec3a930dd5b50459811.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_3a121724843b037c85ac925f.woff')format("woff");}.ff7{font-family:ff7;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:9.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;}
}
.ws2{word-spacing:-36.000000px;}
.ws0{word-spacing:-18.000000px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-17.121098px;}
._f{margin-left:-9.711373px;}
._1{margin-left:-8.412787px;}
._b{margin-left:-6.179230px;}
._8{margin-left:-5.027343px;}
._a{margin-left:-3.972657px;}
._9{margin-left:-2.882827px;}
._0{margin-left:-1.871547px;}
._3{width:4.499998px;}
._2{width:9.000000px;}
._4{width:13.500001px;}
._6{width:22.500000px;}
._5{width:26.999999px;}
._7{width:31.500002px;}
._d{width:36.000000px;}
._e{width:198.000000px;}
.fc1{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs2{font-size:72.000000px;}
.fs1{font-size:83.999997px;}
.y0{bottom:0.000000px;}
.y2{bottom:4.124988px;}
.y53{bottom:17.016358px;}
.y2c{bottom:17.016724px;}
.y9f{bottom:17.017090px;}
.ycc{bottom:37.157959px;}
.y52{bottom:37.158326px;}
.y2b{bottom:37.158418px;}
.ycb{bottom:114.569816px;}
.y50{bottom:117.286747px;}
.y85{bottom:125.627566px;}
.y29{bottom:136.762576px;}
.yca{bottom:136.906484px;}
.y4f{bottom:137.984802px;}
.y9d{bottom:138.661375px;}
.y84{bottom:146.325808px;}
.y28{bottom:157.460818px;}
.yc9{bottom:159.243157px;}
.y9c{bottom:159.359618px;}
.y83{bottom:167.024050px;}
.y27{bottom:178.159060px;}
.y9b{bottom:180.057858px;}
.y82{bottom:187.722293px;}
.yc8{bottom:193.579834px;}
.y26{bottom:198.857302px;}
.y9a{bottom:200.756101px;}
.y81{bottom:208.420539px;}
.yc7{bottom:215.916511px;}
.y25{bottom:219.555549px;}
.y99{bottom:221.454343px;}
.y80{bottom:229.118782px;}
.yc6{bottom:238.253549px;}
.y24{bottom:240.253792px;}
.y98{bottom:242.152585px;}
.y7f{bottom:249.817023px;}
.yc5{bottom:260.590583px;}
.y23{bottom:260.952033px;}
.y97{bottom:262.850828px;}
.y7e{bottom:270.515266px;}
.y22{bottom:281.650276px;}
.y96{bottom:283.549072px;}
.y7d{bottom:291.213508px;}
.yc4{bottom:294.927251px;}
.y21{bottom:302.348518px;}
.y95{bottom:304.247313px;}
.y7c{bottom:311.911750px;}
.yc3{bottom:317.263919px;}
.y20{bottom:323.046760px;}
.y94{bottom:324.945556px;}
.y7b{bottom:332.609993px;}
.yc2{bottom:339.600592px;}
.y1f{bottom:343.745002px;}
.y93{bottom:345.643798px;}
.y7a{bottom:353.308229px;}
.y1e{bottom:366.081848px;}
.y92{bottom:366.342040px;}
.yc1{bottom:373.937984px;}
.y79{bottom:374.006472px;}
.y1d{bottom:386.780092px;}
.y91{bottom:387.040282px;}
.y78{bottom:394.704714px;}
.yc0{bottom:396.274657px;}
.y1c{bottom:407.478338px;}
.y90{bottom:407.738528px;}
.y77{bottom:415.402957px;}
.y8f{bottom:428.436772px;}
.ybf{bottom:430.611329px;}
.y76{bottom:436.101198px;}
.y1b{bottom:441.815182px;}
.y8e{bottom:449.135002px;}
.ybe{bottom:452.948363px;}
.y75{bottom:456.799441px;}
.y4e{bottom:456.878362px;}
.y8d{bottom:469.833622px;}
.y1a{bottom:476.152133px;}
.y74{bottom:477.497683px;}
.y4d{bottom:477.576593px;}
.ybd{bottom:487.285042px;}
.y8c{bottom:490.531868px;}
.y73{bottom:498.195925px;}
.y4c{bottom:498.274837px;}
.ybc{bottom:509.622074px;}
.y19{bottom:510.488888px;}
.y8b{bottom:511.230102px;}
.y72{bottom:518.894167px;}
.y4b{bottom:518.973078px;}
.ybb{bottom:531.958747px;}
.y18{bottom:532.825748px;}
.y71{bottom:539.592413px;}
.y4a{bottom:539.671321px;}
.y17{bottom:555.162603px;}
.y70{bottom:560.290655px;}
.y49{bottom:560.369563px;}
.yba{bottom:566.296136px;}
.y16{bottom:577.499455px;}
.y6f{bottom:580.988898px;}
.y48{bottom:581.067805px;}
.yb9{bottom:588.632804px;}
.y15{bottom:599.836308px;}
.y6e{bottom:601.687139px;}
.y47{bottom:601.766048px;}
.yb8{bottom:610.969478px;}
.y14{bottom:622.173183px;}
.y6d{bottom:622.385382px;}
.y46{bottom:622.464292px;}
.y6c{bottom:643.083624px;}
.y45{bottom:643.162538px;}
.y13{bottom:644.510035px;}
.yb7{bottom:645.306149px;}
.y6b{bottom:663.781867px;}
.y44{bottom:663.860783px;}
.y12{bottom:666.846888px;}
.yb6{bottom:667.643182px;}
.y43{bottom:684.559017px;}
.y6a{bottom:684.559210px;}
.y11{bottom:689.183740px;}
.yb5{bottom:701.979862px;}
.y42{bottom:705.257259px;}
.y69{bottom:705.257452px;}
.y10{bottom:711.520593px;}
.yb4{bottom:724.316894px;}
.y41{bottom:725.955502px;}
.y68{bottom:725.955693px;}
.yf{bottom:733.857444px;}
.yb3{bottom:746.653568px;}
.y40{bottom:746.653743px;}
.y67{bottom:746.653936px;}
.ye{bottom:756.194280px;}
.yb2{bottom:767.351813px;}
.y3f{bottom:767.351986px;}
.y66{bottom:767.352178px;}
.yd{bottom:778.531141px;}
.yb1{bottom:788.050043px;}
.y3e{bottom:788.050228px;}
.y65{bottom:788.050420px;}
.yc{bottom:800.867995px;}
.yb0{bottom:808.748288px;}
.y3d{bottom:808.748470px;}
.y64{bottom:808.748663px;}
.yb{bottom:823.204856px;}
.yaf{bottom:829.446537px;}
.y3c{bottom:829.446712px;}
.y8a{bottom:829.446892px;}
.y63{bottom:829.446899px;}
.ya{bottom:845.541704px;}
.yae{bottom:850.144779px;}
.y3b{bottom:850.144959px;}
.y62{bottom:850.145142px;}
.y9{bottom:867.878579px;}
.yad{bottom:870.843022px;}
.y3a{bottom:870.843201px;}
.y61{bottom:870.843384px;}
.y89{bottom:870.843385px;}
.y8{bottom:890.215433px;}
.yac{bottom:891.541263px;}
.y39{bottom:891.541444px;}
.y60{bottom:891.541627px;}
.yab{bottom:912.239506px;}
.y38{bottom:912.239685px;}
.y5f{bottom:912.239868px;}
.y7{bottom:912.552262px;}
.yaa{bottom:932.937748px;}
.y37{bottom:932.937928px;}
.y5e{bottom:932.938111px;}
.y6{bottom:934.889122px;}
.ya9{bottom:953.635990px;}
.y36{bottom:953.636170px;}
.y5d{bottom:953.636353px;}
.y5{bottom:957.225982px;}
.ya8{bottom:974.334233px;}
.y35{bottom:974.334412px;}
.y5c{bottom:974.334595px;}
.y4{bottom:992.484879px;}
.ya7{bottom:995.032471px;}
.y34{bottom:995.032655px;}
.y88{bottom:995.032836px;}
.y5b{bottom:995.032838px;}
.ya6{bottom:1015.730712px;}
.y33{bottom:1015.730895px;}
.y5a{bottom:1015.731078px;}
.y87{bottom:1015.731079px;}
.y3{bottom:1018.544540px;}
.ya5{bottom:1036.428955px;}
.y32{bottom:1036.429138px;}
.y59{bottom:1036.429321px;}
.y1{bottom:1038.150009px;}
.ya4{bottom:1057.127197px;}
.y31{bottom:1057.127380px;}
.y58{bottom:1057.127562px;}
.y86{bottom:1057.127563px;}
.ya3{bottom:1077.825439px;}
.y30{bottom:1077.825622px;}
.y57{bottom:1077.825805px;}
.ya2{bottom:1098.523682px;}
.y2f{bottom:1098.523864px;}
.y56{bottom:1098.524047px;}
.ycd{bottom:1117.583492px;}
.ya1{bottom:1119.221923px;}
.y2e{bottom:1119.222106px;}
.y55{bottom:1119.222289px;}
.ya0{bottom:1139.920165px;}
.y2d{bottom:1139.920349px;}
.y54{bottom:1139.920531px;}
.y9e{bottom:1156.724853px;}
.y2a{bottom:1156.725036px;}
.y51{bottom:1156.725219px;}
.h2{height:43.989259px;}
.h4{height:63.949219px;}
.h5{height:64.546875px;}
.h3{height:74.607419px;}
.h7{height:106.274781px;}
.h6{height:106.274964px;}
.h8{height:106.275147px;}
.h1{height:224.849991px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x4{left:127.575005px;}
.x2{left:143.325966px;}
.xb{left:154.769686px;}
.x6{left:180.450005px;}
.xe{left:181.575005px;}
.x3{left:208.596985px;}
.xd{left:313.750643px;}
.x8{left:326.235503px;}
.xa{left:333.249181px;}
.x5{left:342.697415px;}
.x7{left:446.456716px;}
.x1{left:636.019216px;}
.x9{left:808.200005px;}
.xc{left:848.700005px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:8.000000pt;}
.ws2{word-spacing:-32.000000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-15.218754pt;}
._f{margin-left:-8.632331pt;}
._1{margin-left:-7.478033pt;}
._b{margin-left:-5.492649pt;}
._8{margin-left:-4.468749pt;}
._a{margin-left:-3.531250pt;}
._9{margin-left:-2.562513pt;}
._0{margin-left:-1.663598pt;}
._3{width:3.999998pt;}
._2{width:8.000000pt;}
._4{width:12.000001pt;}
._6{width:20.000000pt;}
._5{width:23.999999pt;}
._7{width:28.000002pt;}
._d{width:32.000000pt;}
._e{width:176.000000pt;}
.fs0{font-size:58.666668pt;}
.fs2{font-size:64.000000pt;}
.fs1{font-size:74.666664pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:3.666656pt;}
.y53{bottom:15.125651pt;}
.y2c{bottom:15.125977pt;}
.y9f{bottom:15.126302pt;}
.ycc{bottom:33.029297pt;}
.y52{bottom:33.029623pt;}
.y2b{bottom:33.029705pt;}
.ycb{bottom:101.839837pt;}
.y50{bottom:104.254887pt;}
.y85{bottom:111.668948pt;}
.y29{bottom:121.566734pt;}
.yca{bottom:121.694653pt;}
.y4f{bottom:122.653158pt;}
.y9d{bottom:123.254556pt;}
.y84{bottom:130.067385pt;}
.y28{bottom:139.965171pt;}
.yc9{bottom:141.549473pt;}
.y9c{bottom:141.652993pt;}
.y83{bottom:148.465823pt;}
.y27{bottom:158.363609pt;}
.y9b{bottom:160.051430pt;}
.y82{bottom:166.864260pt;}
.yc8{bottom:172.070964pt;}
.y26{bottom:176.762047pt;}
.y9a{bottom:178.449868pt;}
.y81{bottom:185.262701pt;}
.yc7{bottom:191.925788pt;}
.y25{bottom:195.160488pt;}
.y99{bottom:196.848305pt;}
.y80{bottom:203.661139pt;}
.yc6{bottom:211.780933pt;}
.y24{bottom:213.558926pt;}
.y98{bottom:215.246743pt;}
.y7f{bottom:222.059576pt;}
.yc5{bottom:231.636073pt;}
.y23{bottom:231.957363pt;}
.y97{bottom:233.645180pt;}
.y7e{bottom:240.458014pt;}
.y22{bottom:250.355801pt;}
.y96{bottom:252.043619pt;}
.y7d{bottom:258.856451pt;}
.yc4{bottom:262.157557pt;}
.y21{bottom:268.754238pt;}
.y95{bottom:270.442056pt;}
.y7c{bottom:277.254889pt;}
.yc3{bottom:282.012373pt;}
.y20{bottom:287.152676pt;}
.y94{bottom:288.840494pt;}
.y7b{bottom:295.653327pt;}
.yc2{bottom:301.867193pt;}
.y1f{bottom:305.551113pt;}
.y93{bottom:307.238931pt;}
.y7a{bottom:314.051759pt;}
.y1e{bottom:325.406087pt;}
.y92{bottom:325.637369pt;}
.yc1{bottom:332.389319pt;}
.y79{bottom:332.450197pt;}
.y1d{bottom:343.804527pt;}
.y91{bottom:344.035807pt;}
.y78{bottom:350.848634pt;}
.yc0{bottom:352.244140pt;}
.y1c{bottom:362.202967pt;}
.y90{bottom:362.434247pt;}
.y77{bottom:369.247072pt;}
.y8f{bottom:380.832687pt;}
.ybf{bottom:382.765626pt;}
.y76{bottom:387.645509pt;}
.y1b{bottom:392.724607pt;}
.y8e{bottom:399.231113pt;}
.ybe{bottom:402.620767pt;}
.y75{bottom:406.043947pt;}
.y4e{bottom:406.114100pt;}
.y8d{bottom:417.629887pt;}
.y1a{bottom:423.246340pt;}
.y74{bottom:424.442384pt;}
.y4d{bottom:424.512527pt;}
.ybd{bottom:433.142259pt;}
.y8c{bottom:436.028327pt;}
.y73{bottom:442.840822pt;}
.y4c{bottom:442.910967pt;}
.ybc{bottom:452.997399pt;}
.y19{bottom:453.767900pt;}
.y8b{bottom:454.426758pt;}
.y72{bottom:461.239260pt;}
.y4b{bottom:461.309403pt;}
.ybb{bottom:472.852220pt;}
.y18{bottom:473.622887pt;}
.y71{bottom:479.637701pt;}
.y4a{bottom:479.707841pt;}
.y17{bottom:493.477869pt;}
.y70{bottom:498.036138pt;}
.y49{bottom:498.106278pt;}
.yba{bottom:503.374344pt;}
.y16{bottom:513.332849pt;}
.y6f{bottom:516.434576pt;}
.y48{bottom:516.504716pt;}
.yb9{bottom:523.229159pt;}
.y15{bottom:533.187829pt;}
.y6e{bottom:534.833013pt;}
.y47{bottom:534.903153pt;}
.yb8{bottom:543.083980pt;}
.y14{bottom:553.042829pt;}
.y6d{bottom:553.231451pt;}
.y46{bottom:553.301593pt;}
.y6c{bottom:571.629888pt;}
.y45{bottom:571.700033pt;}
.y13{bottom:572.897809pt;}
.yb7{bottom:573.605466pt;}
.y6b{bottom:590.028326pt;}
.y44{bottom:590.098473pt;}
.y12{bottom:592.752789pt;}
.yb6{bottom:593.460607pt;}
.y43{bottom:608.496904pt;}
.y6a{bottom:608.497076pt;}
.y11{bottom:612.607769pt;}
.yb5{bottom:623.982100pt;}
.y42{bottom:626.895341pt;}
.y69{bottom:626.895513pt;}
.y10{bottom:632.462749pt;}
.yb4{bottom:643.837239pt;}
.y41{bottom:645.293779pt;}
.y68{bottom:645.293950pt;}
.yf{bottom:652.317728pt;}
.yb3{bottom:663.692060pt;}
.y40{bottom:663.692216pt;}
.y67{bottom:663.692388pt;}
.ye{bottom:672.172693pt;}
.yb2{bottom:682.090500pt;}
.y3f{bottom:682.090654pt;}
.y66{bottom:682.090825pt;}
.yd{bottom:692.027681pt;}
.yb1{bottom:700.488927pt;}
.y3e{bottom:700.489091pt;}
.y65{bottom:700.489263pt;}
.yc{bottom:711.882662pt;}
.yb0{bottom:718.887367pt;}
.y3d{bottom:718.887529pt;}
.y64{bottom:718.887700pt;}
.yb{bottom:731.737650pt;}
.yaf{bottom:737.285811pt;}
.y3c{bottom:737.285967pt;}
.y8a{bottom:737.286127pt;}
.y63{bottom:737.286133pt;}
.ya{bottom:751.592626pt;}
.yae{bottom:755.684248pt;}
.y3b{bottom:755.684408pt;}
.y62{bottom:755.684571pt;}
.y9{bottom:771.447626pt;}
.yad{bottom:774.082686pt;}
.y3a{bottom:774.082845pt;}
.y61{bottom:774.083008pt;}
.y89{bottom:774.083009pt;}
.y8{bottom:791.302607pt;}
.yac{bottom:792.481123pt;}
.y39{bottom:792.481283pt;}
.y60{bottom:792.481446pt;}
.yab{bottom:810.879561pt;}
.y38{bottom:810.879720pt;}
.y5f{bottom:810.879883pt;}
.y7{bottom:811.157567pt;}
.yaa{bottom:829.277998pt;}
.y37{bottom:829.278158pt;}
.y5e{bottom:829.278321pt;}
.y6{bottom:831.012553pt;}
.ya9{bottom:847.676436pt;}
.y36{bottom:847.676595pt;}
.y5d{bottom:847.676758pt;}
.y5{bottom:850.867540pt;}
.ya8{bottom:866.074873pt;}
.y35{bottom:866.075033pt;}
.y5c{bottom:866.075196pt;}
.y4{bottom:882.208781pt;}
.ya7{bottom:884.473307pt;}
.y34{bottom:884.473471pt;}
.y88{bottom:884.473632pt;}
.y5b{bottom:884.473633pt;}
.ya6{bottom:902.871744pt;}
.y33{bottom:902.871907pt;}
.y5a{bottom:902.872069pt;}
.y87{bottom:902.872070pt;}
.y3{bottom:905.372924pt;}
.ya5{bottom:921.270182pt;}
.y32{bottom:921.270345pt;}
.y59{bottom:921.270507pt;}
.y1{bottom:922.800008pt;}
.ya4{bottom:939.668619pt;}
.y31{bottom:939.668782pt;}
.y58{bottom:939.668944pt;}
.y86{bottom:939.668945pt;}
.ya3{bottom:958.067057pt;}
.y30{bottom:958.067220pt;}
.y57{bottom:958.067382pt;}
.ya2{bottom:976.465495pt;}
.y2f{bottom:976.465657pt;}
.y56{bottom:976.465819pt;}
.ycd{bottom:993.407549pt;}
.ya1{bottom:994.863932pt;}
.y2e{bottom:994.864094pt;}
.y55{bottom:994.864257pt;}
.ya0{bottom:1013.262369pt;}
.y2d{bottom:1013.262532pt;}
.y54{bottom:1013.262695pt;}
.y9e{bottom:1028.199869pt;}
.y2a{bottom:1028.200032pt;}
.y51{bottom:1028.200195pt;}
.h2{height:39.101563pt;}
.h4{height:56.843750pt;}
.h5{height:57.375000pt;}
.h3{height:66.317706pt;}
.h7{height:94.466472pt;}
.h6{height:94.466635pt;}
.h8{height:94.466797pt;}
.h1{height:199.866659pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x4{left:113.400004pt;}
.x2{left:127.400859pt;}
.xb{left:137.573054pt;}
.x6{left:160.400004pt;}
.xe{left:161.400004pt;}
.x3{left:185.419543pt;}
.xd{left:278.889460pt;}
.x8{left:289.987114pt;}
.xa{left:296.221494pt;}
.x5{left:304.619924pt;}
.x7{left:396.850414pt;}
.x1{left:565.350414pt;}
.x9{left:718.400004pt;}
.xc{left:754.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; }
  