
    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_0f0d745b00d1ba317a612099.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.061000;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_28998d4db2a2bfef528e0a3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.075000;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_8701a2a98daac9947c32daaa.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.061000;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_53feb7aec7d401450b1d1c39.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.056000;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);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws2{word-spacing:-15.001902px;}
.ws4{word-spacing:-10.504681px;}
.ws1{word-spacing:-6.996050px;}
.ws3{word-spacing:-4.668877px;}
.ws0{word-spacing:0.000000px;}
._24{margin-left:-1.003015px;}
._1a{width:1.267526px;}
._a{width:2.288699px;}
._4{width:3.394038px;}
._3{width:4.410321px;}
._16{width:6.367025px;}
._0{width:7.378263px;}
._1b{width:9.009800px;}
._5{width:10.763807px;}
._1e{width:11.803134px;}
._7{width:13.055736px;}
._2{width:14.720866px;}
._10{width:17.803658px;}
._18{width:18.971486px;}
._26{width:20.428037px;}
._6{width:21.479119px;}
._21{width:23.194268px;}
._17{width:24.306743px;}
._1f{width:25.777075px;}
._1c{width:27.176794px;}
._13{width:30.455071px;}
._9{width:31.899588px;}
._12{width:33.073150px;}
._f{width:34.657052px;}
._11{width:35.750041px;}
._25{width:37.426868px;}
._1d{width:38.442633px;}
._14{width:40.900415px;}
._d{width:42.978370px;}
._e{width:44.645818px;}
._27{width:46.372550px;}
._23{width:47.409948px;}
._22{width:58.502853px;}
._8{width:62.299837px;}
._c{width:68.128317px;}
._19{width:71.205275px;}
._15{width:78.910552px;}
._28{width:80.248822px;}
._1{width:81.999696px;}
._20{width:94.613166px;}
._b{width:102.864334px;}
._29{width:125.689814px;}
.fc3{color:transparent;}
.fc2{color:rgb(1,52,44);}
.fc1{color:rgb(0,76,62);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:18.675507px;}
.fs4{font-size:27.984200px;}
.fs7{font-size:29.750527px;}
.fs9{font-size:42.016355px;}
.fs8{font-size:42.018724px;}
.fs3{font-size:48.019141px;}
.fs5{font-size:60.007609px;}
.fs0{font-size:65.994864px;}
.fs2{font-size:72.027138px;}
.fs1{font-size:84.001650px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y4d{bottom:5.617766px;}
.y4c{bottom:15.534608px;}
.y4b{bottom:25.451451px;}
.y48{bottom:29.655019px;}
.y4a{bottom:35.368293px;}
.y44{bottom:35.514983px;}
.y49{bottom:45.285135px;}
.y41{bottom:50.149069px;}
.y43{bottom:53.870950px;}
.y47{bottom:54.744267px;}
.y40{bottom:66.155449px;}
.y42{bottom:71.009182px;}
.y2c{bottom:82.741117px;}
.y2b{bottom:105.249598px;}
.y2a{bottom:127.758078px;}
.y4e{bottom:143.875725px;}
.y29{bottom:150.266559px;}
.y28{bottom:172.775040px;}
.y27{bottom:195.283520px;}
.y4f{bottom:202.405664px;}
.y26{bottom:217.792001px;}
.y45{bottom:226.611662px;}
.y25{bottom:240.300482px;}
.y24{bottom:262.808962px;}
.y50{bottom:282.621509px;}
.y23{bottom:285.317443px;}
.y46{bottom:306.827470px;}
.y22{bottom:307.825924px;}
.y3d{bottom:327.402813px;}
.y21{bottom:330.334404px;}
.y3c{bottom:349.911294px;}
.y20{bottom:352.842885px;}
.y3b{bottom:372.419774px;}
.y1f{bottom:375.351366px;}
.y3a{bottom:394.928255px;}
.y1e{bottom:397.859846px;}
.y39{bottom:417.436736px;}
.y1d{bottom:420.368327px;}
.y6e{bottom:423.904574px;}
.y38{bottom:439.945216px;}
.y1c{bottom:442.876808px;}
.y6d{bottom:446.413055px;}
.y37{bottom:462.453697px;}
.y1b{bottom:465.385288px;}
.y6c{bottom:468.921536px;}
.y36{bottom:484.962178px;}
.y1a{bottom:487.893769px;}
.y6b{bottom:491.430016px;}
.y35{bottom:507.470658px;}
.y19{bottom:510.402250px;}
.y6a{bottom:513.938497px;}
.y34{bottom:529.979139px;}
.y18{bottom:532.910730px;}
.y69{bottom:536.446978px;}
.y33{bottom:552.487620px;}
.y17{bottom:555.419211px;}
.y68{bottom:558.955458px;}
.y32{bottom:574.996100px;}
.y16{bottom:577.927692px;}
.y67{bottom:581.463939px;}
.y31{bottom:597.504581px;}
.y15{bottom:600.436172px;}
.y66{bottom:603.972420px;}
.y30{bottom:620.013062px;}
.y14{bottom:622.944653px;}
.y65{bottom:626.480900px;}
.y2f{bottom:642.521542px;}
.y64{bottom:648.989381px;}
.y2e{bottom:665.030023px;}
.y3f{bottom:666.757235px;}
.y63{bottom:671.497862px;}
.y2d{bottom:687.538504px;}
.y62{bottom:694.006342px;}
.y13{bottom:710.046984px;}
.y61{bottom:716.514823px;}
.y12{bottom:732.555465px;}
.y60{bottom:739.023304px;}
.y11{bottom:755.063945px;}
.y5f{bottom:761.531784px;}
.y10{bottom:777.572426px;}
.y5e{bottom:784.040265px;}
.yf{bottom:800.080907px;}
.y5d{bottom:806.548746px;}
.ye{bottom:822.589387px;}
.y5c{bottom:829.057226px;}
.yd{bottom:845.097868px;}
.y5b{bottom:851.565707px;}
.yc{bottom:867.606349px;}
.yb{bottom:890.114829px;}
.y6f{bottom:893.127504px;}
.ya{bottom:912.623310px;}
.y5a{bottom:934.736532px;}
.y9{bottom:935.131791px;}
.y59{bottom:957.245013px;}
.y8{bottom:957.640271px;}
.y58{bottom:979.753494px;}
.y7{bottom:980.148752px;}
.y57{bottom:1002.261974px;}
.y6{bottom:1002.657233px;}
.y56{bottom:1024.770455px;}
.y5{bottom:1025.165713px;}
.y55{bottom:1047.278936px;}
.y4{bottom:1047.674194px;}
.y54{bottom:1069.787416px;}
.y3{bottom:1070.182675px;}
.y53{bottom:1092.295897px;}
.y2{bottom:1092.691155px;}
.y52{bottom:1114.804378px;}
.y51{bottom:1137.312858px;}
.y3e{bottom:1169.548257px;}
.h9{height:15.033783px;}
.h7{height:22.751155px;}
.hb{height:24.187179px;}
.hd{height:34.159296px;}
.hc{height:34.161222px;}
.h6{height:39.039562px;}
.h8{height:48.786186px;}
.ha{height:53.639998px;}
.h3{height:53.653825px;}
.he{height:57.981846px;}
.h5{height:59.638470px;}
.h4{height:69.553366px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w2{width:200.519992px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:43.552352px;}
.xd{left:45.024696px;}
.x8{left:49.025411px;}
.x9{left:50.900892px;}
.x3{left:71.600029px;}
.x4{left:82.186049px;}
.x5{left:116.196094px;}
.xb{left:119.519995px;}
.xc{left:127.283452px;}
.x1{left:469.235590px;}
.xe{left:472.333912px;}
.xa{left:496.419632px;}
.x7{left:618.659038px;}
.x6{left:620.563834px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-13.335024pt;}
.ws4{word-spacing:-9.337494pt;}
.ws1{word-spacing:-6.218711pt;}
.ws3{word-spacing:-4.150113pt;}
.ws0{word-spacing:0.000000pt;}
._24{margin-left:-0.891569pt;}
._1a{width:1.126690pt;}
._a{width:2.034399pt;}
._4{width:3.016923pt;}
._3{width:3.920286pt;}
._16{width:5.659578pt;}
._0{width:6.558456pt;}
._1b{width:8.008711pt;}
._5{width:9.567829pt;}
._1e{width:10.491674pt;}
._7{width:11.605098pt;}
._2{width:13.085214pt;}
._10{width:15.825474pt;}
._18{width:16.863543pt;}
._26{width:18.158255pt;}
._6{width:19.092550pt;}
._21{width:20.617127pt;}
._17{width:21.605994pt;}
._1f{width:22.912955pt;}
._1c{width:24.157150pt;}
._13{width:27.071174pt;}
._9{width:28.355189pt;}
._12{width:29.398356pt;}
._f{width:30.806269pt;}
._11{width:31.777814pt;}
._25{width:33.268327pt;}
._1d{width:34.171230pt;}
._14{width:36.355925pt;}
._d{width:38.202996pt;}
._e{width:39.685172pt;}
._27{width:41.220045pt;}
._23{width:42.142176pt;}
._22{width:52.002536pt;}
._8{width:55.377633pt;}
._c{width:60.558504pt;}
._19{width:63.293578pt;}
._15{width:70.142713pt;}
._28{width:71.332286pt;}
._1{width:72.888619pt;}
._20{width:84.100592pt;}
._b{width:91.434964pt;}
._29{width:111.724279pt;}
.fs6{font-size:16.600451pt;}
.fs4{font-size:24.874844pt;}
.fs7{font-size:26.444913pt;}
.fs9{font-size:37.347871pt;}
.fs8{font-size:37.349977pt;}
.fs3{font-size:42.683681pt;}
.fs5{font-size:53.340097pt;}
.fs0{font-size:58.662102pt;}
.fs2{font-size:64.024123pt;}
.fs1{font-size:74.668133pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y4d{bottom:4.993570pt;}
.y4c{bottom:13.808541pt;}
.y4b{bottom:22.623512pt;}
.y48{bottom:26.360017pt;}
.y4a{bottom:31.438483pt;}
.y44{bottom:31.568874pt;}
.y49{bottom:40.253454pt;}
.y41{bottom:44.576950pt;}
.y43{bottom:47.885289pt;}
.y47{bottom:48.661571pt;}
.y40{bottom:58.804844pt;}
.y42{bottom:63.119273pt;}
.y2c{bottom:73.547660pt;}
.y2b{bottom:93.555198pt;}
.y2a{bottom:113.562736pt;}
.y4e{bottom:127.889533pt;}
.y29{bottom:133.570275pt;}
.y28{bottom:153.577813pt;}
.y27{bottom:173.585351pt;}
.y4f{bottom:179.916146pt;}
.y26{bottom:193.592890pt;}
.y45{bottom:201.432588pt;}
.y25{bottom:213.600428pt;}
.y24{bottom:233.607967pt;}
.y50{bottom:251.219119pt;}
.y23{bottom:253.615505pt;}
.y46{bottom:272.735529pt;}
.y22{bottom:273.623043pt;}
.y3d{bottom:291.024723pt;}
.y21{bottom:293.630582pt;}
.y3c{bottom:311.032261pt;}
.y20{bottom:313.638120pt;}
.y3b{bottom:331.039799pt;}
.y1f{bottom:333.645658pt;}
.y3a{bottom:351.047338pt;}
.y1e{bottom:353.653197pt;}
.y39{bottom:371.054876pt;}
.y1d{bottom:373.660735pt;}
.y6e{bottom:376.804066pt;}
.y38{bottom:391.062414pt;}
.y1c{bottom:393.668274pt;}
.y6d{bottom:396.811605pt;}
.y37{bottom:411.069953pt;}
.y1b{bottom:413.675812pt;}
.y6c{bottom:416.819143pt;}
.y36{bottom:431.077491pt;}
.y1a{bottom:433.683350pt;}
.y6b{bottom:436.826681pt;}
.y35{bottom:451.085030pt;}
.y19{bottom:453.690889pt;}
.y6a{bottom:456.834220pt;}
.y34{bottom:471.092568pt;}
.y18{bottom:473.698427pt;}
.y69{bottom:476.841758pt;}
.y33{bottom:491.100106pt;}
.y17{bottom:493.705965pt;}
.y68{bottom:496.849296pt;}
.y32{bottom:511.107645pt;}
.y16{bottom:513.713504pt;}
.y67{bottom:516.856835pt;}
.y31{bottom:531.115183pt;}
.y15{bottom:533.721042pt;}
.y66{bottom:536.864373pt;}
.y30{bottom:551.122721pt;}
.y14{bottom:553.728580pt;}
.y65{bottom:556.871912pt;}
.y2f{bottom:571.130260pt;}
.y64{bottom:576.879450pt;}
.y2e{bottom:591.137798pt;}
.y3f{bottom:592.673098pt;}
.y63{bottom:596.886988pt;}
.y2d{bottom:611.145336pt;}
.y62{bottom:616.894527pt;}
.y13{bottom:631.152875pt;}
.y61{bottom:636.902065pt;}
.y12{bottom:651.160413pt;}
.y60{bottom:656.909603pt;}
.y11{bottom:671.167952pt;}
.y5f{bottom:676.917142pt;}
.y10{bottom:691.175490pt;}
.y5e{bottom:696.924680pt;}
.yf{bottom:711.183028pt;}
.y5d{bottom:716.932218pt;}
.ye{bottom:731.190567pt;}
.y5c{bottom:736.939757pt;}
.yd{bottom:751.198105pt;}
.y5b{bottom:756.947295pt;}
.yc{bottom:771.205643pt;}
.yb{bottom:791.213182pt;}
.y6f{bottom:793.891115pt;}
.ya{bottom:811.220720pt;}
.y5a{bottom:830.876918pt;}
.y9{bottom:831.228258pt;}
.y59{bottom:850.884456pt;}
.y8{bottom:851.235797pt;}
.y58{bottom:870.891994pt;}
.y7{bottom:871.243335pt;}
.y57{bottom:890.899533pt;}
.y6{bottom:891.250874pt;}
.y56{bottom:910.907071pt;}
.y5{bottom:911.258412pt;}
.y55{bottom:930.914610pt;}
.y4{bottom:931.265950pt;}
.y54{bottom:950.922148pt;}
.y3{bottom:951.273489pt;}
.y53{bottom:970.929686pt;}
.y2{bottom:971.281027pt;}
.y52{bottom:990.937225pt;}
.y51{bottom:1010.944763pt;}
.y3e{bottom:1039.598451pt;}
.h9{height:13.363363pt;}
.h7{height:20.223249pt;}
.hb{height:21.499714pt;}
.hd{height:30.363819pt;}
.hc{height:30.365531pt;}
.h6{height:34.701833pt;}
.h8{height:43.365499pt;}
.ha{height:47.679998pt;}
.h3{height:47.692289pt;}
.he{height:51.539419pt;}
.h5{height:53.011974pt;}
.h4{height:61.825214pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w2{width:178.239993pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:38.713202pt;}
.xd{left:40.021952pt;}
.x8{left:43.578143pt;}
.x9{left:45.245237pt;}
.x3{left:63.644470pt;}
.x4{left:73.054265pt;}
.x5{left:103.285416pt;}
.xb{left:106.239996pt;}
.xc{left:113.140846pt;}
.x1{left:417.098303pt;}
.xe{left:419.852367pt;}
.xa{left:441.261895pt;}
.x7{left:549.919145pt;}
.x6{left:551.612297pt;}
}




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