
    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_f81412510c8d7f4b050568eb.woff')format("woff");}.ff1{font-family:ff1;line-height:0.972167;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_e23cbf223e1ab8711a323afc.woff')format("woff");}.ff2{font-family:ff2;line-height:0.941000;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_92500758ec4994ddc64b8bfe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.965000;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_1b13221c4b7a5e3b07db1608.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941000;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_830ad1ef501f9c9f5942244e.woff')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_9a074bb4c012adb11da1c85f.woff')format("woff");}.ff6{font-family:ff6;line-height:0.941000;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_58ec6e466320b4e105c3bef6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.750000;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;}
.ff8{font-family:sans-serif;visibility:hidden;}
.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;}
.ls4{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000063px;}
.ls3{letter-spacing:0.000162px;}
.ls1{letter-spacing:13.985058px;}
.ls2{letter-spacing:14.399072px;}
.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:-65.515104px;}
.ws2{word-spacing:-54.716059px;}
.ws1{word-spacing:-45.356673px;}
.ws3{word-spacing:-40.317148px;}
.ws4{word-spacing:0.000000px;}
._13{margin-left:-21.685770px;}
._9{margin-left:-14.038834px;}
._0{margin-left:-9.359071px;}
._1{margin-left:-7.019345px;}
._17{margin-left:-4.679466px;}
._2{margin-left:-2.339722px;}
._24{margin-left:-1.006379px;}
._11{width:1.019105px;}
._6{width:2.802142px;}
._1b{width:7.415506px;}
._15{width:13.199837px;}
._10{width:14.377777px;}
._16{width:15.385754px;}
._22{width:16.870204px;}
._1e{width:20.403053px;}
._8{width:22.315424px;}
._23{width:23.816466px;}
._19{width:27.876768px;}
._1d{width:29.775064px;}
._20{width:31.292025px;}
._1a{width:33.303609px;}
._12{width:35.469238px;}
._14{width:36.752970px;}
._4{width:39.161082px;}
._c{width:42.367133px;}
._b{width:43.435749px;}
._18{width:49.259029px;}
._1f{width:51.722595px;}
._21{width:56.159781px;}
._f{width:65.455992px;}
._7{width:67.213673px;}
._d{width:86.688780px;}
._5{width:95.289676px;}
._e{width:111.071319px;}
._1c{width:113.574230px;}
._3{width:128.310669px;}
._a{width:271.948372px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(106,33,134);}
.fc2{color:rgb(80,0,108);}
.fc0{color:rgb(43,25,46);}
.fs5{font-size:119.961035px;}
.fs4{font-size:143.989239px;}
.fs6{font-size:149.973801px;}
.fs1{font-size:161.987894px;}
.fs0{font-size:233.982513px;}
.fs3{font-size:377.971752px;}
.fs2{font-size:722.825975px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000111px;}
.y42{bottom:117.591944px;}
.y45{bottom:361.794766px;}
.y41{bottom:498.550945px;}
.y39{bottom:550.544380px;}
.y40{bottom:554.796741px;}
.y38{bottom:600.040681px;}
.y3f{bottom:611.042538px;}
.y37{bottom:649.536982px;}
.y3e{bottom:667.288334px;}
.y3d{bottom:723.534131px;}
.y3c{bottom:779.779927px;}
.y3b{bottom:836.025724px;}
.y3a{bottom:897.896100px;}
.y36{bottom:1015.115697px;}
.y35{bottom:1071.361494px;}
.y34{bottom:1127.607290px;}
.y33{bottom:1183.853087px;}
.y32{bottom:1240.098883px;}
.y31{bottom:1296.344680px;}
.y30{bottom:1352.590476px;}
.y2f{bottom:1408.836273px;}
.y2e{bottom:1465.082069px;}
.y2d{bottom:1521.327866px;}
.y2c{bottom:1577.573662px;}
.y2b{bottom:1633.819458px;}
.y2a{bottom:1695.689835px;}
.y29{bottom:1800.999421px;}
.y19{bottom:1825.320745px;}
.y28{bottom:1850.495722px;}
.y18{bottom:1879.316710px;}
.y27{bottom:1899.992023px;}
.y17{bottom:1933.312674px;}
.y26{bottom:1949.488323px;}
.y16{bottom:1987.308639px;}
.y15{bottom:2041.304603px;}
.y14{bottom:2095.300568px;}
.y13{bottom:2149.296533px;}
.y12{bottom:2203.292497px;}
.y11{bottom:2257.288462px;}
.y44{bottom:2296.362194px;}
.y10{bottom:2311.284426px;}
.y43{bottom:2345.858495px;}
.yf{bottom:2365.280391px;}
.ye{bottom:2424.900935px;}
.yd{bottom:2536.267612px;}
.yc{bottom:2590.263577px;}
.yb{bottom:2644.259541px;}
.ya{bottom:2698.255506px;}
.y9{bottom:2752.251471px;}
.y8{bottom:2806.247435px;}
.y7{bottom:2860.243400px;}
.y6{bottom:2914.239364px;}
.y5{bottom:2968.235329px;}
.y4{bottom:3022.231294px;}
.y3{bottom:3076.227258px;}
.y2{bottom:3135.847802px;}
.y25{bottom:3241.053378px;}
.y24{bottom:3300.673922px;}
.y23{bottom:3360.294466px;}
.y22{bottom:3419.915011px;}
.y21{bottom:3479.535555px;}
.y20{bottom:3539.156099px;}
.y1f{bottom:3605.526139px;}
.y1e{bottom:3711.171783px;}
.y1d{bottom:3765.167748px;}
.y1c{bottom:3878.792946px;}
.y1b{bottom:4011.533025px;}
.y1a{bottom:4180.270415px;}
.h9{height:88.891127px;}
.h7{height:106.696026px;}
.ha{height:111.130586px;}
.h8{height:119.871041px;}
.h4{height:120.033029px;}
.hb{height:142.475111px;}
.h3{height:173.654022px;}
.h6{height:280.077068px;}
.h5{height:531.277092px;}
.h2{height:4506.749812px;}
.h0{height:4506.749923px;}
.h1{height:4506.750000px;}
.w2{width:3189.239867px;}
.w0{width:3189.375000px;}
.w1{width:3189.750000px;}
.x0{left:0.000000px;}
.x4{left:157.436758px;}
.xd{left:239.323832px;}
.x11{left:241.747636px;}
.x8{left:263.820618px;}
.xa{left:276.858171px;}
.x15{left:287.614288px;}
.x9{left:296.298125px;}
.xb{left:310.201382px;}
.xc{left:600.043002px;}
.x3{left:637.424324px;}
.x12{left:773.277262px;}
.x6{left:818.592098px;}
.x5{left:944.315450px;}
.x7{left:1157.842129px;}
.x1{left:1180.688243px;}
.x2{left:1249.519036px;}
.xe{left:2112.871643px;}
.x13{left:2144.504494px;}
.xf{left:2151.241823px;}
.x16{left:2392.223550px;}
.x14{left:2395.905627px;}
.x17{left:2429.717926px;}
.x10{left:2464.355146px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000056pt;}
.ls3{letter-spacing:0.000144pt;}
.ls1{letter-spacing:12.431163pt;}
.ls2{letter-spacing:12.799175pt;}
.ws0{word-spacing:-58.235648pt;}
.ws2{word-spacing:-48.636497pt;}
.ws1{word-spacing:-40.317043pt;}
.ws3{word-spacing:-35.837465pt;}
.ws4{word-spacing:0.000000pt;}
._13{margin-left:-19.276240pt;}
._9{margin-left:-12.478963pt;}
._0{margin-left:-8.319174pt;}
._1{margin-left:-6.239418pt;}
._17{margin-left:-4.159525pt;}
._2{margin-left:-2.079753pt;}
._24{margin-left:-0.894559pt;}
._11{width:0.905871pt;}
._6{width:2.490793pt;}
._1b{width:6.591561pt;}
._15{width:11.733189pt;}
._10{width:12.780246pt;}
._16{width:13.676226pt;}
._22{width:14.995737pt;}
._1e{width:18.136047pt;}
._8{width:19.835932pt;}
._23{width:21.170192pt;}
._19{width:24.779349pt;}
._1d{width:26.466723pt;}
._20{width:27.815133pt;}
._1a{width:29.603208pt;}
._12{width:31.528211pt;}
._14{width:32.669307pt;}
._4{width:34.809850pt;}
._c{width:37.659673pt;}
._b{width:38.609555pt;}
._18{width:43.785804pt;}
._1f{width:45.975640pt;}
._21{width:49.919805pt;}
._f{width:58.183104pt;}
._7{width:59.745487pt;}
._d{width:77.056693pt;}
._5{width:84.701934pt;}
._e{width:98.730061pt;}
._1c{width:100.954871pt;}
._3{width:114.053928pt;}
._a{width:241.731886pt;}
.fs5{font-size:106.632031pt;}
.fs4{font-size:127.990435pt;}
.fs6{font-size:133.310045pt;}
.fs1{font-size:143.989239pt;}
.fs0{font-size:207.984456pt;}
.fs3{font-size:335.974891pt;}
.fs2{font-size:642.511978pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000099pt;}
.y42{bottom:104.526172pt;}
.y45{bottom:321.595347pt;}
.y41{bottom:443.156395pt;}
.y39{bottom:489.372782pt;}
.y40{bottom:493.152659pt;}
.y38{bottom:533.369494pt;}
.y3f{bottom:543.148923pt;}
.y37{bottom:577.366206pt;}
.y3e{bottom:593.145186pt;}
.y3d{bottom:643.141450pt;}
.y3c{bottom:693.137713pt;}
.y3b{bottom:743.133977pt;}
.y3a{bottom:798.129866pt;}
.y36{bottom:902.325064pt;}
.y35{bottom:952.321328pt;}
.y34{bottom:1002.317591pt;}
.y33{bottom:1052.313855pt;}
.y32{bottom:1102.310118pt;}
.y31{bottom:1152.306382pt;}
.y30{bottom:1202.302645pt;}
.y2f{bottom:1252.298909pt;}
.y2e{bottom:1302.295172pt;}
.y2d{bottom:1352.291436pt;}
.y2c{bottom:1402.287700pt;}
.y2b{bottom:1452.283963pt;}
.y2a{bottom:1507.279853pt;}
.y29{bottom:1600.888374pt;}
.y19{bottom:1622.507329pt;}
.y28{bottom:1644.885086pt;}
.y18{bottom:1670.503742pt;}
.y27{bottom:1688.881798pt;}
.y17{bottom:1718.500155pt;}
.y26{bottom:1732.878510pt;}
.y16{bottom:1766.496568pt;}
.y15{bottom:1814.492981pt;}
.y14{bottom:1862.489394pt;}
.y13{bottom:1910.485807pt;}
.y12{bottom:1958.482220pt;}
.y11{bottom:2006.478633pt;}
.y44{bottom:2041.210839pt;}
.y10{bottom:2054.475046pt;}
.y43{bottom:2085.207551pt;}
.yf{bottom:2102.471459pt;}
.ye{bottom:2155.467498pt;}
.yd{bottom:2254.460100pt;}
.yc{bottom:2302.456513pt;}
.yb{bottom:2350.452926pt;}
.ya{bottom:2398.449339pt;}
.y9{bottom:2446.445752pt;}
.y8{bottom:2494.442165pt;}
.y7{bottom:2542.438578pt;}
.y6{bottom:2590.434991pt;}
.y5{bottom:2638.431404pt;}
.y4{bottom:2686.427817pt;}
.y3{bottom:2734.424230pt;}
.y2{bottom:2787.420269pt;}
.y25{bottom:2880.936336pt;}
.y24{bottom:2933.932375pt;}
.y23{bottom:2986.928415pt;}
.y22{bottom:3039.924454pt;}
.y21{bottom:3092.920493pt;}
.y20{bottom:3145.916533pt;}
.y1f{bottom:3204.912124pt;}
.y1e{bottom:3298.819363pt;}
.y1d{bottom:3346.815776pt;}
.y1c{bottom:3447.815952pt;}
.y1b{bottom:3565.807134pt;}
.y1a{bottom:3715.795924pt;}
.h9{height:79.014335pt;}
.h7{height:94.840912pt;}
.ha{height:98.782743pt;}
.h8{height:106.552037pt;}
.h4{height:106.696026pt;}
.hb{height:126.644543pt;}
.h3{height:154.359131pt;}
.h6{height:248.957394pt;}
.h5{height:472.246304pt;}
.h2{height:4005.999833pt;}
.h0{height:4005.999932pt;}
.h1{height:4006.000000pt;}
.w2{width:2834.879882pt;}
.w0{width:2835.000000pt;}
.w1{width:2835.333333pt;}
.x0{left:0.000000pt;}
.x4{left:139.943785pt;}
.xd{left:212.732295pt;}
.x11{left:214.886788pt;}
.x8{left:234.507216pt;}
.xa{left:246.096152pt;}
.x15{left:255.657145pt;}
.x9{left:263.376111pt;}
.xb{left:275.734562pt;}
.xc{left:533.371558pt;}
.x3{left:566.599399pt;}
.x12{left:687.357566pt;}
.x6{left:727.637421pt;}
.x5{left:839.391512pt;}
.x7{left:1029.193004pt;}
.x1{left:1049.500660pt;}
.x2{left:1110.683588pt;}
.xe{left:1878.108127pt;}
.x13{left:1906.226217pt;}
.xf{left:1912.214953pt;}
.x16{left:2126.420933pt;}
.x14{left:2129.693891pt;}
.x17{left:2159.749267pt;}
.x10{left:2190.537908pt;}
}




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