
    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_34798ece0a62e8b1c2ec456f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.112000;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_ea8b04df1b2b4aa76726e8b1.woff2')format("woff");}.ff2{font-family:ff2;line-height:869.000000;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_b96b830dc2b94675d51063b8.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.895000;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_4c5e0aa9ef34a37b0ead4ee6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.916000;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_bff2c9467fe5ea055ff571b5.woff2')format("woff");}.ff5{font-family:ff5;line-height:691.000000;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_b1ee0babca8efb24280f43e8.woff2')format("woff");}.ff6{font-family:ff6;line-height:688.000000;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);}
.v1{vertical-align:-3456.778617px;}
.v2{vertical-align:-80.771968px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.001440px;}
.lsc{letter-spacing:0.004260px;}
.ls5{letter-spacing:0.006855px;}
.ls0{letter-spacing:0.017573px;}
.lsa{letter-spacing:0.020742px;}
.ls8{letter-spacing:0.023573px;}
.lsb{letter-spacing:0.041484px;}
.ls2{letter-spacing:0.086189px;}
.ls9{letter-spacing:0.092189px;}
.ls4{letter-spacing:0.106042px;}
.lsd{letter-spacing:0.338940px;}
.ls6{letter-spacing:0.347400px;}
.ls1{letter-spacing:13.642075px;}
.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;}
}
.ws7{word-spacing:-49.760364px;}
.ws4{word-spacing:-38.875309px;}
.wse{word-spacing:-34.460086px;}
.wsb{word-spacing:-17.250785px;}
.ws5{word-spacing:-17.230043px;}
.ws6{word-spacing:-13.460980px;}
.ws0{word-spacing:-3.590810px;}
.ws2{word-spacing:-3.588053px;}
.ws8{word-spacing:0.000000px;}
.wsa{word-spacing:0.142126px;}
.ws3{word-spacing:0.148126px;}
.ws9{word-spacing:0.200087px;}
.ws1{word-spacing:0.206087px;}
.wsd{word-spacing:3.501829px;}
.wsc{word-spacing:11.378717px;}
._19{margin-left:-2135.899611px;}
._11{margin-left:-1937.480129px;}
._1{margin-left:-98.180379px;}
._15{margin-left:-2.384645px;}
._0{margin-left:-1.031919px;}
._e{width:1.142993px;}
._2{width:3.026056px;}
._3{width:4.169088px;}
._4{width:5.177277px;}
._12{width:6.530788px;}
._f{width:7.861982px;}
._d{width:8.966620px;}
._5{width:10.000378px;}
._6{width:11.503198px;}
._7{width:12.782130px;}
._b{width:13.796617px;}
._a{width:15.003779px;}
._10{width:16.030568px;}
._c{width:18.305218px;}
._8{width:19.690420px;}
._9{width:20.956920px;}
._14{width:22.819657px;}
._13{width:23.970347px;}
._16{width:29.228930px;}
._1a{width:31.082993px;}
._17{width:34.928552px;}
._18{width:36.031201px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:53.843918px;}
.fs0{font-size:68.920172px;}
.y0{bottom:0.000000px;}
.y1{bottom:1.823904px;}
.y25{bottom:371.748397px;}
.y4d{bottom:373.567051px;}
.y24{bottom:391.942888px;}
.y4c{bottom:393.760042px;}
.y56{bottom:393.811342px;}
.y23{bottom:412.135880px;}
.y4b{bottom:413.954534px;}
.y55{bottom:414.005834px;}
.y22{bottom:432.328872px;}
.y4a{bottom:434.147526px;}
.y54{bottom:434.198826px;}
.y21{bottom:452.523364px;}
.y49{bottom:454.340518px;}
.y53{bottom:454.391818px;}
.y20{bottom:472.716356px;}
.y48{bottom:474.535010px;}
.y52{bottom:474.586310px;}
.y1f{bottom:492.910848px;}
.y47{bottom:494.728002px;}
.y1e{bottom:513.103840px;}
.y46{bottom:514.922494px;}
.y51{bottom:514.973794px;}
.y1d{bottom:533.298332px;}
.y45{bottom:535.115486px;}
.y50{bottom:535.166786px;}
.y1c{bottom:553.491324px;}
.y44{bottom:555.309978px;}
.y4f{bottom:555.361278px;}
.y1b{bottom:573.684316px;}
.y43{bottom:575.502370px;}
.y4e{bottom:575.554270px;}
.y1a{bottom:593.878808px;}
.y42{bottom:595.695362px;}
.y19{bottom:614.071800px;}
.y41{bottom:615.889854px;}
.y18{bottom:634.266292px;}
.y40{bottom:636.082846px;}
.y17{bottom:654.459283px;}
.y3f{bottom:656.277337px;}
.y16{bottom:674.653775px;}
.y3e{bottom:676.470329px;}
.y15{bottom:694.846767px;}
.y3d{bottom:696.664821px;}
.y14{bottom:715.039759px;}
.y3c{bottom:716.857813px;}
.y13{bottom:735.234251px;}
.y3b{bottom:737.052305px;}
.y12{bottom:755.427243px;}
.y3a{bottom:757.245297px;}
.y11{bottom:775.621735px;}
.y39{bottom:777.438289px;}
.y10{bottom:795.814727px;}
.y38{bottom:797.632781px;}
.yf{bottom:816.009219px;}
.y37{bottom:817.825773px;}
.ye{bottom:836.201611px;}
.y36{bottom:838.020265px;}
.yd{bottom:856.396703px;}
.y35{bottom:858.213257px;}
.yc{bottom:876.589095px;}
.y34{bottom:878.407749px;}
.yb{bottom:896.783587px;}
.y33{bottom:898.600741px;}
.y32{bottom:918.795232px;}
.ya{bottom:937.169720px;}
.y31{bottom:938.988224px;}
.y9{bottom:957.364212px;}
.y30{bottom:959.182716px;}
.y8{bottom:977.557204px;}
.y2f{bottom:979.375708px;}
.y7{bottom:997.751696px;}
.y2e{bottom:999.568700px;}
.y2d{bottom:1019.763192px;}
.y2c{bottom:1039.956184px;}
.y6{bottom:1058.326922px;}
.y2b{bottom:1060.150676px;}
.y2a{bottom:1080.343068px;}
.y5{bottom:1098.713656px;}
.y29{bottom:1100.537560px;}
.y4{bottom:1118.906648px;}
.y28{bottom:1120.730552px;}
.y3{bottom:1139.101140px;}
.y27{bottom:1140.925044px;}
.y2{bottom:1190.518119px;}
.y26{bottom:1192.342023px;}
.h5{height:46.796797px;}
.h3{height:61.752474px;}
.h4{height:61.773474px;}
.h6{height:61.960074px;}
.h1{height:1259.349696px;}
.h0{height:1263.000000px;}
.h8{height:46658.956736px;}
.h7{height:46727.876909px;}
.h2{height:46796.797081px;}
.w1{width:890.249035px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x2{left:267.154628px;}
.x8{left:271.837391px;}
.x6{left:284.472421px;}
.x4{left:288.159119px;}
.xa{left:297.595381px;}
.xd{left:313.584610px;}
.x1{left:319.923106px;}
.xc{left:371.908036px;}
.x7{left:386.335880px;}
.x5{left:414.955568px;}
.xb{left:432.127912px;}
.x9{left:666.337893px;}
.x3{left:702.938038px;}
@media print{
.v1{vertical-align:-3072.692104pt;}
.v2{vertical-align:-71.797305pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.001280pt;}
.lsc{letter-spacing:0.003787pt;}
.ls5{letter-spacing:0.006094pt;}
.ls0{letter-spacing:0.015621pt;}
.lsa{letter-spacing:0.018437pt;}
.ls8{letter-spacing:0.020954pt;}
.lsb{letter-spacing:0.036875pt;}
.ls2{letter-spacing:0.076612pt;}
.ls9{letter-spacing:0.081946pt;}
.ls4{letter-spacing:0.094260pt;}
.lsd{letter-spacing:0.301280pt;}
.ls6{letter-spacing:0.308800pt;}
.ls1{letter-spacing:12.126288pt;}
.ws7{word-spacing:-44.231435pt;}
.ws4{word-spacing:-34.555830pt;}
.wse{word-spacing:-30.631188pt;}
.wsb{word-spacing:-15.334031pt;}
.ws5{word-spacing:-15.315594pt;}
.ws6{word-spacing:-11.965315pt;}
.ws0{word-spacing:-3.191831pt;}
.ws2{word-spacing:-3.189381pt;}
.ws8{word-spacing:0.000000pt;}
.wsa{word-spacing:0.126334pt;}
.ws3{word-spacing:0.131667pt;}
.ws9{word-spacing:0.177855pt;}
.ws1{word-spacing:0.183188pt;}
.wsd{word-spacing:3.112737pt;}
.wsc{word-spacing:10.114415pt;}
._19{margin-left:-1898.577432pt;}
._11{margin-left:-1722.204559pt;}
._1{margin-left:-87.271448pt;}
._15{margin-left:-2.119684pt;}
._0{margin-left:-0.917261pt;}
._e{width:1.015994pt;}
._2{width:2.689828pt;}
._3{width:3.705856pt;}
._4{width:4.602024pt;}
._12{width:5.805145pt;}
._f{width:6.988428pt;}
._d{width:7.970329pt;}
._5{width:8.889225pt;}
._6{width:10.225065pt;}
._7{width:11.361893pt;}
._b{width:12.263660pt;}
._a{width:13.336692pt;}
._10{width:14.249393pt;}
._c{width:16.271305pt;}
._8{width:17.502595pt;}
._9{width:18.628374pt;}
._14{width:20.284139pt;}
._13{width:21.306975pt;}
._16{width:25.981271pt;}
._1a{width:27.629327pt;}
._17{width:31.047602pt;}
._18{width:32.027734pt;}
.fs1{font-size:47.861261pt;}
.fs0{font-size:61.262375pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:1.621248pt;}
.y25{bottom:330.443019pt;}
.y4d{bottom:332.059601pt;}
.y24{bottom:348.393679pt;}
.y4c{bottom:350.008927pt;}
.y56{bottom:350.054527pt;}
.y23{bottom:366.343005pt;}
.y4b{bottom:367.959586pt;}
.y55{bottom:368.005186pt;}
.y22{bottom:384.292331pt;}
.y4a{bottom:385.908912pt;}
.y54{bottom:385.954512pt;}
.y21{bottom:402.242990pt;}
.y49{bottom:403.858238pt;}
.y53{bottom:403.903838pt;}
.y20{bottom:420.192317pt;}
.y48{bottom:421.808898pt;}
.y52{bottom:421.854498pt;}
.y1f{bottom:438.142976pt;}
.y47{bottom:439.758224pt;}
.y1e{bottom:456.092302pt;}
.y46{bottom:457.708884pt;}
.y51{bottom:457.754484pt;}
.y1d{bottom:474.042962pt;}
.y45{bottom:475.658210pt;}
.y50{bottom:475.703810pt;}
.y1c{bottom:491.992288pt;}
.y44{bottom:493.608869pt;}
.y4f{bottom:493.654469pt;}
.y1b{bottom:509.941614pt;}
.y43{bottom:511.557662pt;}
.y4e{bottom:511.603795pt;}
.y1a{bottom:527.892274pt;}
.y42{bottom:529.506988pt;}
.y19{bottom:545.841600pt;}
.y41{bottom:547.457648pt;}
.y18{bottom:563.792259pt;}
.y40{bottom:565.406974pt;}
.y17{bottom:581.741585pt;}
.y3f{bottom:583.357633pt;}
.y16{bottom:599.692245pt;}
.y3e{bottom:601.306959pt;}
.y15{bottom:617.641571pt;}
.y3d{bottom:619.257619pt;}
.y14{bottom:635.590897pt;}
.y3c{bottom:637.206945pt;}
.y13{bottom:653.541557pt;}
.y3b{bottom:655.157605pt;}
.y12{bottom:671.490883pt;}
.y3a{bottom:673.106931pt;}
.y11{bottom:689.441542pt;}
.y39{bottom:691.056257pt;}
.y10{bottom:707.390868pt;}
.y38{bottom:709.006916pt;}
.yf{bottom:725.341528pt;}
.y37{bottom:726.956243pt;}
.ye{bottom:743.290321pt;}
.y36{bottom:744.906902pt;}
.yd{bottom:761.241514pt;}
.y35{bottom:762.856228pt;}
.yc{bottom:779.190306pt;}
.y34{bottom:780.806888pt;}
.yb{bottom:797.140966pt;}
.y33{bottom:798.756214pt;}
.y32{bottom:816.706873pt;}
.ya{bottom:833.039751pt;}
.y31{bottom:834.656199pt;}
.y9{bottom:850.990411pt;}
.y30{bottom:852.606859pt;}
.y8{bottom:868.939737pt;}
.y2f{bottom:870.556185pt;}
.y7{bottom:886.890397pt;}
.y2e{bottom:888.505511pt;}
.y2d{bottom:906.456171pt;}
.y2c{bottom:924.405497pt;}
.y6{bottom:940.735042pt;}
.y2b{bottom:942.356156pt;}
.y2a{bottom:960.304949pt;}
.y5{bottom:976.634361pt;}
.y29{bottom:978.255609pt;}
.y4{bottom:994.583687pt;}
.y28{bottom:996.204935pt;}
.y3{bottom:1012.534346pt;}
.y27{bottom:1014.155594pt;}
.y2{bottom:1058.238328pt;}
.y26{bottom:1059.859576pt;}
.h5{height:41.597153pt;}
.h3{height:54.891088pt;}
.h4{height:54.909755pt;}
.h6{height:55.075622pt;}
.h1{height:1119.421952pt;}
.h0{height:1122.666667pt;}
.h8{height:41474.628210pt;}
.h7{height:41535.890586pt;}
.h2{height:41597.152961pt;}
.w1{width:791.332475pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x2{left:237.470780pt;}
.x8{left:241.633237pt;}
.x6{left:252.864374pt;}
.x4{left:256.141439pt;}
.xa{left:264.529228pt;}
.xd{left:278.741875pt;}
.x1{left:284.376095pt;}
.xc{left:330.584921pt;}
.x7{left:343.409671pt;}
.x5{left:368.849394pt;}
.xb{left:384.113700pt;}
.x9{left:592.300350pt;}
.x3{left:624.833812pt;}
}




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