
    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_c02cc061c9d0ce825012be24.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_86e7830e322b8ed132605906.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_d4ca419b8ac3380a6e0b120a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_eafc704d31e9976e914e3f54.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_4b3ef35d86c1cedaaf42d368.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_ac00471e88379b597d4a283a.woff2')format("woff");}.ff6{font-family:ff6;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;}
.m1{transform:matrix(0.240947,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240947,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240947,0.000000,0.000000,0.250000,0,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);}
.m2{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;}
.v1{vertical-align:12.239870px;}
.ls1{letter-spacing:0.000000px;}
.ls3{letter-spacing:0.015964px;}
.ls0{letter-spacing:0.094301px;}
.ls2{letter-spacing:308.879091px;}
.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;}
}
.ws2{word-spacing:-79.203150px;}
.ws1{word-spacing:-23.855201px;}
.ws4{word-spacing:-23.776864px;}
.ws0{word-spacing:-23.760900px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:0.786997px;}
._10{margin-left:-11.961014px;}
._8{margin-left:-10.645374px;}
._c{margin-left:-8.374418px;}
._7{margin-left:-6.841654px;}
._9{margin-left:-5.554389px;}
._d{margin-left:-4.106738px;}
._4{margin-left:-3.041395px;}
._6{margin-left:-1.476610px;}
._0{width:1.064507px;}
._3{width:2.566177px;}
._2{width:3.611657px;}
._5{width:4.985488px;}
._15{width:6.589102px;}
._12{width:7.603488px;}
._11{width:8.633003px;}
._13{width:10.078427px;}
._14{width:11.120101px;}
._f{width:12.332742px;}
._e{width:13.366156px;}
._a{width:14.712731px;}
._b{width:16.043341px;}
._16{width:17.064627px;}
._18{width:18.701097px;}
._1b{width:21.662146px;}
._1f{width:52.087338px;}
._19{width:261.359105px;}
._17{width:309.599109px;}
._1c{width:924.773629px;}
._1d{width:1221.357002px;}
._1a{width:1554.725496px;}
._1e{width:1599.949106px;}
._1{width:1695.553076px;}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:63.362250px;}
.fs0{font-size:71.282700px;}
.fs4{font-size:79.203150px;}
.fs3{font-size:95.039814px;}
.fs2{font-size:95.043600px;}
.y0{bottom:0.000000px;}
.y1{bottom:55.800110px;}
.y1d{bottom:58.860077px;}
.y3a{bottom:109.980011px;}
.y5c{bottom:121.320099px;}
.y1b{bottom:121.860077px;}
.y63{bottom:123.840088px;}
.y50{bottom:126.180039px;}
.y39{bottom:138.420043px;}
.y6d{bottom:149.940033px;}
.y1a{bottom:150.300041px;}
.y62{bottom:152.280052px;}
.y38{bottom:167.040047px;}
.y4f{bottom:178.380066px;}
.y5b{bottom:178.560036px;}
.y4e{bottom:207.000068px;}
.y19{bottom:207.360077px;}
.y37{bottom:224.100083px;}
.y4d{bottom:235.440033px;}
.y5a{bottom:235.620072px;}
.y18{bottom:235.980079px;}
.y36{bottom:252.540047px;}
.y59{bottom:264.060036px;}
.y17{bottom:264.420043px;}
.y61{bottom:266.400055px;}
.y35{bottom:281.160049px;}
.y4c{bottom:292.500068px;}
.y58{bottom:292.680039px;}
.y16{bottom:293.040047px;}
.y60{bottom:295.020058px;}
.y34{bottom:309.600083px;}
.y6c{bottom:321.120072px;}
.y74{bottom:321.480079px;}
.y33{bottom:338.220085px;}
.y6b{bottom:349.740074px;}
.y73{bottom:350.100083px;}
.y32{bottom:366.660049px;}
.y4b{bottom:378.180039px;}
.y15{bottom:378.540047px;}
.y5f{bottom:380.520058px;}
.y4a{bottom:406.620072px;}
.y67{bottom:406.800041px;}
.y14{bottom:407.160049px;}
.y31{bottom:423.720085px;}
.y49{bottom:435.240074px;}
.y72{bottom:435.600083px;}
.y30{bottom:452.340088px;}
.y6a{bottom:463.860077px;}
.y13{bottom:464.220085px;}
.y69{bottom:492.300041px;}
.y71{bottom:492.660049px;}
.y2f{bottom:509.400055px;}
.y68{bottom:520.920043px;}
.y12{bottom:521.280052px;}
.y2e{bottom:537.840088px;}
.y48{bottom:549.360077px;}
.y11{bottom:549.720085px;}
.y66{bottom:577.980079px;}
.y10{bottom:578.340088px;}
.y2d{bottom:594.900055px;}
.y47{bottom:606.420043px;}
.yf{bottom:606.780052px;}
.y5e{bottom:608.760064px;}
.y65{bottom:635.040047px;}
.ye{bottom:635.400055px;}
.y64{bottom:663.480079px;}
.y70{bottom:663.840088px;}
.y2c{bottom:680.580093px;}
.y46{bottom:691.920078px;}
.y57{bottom:692.100083px;}
.y2b{bottom:709.020058px;}
.y45{bottom:720.540081px;}
.yd{bottom:720.900055px;}
.y5d{bottom:722.880066px;}
.y44{bottom:748.980079px;}
.y56{bottom:749.160049px;}
.yc{bottom:749.520058px;}
.y2a{bottom:766.080059px;}
.y43{bottom:777.600083px;}
.yb{bottom:777.960056px;}
.y29{bottom:794.700061px;}
.y55{bottom:806.220051px;}
.ya{bottom:806.580059px;}
.y28{bottom:823.140060px;}
.y42{bottom:834.660049px;}
.y6f{bottom:835.020058px;}
.y27{bottom:851.760064px;}
.y54{bottom:863.280052px;}
.y6e{bottom:863.640060px;}
.y26{bottom:880.200061px;}
.y53{bottom:891.720051px;}
.y9{bottom:892.080059px;}
.y25{bottom:908.820065px;}
.y52{bottom:920.340054px;}
.y8{bottom:920.700061px;}
.y41{bottom:948.780053px;}
.y7{bottom:949.139628px;}
.y24{bottom:965.880066px;}
.y40{bottom:977.400072px;}
.y6{bottom:977.760064px;}
.y23{bottom:994.320065px;}
.y51{bottom:1005.840070px;}
.y5{bottom:1006.200061px;}
.y3f{bottom:1034.460074px;}
.y22{bottom:1051.380066px;}
.y3e{bottom:1062.900072px;}
.y4{bottom:1063.260064px;}
.y21{bottom:1080.000068px;}
.y3d{bottom:1091.520058px;}
.y1c{bottom:1100.340070px;}
.y20{bottom:1103.760064px;}
.y3c{bottom:1119.960065px;}
.y3{bottom:1120.320065px;}
.y1f{bottom:1127.520066px;}
.y3b{bottom:1148.580068px;}
.y2{bottom:1148.940067px;}
.y1e{bottom:1151.280069px;}
.h8{height:55.302981px;}
.ha{height:55.596662px;}
.h9{height:57.534328px;}
.h6{height:64.414315px;}
.h7{height:65.992187px;}
.h2{height:67.836531px;}
.hb{height:69.496123px;}
.hc{height:70.346938px;}
.h5{height:83.391868px;}
.h4{height:83.395190px;}
.h3{height:84.416166px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:89.819996px;}
.x14{left:125.459997px;}
.x1{left:140.939999px;}
.x10{left:142.200002px;}
.xf{left:173.159998px;}
.x16{left:174.960005px;}
.x6{left:210.240006px;}
.x12{left:223.560001px;}
.x2{left:225.000000px;}
.x18{left:228.599997px;}
.x4{left:230.759994px;}
.x1a{left:255.240006px;}
.x5{left:264.780001px;}
.xb{left:293.579990px;}
.x15{left:314.639992px;}
.x3{left:315.720017px;}
.x8{left:327.420010px;}
.x19{left:349.560001px;}
.x7{left:367.740006px;}
.x11{left:389.160015px;}
.x17{left:395.819996px;}
.xa{left:410.939999px;}
.x9{left:419.579990px;}
.x13{left:439.560001px;}
.xc{left:532.800007px;}
.xe{left:731.700027px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.879884pt;}
.ls1{letter-spacing:0.000000pt;}
.ls3{letter-spacing:0.014191pt;}
.ls0{letter-spacing:0.083823pt;}
.ls2{letter-spacing:274.559192pt;}
.ws2{word-spacing:-70.402800pt;}
.ws1{word-spacing:-21.204623pt;}
.ws4{word-spacing:-21.134991pt;}
.ws0{word-spacing:-21.120800pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:0.699553pt;}
._10{margin-left:-10.632013pt;}
._8{margin-left:-9.462555pt;}
._c{margin-left:-7.443927pt;}
._7{margin-left:-6.081470pt;}
._9{margin-left:-4.937234pt;}
._d{margin-left:-3.650433pt;}
._4{margin-left:-2.703462pt;}
._6{margin-left:-1.312542pt;}
._0{width:0.946228pt;}
._3{width:2.281046pt;}
._2{width:3.210362pt;}
._5{width:4.431545pt;}
._15{width:5.856979pt;}
._12{width:6.758656pt;}
._11{width:7.673781pt;}
._13{width:8.958602pt;}
._14{width:9.884534pt;}
._f{width:10.962438pt;}
._e{width:11.881027pt;}
._a{width:13.077983pt;}
._b{width:14.260748pt;}
._16{width:15.168557pt;}
._18{width:16.623197pt;}
._1b{width:19.255240pt;}
._1f{width:46.299856pt;}
._19{width:232.319204pt;}
._17{width:275.199208pt;}
._1c{width:822.021003pt;}
._1d{width:1085.650668pt;}
._1a{width:1381.978219pt;}
._1e{width:1422.176983pt;}
._1{width:1507.158290pt;}
.fs1{font-size:56.322000pt;}
.fs0{font-size:63.362400pt;}
.fs4{font-size:70.402800pt;}
.fs3{font-size:84.479834pt;}
.fs2{font-size:84.483200pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:49.600098pt;}
.y1d{bottom:52.320069pt;}
.y3a{bottom:97.760010pt;}
.y5c{bottom:107.840088pt;}
.y1b{bottom:108.320069pt;}
.y63{bottom:110.080079pt;}
.y50{bottom:112.160035pt;}
.y39{bottom:123.040039pt;}
.y6d{bottom:133.280030pt;}
.y1a{bottom:133.600037pt;}
.y62{bottom:135.360047pt;}
.y38{bottom:148.480042pt;}
.y4f{bottom:158.560059pt;}
.y5b{bottom:158.720032pt;}
.y4e{bottom:184.000061pt;}
.y19{bottom:184.320069pt;}
.y37{bottom:199.200074pt;}
.y4d{bottom:209.280030pt;}
.y5a{bottom:209.440064pt;}
.y18{bottom:209.760071pt;}
.y36{bottom:224.480042pt;}
.y59{bottom:234.720032pt;}
.y17{bottom:235.040039pt;}
.y61{bottom:236.800049pt;}
.y35{bottom:249.920044pt;}
.y4c{bottom:260.000061pt;}
.y58{bottom:260.160035pt;}
.y16{bottom:260.480042pt;}
.y60{bottom:262.240052pt;}
.y34{bottom:275.200074pt;}
.y6c{bottom:285.440064pt;}
.y74{bottom:285.760071pt;}
.y33{bottom:300.640076pt;}
.y6b{bottom:310.880066pt;}
.y73{bottom:311.200074pt;}
.y32{bottom:325.920044pt;}
.y4b{bottom:336.160035pt;}
.y15{bottom:336.480042pt;}
.y5f{bottom:338.240052pt;}
.y4a{bottom:361.440064pt;}
.y67{bottom:361.600037pt;}
.y14{bottom:361.920044pt;}
.y31{bottom:376.640076pt;}
.y49{bottom:386.880066pt;}
.y72{bottom:387.200074pt;}
.y30{bottom:402.080079pt;}
.y6a{bottom:412.320069pt;}
.y13{bottom:412.640076pt;}
.y69{bottom:437.600037pt;}
.y71{bottom:437.920044pt;}
.y2f{bottom:452.800049pt;}
.y68{bottom:463.040039pt;}
.y12{bottom:463.360047pt;}
.y2e{bottom:478.080079pt;}
.y48{bottom:488.320069pt;}
.y11{bottom:488.640076pt;}
.y66{bottom:513.760071pt;}
.y10{bottom:514.080079pt;}
.y2d{bottom:528.800049pt;}
.y47{bottom:539.040039pt;}
.yf{bottom:539.360047pt;}
.y5e{bottom:541.120057pt;}
.y65{bottom:564.480042pt;}
.ye{bottom:564.800049pt;}
.y64{bottom:589.760071pt;}
.y70{bottom:590.080079pt;}
.y2c{bottom:604.960083pt;}
.y46{bottom:615.040070pt;}
.y57{bottom:615.200074pt;}
.y2b{bottom:630.240052pt;}
.y45{bottom:640.480072pt;}
.yd{bottom:640.800049pt;}
.y5d{bottom:642.560059pt;}
.y44{bottom:665.760071pt;}
.y56{bottom:665.920044pt;}
.yc{bottom:666.240052pt;}
.y2a{bottom:680.960053pt;}
.y43{bottom:691.200074pt;}
.yb{bottom:691.520050pt;}
.y29{bottom:706.400055pt;}
.y55{bottom:716.640046pt;}
.ya{bottom:716.960053pt;}
.y28{bottom:731.680054pt;}
.y42{bottom:741.920044pt;}
.y6f{bottom:742.240052pt;}
.y27{bottom:757.120057pt;}
.y54{bottom:767.360047pt;}
.y6e{bottom:767.680054pt;}
.y26{bottom:782.400055pt;}
.y53{bottom:792.640046pt;}
.y9{bottom:792.960053pt;}
.y25{bottom:807.840058pt;}
.y52{bottom:818.080048pt;}
.y8{bottom:818.400055pt;}
.y41{bottom:843.360047pt;}
.y7{bottom:843.679670pt;}
.y24{bottom:858.560059pt;}
.y40{bottom:868.800064pt;}
.y6{bottom:869.120057pt;}
.y23{bottom:883.840058pt;}
.y51{bottom:894.080063pt;}
.y5{bottom:894.400055pt;}
.y3f{bottom:919.520066pt;}
.y22{bottom:934.560059pt;}
.y3e{bottom:944.800064pt;}
.y4{bottom:945.120057pt;}
.y21{bottom:960.000061pt;}
.y3d{bottom:970.240052pt;}
.y1c{bottom:978.080063pt;}
.y20{bottom:981.120057pt;}
.y3c{bottom:995.520058pt;}
.y3{bottom:995.840058pt;}
.y1f{bottom:1002.240059pt;}
.y3b{bottom:1020.960061pt;}
.y2{bottom:1021.280060pt;}
.y1e{bottom:1023.360062pt;}
.h8{height:49.158205pt;}
.ha{height:49.419255pt;}
.h9{height:51.141625pt;}
.h6{height:57.257169pt;}
.h7{height:58.659722pt;}
.h2{height:60.299139pt;}
.hb{height:61.774332pt;}
.hc{height:62.530612pt;}
.h5{height:74.126105pt;}
.h4{height:74.129058pt;}
.h3{height:75.036592pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:79.839996pt;}
.x14{left:111.519997pt;}
.x1{left:125.279999pt;}
.x10{left:126.400002pt;}
.xf{left:153.919998pt;}
.x16{left:155.520004pt;}
.x6{left:186.880005pt;}
.x12{left:198.720001pt;}
.x2{left:200.000000pt;}
.x18{left:203.199997pt;}
.x4{left:205.119995pt;}
.x1a{left:226.880005pt;}
.x5{left:235.360001pt;}
.xb{left:260.959991pt;}
.x15{left:279.679993pt;}
.x3{left:280.640015pt;}
.x8{left:291.040009pt;}
.x19{left:310.720001pt;}
.x7{left:326.880005pt;}
.x11{left:345.920013pt;}
.x17{left:351.839996pt;}
.xa{left:365.279999pt;}
.x9{left:372.959991pt;}
.x13{left:390.720001pt;}
.xc{left:473.600006pt;}
.xe{left:650.400024pt;}
}




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