
    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_fb821070953eb55617edfe1f.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_0b23e3af9314b1c4afd95b29.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d651ee3ad66865dfee9d574d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721680;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_fdc6a13a0282e404f9579e65.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.946777;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_860c0059b33154c4645bf49b.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986328;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_1743614eb04abbe5b227dad8.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.ls2{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.062159px;}
.ls1{letter-spacing:54.539227px;}
.ls4{letter-spacing:102.455269px;}
.ls3{letter-spacing:138.455269px;}
.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:-18.000676px;}
.ws1{word-spacing:0.000000px;}
._c{margin-left:-4.247035px;}
._d{margin-left:-3.055334px;}
._1{margin-left:-1.109292px;}
._0{width:1.479712px;}
._11{width:3.073615px;}
._10{width:4.135093px;}
._f{width:5.347888px;}
._6{width:6.535214px;}
._5{width:8.558978px;}
._a{width:10.442080px;}
._b{width:11.568310px;}
._e{width:12.960487px;}
._18{width:13.962336px;}
._7{width:15.063472px;}
._17{width:16.419429px;}
._14{width:19.620456px;}
._1b{width:21.384803px;}
._15{width:22.476375px;}
._16{width:23.479070px;}
._1d{width:24.927280px;}
._19{width:26.054572px;}
._1a{width:27.313776px;}
._21{width:28.380035px;}
._8{width:31.216266px;}
._9{width:32.629319px;}
._2{width:36.121405px;}
._1c{width:37.386325px;}
._20{width:38.653594px;}
._22{width:39.877063px;}
._23{width:40.896974px;}
._12{width:52.037521px;}
._13{width:53.256871px;}
._1e{width:64.110533px;}
._1f{width:65.640309px;}
._4{width:194.777160px;}
._3{width:196.217214px;}
._24{width:843.273886px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,32,96);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:59.762250px;}
.fs0{font-size:72.002705px;}
.fs1{font-size:84.243145px;}
.fs2{font-size:131.764946px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.960000px;}
.yb{bottom:7.200002px;}
.y8{bottom:15.120072px;}
.ye{bottom:18.360077px;}
.yd{bottom:40.680039px;}
.yc{bottom:51.300110px;}
.y6c{bottom:91.980011px;}
.y82{bottom:95.940033px;}
.ya3{bottom:112.140060px;}
.y6b{bottom:114.300041px;}
.y3c{bottom:117.900055px;}
.y81{bottom:118.260064px;}
.ya2{bottom:134.460091px;}
.y6a{bottom:136.620072px;}
.y3b{bottom:140.220085px;}
.y80{bottom:140.760064px;}
.ya1{bottom:156.780052px;}
.y69{bottom:158.940033px;}
.y3a{bottom:162.720085px;}
.y7f{bottom:163.080093px;}
.ya0{bottom:179.100083px;}
.y68{bottom:181.260064px;}
.y39{bottom:185.040047px;}
.y7e{bottom:185.400055px;}
.y9f{bottom:201.420043px;}
.y67{bottom:203.580093px;}
.y38{bottom:207.360077px;}
.y7d{bottom:207.720085px;}
.y9e{bottom:223.740074px;}
.y66{bottom:225.900055px;}
.y37{bottom:229.680039px;}
.y7c{bottom:230.040047px;}
.y9d{bottom:246.240074px;}
.y65{bottom:248.220085px;}
.y36{bottom:252.000068px;}
.y7b{bottom:252.360077px;}
.y9c{bottom:268.560036px;}
.y64{bottom:270.540047px;}
.y35{bottom:274.320099px;}
.y7a{bottom:274.680039px;}
.y9b{bottom:290.880066px;}
.y63{bottom:292.860077px;}
.y34{bottom:296.640060px;}
.y79{bottom:297.000068px;}
.y9a{bottom:313.200096px;}
.y62{bottom:315.360077px;}
.y33{bottom:318.960091px;}
.y78{bottom:319.320099px;}
.y99{bottom:335.520058px;}
.y61{bottom:337.680039px;}
.y32{bottom:341.280052px;}
.y77{bottom:341.640060px;}
.y98{bottom:357.840088px;}
.y60{bottom:360.000068px;}
.y31{bottom:363.600083px;}
.y76{bottom:364.140060px;}
.yc3{bottom:368.100083px;}
.y97{bottom:380.160049px;}
.y5f{bottom:382.320099px;}
.y30{bottom:386.100083px;}
.y75{bottom:386.460091px;}
.yc2{bottom:391.680039px;}
.y96{bottom:402.480079px;}
.y5e{bottom:404.640060px;}
.y2f{bottom:408.420043px;}
.y74{bottom:408.780052px;}
.yc1{bottom:412.380066px;}
.y95{bottom:424.800041px;}
.y5d{bottom:426.960091px;}
.y2e{bottom:430.740074px;}
.y73{bottom:431.100083px;}
.yc0{bottom:433.080093px;}
.y94{bottom:447.120072px;}
.y5c{bottom:449.280052px;}
.y72{bottom:453.420043px;}
.y2d{bottom:453.780052px;}
.y93{bottom:469.440033px;}
.y5b{bottom:471.600083px;}
.ybf{bottom:474.480079px;}
.y71{bottom:475.740074px;}
.y2c{bottom:479.880066px;}
.y92{bottom:491.940033px;}
.y5a{bottom:493.920043px;}
.ybe{bottom:495.180039px;}
.y70{bottom:498.060036px;}
.y2b{bottom:505.980079px;}
.y91{bottom:514.260064px;}
.ybd{bottom:515.880066px;}
.y59{bottom:516.240074px;}
.y6f{bottom:520.380066px;}
.y2a{bottom:531.180039px;}
.y90{bottom:536.580093px;}
.y58{bottom:538.560036px;}
.y6e{bottom:542.700096px;}
.y29{bottom:553.500068px;}
.ybc{bottom:557.280052px;}
.y8f{bottom:558.900055px;}
.y57{bottom:561.060036px;}
.y6d{bottom:561.420043px;}
.y28{bottom:575.820099px;}
.ybb{bottom:577.980079px;}
.y8e{bottom:581.220085px;}
.y56{bottom:583.380066px;}
.y27{bottom:598.140060px;}
.yba{bottom:598.680039px;}
.y8d{bottom:603.540047px;}
.y55{bottom:605.700096px;}
.yb9{bottom:619.380066px;}
.y26{bottom:620.460091px;}
.y8c{bottom:625.860077px;}
.y54{bottom:628.020058px;}
.yb8{bottom:640.080093px;}
.y25{bottom:642.960091px;}
.y8b{bottom:648.180039px;}
.y53{bottom:650.340088px;}
.yb7{bottom:660.780052px;}
.y24{bottom:665.280052px;}
.y8a{bottom:670.500068px;}
.y52{bottom:672.660049px;}
.yb6{bottom:681.480079px;}
.y23{bottom:687.600083px;}
.y89{bottom:692.820065px;}
.y51{bottom:694.980079px;}
.yb5{bottom:702.180073px;}
.y22{bottom:709.920078px;}
.y88{bottom:715.320065px;}
.y50{bottom:717.300076px;}
.yb4{bottom:722.880066px;}
.y21{bottom:732.240074px;}
.y87{bottom:737.640060px;}
.y4f{bottom:739.620072px;}
.yb3{bottom:743.580059px;}
.y20{bottom:754.560070px;}
.y86{bottom:759.960056px;}
.y4e{bottom:761.940067px;}
.yb2{bottom:764.280052px;}
.y1f{bottom:776.880066px;}
.y85{bottom:782.280052px;}
.y4d{bottom:784.440067px;}
.yb1{bottom:784.980079px;}
.y1e{bottom:799.200061px;}
.y84{bottom:804.600083px;}
.yb0{bottom:805.680073px;}
.y4c{bottom:806.760064px;}
.y1d{bottom:821.520058px;}
.y83{bottom:823.140060px;}
.yaf{bottom:826.380066px;}
.y4b{bottom:829.080059px;}
.y1c{bottom:843.840054px;}
.yae{bottom:847.080059px;}
.y4a{bottom:851.400055px;}
.y1b{bottom:866.340054px;}
.yad{bottom:867.780052px;}
.y49{bottom:873.720051px;}
.yac{bottom:888.480079px;}
.y1a{bottom:888.660049px;}
.y48{bottom:896.040081px;}
.yab{bottom:909.180073px;}
.y19{bottom:911.700061px;}
.y47{bottom:918.360077px;}
.yaa{bottom:929.880066px;}
.y18{bottom:937.800076px;}
.y46{bottom:940.680073px;}
.ya9{bottom:950.580059px;}
.y45{bottom:963.000068px;}
.y17{bottom:963.900055px;}
.ya8{bottom:971.280053px;}
.y44{bottom:985.320065px;}
.y16{bottom:989.100065px;}
.ya7{bottom:991.980063px;}
.y43{bottom:1007.640060px;}
.y15{bottom:1011.420061px;}
.ya6{bottom:1012.680073px;}
.y42{bottom:1030.140060px;}
.ya5{bottom:1033.380066px;}
.y14{bottom:1034.640060px;}
.y41{bottom:1052.460074px;}
.ya4{bottom:1054.080059px;}
.y13{bottom:1060.740074px;}
.y40{bottom:1074.780069px;}
.y12{bottom:1086.660067px;}
.y3f{bottom:1097.100065px;}
.y11{bottom:1112.760064px;}
.y3e{bottom:1119.420069px;}
.y10{bottom:1138.860068px;}
.y3d{bottom:1141.740066px;}
.y7{bottom:1162.260064px;}
.yf{bottom:1176.660067px;}
.y6{bottom:1184.040064px;}
.y5{bottom:1204.740066px;}
.ya{bottom:1217.880066px;}
.y3{bottom:1221.480067px;}
.y9{bottom:1225.080068px;}
.y2{bottom:1225.440067px;}
.y1{bottom:1246.140066px;}
.h4{height:20.520000px;}
.h8{height:37.260000px;}
.h9{height:42.166236px;}
.h2{height:50.275326px;}
.h3{height:50.802689px;}
.h5{height:51.365211px;}
.he{height:52.419938px;}
.hd{height:52.630883px;}
.ha{height:54.248131px;}
.hb{height:58.822118px;}
.hc{height:59.439133px;}
.h6{height:61.578120px;}
.h7{height:92.968919px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w3{width:12.779983px;}
.w2{width:101.700027px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x8{left:128.700002px;}
.xc{left:138.060001px;}
.x7{left:140.400003px;}
.xb{left:203.400003px;}
.x12{left:213.659998px;}
.xa{left:317.160015px;}
.x10{left:335.519989px;}
.xe{left:346.860008px;}
.xf{left:371.519989px;}
.xd{left:374.040012px;}
.x14{left:385.019989px;}
.x9{left:446.040012px;}
.x6{left:471.240006px;}
.x11{left:666.539978px;}
.x13{left:678.240006px;}
.x3{left:736.379998px;}
.x2{left:790.740006px;}
.x4{left:794.340019px;}
.x5{left:823.320030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.055252pt;}
.ls1{letter-spacing:48.479313pt;}
.ls4{letter-spacing:91.071350pt;}
.ls3{letter-spacing:123.071350pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:0.000000pt;}
._c{margin-left:-3.775142pt;}
._d{margin-left:-2.715852pt;}
._1{margin-left:-0.986037pt;}
._0{width:1.315299pt;}
._11{width:2.732103pt;}
._10{width:3.675638pt;}
._f{width:4.753679pt;}
._6{width:5.809079pt;}
._5{width:7.607980pt;}
._a{width:9.281849pt;}
._b{width:10.282942pt;}
._e{width:11.520433pt;}
._18{width:12.410966pt;}
._7{width:13.389753pt;}
._17{width:14.595048pt;}
._14{width:17.440405pt;}
._1b{width:19.008714pt;}
._15{width:19.979000pt;}
._16{width:20.870284pt;}
._1d{width:22.157582pt;}
._19{width:23.159620pt;}
._1a{width:24.278912pt;}
._21{width:25.226697pt;}
._8{width:27.747792pt;}
._9{width:29.003839pt;}
._2{width:32.107915pt;}
._1c{width:33.232289pt;}
._20{width:34.358750pt;}
._22{width:35.446278pt;}
._23{width:36.352865pt;}
._12{width:46.255574pt;}
._13{width:47.339441pt;}
._1e{width:56.987140pt;}
._1f{width:58.346941pt;}
._4{width:173.135253pt;}
._3{width:174.415301pt;}
._24{width:749.576788pt;}
.fs3{font-size:53.122000pt;}
.fs0{font-size:64.002404pt;}
.fs1{font-size:74.882796pt;}
.fs2{font-size:117.124396pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.520000pt;}
.yb{bottom:6.400002pt;}
.y8{bottom:13.440064pt;}
.ye{bottom:16.320069pt;}
.yd{bottom:36.160035pt;}
.yc{bottom:45.600098pt;}
.y6c{bottom:81.760010pt;}
.y82{bottom:85.280030pt;}
.ya3{bottom:99.680054pt;}
.y6b{bottom:101.600037pt;}
.y3c{bottom:104.800049pt;}
.y81{bottom:105.120057pt;}
.ya2{bottom:119.520081pt;}
.y6a{bottom:121.440064pt;}
.y3b{bottom:124.640076pt;}
.y80{bottom:125.120057pt;}
.ya1{bottom:139.360047pt;}
.y69{bottom:141.280030pt;}
.y3a{bottom:144.640076pt;}
.y7f{bottom:144.960083pt;}
.ya0{bottom:159.200074pt;}
.y68{bottom:161.120057pt;}
.y39{bottom:164.480042pt;}
.y7e{bottom:164.800049pt;}
.y9f{bottom:179.040039pt;}
.y67{bottom:180.960083pt;}
.y38{bottom:184.320069pt;}
.y7d{bottom:184.640076pt;}
.y9e{bottom:198.880066pt;}
.y66{bottom:200.800049pt;}
.y37{bottom:204.160035pt;}
.y7c{bottom:204.480042pt;}
.y9d{bottom:218.880066pt;}
.y65{bottom:220.640076pt;}
.y36{bottom:224.000061pt;}
.y7b{bottom:224.320069pt;}
.y9c{bottom:238.720032pt;}
.y64{bottom:240.480042pt;}
.y35{bottom:243.840088pt;}
.y7a{bottom:244.160035pt;}
.y9b{bottom:258.560059pt;}
.y63{bottom:260.320069pt;}
.y34{bottom:263.680054pt;}
.y79{bottom:264.000061pt;}
.y9a{bottom:278.400086pt;}
.y62{bottom:280.320069pt;}
.y33{bottom:283.520081pt;}
.y78{bottom:283.840088pt;}
.y99{bottom:298.240052pt;}
.y61{bottom:300.160035pt;}
.y32{bottom:303.360047pt;}
.y77{bottom:303.680054pt;}
.y98{bottom:318.080079pt;}
.y60{bottom:320.000061pt;}
.y31{bottom:323.200074pt;}
.y76{bottom:323.680054pt;}
.yc3{bottom:327.200074pt;}
.y97{bottom:337.920044pt;}
.y5f{bottom:339.840088pt;}
.y30{bottom:343.200074pt;}
.y75{bottom:343.520081pt;}
.yc2{bottom:348.160035pt;}
.y96{bottom:357.760071pt;}
.y5e{bottom:359.680054pt;}
.y2f{bottom:363.040039pt;}
.y74{bottom:363.360047pt;}
.yc1{bottom:366.560059pt;}
.y95{bottom:377.600037pt;}
.y5d{bottom:379.520081pt;}
.y2e{bottom:382.880066pt;}
.y73{bottom:383.200074pt;}
.yc0{bottom:384.960083pt;}
.y94{bottom:397.440064pt;}
.y5c{bottom:399.360047pt;}
.y72{bottom:403.040039pt;}
.y2d{bottom:403.360047pt;}
.y93{bottom:417.280030pt;}
.y5b{bottom:419.200074pt;}
.ybf{bottom:421.760071pt;}
.y71{bottom:422.880066pt;}
.y2c{bottom:426.560059pt;}
.y92{bottom:437.280030pt;}
.y5a{bottom:439.040039pt;}
.ybe{bottom:440.160035pt;}
.y70{bottom:442.720032pt;}
.y2b{bottom:449.760071pt;}
.y91{bottom:457.120057pt;}
.ybd{bottom:458.560059pt;}
.y59{bottom:458.880066pt;}
.y6f{bottom:462.560059pt;}
.y2a{bottom:472.160035pt;}
.y90{bottom:476.960083pt;}
.y58{bottom:478.720032pt;}
.y6e{bottom:482.400086pt;}
.y29{bottom:492.000061pt;}
.ybc{bottom:495.360047pt;}
.y8f{bottom:496.800049pt;}
.y57{bottom:498.720032pt;}
.y6d{bottom:499.040039pt;}
.y28{bottom:511.840088pt;}
.ybb{bottom:513.760071pt;}
.y8e{bottom:516.640076pt;}
.y56{bottom:518.560059pt;}
.y27{bottom:531.680054pt;}
.yba{bottom:532.160035pt;}
.y8d{bottom:536.480042pt;}
.y55{bottom:538.400086pt;}
.yb9{bottom:550.560059pt;}
.y26{bottom:551.520081pt;}
.y8c{bottom:556.320069pt;}
.y54{bottom:558.240052pt;}
.yb8{bottom:568.960083pt;}
.y25{bottom:571.520081pt;}
.y8b{bottom:576.160035pt;}
.y53{bottom:578.080079pt;}
.yb7{bottom:587.360047pt;}
.y24{bottom:591.360047pt;}
.y8a{bottom:596.000061pt;}
.y52{bottom:597.920044pt;}
.yb6{bottom:605.760071pt;}
.y23{bottom:611.200074pt;}
.y89{bottom:615.840058pt;}
.y51{bottom:617.760071pt;}
.yb5{bottom:624.160065pt;}
.y22{bottom:631.040070pt;}
.y88{bottom:635.840058pt;}
.y50{bottom:637.600068pt;}
.yb4{bottom:642.560059pt;}
.y21{bottom:650.880066pt;}
.y87{bottom:655.680054pt;}
.y4f{bottom:657.440064pt;}
.yb3{bottom:660.960053pt;}
.y20{bottom:670.720063pt;}
.y86{bottom:675.520050pt;}
.y4e{bottom:677.280060pt;}
.yb2{bottom:679.360047pt;}
.y1f{bottom:690.560059pt;}
.y85{bottom:695.360047pt;}
.y4d{bottom:697.280060pt;}
.yb1{bottom:697.760071pt;}
.y1e{bottom:710.400055pt;}
.y84{bottom:715.200074pt;}
.yb0{bottom:716.160065pt;}
.y4c{bottom:717.120057pt;}
.y1d{bottom:730.240052pt;}
.y83{bottom:731.680054pt;}
.yaf{bottom:734.560059pt;}
.y4b{bottom:736.960053pt;}
.y1c{bottom:750.080048pt;}
.yae{bottom:752.960053pt;}
.y4a{bottom:756.800049pt;}
.y1b{bottom:770.080048pt;}
.yad{bottom:771.360047pt;}
.y49{bottom:776.640046pt;}
.yac{bottom:789.760071pt;}
.y1a{bottom:789.920044pt;}
.y48{bottom:796.480072pt;}
.yab{bottom:808.160065pt;}
.y19{bottom:810.400055pt;}
.y47{bottom:816.320069pt;}
.yaa{bottom:826.560059pt;}
.y18{bottom:833.600068pt;}
.y46{bottom:836.160065pt;}
.ya9{bottom:844.960053pt;}
.y45{bottom:856.000061pt;}
.y17{bottom:856.800049pt;}
.ya8{bottom:863.360047pt;}
.y44{bottom:875.840058pt;}
.y16{bottom:879.200058pt;}
.ya7{bottom:881.760056pt;}
.y43{bottom:895.680054pt;}
.y15{bottom:899.040055pt;}
.ya6{bottom:900.160065pt;}
.y42{bottom:915.680054pt;}
.ya5{bottom:918.560059pt;}
.y14{bottom:919.680054pt;}
.y41{bottom:935.520066pt;}
.ya4{bottom:936.960053pt;}
.y13{bottom:942.880066pt;}
.y40{bottom:955.360062pt;}
.y12{bottom:965.920060pt;}
.y3f{bottom:975.200058pt;}
.y11{bottom:989.120057pt;}
.y3e{bottom:995.040062pt;}
.y10{bottom:1012.320061pt;}
.y3d{bottom:1014.880059pt;}
.y7{bottom:1033.120057pt;}
.yf{bottom:1045.920060pt;}
.y6{bottom:1052.480057pt;}
.y5{bottom:1070.880059pt;}
.ya{bottom:1082.560059pt;}
.y3{bottom:1085.760060pt;}
.y9{bottom:1088.960061pt;}
.y2{bottom:1089.280060pt;}
.y1{bottom:1107.680059pt;}
.h4{height:18.240000pt;}
.h8{height:33.120000pt;}
.h9{height:37.481099pt;}
.h2{height:44.689179pt;}
.h3{height:45.157946pt;}
.h5{height:45.657965pt;}
.he{height:46.595500pt;}
.hd{height:46.783007pt;}
.ha{height:48.220561pt;}
.hb{height:52.286327pt;}
.hc{height:52.834785pt;}
.h6{height:54.736106pt;}
.h7{height:82.639039pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w3{width:11.359985pt;}
.w2{width:90.400024pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x8{left:114.400002pt;}
.xc{left:122.720001pt;}
.x7{left:124.800003pt;}
.xb{left:180.800003pt;}
.x12{left:189.919998pt;}
.xa{left:281.920013pt;}
.x10{left:298.239990pt;}
.xe{left:308.320007pt;}
.xf{left:330.239990pt;}
.xd{left:332.480011pt;}
.x14{left:342.239990pt;}
.x9{left:396.480011pt;}
.x6{left:418.880005pt;}
.x11{left:592.479980pt;}
.x13{left:602.880005pt;}
.x3{left:654.559998pt;}
.x2{left:702.880005pt;}
.x4{left:706.080017pt;}
.x5{left:731.840027pt;}
}




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