
    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_421a57675dce3b835477517d.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_9f1ce135713dd5e82c7470c2.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_d0fdf9d7fe25c603facaeb7b.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_49827f660ecc83232c6af3c2.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_4d7ca34f436cf7cd3eba914c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.693359;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_39d9cde55585767f99300764.woff2')format("woff");}.ff6{font-family:ff6;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;}
.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;}
.v1{vertical-align:12.240418px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.094301px;}
.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;}
}
.ws4{word-spacing:-95.137901px;}
.ws5{word-spacing:-95.043600px;}
.ws1{word-spacing:-79.204500px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws6{word-spacing:-15.840563px;}
.ws2{word-spacing:0.000000px;}
._1d{margin-left:-13.168508px;}
._e{margin-left:-11.945523px;}
._a{margin-left:-10.189110px;}
._4{margin-left:-8.173922px;}
._2{margin-left:-6.857145px;}
._9{margin-left:-5.816962px;}
._1{margin-left:-4.231104px;}
._10{margin-left:-3.089207px;}
._3{margin-left:-1.823937px;}
._0{width:1.048595px;}
._f{width:2.155784px;}
._c{width:3.241210px;}
._b{width:4.371413px;}
._11{width:5.634532px;}
._6{width:7.008842px;}
._5{width:8.268871px;}
._7{width:9.298013px;}
._8{width:10.432621px;}
._14{width:11.459380px;}
._12{width:12.461108px;}
._13{width:13.680046px;}
._15{width:14.919101px;}
._18{width:16.205223px;}
._1c{width:18.084097px;}
._16{width:19.671292px;}
._17{width:21.434331px;}
._1a{width:460.779820px;}
._d{width:1663.888813px;}
._1b{width:1666.048997px;}
._19{width:1668.208912px;}
.fc1{color:rgb(34,30,31);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y17{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y2d{bottom:41.040115px;}
.y7d{bottom:101.340088px;}
.y40{bottom:121.320099px;}
.y76{bottom:122.040047px;}
.y7c{bottom:129.780052px;}
.y3f{bottom:149.940033px;}
.y67{bottom:158.220085px;}
.y3e{bottom:178.560036px;}
.y5c{bottom:184.680039px;}
.y15{bottom:185.400150px;}
.y75{bottom:205.200096px;}
.y2c{bottom:207.000068px;}
.y66{bottom:212.940033px;}
.y5b{bottom:213.300041px;}
.y14{bottom:213.480150px;}
.y7b{bottom:214.200096px;}
.y74{bottom:232.920043px;}
.y44{bottom:235.620072px;}
.y39{bottom:241.380066px;}
.y3d{bottom:264.060036px;}
.y38{bottom:269.820099px;}
.y5a{bottom:270.000068px;}
.y7a{bottom:270.540047px;}
.y43{bottom:292.680039px;}
.y59{bottom:298.260064px;}
.y2b{bottom:321.120072px;}
.y65{bottom:322.380066px;}
.y73{bottom:343.980079px;}
.y3c{bottom:349.740074px;}
.y13{bottom:354.060000px;}
.y58{bottom:354.960091px;}
.y46{bottom:378.180039px;}
.y12{bottom:382.140000px;}
.y79{bottom:383.040047px;}
.y37{bottom:383.220085px;}
.y72{bottom:399.420043px;}
.y7e{bottom:406.800041px;}
.y64{bottom:431.640060px;}
.y2a{bottom:435.240074px;}
.y57{bottom:439.920043px;}
.y71{bottom:454.860077px;}
.y63{bottom:459.000068px;}
.y3b{bottom:463.860077px;}
.y11{bottom:466.560000px;}
.y36{bottom:468.180039px;}
.y56{bottom:468.360077px;}
.y70{bottom:482.580093px;}
.y29{bottom:492.300041px;}
.y55{bottom:496.620072px;}
.y6f{bottom:510.300041px;}
.y45{bottom:520.920043px;}
.y54{bottom:525.060036px;}
.y6e{bottom:538.200096px;}
.y62{bottom:541.080093px;}
.y42{bottom:549.360077px;}
.y10{bottom:550.980000px;}
.y35{bottom:553.140060px;}
.y53{bottom:553.320099px;}
.y61{bottom:568.440033px;}
.y28{bottom:577.980079px;}
.yf{bottom:579.060000px;}
.y78{bottom:579.960091px;}
.y52{bottom:581.760064px;}
.y6d{bottom:593.640060px;}
.y27{bottom:606.420043px;}
.y34{bottom:609.840088px;}
.y51{bottom:610.020058px;}
.y6c{bottom:621.360077px;}
.y26{bottom:635.040047px;}
.ye{bottom:635.400000px;}
.y6b{bottom:649.080093px;}
.y25{bottom:663.480079px;}
.y50{bottom:666.720085px;}
.y3a{bottom:692.100083px;}
.y4f{bottom:695.160049px;}
.y60{bottom:705.060070px;}
.y24{bottom:720.540081px;}
.y33{bottom:723.240074px;}
.y5f{bottom:732.420078px;}
.y23{bottom:749.160049px;}
.y32{bottom:751.500068px;}
.y4e{bottom:751.680073px;}
.y22{bottom:777.600083px;}
.yd{bottom:777.960000px;}
.y31{bottom:779.940067px;}
.y21{bottom:806.220051px;}
.yc{bottom:806.580000px;}
.y4d{bottom:808.380066px;}
.y6a{bottom:815.580059px;}
.y20{bottom:834.660049px;}
.yb{bottom:835.020000px;}
.y30{bottom:836.640060px;}
.y4c{bottom:836.820065px;}
.y5e{bottom:841.860077px;}
.y1f{bottom:863.280052px;}
.y1e{bottom:891.720051px;}
.ya{bottom:892.080000px;}
.y1d{bottom:920.340054px;}
.y9{bottom:920.700000px;}
.y4b{bottom:921.780052px;}
.y1c{bottom:948.780053px;}
.y8{bottom:949.140000px;}
.y5d{bottom:951.120072px;}
.y69{bottom:954.360077px;}
.y1b{bottom:977.400072px;}
.y4a{bottom:978.480063px;}
.y68{bottom:982.080059px;}
.y1a{bottom:1005.840070px;}
.y7{bottom:1006.200000px;}
.y49{bottom:1006.740074px;}
.y19{bottom:1034.460074px;}
.y6{bottom:1034.820000px;}
.y77{bottom:1062.900072px;}
.y5{bottom:1063.260000px;}
.y2f{bottom:1063.260064px;}
.y41{bottom:1091.520058px;}
.y48{bottom:1091.880066px;}
.y16{bottom:1098.900000px;}
.y2e{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y18{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y47{bottom:1148.940067px;}
.h6{height:55.303923px;}
.hd{height:55.596662px;}
.h3{height:55.598636px;}
.hc{height:57.534328px;}
.h2{height:57.535781px;}
.h9{height:64.414315px;}
.ha{height:65.992187px;}
.h7{height:67.837080px;}
.hb{height:83.395190px;}
.h5{height:83.395980px;}
.h8{height:84.416166px;}
.h4{height:84.416966px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x3{left:109.800000px;}
.x4{left:115.920000px;}
.x9{left:120.240000px;}
.x10{left:140.939999px;}
.x13{left:174.240006px;}
.x6{left:202.680000px;}
.x5{left:218.160000px;}
.x8{left:219.240000px;}
.x7{left:224.820000px;}
.xa{left:227.520000px;}
.x1d{left:244.259994px;}
.x19{left:252.719999px;}
.xf{left:256.680000px;}
.x1c{left:274.319996px;}
.xd{left:287.820000px;}
.xc{left:292.500000px;}
.xb{left:293.760000px;}
.x1a{left:328.319996px;}
.x1e{left:336.060001px;}
.xe{left:369.000000px;}
.x12{left:389.160015px;}
.x11{left:410.939999px;}
.x20{left:439.019989px;}
.x1f{left:530.639992px;}
.x1{left:532.800000px;}
.x15{left:597.600014px;}
.x16{left:639.539978px;}
.x17{left:658.080025px;}
.x14{left:672.299973px;}
.x18{left:682.919975px;}
.x1b{left:702.899987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.083823pt;}
.ws4{word-spacing:-84.567023pt;}
.ws5{word-spacing:-84.483200pt;}
.ws1{word-spacing:-70.404000pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws6{word-spacing:-14.080500pt;}
.ws2{word-spacing:0.000000pt;}
._1d{margin-left:-11.705341pt;}
._e{margin-left:-10.618243pt;}
._a{margin-left:-9.056987pt;}
._4{margin-left:-7.265708pt;}
._2{margin-left:-6.095240pt;}
._9{margin-left:-5.170633pt;}
._1{margin-left:-3.760981pt;}
._10{margin-left:-2.745961pt;}
._3{margin-left:-1.621277pt;}
._0{width:0.932084pt;}
._f{width:1.916252pt;}
._c{width:2.881075pt;}
._b{width:3.885700pt;}
._11{width:5.008473pt;}
._6{width:6.230081pt;}
._5{width:7.350108pt;}
._7{width:8.264901pt;}
._8{width:9.273441pt;}
._14{width:10.186115pt;}
._12{width:11.076541pt;}
._13{width:12.160041pt;}
._15{width:13.261424pt;}
._18{width:14.404643pt;}
._1c{width:16.074753pt;}
._16{width:17.485593pt;}
._17{width:19.052739pt;}
._1a{width:409.582062pt;}
._d{width:1479.012278pt;}
._1b{width:1480.932442pt;}
._19{width:1482.852366pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y17{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y2d{bottom:36.480103pt;}
.y7d{bottom:90.080079pt;}
.y40{bottom:107.840088pt;}
.y76{bottom:108.480042pt;}
.y7c{bottom:115.360047pt;}
.y3f{bottom:133.280030pt;}
.y67{bottom:140.640076pt;}
.y3e{bottom:158.720032pt;}
.y5c{bottom:164.160035pt;}
.y15{bottom:164.800133pt;}
.y75{bottom:182.400086pt;}
.y2c{bottom:184.000061pt;}
.y66{bottom:189.280030pt;}
.y5b{bottom:189.600037pt;}
.y14{bottom:189.760133pt;}
.y7b{bottom:190.400086pt;}
.y74{bottom:207.040039pt;}
.y44{bottom:209.440064pt;}
.y39{bottom:214.560059pt;}
.y3d{bottom:234.720032pt;}
.y38{bottom:239.840088pt;}
.y5a{bottom:240.000061pt;}
.y7a{bottom:240.480042pt;}
.y43{bottom:260.160035pt;}
.y59{bottom:265.120057pt;}
.y2b{bottom:285.440064pt;}
.y65{bottom:286.560059pt;}
.y73{bottom:305.760071pt;}
.y3c{bottom:310.880066pt;}
.y13{bottom:314.720000pt;}
.y58{bottom:315.520081pt;}
.y46{bottom:336.160035pt;}
.y12{bottom:339.680000pt;}
.y79{bottom:340.480042pt;}
.y37{bottom:340.640076pt;}
.y72{bottom:355.040039pt;}
.y7e{bottom:361.600037pt;}
.y64{bottom:383.680054pt;}
.y2a{bottom:386.880066pt;}
.y57{bottom:391.040039pt;}
.y71{bottom:404.320069pt;}
.y63{bottom:408.000061pt;}
.y3b{bottom:412.320069pt;}
.y11{bottom:414.720000pt;}
.y36{bottom:416.160035pt;}
.y56{bottom:416.320069pt;}
.y70{bottom:428.960083pt;}
.y29{bottom:437.600037pt;}
.y55{bottom:441.440064pt;}
.y6f{bottom:453.600037pt;}
.y45{bottom:463.040039pt;}
.y54{bottom:466.720032pt;}
.y6e{bottom:478.400086pt;}
.y62{bottom:480.960083pt;}
.y42{bottom:488.320069pt;}
.y10{bottom:489.760000pt;}
.y35{bottom:491.680054pt;}
.y53{bottom:491.840088pt;}
.y61{bottom:505.280030pt;}
.y28{bottom:513.760071pt;}
.yf{bottom:514.720000pt;}
.y78{bottom:515.520081pt;}
.y52{bottom:517.120057pt;}
.y6d{bottom:527.680054pt;}
.y27{bottom:539.040039pt;}
.y34{bottom:542.080079pt;}
.y51{bottom:542.240052pt;}
.y6c{bottom:552.320069pt;}
.y26{bottom:564.480042pt;}
.ye{bottom:564.800000pt;}
.y6b{bottom:576.960083pt;}
.y25{bottom:589.760071pt;}
.y50{bottom:592.640076pt;}
.y3a{bottom:615.200074pt;}
.y4f{bottom:617.920044pt;}
.y60{bottom:626.720063pt;}
.y24{bottom:640.480072pt;}
.y33{bottom:642.880066pt;}
.y5f{bottom:651.040070pt;}
.y23{bottom:665.920044pt;}
.y32{bottom:668.000061pt;}
.y4e{bottom:668.160065pt;}
.y22{bottom:691.200074pt;}
.yd{bottom:691.520000pt;}
.y31{bottom:693.280060pt;}
.y21{bottom:716.640046pt;}
.yc{bottom:716.960000pt;}
.y4d{bottom:718.560059pt;}
.y6a{bottom:724.960053pt;}
.y20{bottom:741.920044pt;}
.yb{bottom:742.240000pt;}
.y30{bottom:743.680054pt;}
.y4c{bottom:743.840058pt;}
.y5e{bottom:748.320069pt;}
.y1f{bottom:767.360047pt;}
.y1e{bottom:792.640046pt;}
.ya{bottom:792.960000pt;}
.y1d{bottom:818.080048pt;}
.y9{bottom:818.400000pt;}
.y4b{bottom:819.360047pt;}
.y1c{bottom:843.360047pt;}
.y8{bottom:843.680000pt;}
.y5d{bottom:845.440064pt;}
.y69{bottom:848.320069pt;}
.y1b{bottom:868.800064pt;}
.y4a{bottom:869.760056pt;}
.y68{bottom:872.960053pt;}
.y1a{bottom:894.080063pt;}
.y7{bottom:894.400000pt;}
.y49{bottom:894.880066pt;}
.y19{bottom:919.520066pt;}
.y6{bottom:919.840000pt;}
.y77{bottom:944.800064pt;}
.y5{bottom:945.120000pt;}
.y2f{bottom:945.120057pt;}
.y41{bottom:970.240052pt;}
.y48{bottom:970.560059pt;}
.y16{bottom:976.800000pt;}
.y2e{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y18{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y47{bottom:1021.280060pt;}
.h6{height:49.159043pt;}
.hd{height:49.419255pt;}
.h3{height:49.421010pt;}
.hc{height:51.141625pt;}
.h2{height:51.142916pt;}
.h9{height:57.257169pt;}
.ha{height:58.659722pt;}
.h7{height:60.299627pt;}
.hb{height:74.129058pt;}
.h5{height:74.129760pt;}
.h8{height:75.036592pt;}
.h4{height:75.037303pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x3{left:97.600000pt;}
.x4{left:103.040000pt;}
.x9{left:106.880000pt;}
.x10{left:125.279999pt;}
.x13{left:154.880005pt;}
.x6{left:180.160000pt;}
.x5{left:193.920000pt;}
.x8{left:194.880000pt;}
.x7{left:199.840000pt;}
.xa{left:202.240000pt;}
.x1d{left:217.119995pt;}
.x19{left:224.639999pt;}
.xf{left:228.160000pt;}
.x1c{left:243.839996pt;}
.xd{left:255.840000pt;}
.xc{left:260.000000pt;}
.xb{left:261.120000pt;}
.x1a{left:291.839996pt;}
.x1e{left:298.720001pt;}
.xe{left:328.000000pt;}
.x12{left:345.920013pt;}
.x11{left:365.279999pt;}
.x20{left:390.239990pt;}
.x1f{left:471.679993pt;}
.x1{left:473.600000pt;}
.x15{left:531.200012pt;}
.x16{left:568.479980pt;}
.x17{left:584.960022pt;}
.x14{left:597.599976pt;}
.x18{left:607.039978pt;}
.x1b{left:624.799988pt;}
}




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