
    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_968f782b9d2c9311b538a055.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_77b4cef64b9019e2664e4035.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.036000;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_c165c22fa60ad5b025b57aae.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.026000;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;}
.ff4{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff5;src:url('chunks/assets/font_87671ce4cd2451ba8652e8a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.031000;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;}
.ff6{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff7;src:url('chunks/assets/font_3710e93234a1bb1d9eb6a33a.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.036000;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_ab8830709d2aeee518f9ca86.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.036000;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:ff9;src:url('chunks/assets/font_a5b91240ade62324810ba693.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910645;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;}
}
.ws0{word-spacing:-17.358000px;}
.ws1{word-spacing:0.000000px;}
._18{margin-left:-20.480871px;}
._3{margin-left:-7.560369px;}
._17{margin-left:-6.347356px;}
._19{margin-left:-5.308493px;}
._4{margin-left:-3.566141px;}
._1{margin-left:-2.375712px;}
._6{margin-left:-1.187158px;}
._9{width:1.500943px;}
._11{width:2.518550px;}
._d{width:3.878703px;}
._c{width:4.921220px;}
._8{width:8.904252px;}
._16{width:9.930540px;}
._a{width:12.882490px;}
._b{width:13.984146px;}
._e{width:18.827518px;}
._f{width:22.449135px;}
._7{width:26.349525px;}
._10{width:27.858797px;}
._5{width:31.498889px;}
._1a{width:36.174721px;}
._15{width:39.586732px;}
._14{width:40.973051px;}
._13{width:44.904697px;}
._2{width:49.499842px;}
._0{width:53.566681px;}
._12{width:89.314895px;}
.fc6{color:rgb(102,0,0);}
.fc5{color:transparent;}
.fc4{color:rgb(17,85,204);}
.fc2{color:rgb(39,78,19);}
.fc1{color:rgb(33,72,19);}
.fc3{color:rgb(33,33,33);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:66.000002px;}
.fs3{font-size:83.999997px;}
.fs2{font-size:96.000003px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:38.523194px;}
.y6c{bottom:122.156984px;}
.y2b{bottom:129.450127px;}
.y76{bottom:130.279537px;}
.y48{bottom:134.181024px;}
.y6b{bottom:143.976194px;}
.y75{bottom:158.739253px;}
.y2a{bottom:161.130120px;}
.y20{bottom:164.145044px;}
.y6a{bottom:165.795404px;}
.y47{bottom:165.861201px;}
.y69{bottom:187.614989px;}
.y74{bottom:189.224819px;}
.y29{bottom:192.809940px;}
.y1f{bottom:195.824945px;}
.y46{bottom:197.541015px;}
.y68{bottom:209.434574px;}
.y28{bottom:224.489924px;}
.y1e{bottom:227.504940px;}
.y45{bottom:229.221192px;}
.y67{bottom:231.253784px;}
.y66{bottom:253.072994px;}
.y1d{bottom:259.185022px;}
.y44{bottom:260.901000px;}
.y27{bottom:274.169925px;}
.y65{bottom:274.892579px;}
.y1c{bottom:290.864925px;}
.y64{bottom:296.712164px;}
.y43{bottom:310.580817px;}
.y63{bottom:318.531374px;}
.y26{bottom:323.849819px;}
.y62{bottom:340.350584px;}
.y1b{bottom:340.545012px;}
.y42{bottom:342.260993px;}
.y61{bottom:362.170169px;}
.y1a{bottom:372.224999px;}
.y41{bottom:373.940799px;}
.y60{bottom:383.989754px;}
.y19{bottom:403.904994px;}
.y40{bottom:405.620975px;}
.y5f{bottom:405.808964px;}
.y5e{bottom:427.628174px;}
.y18{bottom:435.584990px;}
.y3f{bottom:437.301150px;}
.y5d{bottom:449.447759px;}
.y17{bottom:467.265080px;}
.y3e{bottom:468.980958px;}
.y5c{bottom:471.267329px;}
.y5b{bottom:493.086914px;}
.y16{bottom:498.944977px;}
.y3d{bottom:500.661135px;}
.y5a{bottom:514.906124px;}
.y15{bottom:530.624970px;}
.y59{bottom:536.725709px;}
.y3c{bottom:550.340946px;}
.y58{bottom:558.544919px;}
.y14{bottom:562.304999px;}
.y57{bottom:580.364504px;}
.y3b{bottom:582.021123px;}
.y56{bottom:602.183714px;}
.y13{bottom:611.984955px;}
.y3a{bottom:613.701300px;}
.y55{bottom:624.003299px;}
.y39{bottom:645.381104px;}
.y12{bottom:654.272973px;}
.y54{bottom:672.560903px;}
.y11{bottom:678.561000px;}
.y38{bottom:695.060909px;}
.y10{bottom:702.849030px;}
.y53{bottom:704.241080px;}
.yf{bottom:727.136996px;}
.y52{bottom:735.920894px;}
.y37{bottom:740.241080px;}
.ye{bottom:751.424977px;}
.y51{bottom:767.600702px;}
.y36{bottom:771.920895px;}
.yd{bottom:775.713002px;}
.y50{bottom:799.280879px;}
.yc{bottom:800.001029px;}
.y35{bottom:803.600883px;}
.y82{bottom:811.840454px;}
.y34{bottom:835.281060px;}
.yb{bottom:839.120970px;}
.y4f{bottom:848.961060px;}
.y81{bottom:854.994860px;}
.ya{bottom:860.241000px;}
.y80{bottom:883.454603px;}
.y33{bottom:884.961060px;}
.y4e{bottom:898.640870px;}
.y9{bottom:899.360970px;}
.y7f{bottom:911.915045px;}
.y32{bottom:916.640873px;}
.y8{bottom:920.481000px;}
.y4d{bottom:930.321045px;}
.y73{bottom:932.181030px;}
.y7e{bottom:940.375486px;}
.y31{bottom:948.321048px;}
.y7{bottom:959.601030px;}
.y4c{bottom:962.000853px;}
.y7d{bottom:968.835212px;}
.y72{bottom:971.361210px;}
.y30{bottom:980.000855px;}
.y25{bottom:993.681030px;}
.y7c{bottom:997.294917px;}
.y6{bottom:998.721008px;}
.y71{bottom:1003.041376px;}
.y2f{bottom:1011.681030px;}
.y24{bottom:1025.361022px;}
.y7b{bottom:1025.755370px;}
.y70{bottom:1034.720822px;}
.y5{bottom:1040.718000px;}
.y2e{bottom:1043.361026px;}
.y4b{bottom:1043.361201px;}
.y7a{bottom:1054.215821px;}
.y23{bottom:1057.041015px;}
.y6f{bottom:1066.400998px;}
.y2d{bottom:1075.041013px;}
.y4a{bottom:1075.041015px;}
.y4{bottom:1075.277998px;}
.y79{bottom:1082.675535px;}
.y6e{bottom:1098.081176px;}
.y22{bottom:1106.721007px;}
.y2c{bottom:1106.721191px;}
.y49{bottom:1106.721192px;}
.y3{bottom:1109.837999px;}
.y78{bottom:1111.135253px;}
.y6d{bottom:1133.874000px;}
.y21{bottom:1138.401000px;}
.y77{bottom:1139.595703px;}
.y1{bottom:1155.000000px;}
.h2{height:43.989259px;}
.h9{height:45.858399px;}
.h5{height:49.830001px;}
.h7{height:50.160001px;}
.h4{height:50.490001px;}
.h6{height:62.700001px;}
.h8{height:64.259998px;}
.h3{height:82.620000px;}
.h1{height:108.000000px;}
.h0{height:1263.000000px;}
.w1{width:893.250000px;}
.w0{width:894.000000px;}
.x0{left:0.000000px;}
.x1{left:108.000000px;}
.x6{left:135.000000px;}
.x7{left:162.000000px;}
.x2{left:399.962565px;}
.x3{left:420.546544px;}
.x4{left:645.779460px;}
.x5{left:666.363445px;}
.x8{left:789.750000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-15.429334pt;}
.ws1{word-spacing:0.000000pt;}
._18{margin-left:-18.205219pt;}
._3{margin-left:-6.720328pt;}
._17{margin-left:-5.642094pt;}
._19{margin-left:-4.718660pt;}
._4{margin-left:-3.169903pt;}
._1{margin-left:-2.111744pt;}
._6{margin-left:-1.055252pt;}
._9{width:1.334172pt;}
._11{width:2.238711pt;}
._d{width:3.447736pt;}
._c{width:4.374418pt;}
._8{width:7.914891pt;}
._16{width:8.827147pt;}
._a{width:11.451102pt;}
._b{width:12.430352pt;}
._e{width:16.735571pt;}
._f{width:19.954787pt;}
._7{width:23.421800pt;}
._10{width:24.763375pt;}
._5{width:27.999012pt;}
._1a{width:32.155308pt;}
._15{width:35.188206pt;}
._14{width:36.420489pt;}
._13{width:39.915287pt;}
._2{width:43.999860pt;}
._0{width:47.614828pt;}
._12{width:79.391018pt;}
.fs0{font-size:58.666668pt;}
.fs3{font-size:74.666664pt;}
.fs2{font-size:85.333336pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:34.242839pt;}
.y6c{bottom:108.583985pt;}
.y2b{bottom:115.066780pt;}
.y76{bottom:115.804033pt;}
.y48{bottom:119.272022pt;}
.y6b{bottom:127.978839pt;}
.y75{bottom:141.101559pt;}
.y2a{bottom:143.226774pt;}
.y20{bottom:145.906706pt;}
.y6a{bottom:147.373692pt;}
.y47{bottom:147.432179pt;}
.y69{bottom:166.768879pt;}
.y74{bottom:168.199839pt;}
.y29{bottom:171.386614pt;}
.y1f{bottom:174.066618pt;}
.y46{bottom:175.592014pt;}
.y68{bottom:186.164065pt;}
.y28{bottom:199.546599pt;}
.y1e{bottom:202.226614pt;}
.y45{bottom:203.752171pt;}
.y67{bottom:205.558919pt;}
.y66{bottom:224.953772pt;}
.y1d{bottom:230.386687pt;}
.y44{bottom:231.912000pt;}
.y27{bottom:243.706600pt;}
.y65{bottom:244.348959pt;}
.y1c{bottom:258.546600pt;}
.y64{bottom:263.744145pt;}
.y43{bottom:276.071838pt;}
.y63{bottom:283.138999pt;}
.y26{bottom:287.866506pt;}
.y62{bottom:302.533852pt;}
.y1b{bottom:302.706678pt;}
.y42{bottom:304.231994pt;}
.y61{bottom:321.929039pt;}
.y1a{bottom:330.866666pt;}
.y41{bottom:332.391822pt;}
.y60{bottom:341.324225pt;}
.y19{bottom:359.026662pt;}
.y40{bottom:360.551978pt;}
.y5f{bottom:360.719079pt;}
.y5e{bottom:380.113932pt;}
.y18{bottom:387.186658pt;}
.y3f{bottom:388.712134pt;}
.y5d{bottom:399.509119pt;}
.y17{bottom:415.346738pt;}
.y3e{bottom:416.871963pt;}
.y5c{bottom:418.904292pt;}
.y5b{bottom:438.299479pt;}
.y16{bottom:443.506647pt;}
.y3d{bottom:445.032120pt;}
.y5a{bottom:457.694332pt;}
.y15{bottom:471.666640pt;}
.y59{bottom:477.089519pt;}
.y3c{bottom:489.191952pt;}
.y58{bottom:496.484372pt;}
.y14{bottom:499.826666pt;}
.y57{bottom:515.879559pt;}
.y3b{bottom:517.352109pt;}
.y56{bottom:535.274412pt;}
.y13{bottom:543.986627pt;}
.y3a{bottom:545.512267pt;}
.y55{bottom:554.669599pt;}
.y39{bottom:573.672093pt;}
.y12{bottom:581.575976pt;}
.y54{bottom:597.831914pt;}
.y11{bottom:603.165334pt;}
.y38{bottom:617.831919pt;}
.y10{bottom:624.754694pt;}
.y53{bottom:625.992071pt;}
.yf{bottom:646.343996pt;}
.y52{bottom:654.151906pt;}
.y37{bottom:657.992071pt;}
.ye{bottom:667.933313pt;}
.y51{bottom:682.311735pt;}
.y36{bottom:686.151907pt;}
.yd{bottom:689.522668pt;}
.y50{bottom:710.471893pt;}
.yc{bottom:711.112026pt;}
.y35{bottom:714.311896pt;}
.y82{bottom:721.635959pt;}
.y34{bottom:742.472054pt;}
.yb{bottom:745.885307pt;}
.y4f{bottom:754.632054pt;}
.y81{bottom:759.995431pt;}
.ya{bottom:764.658667pt;}
.y80{bottom:785.292981pt;}
.y33{bottom:786.632054pt;}
.y4e{bottom:798.791884pt;}
.y9{bottom:799.431974pt;}
.y7f{bottom:810.591151pt;}
.y32{bottom:814.791887pt;}
.y8{bottom:818.205334pt;}
.y4d{bottom:826.952040pt;}
.y73{bottom:828.605360pt;}
.y7e{bottom:835.889321pt;}
.y31{bottom:842.952043pt;}
.y7{bottom:852.978694pt;}
.y4c{bottom:855.111869pt;}
.y7d{bottom:861.186855pt;}
.y72{bottom:863.432187pt;}
.y30{bottom:871.111871pt;}
.y25{bottom:883.272027pt;}
.y7c{bottom:886.484371pt;}
.y6{bottom:887.752007pt;}
.y71{bottom:891.592335pt;}
.y2f{bottom:899.272027pt;}
.y24{bottom:911.432020pt;}
.y7b{bottom:911.782551pt;}
.y70{bottom:919.751842pt;}
.y5{bottom:925.082667pt;}
.y2e{bottom:927.432023pt;}
.y4b{bottom:927.432179pt;}
.y7a{bottom:937.080730pt;}
.y23{bottom:939.592014pt;}
.y6f{bottom:947.911999pt;}
.y2d{bottom:955.592012pt;}
.y4a{bottom:955.592014pt;}
.y4{bottom:955.802665pt;}
.y79{bottom:962.378254pt;}
.y6e{bottom:976.072156pt;}
.y22{bottom:983.752007pt;}
.y2c{bottom:983.752170pt;}
.y49{bottom:983.752171pt;}
.y3{bottom:986.522666pt;}
.y78{bottom:987.675781pt;}
.y6d{bottom:1007.888000pt;}
.y21{bottom:1011.912000pt;}
.y77{bottom:1012.973959pt;}
.y1{bottom:1026.666667pt;}
.h2{height:39.101563pt;}
.h9{height:40.763022pt;}
.h5{height:44.293334pt;}
.h7{height:44.586668pt;}
.h4{height:44.880001pt;}
.h6{height:55.733335pt;}
.h8{height:57.119998pt;}
.h3{height:73.440000pt;}
.h1{height:96.000000pt;}
.h0{height:1122.666667pt;}
.w1{width:794.000000pt;}
.w0{width:794.666667pt;}
.x0{left:0.000000pt;}
.x1{left:96.000000pt;}
.x6{left:120.000000pt;}
.x7{left:144.000000pt;}
.x2{left:355.522280pt;}
.x3{left:373.819150pt;}
.x4{left:574.026187pt;}
.x5{left:592.323062pt;}
.x8{left:702.000000pt;}
}




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