
    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_6a9335eff8f72a9364664ecf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_ed2a31b99d837e9dde97f2e1.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_72d20b60cc73484120186cd7.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_2071cb13be9466d1a8baa57d.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_b7806516b31cb6d66621d72a.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_272741d040f2825e3782566a.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;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.062159px;}
.ls2{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;}
._19{margin-left:-4.666112px;}
._18{margin-left:-3.357126px;}
._13{margin-left:-2.187926px;}
._1{margin-left:-1.109292px;}
._0{width:1.479712px;}
._9{width:2.515313px;}
._8{width:3.626011px;}
._d{width:4.796618px;}
._11{width:5.835032px;}
._1a{width:6.903821px;}
._a{width:8.041240px;}
._e{width:9.350507px;}
._1b{width:10.476113px;}
._14{width:11.721253px;}
._10{width:13.081991px;}
._15{width:14.158657px;}
._17{width:15.535146px;}
._12{width:16.551903px;}
._b{width:19.574329px;}
._c{width:20.985694px;}
._16{width:22.910642px;}
._1c{width:24.481482px;}
._f{width:25.979652px;}
._6{width:27.280495px;}
._5{width:28.386315px;}
._7{width:29.603426px;}
._1d{width:30.895440px;}
._20{width:32.145459px;}
._2{width:36.121405px;}
._1e{width:46.384648px;}
._1f{width:47.555255px;}
._4{width:194.777160px;}
._3{width:196.217214px;}
.fc4{color:transparent;}
.fc3{color:rgb(5,99,193);}
.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;}
.y40{bottom:103.320099px;}
.y70{bottom:106.920043px;}
.y3f{bottom:124.020058px;}
.y6f{bottom:127.620072px;}
.y3e{bottom:144.720085px;}
.y6e{bottom:148.140060px;}
.y3d{bottom:165.420043px;}
.y6d{bottom:168.840088px;}
.y3c{bottom:186.120072px;}
.y6c{bottom:189.540047px;}
.y3b{bottom:206.820099px;}
.y6b{bottom:210.240074px;}
.y3a{bottom:227.520058px;}
.y6a{bottom:230.940033px;}
.y39{bottom:248.220085px;}
.y69{bottom:251.640060px;}
.y38{bottom:268.920043px;}
.y68{bottom:272.340088px;}
.y37{bottom:289.620072px;}
.y67{bottom:293.040047px;}
.y36{bottom:310.320099px;}
.y66{bottom:313.740074px;}
.y35{bottom:331.020058px;}
.y65{bottom:334.440033px;}
.y34{bottom:351.720085px;}
.y64{bottom:355.140060px;}
.y33{bottom:372.420043px;}
.y63{bottom:375.840088px;}
.y32{bottom:393.120072px;}
.y62{bottom:396.540047px;}
.y31{bottom:413.820099px;}
.y61{bottom:417.240074px;}
.y30{bottom:434.520058px;}
.y60{bottom:437.940033px;}
.y2f{bottom:455.220085px;}
.y5f{bottom:458.640060px;}
.y2e{bottom:475.920043px;}
.y5e{bottom:479.340088px;}
.y2d{bottom:496.620072px;}
.y5d{bottom:500.040047px;}
.y85{bottom:514.440033px;}
.y2c{bottom:517.320099px;}
.y5c{bottom:520.740074px;}
.y84{bottom:535.140060px;}
.y2b{bottom:538.560036px;}
.y5b{bottom:541.440033px;}
.y83{bottom:555.840088px;}
.y5a{bottom:562.140060px;}
.y2a{bottom:562.680039px;}
.y82{bottom:576.540047px;}
.y59{bottom:582.840088px;}
.y29{bottom:586.980079px;}
.y81{bottom:597.240074px;}
.y58{bottom:603.540047px;}
.y28{bottom:611.100083px;}
.y80{bottom:617.940033px;}
.y57{bottom:624.240074px;}
.y27{bottom:634.680039px;}
.y7f{bottom:638.640060px;}
.y56{bottom:644.940033px;}
.y26{bottom:655.380066px;}
.y7e{bottom:659.340088px;}
.y55{bottom:665.640060px;}
.y25{bottom:676.080093px;}
.y7d{bottom:680.040047px;}
.y54{bottom:686.340088px;}
.y24{bottom:696.780052px;}
.y7c{bottom:700.740074px;}
.y53{bottom:707.040081px;}
.y23{bottom:717.480079px;}
.y7b{bottom:721.440067px;}
.y52{bottom:727.740074px;}
.y22{bottom:738.180073px;}
.y7a{bottom:742.140060px;}
.y51{bottom:748.440067px;}
.y21{bottom:758.880066px;}
.y79{bottom:762.840054px;}
.y50{bottom:769.140060px;}
.y20{bottom:779.580059px;}
.y78{bottom:783.540081px;}
.y4f{bottom:789.840054px;}
.y1f{bottom:800.280052px;}
.y77{bottom:804.240074px;}
.y4e{bottom:810.540081px;}
.y1e{bottom:820.980079px;}
.y76{bottom:824.940067px;}
.y4d{bottom:831.240074px;}
.y1d{bottom:841.680073px;}
.y75{bottom:845.640060px;}
.y4c{bottom:851.940067px;}
.y1c{bottom:862.380066px;}
.y74{bottom:866.340054px;}
.y4b{bottom:872.640060px;}
.y1b{bottom:883.620072px;}
.y73{bottom:887.040081px;}
.y4a{bottom:893.340054px;}
.y1a{bottom:907.740074px;}
.y49{bottom:914.040081px;}
.y72{bottom:916.740074px;}
.y19{bottom:931.860077px;}
.y48{bottom:934.740074px;}
.y71{bottom:946.440067px;}
.y18{bottom:955.440067px;}
.y17{bottom:976.140060px;}
.y16{bottom:996.840070px;}
.y47{bottom:1017.540064px;}
.y15{bottom:1018.080059px;}
.y46{bottom:1038.240074px;}
.y14{bottom:1042.200061px;}
.y45{bottom:1058.940067px;}
.y13{bottom:1066.500068px;}
.y44{bottom:1079.640060px;}
.y12{bottom:1090.620072px;}
.y43{bottom:1100.340070px;}
.y11{bottom:1114.740074px;}
.y42{bottom:1121.040064px;}
.y10{bottom:1138.860068px;}
.y41{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.486271px;}
.h3{height:50.802689px;}
.h5{height:51.365211px;}
.hf{height:52.419938px;}
.hd{height:52.630883px;}
.ha{height:54.248131px;}
.hb{height:59.068924px;}
.hc{height:59.439133px;}
.h6{height:61.578120px;}
.he{height:63.470300px;}
.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:110.879998px;}
.x7{left:121.319996px;}
.xd{left:127.439999px;}
.xb{left:256.860008px;}
.xa{left:345.600014px;}
.x11{left:356.759994px;}
.xf{left:368.100014px;}
.xc{left:380.879998px;}
.x10{left:392.759994px;}
.xe{left:395.279983px;}
.x12{left:406.800007px;}
.x9{left:467.279983px;}
.x6{left:471.240006px;}
.x3{left:736.379998px;}
.x2{left:790.740006px;}
.x4{left:794.340019px;}
.x5{left:823.320030px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.055252pt;}
.ls2{letter-spacing:123.071350pt;}
.ws0{word-spacing:-16.000601pt;}
.ws1{word-spacing:0.000000pt;}
._19{margin-left:-4.147655pt;}
._18{margin-left:-2.984112pt;}
._13{margin-left:-1.944823pt;}
._1{margin-left:-0.986037pt;}
._0{width:1.315299pt;}
._9{width:2.235833pt;}
._8{width:3.223121pt;}
._d{width:4.263660pt;}
._11{width:5.186695pt;}
._1a{width:6.136730pt;}
._a{width:7.147768pt;}
._e{width:8.311562pt;}
._1b{width:9.312100pt;}
._14{width:10.418891pt;}
._10{width:11.628437pt;}
._15{width:12.585473pt;}
._17{width:13.809019pt;}
._12{width:14.712802pt;}
._b{width:17.399404pt;}
._c{width:18.653950pt;}
._16{width:20.365015pt;}
._1c{width:21.761317pt;}
._f{width:23.093024pt;}
._6{width:24.249329pt;}
._5{width:25.232280pt;}
._7{width:26.314156pt;}
._1d{width:27.462614pt;}
._20{width:28.573741pt;}
._2{width:32.107915pt;}
._1e{width:41.230799pt;}
._1f{width:42.271338pt;}
._4{width:173.135253pt;}
._3{width:174.415301pt;}
.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;}
.y40{bottom:91.840088pt;}
.y70{bottom:95.040039pt;}
.y3f{bottom:110.240052pt;}
.y6f{bottom:113.440064pt;}
.y3e{bottom:128.640076pt;}
.y6e{bottom:131.680054pt;}
.y3d{bottom:147.040039pt;}
.y6d{bottom:150.080079pt;}
.y3c{bottom:165.440064pt;}
.y6c{bottom:168.480042pt;}
.y3b{bottom:183.840088pt;}
.y6b{bottom:186.880066pt;}
.y3a{bottom:202.240052pt;}
.y6a{bottom:205.280030pt;}
.y39{bottom:220.640076pt;}
.y69{bottom:223.680054pt;}
.y38{bottom:239.040039pt;}
.y68{bottom:242.080079pt;}
.y37{bottom:257.440064pt;}
.y67{bottom:260.480042pt;}
.y36{bottom:275.840088pt;}
.y66{bottom:278.880066pt;}
.y35{bottom:294.240052pt;}
.y65{bottom:297.280030pt;}
.y34{bottom:312.640076pt;}
.y64{bottom:315.680054pt;}
.y33{bottom:331.040039pt;}
.y63{bottom:334.080079pt;}
.y32{bottom:349.440064pt;}
.y62{bottom:352.480042pt;}
.y31{bottom:367.840088pt;}
.y61{bottom:370.880066pt;}
.y30{bottom:386.240052pt;}
.y60{bottom:389.280030pt;}
.y2f{bottom:404.640076pt;}
.y5f{bottom:407.680054pt;}
.y2e{bottom:423.040039pt;}
.y5e{bottom:426.080079pt;}
.y2d{bottom:441.440064pt;}
.y5d{bottom:444.480042pt;}
.y85{bottom:457.280030pt;}
.y2c{bottom:459.840088pt;}
.y5c{bottom:462.880066pt;}
.y84{bottom:475.680054pt;}
.y2b{bottom:478.720032pt;}
.y5b{bottom:481.280030pt;}
.y83{bottom:494.080079pt;}
.y5a{bottom:499.680054pt;}
.y2a{bottom:500.160035pt;}
.y82{bottom:512.480042pt;}
.y59{bottom:518.080079pt;}
.y29{bottom:521.760071pt;}
.y81{bottom:530.880066pt;}
.y58{bottom:536.480042pt;}
.y28{bottom:543.200074pt;}
.y80{bottom:549.280030pt;}
.y57{bottom:554.880066pt;}
.y27{bottom:564.160035pt;}
.y7f{bottom:567.680054pt;}
.y56{bottom:573.280030pt;}
.y26{bottom:582.560059pt;}
.y7e{bottom:586.080079pt;}
.y55{bottom:591.680054pt;}
.y25{bottom:600.960083pt;}
.y7d{bottom:604.480042pt;}
.y54{bottom:610.080079pt;}
.y24{bottom:619.360047pt;}
.y7c{bottom:622.880066pt;}
.y53{bottom:628.480072pt;}
.y23{bottom:637.760071pt;}
.y7b{bottom:641.280060pt;}
.y52{bottom:646.880066pt;}
.y22{bottom:656.160065pt;}
.y7a{bottom:659.680054pt;}
.y51{bottom:665.280060pt;}
.y21{bottom:674.560059pt;}
.y79{bottom:678.080048pt;}
.y50{bottom:683.680054pt;}
.y20{bottom:692.960053pt;}
.y78{bottom:696.480072pt;}
.y4f{bottom:702.080048pt;}
.y1f{bottom:711.360047pt;}
.y77{bottom:714.880066pt;}
.y4e{bottom:720.480072pt;}
.y1e{bottom:729.760071pt;}
.y76{bottom:733.280060pt;}
.y4d{bottom:738.880066pt;}
.y1d{bottom:748.160065pt;}
.y75{bottom:751.680054pt;}
.y4c{bottom:757.280060pt;}
.y1c{bottom:766.560059pt;}
.y74{bottom:770.080048pt;}
.y4b{bottom:775.680054pt;}
.y1b{bottom:785.440064pt;}
.y73{bottom:788.480072pt;}
.y4a{bottom:794.080048pt;}
.y1a{bottom:806.880066pt;}
.y49{bottom:812.480072pt;}
.y72{bottom:814.880066pt;}
.y19{bottom:828.320069pt;}
.y48{bottom:830.880066pt;}
.y71{bottom:841.280060pt;}
.y18{bottom:849.280060pt;}
.y17{bottom:867.680054pt;}
.y16{bottom:886.080063pt;}
.y47{bottom:904.480057pt;}
.y15{bottom:904.960053pt;}
.y46{bottom:922.880066pt;}
.y14{bottom:926.400055pt;}
.y45{bottom:941.280060pt;}
.y13{bottom:948.000061pt;}
.y44{bottom:959.680054pt;}
.y12{bottom:969.440064pt;}
.y43{bottom:978.080063pt;}
.y11{bottom:990.880066pt;}
.y42{bottom:996.480057pt;}
.y10{bottom:1012.320061pt;}
.y41{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.876686pt;}
.h3{height:45.157946pt;}
.h5{height:45.657965pt;}
.hf{height:46.595500pt;}
.hd{height:46.783007pt;}
.ha{height:48.220561pt;}
.hb{height:52.505710pt;}
.hc{height:52.834785pt;}
.h6{height:54.736106pt;}
.he{height:56.418044pt;}
.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:98.559998pt;}
.x7{left:107.839996pt;}
.xd{left:113.279999pt;}
.xb{left:228.320007pt;}
.xa{left:307.200012pt;}
.x11{left:317.119995pt;}
.xf{left:327.200012pt;}
.xc{left:338.559998pt;}
.x10{left:349.119995pt;}
.xe{left:351.359985pt;}
.x12{left:361.600006pt;}
.x9{left:415.359985pt;}
.x6{left:418.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; }
  