
    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_1a0e94ac48a5cfe51927fbaf.woff')format("woff");}.ff1{font-family:ff1;line-height:1.031738;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_52824da92168f96483bcd757.woff')format("woff");}.ff2{font-family:ff2;line-height:1.100098;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.249949,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249949,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249964,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249986,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250018,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250079,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250079,0.000000,0.000000,0.250000,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;}
}
.ws0{word-spacing:-95.986944px;}
.ws1{word-spacing:0.000000px;}
._2c{margin-left:-995.675220px;}
._2d{margin-left:-991.051585px;}
._2a{margin-left:-840.692872px;}
._1f{margin-left:-602.369726px;}
._20{margin-left:-577.642194px;}
._26{margin-left:-77.474902px;}
._22{margin-left:-72.471468px;}
._23{margin-left:-71.427725px;}
._2e{margin-left:-69.553979px;}
._a{margin-left:-66.319299px;}
._3{margin-left:-64.397641px;}
._25{margin-left:-63.270754px;}
._24{margin-left:-62.054599px;}
._9{margin-left:-60.413223px;}
._10{margin-left:-55.961348px;}
._31{margin-left:-54.771159px;}
._2b{margin-left:-53.176846px;}
._16{margin-left:-50.324630px;}
._6{margin-left:-49.211546px;}
._17{margin-left:-48.077315px;}
._28{margin-left:-47.058721px;}
._4{margin-left:-45.743538px;}
._8{margin-left:-44.478430px;}
._2{margin-left:-43.072221px;}
._1{margin-left:-41.244630px;}
._1c{margin-left:-40.044646px;}
._0{margin-left:-39.041730px;}
._e{margin-left:-37.541454px;}
._21{margin-left:-36.229312px;}
._32{margin-left:-35.180893px;}
._c{margin-left:-34.167513px;}
._11{margin-left:-32.621163px;}
._d{margin-left:-31.589303px;}
._f{margin-left:-29.761712px;}
._b{margin-left:-28.308470px;}
._1b{margin-left:-27.003170px;}
._19{margin-left:-25.363513px;}
._1d{margin-left:-24.096966px;}
._5{margin-left:-22.497420px;}
._1a{margin-left:-20.947066px;}
._13{margin-left:-18.950032px;}
._29{margin-left:-16.977979px;}
._18{margin-left:-15.839981px;}
._12{margin-left:-14.294376px;}
._27{margin-left:-12.285233px;}
._34{margin-left:-11.147124px;}
._30{margin-left:-10.135802px;}
._15{margin-left:-9.087050px;}
._14{margin-left:-7.710344px;}
._1e{margin-left:-6.684776px;}
._33{margin-left:-5.451056px;}
._7{width:4.358767px;}
._2f{width:31.682534px;}
.fc0{color:transparent;}
.fs5{font-size:47.993472px;}
.fs2{font-size:59.999616px;}
.fs1{font-size:66.002688px;}
.fs3{font-size:72.005760px;}
.fs4{font-size:84.011904px;}
.fs0{font-size:95.986944px;}
.y0{bottom:0.000000px;}
.y34{bottom:7.923744px;}
.y40{bottom:19.447776px;}
.y1f{bottom:20.163168px;}
.y3f{bottom:33.845818px;}
.y1e{bottom:38.163053px;}
.y3e{bottom:48.243859px;}
.y3d{bottom:62.641901px;}
.y1d{bottom:74.162822px;}
.y3c{bottom:77.039942px;}
.y28{bottom:80.991706px;}
.y3b{bottom:91.437984px;}
.y1c{bottom:92.162707px;}
.y27{bottom:120.593318px;}
.y1{bottom:128.156256px;}
.y1b{bottom:128.162477px;}
.y26{bottom:140.394125px;}
.y1a{bottom:146.162362px;}
.y25{bottom:179.995738px;}
.y39{bottom:180.712685px;}
.y19{bottom:182.162131px;}
.y24{bottom:199.796544px;}
.y18{bottom:200.162016px;}
.y38{bottom:220.314298px;}
.y23{bottom:239.398157px;}
.y3a{bottom:239.757408px;}
.y37{bottom:259.915910px;}
.y22{bottom:278.999770px;}
.y16{bottom:281.519194px;}
.y21{bottom:298.800576px;}
.y36{bottom:299.517523px;}
.y15{bottom:299.519078px;}
.y14{bottom:335.518848px;}
.y30{bottom:339.119136px;}
.y13{bottom:353.518733px;}
.y35{bottom:384.476544px;}
.y12{bottom:389.518502px;}
.y2f{bottom:401.754816px;}
.y11{bottom:407.518387px;}
.y2e{bottom:421.555622px;}
.y10{bottom:425.518272px;}
.y8{bottom:443.510381px;}
.y2d{bottom:461.157235px;}
.yf{bottom:461.518042px;}
.y7{bottom:463.311187px;}
.ye{bottom:479.517926px;}
.yd{bottom:497.517811px;}
.y2c{bottom:500.758848px;}
.y6{bottom:502.912800px;}
.yc{bottom:533.517581px;}
.y2b{bottom:540.360461px;}
.y5{bottom:542.514413px;}
.yb{bottom:551.517466px;}
.y2a{bottom:560.161267px;}
.y4{bottom:562.315219px;}
.ya{bottom:587.517235px;}
.y29{bottom:599.762880px;}
.y3{bottom:601.916832px;}
.y9{bottom:605.517120px;}
.y2{bottom:637.196544px;}
.y20{bottom:638.642880px;}
.y17{bottom:683.277120px;}
.y33{bottom:726.479021px;}
.y32{bottom:726.480576px;}
.y31{bottom:751.682592px;}
.h8{height:38.502575px;}
.h5{height:48.134458px;}
.h4{height:52.950399px;}
.h6{height:57.766340px;}
.h7{height:67.398222px;}
.h2{height:77.005151px;}
.h3{height:79.723531px;}
.h0{height:777.600000px;}
.h1{height:777.750000px;}
.w1{width:1382.250000px;}
.w0{width:1382.400000px;}
.x0{left:0.000000px;}
.x8{left:11.439719px;}
.xc{left:28.291740px;}
.x14{left:36.716544px;}
.x1a{left:44.403183px;}
.x11{left:46.615767px;}
.x17{left:52.869391px;}
.x15{left:56.447112px;}
.x31{left:62.636544px;}
.xa{left:66.624337px;}
.x18{left:68.934113px;}
.xf{left:73.706283px;}
.xe{left:79.367671px;}
.x19{left:80.458025px;}
.xb{left:85.706265px;}
.x9{left:104.700450px;}
.x16{left:111.272653px;}
.xd{left:113.056715px;}
.x12{left:114.129596px;}
.x10{left:125.748902px;}
.x28{left:212.990433px;}
.x13{left:322.555392px;}
.x29{left:336.604002px;}
.x1d{left:388.484668px;}
.x22{left:390.015916px;}
.x23{left:397.120367px;}
.x2a{left:426.943544px;}
.x26{left:438.409105px;}
.x25{left:453.827060px;}
.x1c{left:455.934693px;}
.x27{left:460.057196px;}
.x20{left:469.055363px;}
.x24{left:470.264252px;}
.x21{left:486.456002px;}
.x1e{left:505.512672px;}
.x1f{left:514.051647px;}
.x1b{left:519.118848px;}
.x37{left:874.196591px;}
.x2c{left:894.274251px;}
.x30{left:896.414070px;}
.x5{left:902.741853px;}
.x2f{left:907.709358px;}
.x2{left:913.683456px;}
.x3{left:920.102053px;}
.x2e{left:928.112081px;}
.x2b{left:933.838848px;}
.x32{left:942.588734px;}
.x36{left:947.835398px;}
.x34{left:957.078166px;}
.x6{left:963.518561px;}
.x2d{left:964.859564px;}
.x33{left:970.442431px;}
.x35{left:1013.719821px;}
.x7{left:1036.610123px;}
.x1{left:1065.444807px;}
.x4{left:1078.705007px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-85.321728pt;}
.ws1{word-spacing:0.000000pt;}
._2c{margin-left:-885.044640pt;}
._2d{margin-left:-880.934742pt;}
._2a{margin-left:-747.282553pt;}
._1f{margin-left:-535.439756pt;}
._20{margin-left:-513.459728pt;}
._26{margin-left:-68.866580pt;}
._22{margin-left:-64.419082pt;}
._23{margin-left:-63.491311pt;}
._2e{margin-left:-61.825759pt;}
._a{margin-left:-58.950488pt;}
._3{margin-left:-57.242347pt;}
._25{margin-left:-56.240670pt;}
._24{margin-left:-55.159644pt;}
._9{margin-left:-53.700642pt;}
._10{margin-left:-49.743421pt;}
._31{margin-left:-48.685475pt;}
._2b{margin-left:-47.268307pt;}
._16{margin-left:-44.733004pt;}
._6{margin-left:-43.743597pt;}
._17{margin-left:-42.735391pt;}
._28{margin-left:-41.829974pt;}
._4{margin-left:-40.660923pt;}
._8{margin-left:-39.536382pt;}
._2{margin-left:-38.286419pt;}
._1{margin-left:-36.661893pt;}
._1c{margin-left:-35.595241pt;}
._0{margin-left:-34.703760pt;}
._e{margin-left:-33.370181pt;}
._21{margin-left:-32.203833pt;}
._32{margin-left:-31.271905pt;}
._c{margin-left:-30.371122pt;}
._11{margin-left:-28.996589pt;}
._d{margin-left:-28.079381pt;}
._f{margin-left:-26.454855pt;}
._b{margin-left:-25.163084pt;}
._1b{margin-left:-24.002817pt;}
._19{margin-left:-22.545345pt;}
._1d{margin-left:-21.419526pt;}
._5{margin-left:-19.997707pt;}
._1a{margin-left:-18.619614pt;}
._13{margin-left:-16.844473pt;}
._29{margin-left:-15.091537pt;}
._18{margin-left:-14.079983pt;}
._12{margin-left:-12.706112pt;}
._27{margin-left:-10.920207pt;}
._34{margin-left:-9.908555pt;}
._30{margin-left:-9.009602pt;}
._15{margin-left:-8.077378pt;}
._14{margin-left:-6.853639pt;}
._1e{margin-left:-5.942023pt;}
._33{margin-left:-4.845383pt;}
._7{width:3.874460pt;}
._2f{width:28.162253pt;}
.fs5{font-size:42.660864pt;}
.fs2{font-size:53.332992pt;}
.fs1{font-size:58.669056pt;}
.fs3{font-size:64.005120pt;}
.fs4{font-size:74.677248pt;}
.fs0{font-size:85.321728pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:7.043328pt;}
.y40{bottom:17.286912pt;}
.y1f{bottom:17.922816pt;}
.y3f{bottom:30.085171pt;}
.y1e{bottom:33.922714pt;}
.y3e{bottom:42.883430pt;}
.y3d{bottom:55.681690pt;}
.y1d{bottom:65.922509pt;}
.y3c{bottom:68.479949pt;}
.y28{bottom:71.992627pt;}
.y3b{bottom:81.278208pt;}
.y1c{bottom:81.922406pt;}
.y27{bottom:107.194061pt;}
.y1{bottom:113.916672pt;}
.y1b{bottom:113.922202pt;}
.y26{bottom:124.794778pt;}
.y1a{bottom:129.922099pt;}
.y25{bottom:159.996211pt;}
.y39{bottom:160.633498pt;}
.y19{bottom:161.921894pt;}
.y24{bottom:177.596928pt;}
.y18{bottom:177.921792pt;}
.y38{bottom:195.834931pt;}
.y23{bottom:212.798362pt;}
.y3a{bottom:213.117696pt;}
.y37{bottom:231.036365pt;}
.y22{bottom:247.999795pt;}
.y16{bottom:250.239283pt;}
.y21{bottom:265.600512pt;}
.y36{bottom:266.237798pt;}
.y15{bottom:266.239181pt;}
.y14{bottom:298.238976pt;}
.y30{bottom:301.439232pt;}
.y13{bottom:314.238874pt;}
.y35{bottom:341.756928pt;}
.y12{bottom:346.238669pt;}
.y2f{bottom:357.115392pt;}
.y11{bottom:362.238566pt;}
.y2e{bottom:374.716109pt;}
.y10{bottom:378.238464pt;}
.y8{bottom:394.231450pt;}
.y2d{bottom:409.917542pt;}
.yf{bottom:410.238259pt;}
.y7{bottom:411.832166pt;}
.ye{bottom:426.238157pt;}
.yd{bottom:442.238054pt;}
.y2c{bottom:445.118976pt;}
.y6{bottom:447.033600pt;}
.yc{bottom:474.237850pt;}
.y2b{bottom:480.320410pt;}
.y5{bottom:482.235034pt;}
.yb{bottom:490.237747pt;}
.y2a{bottom:497.921126pt;}
.y4{bottom:499.835750pt;}
.ya{bottom:522.237542pt;}
.y29{bottom:533.122560pt;}
.y3{bottom:535.037184pt;}
.y9{bottom:538.237440pt;}
.y2{bottom:566.396928pt;}
.y20{bottom:567.682560pt;}
.y17{bottom:607.357440pt;}
.y33{bottom:645.759130pt;}
.y32{bottom:645.760512pt;}
.y31{bottom:668.162304pt;}
.h8{height:34.224512pt;}
.h5{height:42.786184pt;}
.h4{height:47.067021pt;}
.h6{height:51.347858pt;}
.h7{height:59.909531pt;}
.h2{height:68.449023pt;}
.h3{height:70.865361pt;}
.h0{height:691.200000pt;}
.h1{height:691.333333pt;}
.w1{width:1228.666667pt;}
.w0{width:1228.800000pt;}
.x0{left:0.000000pt;}
.x8{left:10.168639pt;}
.xc{left:25.148213pt;}
.x14{left:32.636928pt;}
.x1a{left:39.469496pt;}
.x11{left:41.436238pt;}
.x17{left:46.995014pt;}
.x15{left:50.175211pt;}
.x31{left:55.676928pt;}
.xa{left:59.221633pt;}
.x18{left:61.274767pt;}
.xf{left:65.516696pt;}
.xe{left:70.549041pt;}
.x19{left:71.518245pt;}
.xb{left:76.183347pt;}
.x9{left:93.067066pt;}
.x16{left:98.909025pt;}
.xd{left:100.494858pt;}
.x12{left:101.448530pt;}
.x10{left:111.776802pt;}
.x28{left:189.324830pt;}
.x13{left:286.715904pt;}
.x29{left:299.203557pt;}
.x1d{left:345.319705pt;}
.x22{left:346.680814pt;}
.x23{left:352.995882pt;}
.x2a{left:379.505373pt;}
.x26{left:389.696982pt;}
.x25{left:403.401831pt;}
.x1c{left:405.275283pt;}
.x27{left:408.939729pt;}
.x20{left:416.938100pt;}
.x24{left:418.012668pt;}
.x21{left:432.405335pt;}
.x1e{left:449.344598pt;}
.x1f{left:456.934797pt;}
.x1b{left:461.438976pt;}
.x37{left:777.063637pt;}
.x2c{left:794.910445pt;}
.x30{left:796.812507pt;}
.x5{left:802.437203pt;}
.x2f{left:806.852762pt;}
.x2{left:812.163072pt;}
.x3{left:817.868491pt;}
.x2e{left:824.988517pt;}
.x2b{left:830.078976pt;}
.x32{left:837.856652pt;}
.x36{left:842.520354pt;}
.x34{left:850.736148pt;}
.x6{left:856.460943pt;}
.x2d{left:857.652945pt;}
.x33{left:862.615494pt;}
.x35{left:901.084286pt;}
.x7{left:921.431220pt;}
.x1{left:947.062050pt;}
.x4{left:958.848895pt;}
}




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