
    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_e174c722c99e027bc4df19fa.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_df7a3747f7448d473d92016d.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_b2dc2d637c07784c27269f11.woff')format("woff");}.ff3{font-family:ff3;line-height:0.902344;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_afcb5fe435fbe4d435e0d8bf.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;}
.m4{transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:8.552157px;}
.ls2{letter-spacing:8.731517px;}
.ls4{letter-spacing:23.663871px;}
.ls0{letter-spacing:204.841027px;}
.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;}
}
.ws3{word-spacing:-20.231992px;}
.ws4{word-spacing:-17.783993px;}
.ws0{word-spacing:-16.792553px;}
.ws1{word-spacing:-15.983274px;}
.ws2{word-spacing:0.000000px;}
._15{margin-left:-8.183442px;}
._2{margin-left:-7.007232px;}
._1f{margin-left:-5.766193px;}
._f{margin-left:-4.701106px;}
._1a{margin-left:-3.599174px;}
._11{margin-left:-2.505769px;}
._1{margin-left:-1.467819px;}
._0{width:1.245935px;}
._3{width:2.295984px;}
._18{width:3.332374px;}
._d{width:4.385572px;}
._1b{width:5.447419px;}
._19{width:7.377573px;}
._8{width:8.382505px;}
._7{width:9.905163px;}
._12{width:11.140242px;}
._10{width:12.207389px;}
._c{width:13.440550px;}
._e{width:15.391703px;}
._13{width:16.411929px;}
._b{width:17.944924px;}
._9{width:19.363967px;}
._25{width:20.882186px;}
._a{width:22.161705px;}
._1e{width:23.458682px;}
._21{width:24.483317px;}
._1d{width:25.604556px;}
._20{width:26.654994px;}
._27{width:27.871679px;}
._26{width:28.931303px;}
._28{width:30.909645px;}
._23{width:32.675730px;}
._22{width:33.729839px;}
._24{width:38.149280px;}
._1c{width:39.228778px;}
._5{width:40.802050px;}
._6{width:41.850669px;}
._14{width:44.995345px;}
._17{width:66.902696px;}
._16{width:68.308573px;}
._4{width:234.899835px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(74,34,6);}
.fs5{font-size:48.239981px;}
.fs3{font-size:56.879977px;}
.fs0{font-size:59.759976px;}
.fs4{font-size:66.239974px;}
.fs1{font-size:71.999971px;}
.fs2{font-size:95.759962px;}
.y0{bottom:0.000000px;}
.y3{bottom:46.859681px;}
.y2{bottom:67.559673px;}
.y1{bottom:88.079665px;}
.y4a{bottom:120.299652px;}
.y26{bottom:126.239950px;}
.y6b{bottom:131.279647px;}
.y8c{bottom:137.399645px;}
.y25{bottom:156.479937px;}
.y6a{bottom:161.699635px;}
.y8b{bottom:167.639633px;}
.y49{bottom:168.539633px;}
.y24{bottom:186.539925px;}
.y69{bottom:192.299623px;}
.y8a{bottom:197.879621px;}
.y48{bottom:198.779620px;}
.y23{bottom:217.139913px;}
.y68{bottom:222.539611px;}
.y89{bottom:228.119609px;}
.y47{bottom:229.019608px;}
.y22{bottom:247.379901px;}
.y67{bottom:252.779599px;}
.y88{bottom:258.359597px;}
.y46{bottom:259.259596px;}
.y21{bottom:277.619889px;}
.y66{bottom:283.019587px;}
.y87{bottom:288.419585px;}
.y45{bottom:289.499584px;}
.y20{bottom:307.679877px;}
.y65{bottom:313.079575px;}
.y86{bottom:318.659573px;}
.y44{bottom:319.559572px;}
.y1f{bottom:338.099865px;}
.y64{bottom:343.319563px;}
.y85{bottom:348.719561px;}
.y43{bottom:349.799560px;}
.y1e{bottom:368.699853px;}
.y63{bottom:373.379551px;}
.y84{bottom:379.319548px;}
.y42{bottom:380.039548px;}
.y62{bottom:403.979538px;}
.y83{bottom:409.739536px;}
.y41{bottom:410.279536px;}
.y1d{bottom:413.699835px;}
.y82{bottom:439.979524px;}
.y40{bottom:440.339524px;}
.y1c{bottom:444.119822px;}
.y61{bottom:452.219519px;}
.y81{bottom:470.219512px;}
.y3f{bottom:470.759512px;}
.y1b{bottom:474.179810px;}
.y60{bottom:482.459507px;}
.y80{bottom:500.459500px;}
.y3e{bottom:501.359499px;}
.y1a{bottom:504.779798px;}
.y5f{bottom:512.699495px;}
.y7f{bottom:530.699488px;}
.y3d{bottom:531.599487px;}
.y19{bottom:535.019786px;}
.y5e{bottom:542.759483px;}
.y7e{bottom:560.939476px;}
.y3c{bottom:561.839475px;}
.y18{bottom:565.259774px;}
.y5d{bottom:573.179471px;}
.y7d{bottom:591.179464px;}
.y3b{bottom:592.079463px;}
.y17{bottom:595.319762px;}
.y5c{bottom:603.779458px;}
.y7c{bottom:621.419451px;}
.y3a{bottom:622.319451px;}
.y16{bottom:625.559750px;}
.y5b{bottom:634.019446px;}
.y7b{bottom:651.479439px;}
.y39{bottom:652.559439px;}
.y15{bottom:655.619738px;}
.y5a{bottom:664.259434px;}
.y7a{bottom:681.719427px;}
.y38{bottom:682.619427px;}
.y14{bottom:686.219726px;}
.y59{bottom:694.499422px;}
.y79{bottom:712.139415px;}
.y37{bottom:712.859415px;}
.y13{bottom:716.459713px;}
.y58{bottom:724.739410px;}
.y78{bottom:742.379403px;}
.y36{bottom:743.099403px;}
.y12{bottom:746.699701px;}
.y57{bottom:754.799398px;}
.y77{bottom:772.619391px;}
.y35{bottom:773.339391px;}
.y11{bottom:776.939689px;}
.y56{bottom:785.039386px;}
.y76{bottom:802.859379px;}
.y34{bottom:803.579379px;}
.y10{bottom:807.179677px;}
.y55{bottom:815.279374px;}
.y94{bottom:820.859672px;}
.y75{bottom:833.099367px;}
.y33{bottom:833.819366px;}
.yf{bottom:837.419665px;}
.y54{bottom:845.519362px;}
.y74{bottom:863.339355px;}
.y32{bottom:864.059354px;}
.ye{bottom:867.479653px;}
.y93{bottom:871.799651px;}
.y53{bottom:875.579350px;}
.y73{bottom:893.579343px;}
.y31{bottom:894.119342px;}
.yd{bottom:897.719641px;}
.y92{bottom:899.339640px;}
.y52{bottom:905.999338px;}
.y72{bottom:923.819330px;}
.y30{bottom:924.359330px;}
.y91{bottom:924.539630px;}
.yc{bottom:927.959629px;}
.y51{bottom:936.599325px;}
.y90{bottom:952.259619px;}
.y71{bottom:953.879318px;}
.y2f{bottom:954.599318px;}
.yb{bottom:958.019617px;}
.y50{bottom:966.839313px;}
.y70{bottom:984.299306px;}
.y2e{bottom:985.019306px;}
.ya{bottom:988.619605px;}
.y4f{bottom:997.079301px;}
.y8f{bottom:1003.559599px;}
.y6f{bottom:1014.899294px;}
.y2d{bottom:1015.259294px;}
.y9{bottom:1018.859592px;}
.y4e{bottom:1027.319289px;}
.y6e{bottom:1045.139282px;}
.y2c{bottom:1045.499282px;}
.y8{bottom:1049.099580px;}
.y8e{bottom:1054.679278px;}
.y4d{bottom:1057.559277px;}
.y6d{bottom:1075.199270px;}
.y2b{bottom:1075.739270px;}
.y7{bottom:1079.339568px;}
.y8d{bottom:1084.919266px;}
.y4c{bottom:1087.799265px;}
.y6c{bottom:1105.619258px;}
.y2a{bottom:1105.979258px;}
.y6{bottom:1109.579556px;}
.y4b{bottom:1117.859253px;}
.y29{bottom:1136.219246px;}
.y5{bottom:1144.679542px;}
.y28{bottom:1166.459233px;}
.y4{bottom:1183.739227px;}
.y27{bottom:1196.159522px;}
.h7{height:40.961585px;}
.h3{height:47.988262px;}
.h6{height:48.297988px;}
.h2{height:50.743456px;}
.h4{height:61.136694px;}
.h8{height:61.137894px;}
.h5{height:81.311803px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.920000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:127.619949px;}
.x1{left:170.099932px;}
.x3{left:367.199853px;}
.x4{left:397.439841px;}
.x5{left:407.879837px;}
.x7{left:432.539827px;}
.x8{left:460.259816px;}
.x9{left:476.639809px;}
.x6{left:481.319807px;}
.xa{left:548.459781px;}
.xb{left:553.139779px;}
.xf{left:584.640372px;}
.x12{left:655.199738px;}
.x13{left:656.999737px;}
.x10{left:666.719733px;}
.x11{left:670.679732px;}
.xc{left:801.899679px;}
.xe{left:808.020074px;}
.xd{left:811.439675px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:7.601917pt;}
.ls2{letter-spacing:7.761348pt;}
.ls4{letter-spacing:21.034552pt;}
.ls0{letter-spacing:182.080913pt;}
.ws3{word-spacing:-17.983993pt;}
.ws4{word-spacing:-15.807994pt;}
.ws0{word-spacing:-14.926714pt;}
.ws1{word-spacing:-14.207354pt;}
.ws2{word-spacing:0.000000pt;}
._15{margin-left:-7.274170pt;}
._2{margin-left:-6.228651pt;}
._1f{margin-left:-5.125505pt;}
._f{margin-left:-4.178761pt;}
._1a{margin-left:-3.199266pt;}
._11{margin-left:-2.227350pt;}
._1{margin-left:-1.304728pt;}
._0{width:1.107497pt;}
._3{width:2.040875pt;}
._18{width:2.962111pt;}
._d{width:3.898286pt;}
._1b{width:4.842151pt;}
._19{width:6.557843pt;}
._8{width:7.451115pt;}
._7{width:8.804589pt;}
._12{width:9.902437pt;}
._10{width:10.851012pt;}
._c{width:11.947155pt;}
._e{width:13.681513pt;}
._13{width:14.588382pt;}
._b{width:15.951044pt;}
._9{width:17.212415pt;}
._25{width:18.561943pt;}
._a{width:19.699293pt;}
._1e{width:20.852162pt;}
._21{width:21.762948pt;}
._1d{width:22.759605pt;}
._20{width:23.693328pt;}
._27{width:24.774826pt;}
._26{width:25.716713pt;}
._28{width:27.475240pt;}
._23{width:29.045093pt;}
._22{width:29.982079pt;}
._24{width:33.910471pt;}
._1c{width:34.870025pt;}
._5{width:36.268488pt;}
._6{width:37.200595pt;}
._14{width:39.995863pt;}
._17{width:59.469063pt;}
._16{width:60.718732pt;}
._4{width:208.799853pt;}
.fs5{font-size:42.879983pt;}
.fs3{font-size:50.559980pt;}
.fs0{font-size:53.119979pt;}
.fs4{font-size:58.879976pt;}
.fs1{font-size:63.999974pt;}
.fs2{font-size:85.119966pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:41.653050pt;}
.y2{bottom:60.053043pt;}
.y1{bottom:78.293035pt;}
.y4a{bottom:106.933024pt;}
.y26{bottom:112.213288pt;}
.y6b{bottom:116.693020pt;}
.y8c{bottom:122.133018pt;}
.y25{bottom:139.093278pt;}
.y6a{bottom:143.733009pt;}
.y8b{bottom:149.013007pt;}
.y49{bottom:149.813007pt;}
.y24{bottom:165.813267pt;}
.y69{bottom:170.932998pt;}
.y8a{bottom:175.892996pt;}
.y48{bottom:176.692996pt;}
.y23{bottom:193.013256pt;}
.y68{bottom:197.812988pt;}
.y89{bottom:202.772986pt;}
.y47{bottom:203.572985pt;}
.y22{bottom:219.893245pt;}
.y67{bottom:224.692977pt;}
.y88{bottom:229.652975pt;}
.y46{bottom:230.452974pt;}
.y21{bottom:246.773235pt;}
.y66{bottom:251.572966pt;}
.y87{bottom:256.372964pt;}
.y45{bottom:257.332964pt;}
.y20{bottom:273.493224pt;}
.y65{bottom:278.292955pt;}
.y86{bottom:283.252953pt;}
.y44{bottom:284.052953pt;}
.y1f{bottom:300.533213pt;}
.y64{bottom:305.172945pt;}
.y85{bottom:309.972943pt;}
.y43{bottom:310.932942pt;}
.y1e{bottom:327.733202pt;}
.y63{bottom:331.892934pt;}
.y84{bottom:337.172932pt;}
.y42{bottom:337.812932pt;}
.y62{bottom:359.092923pt;}
.y83{bottom:364.212921pt;}
.y41{bottom:364.692921pt;}
.y1d{bottom:367.733186pt;}
.y82{bottom:391.092910pt;}
.y40{bottom:391.412910pt;}
.y1c{bottom:394.773175pt;}
.y61{bottom:401.972906pt;}
.y81{bottom:417.972899pt;}
.y3f{bottom:418.452899pt;}
.y1b{bottom:421.493165pt;}
.y60{bottom:428.852895pt;}
.y80{bottom:444.852889pt;}
.y3e{bottom:445.652888pt;}
.y1a{bottom:448.693154pt;}
.y5f{bottom:455.732884pt;}
.y7f{bottom:471.732878pt;}
.y3d{bottom:472.532878pt;}
.y19{bottom:475.573143pt;}
.y5e{bottom:482.452874pt;}
.y7e{bottom:498.612867pt;}
.y3c{bottom:499.412867pt;}
.y18{bottom:502.453132pt;}
.y5d{bottom:509.492863pt;}
.y7d{bottom:525.492856pt;}
.y3b{bottom:526.292856pt;}
.y17{bottom:529.173122pt;}
.y5c{bottom:536.692852pt;}
.y7c{bottom:552.372846pt;}
.y3a{bottom:553.172845pt;}
.y16{bottom:556.053111pt;}
.y5b{bottom:563.572841pt;}
.y7b{bottom:579.092835pt;}
.y39{bottom:580.052835pt;}
.y15{bottom:582.773100pt;}
.y5a{bottom:590.452830pt;}
.y7a{bottom:605.972824pt;}
.y38{bottom:606.772824pt;}
.y14{bottom:609.973089pt;}
.y59{bottom:617.332820pt;}
.y79{bottom:633.012813pt;}
.y37{bottom:633.652813pt;}
.y13{bottom:636.853079pt;}
.y58{bottom:644.212809pt;}
.y78{bottom:659.892803pt;}
.y36{bottom:660.532802pt;}
.y12{bottom:663.733068pt;}
.y57{bottom:670.932798pt;}
.y77{bottom:686.772792pt;}
.y35{bottom:687.412792pt;}
.y11{bottom:690.613057pt;}
.y56{bottom:697.812788pt;}
.y76{bottom:713.652781pt;}
.y34{bottom:714.292781pt;}
.y10{bottom:717.493046pt;}
.y55{bottom:724.692777pt;}
.y94{bottom:729.653041pt;}
.y75{bottom:740.532770pt;}
.y33{bottom:741.172770pt;}
.yf{bottom:744.373036pt;}
.y54{bottom:751.572766pt;}
.y74{bottom:767.412760pt;}
.y32{bottom:768.052759pt;}
.ye{bottom:771.093025pt;}
.y93{bottom:774.933023pt;}
.y53{bottom:778.292755pt;}
.y73{bottom:794.292749pt;}
.y31{bottom:794.772749pt;}
.yd{bottom:797.973014pt;}
.y92{bottom:799.413014pt;}
.y52{bottom:805.332745pt;}
.y72{bottom:821.172738pt;}
.y30{bottom:821.652738pt;}
.y91{bottom:821.813005pt;}
.yc{bottom:824.853003pt;}
.y51{bottom:832.532734pt;}
.y90{bottom:846.452995pt;}
.y71{bottom:847.892728pt;}
.y2f{bottom:848.532727pt;}
.yb{bottom:851.572993pt;}
.y50{bottom:859.412723pt;}
.y70{bottom:874.932717pt;}
.y2e{bottom:875.572716pt;}
.ya{bottom:878.772982pt;}
.y4f{bottom:886.292712pt;}
.y8f{bottom:892.052977pt;}
.y6f{bottom:902.132706pt;}
.y2d{bottom:902.452706pt;}
.y9{bottom:905.652971pt;}
.y4e{bottom:913.172701pt;}
.y6e{bottom:929.012695pt;}
.y2c{bottom:929.332695pt;}
.y8{bottom:932.532960pt;}
.y8e{bottom:937.492692pt;}
.y4d{bottom:940.052691pt;}
.y6d{bottom:955.732684pt;}
.y2b{bottom:956.212684pt;}
.y7{bottom:959.412950pt;}
.y8d{bottom:964.372681pt;}
.y4c{bottom:966.932680pt;}
.y6c{bottom:982.772674pt;}
.y2a{bottom:983.092673pt;}
.y6{bottom:986.292939pt;}
.y4b{bottom:993.652669pt;}
.y29{bottom:1009.972663pt;}
.y5{bottom:1017.492926pt;}
.y28{bottom:1036.852652pt;}
.y4{bottom:1052.212646pt;}
.y27{bottom:1063.252908pt;}
.h7{height:36.410298pt;}
.h3{height:42.656233pt;}
.h6{height:42.931545pt;}
.h2{height:45.105294pt;}
.h4{height:54.343728pt;}
.h8{height:54.344795pt;}
.h5{height:72.277159pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.706667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:113.439955pt;}
.x1{left:151.199940pt;}
.x3{left:326.399869pt;}
.x4{left:353.279859pt;}
.x5{left:362.559855pt;}
.x7{left:384.479846pt;}
.x8{left:409.119836pt;}
.x9{left:423.679831pt;}
.x6{left:427.839829pt;}
.xa{left:487.519805pt;}
.xb{left:491.679803pt;}
.xf{left:519.680331pt;}
.x12{left:582.399767pt;}
.x13{left:583.999766pt;}
.x10{left:592.639763pt;}
.x11{left:596.159762pt;}
.xc{left:712.799715pt;}
.xe{left:718.240066pt;}
.xd{left:721.279711pt;}
}




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