
    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_f9218d3459360f8530340ed0.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_0ee96363b1c2287523bdc34f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.914062;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_eac28ccad59b8ebab9f82a89.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_75eae5ce9b69910c4045e24b.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.739746;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_5f6e0ce3009a9c8fc6c6f4d1.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.952148;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_291966613d4090fd13c1760c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.038574;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_31af840aac5b0a737f3c2ca4.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.966797;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:ff8;src:url('chunks/assets/font_02ec64f494bdb1cdc4ddc7cc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.854004;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;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.005836px;}
.ls4{letter-spacing:0.142650px;}
.ls2{letter-spacing:0.215161px;}
.ls6{letter-spacing:34.055251px;}
.ls5{letter-spacing:55.445857px;}
.ls0{letter-spacing:64.085852px;}
.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;}
}
.ws6{word-spacing:-59.768086px;}
.ws0{word-spacing:-59.762250px;}
.ws4{word-spacing:-52.345966px;}
.ws2{word-spacing:-35.863186px;}
.ws3{word-spacing:-35.857350px;}
.ws1{word-spacing:-18.000676px;}
.ws5{word-spacing:0.000000px;}
._6{margin-left:-24.124780px;}
._3{margin-left:-9.917810px;}
._4{margin-left:-4.188251px;}
._1{margin-left:-2.350213px;}
._2{margin-left:-1.178482px;}
._0{width:1.034476px;}
._8{width:2.166473px;}
._5{width:8.103961px;}
._7{width:25.631461px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.762250px;}
.fs1{font-size:72.002705px;}
.fs4{font-size:81.363150px;}
.fs2{font-size:108.004050px;}
.fs0{font-size:144.005409px;}
.y0{bottom:0.000000px;}
.y64{bottom:112.500068px;}
.y22{bottom:126.540047px;}
.y21{bottom:147.780052px;}
.y44{bottom:149.760064px;}
.y63{bottom:162.720085px;}
.y20{bottom:168.840088px;}
.y1f{bottom:190.080093px;}
.y43{bottom:192.060036px;}
.y62{bottom:205.020058px;}
.y42{bottom:209.160049px;}
.y41{bottom:226.080093px;}
.y61{bottom:226.260064px;}
.y1e{bottom:231.840088px;}
.y40{bottom:243.000068px;}
.y60{bottom:246.960091px;}
.y3f{bottom:260.100083px;}
.y5f{bottom:267.660049px;}
.y1d{bottom:273.960091px;}
.y5e{bottom:288.900055px;}
.y1c{bottom:293.580093px;}
.y3e{bottom:297.540047px;}
.y1b{bottom:313.200096px;}
.y5d{bottom:332.640060px;}
.y1a{bottom:332.820099px;}
.y3d{bottom:339.120072px;}
.y3c{bottom:359.820099px;}
.y19{bottom:373.320099px;}
.y3b{bottom:381.240074px;}
.y5c{bottom:382.680039px;}
.y3a{bottom:402.480079px;}
.y5b{bottom:404.100083px;}
.y18{bottom:417.600083px;}
.y39{bottom:423.720085px;}
.y5a{bottom:424.800041px;}
.y17{bottom:437.220085px;}
.y59{bottom:445.500068px;}
.y16{bottom:456.840088px;}
.y38{bottom:465.480079px;}
.y58{bottom:466.200096px;}
.y15{bottom:476.460091px;}
.y14{bottom:495.900055px;}
.y79{bottom:501.120072px;}
.y37{bottom:507.600083px;}
.y57{bottom:507.780052px;}
.y13{bottom:515.520058px;}
.y78{bottom:542.880066px;}
.y56{bottom:550.080093px;}
.y36{bottom:551.520058px;}
.y12{bottom:556.020058px;}
.y55{bottom:571.500068px;}
.y35{bottom:572.220085px;}
.y77{bottom:584.640060px;}
.y11{bottom:599.940033px;}
.y54{bottom:613.440033px;}
.y34{bottom:613.800041px;}
.y10{bottom:620.640060px;}
.y76{bottom:628.200096px;}
.y33{bottom:634.500068px;}
.y32{bottom:655.200096px;}
.y53{bottom:658.080093px;}
.yf{bottom:662.220085px;}
.y52{bottom:675.000068px;}
.y31{bottom:675.900055px;}
.y75{bottom:678.420043px;}
.ye{bottom:682.920043px;}
.y51{bottom:692.100083px;}
.y30{bottom:696.600083px;}
.y74{bottom:699.120072px;}
.y2f{bottom:717.300076px;}
.y73{bottom:719.820065px;}
.yd{bottom:726.660049px;}
.y50{bottom:729.360077px;}
.y72{bottom:741.060070px;}
.y2e{bottom:759.060070px;}
.y71{bottom:762.480079px;}
.y4f{bottom:771.660049px;}
.yc{bottom:776.700061px;}
.y70{bottom:783.180073px;}
.y4e{bottom:793.080059px;}
.yb{bottom:797.400055px;}
.y2d{bottom:801.360077px;}
.y6f{bottom:804.420078px;}
.ya{bottom:818.100083px;}
.y2c{bottom:818.280052px;}
.y4d{bottom:835.200061px;}
.y9{bottom:838.800076px;}
.y6e{bottom:847.980079px;}
.y2b{bottom:855.720051px;}
.y4c{bottom:878.940067px;}
.y8{bottom:882.360077px;}
.y2a{bottom:897.480079px;}
.y6d{bottom:898.200061px;}
.y29{bottom:918.180073px;}
.y6c{bottom:918.900055px;}
.y4b{bottom:922.680073px;}
.y7{bottom:932.580059px;}
.y6b{bottom:939.600083px;}
.y6{bottom:953.280053px;}
.y28{bottom:959.760064px;}
.y6a{bottom:960.300076px;}
.y4a{bottom:972.720051px;}
.y5{bottom:973.980079px;}
.y27{bottom:981.180073px;}
.y49{bottom:994.140060px;}
.y4{bottom:994.680073px;}
.y69{bottom:1003.860060px;}
.y48{bottom:1015.380066px;}
.y26{bottom:1023.300058px;}
.y47{bottom:1036.080059px;}
.y3{bottom:1040.220068px;}
.y68{bottom:1054.620072px;}
.y25{bottom:1069.020058px;}
.y67{bottom:1075.860060px;}
.y46{bottom:1077.840070px;}
.y2{bottom:1081.620072px;}
.y66{bottom:1097.280069px;}
.y45{bottom:1098.540064px;}
.y65{bottom:1118.520058px;}
.y24{bottom:1119.240066px;}
.y1{bottom:1123.020066px;}
.y23{bottom:1139.940067px;}
.h8{height:40.532112px;}
.h3{height:50.275326px;}
.h5{height:50.802689px;}
.h9{height:52.419938px;}
.h6{height:57.407105px;}
.h7{height:60.681967px;}
.ha{height:60.857755px;}
.h4{height:76.204029px;}
.h2{height:101.605379px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x2{left:111.959997px;}
.x3{left:138.959997px;}
.x4{left:165.960005px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.005188pt;}
.ls4{letter-spacing:0.126800pt;}
.ls2{letter-spacing:0.191254pt;}
.ls6{letter-spacing:30.271334pt;}
.ls5{letter-spacing:49.285206pt;}
.ls0{letter-spacing:56.965202pt;}
.ws6{word-spacing:-53.127188pt;}
.ws0{word-spacing:-53.122000pt;}
.ws4{word-spacing:-46.529748pt;}
.ws2{word-spacing:-31.878388pt;}
.ws3{word-spacing:-31.873200pt;}
.ws1{word-spacing:-16.000601pt;}
.ws5{word-spacing:0.000000pt;}
._6{margin-left:-21.444249pt;}
._3{margin-left:-8.815831pt;}
._4{margin-left:-3.722890pt;}
._1{margin-left:-2.089079pt;}
._2{margin-left:-1.047540pt;}
._0{width:0.919535pt;}
._8{width:1.925754pt;}
._5{width:7.203520pt;}
._7{width:22.783521pt;}
.fs3{font-size:53.122000pt;}
.fs1{font-size:64.002404pt;}
.fs4{font-size:72.322800pt;}
.fs2{font-size:96.003600pt;}
.fs0{font-size:128.004808pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:100.000061pt;}
.y22{bottom:112.480042pt;}
.y21{bottom:131.360047pt;}
.y44{bottom:133.120057pt;}
.y63{bottom:144.640076pt;}
.y20{bottom:150.080079pt;}
.y1f{bottom:168.960083pt;}
.y43{bottom:170.720032pt;}
.y62{bottom:182.240052pt;}
.y42{bottom:185.920044pt;}
.y41{bottom:200.960083pt;}
.y61{bottom:201.120057pt;}
.y1e{bottom:206.080079pt;}
.y40{bottom:216.000061pt;}
.y60{bottom:219.520081pt;}
.y3f{bottom:231.200074pt;}
.y5f{bottom:237.920044pt;}
.y1d{bottom:243.520081pt;}
.y5e{bottom:256.800049pt;}
.y1c{bottom:260.960083pt;}
.y3e{bottom:264.480042pt;}
.y1b{bottom:278.400086pt;}
.y5d{bottom:295.680054pt;}
.y1a{bottom:295.840088pt;}
.y3d{bottom:301.440064pt;}
.y3c{bottom:319.840088pt;}
.y19{bottom:331.840088pt;}
.y3b{bottom:338.880066pt;}
.y5c{bottom:340.160035pt;}
.y3a{bottom:357.760071pt;}
.y5b{bottom:359.200074pt;}
.y18{bottom:371.200074pt;}
.y39{bottom:376.640076pt;}
.y5a{bottom:377.600037pt;}
.y17{bottom:388.640076pt;}
.y59{bottom:396.000061pt;}
.y16{bottom:406.080079pt;}
.y38{bottom:413.760071pt;}
.y58{bottom:414.400086pt;}
.y15{bottom:423.520081pt;}
.y14{bottom:440.800049pt;}
.y79{bottom:445.440064pt;}
.y37{bottom:451.200074pt;}
.y57{bottom:451.360047pt;}
.y13{bottom:458.240052pt;}
.y78{bottom:482.560059pt;}
.y56{bottom:488.960083pt;}
.y36{bottom:490.240052pt;}
.y12{bottom:494.240052pt;}
.y55{bottom:508.000061pt;}
.y35{bottom:508.640076pt;}
.y77{bottom:519.680054pt;}
.y11{bottom:533.280030pt;}
.y54{bottom:545.280030pt;}
.y34{bottom:545.600037pt;}
.y10{bottom:551.680054pt;}
.y76{bottom:558.400086pt;}
.y33{bottom:564.000061pt;}
.y32{bottom:582.400086pt;}
.y53{bottom:584.960083pt;}
.yf{bottom:588.640076pt;}
.y52{bottom:600.000061pt;}
.y31{bottom:600.800049pt;}
.y75{bottom:603.040039pt;}
.ye{bottom:607.040039pt;}
.y51{bottom:615.200074pt;}
.y30{bottom:619.200074pt;}
.y74{bottom:621.440064pt;}
.y2f{bottom:637.600068pt;}
.y73{bottom:639.840058pt;}
.yd{bottom:645.920044pt;}
.y50{bottom:648.320069pt;}
.y72{bottom:658.720063pt;}
.y2e{bottom:674.720063pt;}
.y71{bottom:677.760071pt;}
.y4f{bottom:685.920044pt;}
.yc{bottom:690.400055pt;}
.y70{bottom:696.160065pt;}
.y4e{bottom:704.960053pt;}
.yb{bottom:708.800049pt;}
.y2d{bottom:712.320069pt;}
.y6f{bottom:715.040070pt;}
.ya{bottom:727.200074pt;}
.y2c{bottom:727.360047pt;}
.y4d{bottom:742.400055pt;}
.y9{bottom:745.600068pt;}
.y6e{bottom:753.760071pt;}
.y2b{bottom:760.640046pt;}
.y4c{bottom:781.280060pt;}
.y8{bottom:784.320069pt;}
.y2a{bottom:797.760071pt;}
.y6d{bottom:798.400055pt;}
.y29{bottom:816.160065pt;}
.y6c{bottom:816.800049pt;}
.y4b{bottom:820.160065pt;}
.y7{bottom:828.960053pt;}
.y6b{bottom:835.200074pt;}
.y6{bottom:847.360047pt;}
.y28{bottom:853.120057pt;}
.y6a{bottom:853.600068pt;}
.y4a{bottom:864.640046pt;}
.y5{bottom:865.760071pt;}
.y27{bottom:872.160065pt;}
.y49{bottom:883.680054pt;}
.y4{bottom:884.160065pt;}
.y69{bottom:892.320054pt;}
.y48{bottom:902.560059pt;}
.y26{bottom:909.600052pt;}
.y47{bottom:920.960053pt;}
.y3{bottom:924.640061pt;}
.y68{bottom:937.440064pt;}
.y25{bottom:950.240052pt;}
.y67{bottom:956.320054pt;}
.y46{bottom:958.080063pt;}
.y2{bottom:961.440064pt;}
.y66{bottom:975.360062pt;}
.y45{bottom:976.480057pt;}
.y65{bottom:994.240052pt;}
.y24{bottom:994.880059pt;}
.y1{bottom:998.240059pt;}
.y23{bottom:1013.280060pt;}
.h8{height:36.028544pt;}
.h3{height:44.689179pt;}
.h5{height:45.157946pt;}
.h9{height:46.595500pt;}
.h6{height:51.028538pt;}
.h7{height:53.939526pt;}
.ha{height:54.095782pt;}
.h4{height:67.736915pt;}
.h2{height:90.315892pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x2{left:99.519997pt;}
.x3{left:123.519997pt;}
.x4{left:147.520004pt;}
}




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