
    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_9404ce316c60d71628d319e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.172852;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_fe2fac2d2c293a77e942a9ed.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.202148;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_23f8636d30676146a072a369.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.130371;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_ea6714653d76f7e5ce03bc54.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;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;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.008924px;}
.ls5{letter-spacing:0.029240px;}
.ls0{letter-spacing:0.035496px;}
.ls6{letter-spacing:0.057337px;}
.ls8{letter-spacing:0.059985px;}
.ls3{letter-spacing:0.104634px;}
.lsa{letter-spacing:0.149150px;}
.lsb{letter-spacing:0.173700px;}
.ls9{letter-spacing:0.173772px;}
.ls7{letter-spacing:0.367349px;}
.ls1{letter-spacing:178.709186px;}
.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:-14.970850px;}
.ws0{word-spacing:-12.855389px;}
.ws1{word-spacing:0.000000px;}
._b{margin-left:-13.372026px;}
._d{margin-left:-10.078464px;}
._c{margin-left:-5.736621px;}
._8{margin-left:-4.430975px;}
._3{margin-left:-2.958557px;}
._0{margin-left:-1.738195px;}
._1{width:1.953739px;}
._f{width:3.392775px;}
._14{width:4.484062px;}
._a{width:5.703183px;}
._9{width:6.838006px;}
._e{width:8.216944px;}
._7{width:9.475294px;}
._13{width:10.906128px;}
._10{width:12.919138px;}
._11{width:13.961525px;}
._12{width:16.623554px;}
._15{width:18.648096px;}
._5{width:757.796027px;}
._4{width:848.833958px;}
._2{width:1007.390610px;}
._6{width:1048.639268px;}
.fc6{color:rgb(31,77,120);}
.fc2{color:rgb(46,116,181);}
.fc5{color:rgb(83,129,53);}
.fc3{color:rgb(5,99,193);}
.fc1{color:rgb(0,32,96);}
.fc4{color:rgb(36,36,36);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:54.002250px;}
.fs7{font-size:56.882250px;}
.fs4{font-size:59.762250px;}
.fs0{font-size:66.242700px;}
.fs1{font-size:72.002705px;}
.fs9{font-size:77.763154px;}
.fs2{font-size:84.243145px;}
.fs8{font-size:95.763600px;}
.fs5{font-size:108.004050px;}
.fs6{font-size:120.244505px;}
.y0{bottom:0.000000px;}
.y5{bottom:4.500000px;}
.y2{bottom:4.500004px;}
.y6{bottom:57.600083px;}
.y4{bottom:75.600083px;}
.y79{bottom:133.200096px;}
.y99{bottom:134.280052px;}
.y78{bottom:154.980079px;}
.y98{bottom:155.880066px;}
.y77{bottom:176.580093px;}
.y97{bottom:189.720085px;}
.y56{bottom:192.960091px;}
.y76{bottom:197.640060px;}
.y12{bottom:210.960091px;}
.y96{bottom:211.320099px;}
.y55{bottom:214.380066px;}
.y75{bottom:217.440033px;}
.y95{bottom:233.100083px;}
.y74{bottom:233.460091px;}
.y54{bottom:236.160049px;}
.y11{bottom:243.720085px;}
.y94{bottom:254.880066px;}
.y53{bottom:257.940033px;}
.y10{bottom:274.500068px;}
.y93{bottom:276.480079px;}
.y52{bottom:291.060036px;}
.y92{bottom:298.260064px;}
.yf{bottom:301.500068px;}
.y51{bottom:310.680039px;}
.y91{bottom:320.040047px;}
.y50{bottom:338.760064px;}
.y90{bottom:353.880066px;}
.y8f{bottom:375.480079px;}
.y5f{bottom:381.960091px;}
.y2f{bottom:385.020058px;}
.y8e{bottom:399.960091px;}
.ye{bottom:401.040047px;}
.y5e{bottom:403.380066px;}
.y2e{bottom:418.680039px;}
.y5d{bottom:425.160049px;}
.yd{bottom:443.160049px;}
.y5c{bottom:446.940033px;}
.y2d{bottom:452.520058px;}
.y73{bottom:462.240074px;}
.y8d{bottom:468.540047px;}
.y5b{bottom:478.260064px;}
.y72{bottom:484.020058px;}
.y2c{bottom:486.180039px;}
.y8c{bottom:490.320099px;}
.y71{bottom:505.800041px;}
.y8b{bottom:512.100083px;}
.y5a{bottom:518.760064px;}
.y2b{bottom:520.020058px;}
.y70{bottom:527.400055px;}
.y8a{bottom:533.700096px;}
.y59{bottom:538.380066px;}
.y2a{bottom:541.440033px;}
.y6f{bottom:549.180039px;}
.y58{bottom:558.180039px;}
.y29{bottom:563.220085px;}
.y89{bottom:565.380066px;}
.y6e{bottom:570.960091px;}
.y57{bottom:586.260064px;}
.y6d{bottom:592.740074px;}
.y4f{bottom:592.920043px;}
.y28{bottom:597.240074px;}
.y88{bottom:608.220085px;}
.y6c{bottom:614.340088px;}
.y4e{bottom:614.520058px;}
.y27{bottom:618.660049px;}
.y87{bottom:629.640060px;}
.y6b{bottom:634.500068px;}
.y4d{bottom:636.300041px;}
.y26{bottom:652.680039px;}
.y6a{bottom:654.660049px;}
.y4c{bottom:658.080093px;}
.y86{bottom:661.320099px;}
.y69{bottom:674.820099px;}
.y4b{bottom:679.680039px;}
.y25{bottom:684.540047px;}
.y68{bottom:694.980079px;}
.y4a{bottom:701.460056px;}
.y85{bottom:703.260064px;}
.y67{bottom:715.140060px;}
.y24{bottom:718.560070px;}
.y84{bottom:723.060070px;}
.y49{bottom:723.240074px;}
.y66{bottom:735.300076px;}
.y23{bottom:738.540081px;}
.y83{bottom:739.080059px;}
.y48{bottom:754.560070px;}
.y65{bottom:755.460056px;}
.y3c{bottom:757.620072px;}
.y22{bottom:758.700061px;}
.y64{bottom:775.620072px;}
.y21{bottom:778.860077px;}
.ya3{bottom:784.260064px;}
.y3b{bottom:791.280052px;}
.y63{bottom:795.780052px;}
.y47{bottom:796.500068px;}
.y20{bottom:798.840054px;}
.ya2{bottom:807.300076px;}
.y1f{bottom:819.000068px;}
.y3a{bottom:820.620072px;}
.yc{bottom:820.980079px;}
.y62{bottom:827.100083px;}
.ya1{bottom:830.520058px;}
.y46{bottom:842.040081px;}
.y39{bottom:849.780052px;}
.y1e{bottom:851.220051px;}
.ya0{bottom:853.740074px;}
.yb{bottom:859.860077px;}
.y61{bottom:867.600083px;}
.y1d{bottom:873.000068px;}
.y9f{bottom:876.780052px;}
.y38{bottom:879.120072px;}
.y60{bottom:887.220051px;}
.y45{bottom:890.460056px;}
.y1c{bottom:893.160049px;}
.y9e{bottom:900.000068px;}
.ya{bottom:904.320065px;}
.y37{bottom:908.280052px;}
.y44{bottom:913.500068px;}
.y82{bottom:923.940067px;}
.y1b{bottom:925.200061px;}
.y9d{bottom:934.020058px;}
.y43{bottom:936.720051px;}
.y36{bottom:937.440067px;}
.y9{bottom:940.860077px;}
.y81{bottom:945.720051px;}
.y9c{bottom:955.440067px;}
.y1a{bottom:957.420078px;}
.y42{bottom:959.940067px;}
.y35{bottom:966.780053px;}
.y80{bottom:967.500068px;}
.y9b{bottom:977.220068px;}
.y8{bottom:980.640060px;}
.y41{bottom:982.980063px;}
.y7f{bottom:989.280069px;}
.y19{bottom:989.460074px;}
.y34{bottom:995.940067px;}
.y40{bottom:1006.200061px;}
.y7e{bottom:1010.880066px;}
.y9a{bottom:1011.060070px;}
.y7{bottom:1014.300058px;}
.y18{bottom:1021.680073px;}
.y33{bottom:1025.280069px;}
.y3f{bottom:1029.420061px;}
.y7d{bottom:1032.660067px;}
.y3e{bottom:1052.460074px;}
.y17{bottom:1053.720068px;}
.y32{bottom:1054.440067px;}
.y3d{bottom:1075.680073px;}
.y7c{bottom:1076.220068px;}
.y16{bottom:1085.940067px;}
.y31{bottom:1088.280069px;}
.y7b{bottom:1097.820065px;}
.y30{bottom:1112.580059px;}
.y7a{bottom:1119.600065px;}
.y15{bottom:1119.780069px;}
.y3{bottom:1171.620063px;}
.y14{bottom:1176.660067px;}
.y1{bottom:1189.620063px;}
.y13{bottom:1196.100065px;}
.h2{height:20.160002px;}
.h4{height:20.160050px;}
.h10{height:50.231891px;}
.h9{height:56.576730px;}
.hf{height:59.441261px;}
.he{height:61.192109px;}
.h3{height:65.886904px;}
.ha{height:67.827608px;}
.hd{height:68.557263px;}
.h5{height:71.615971px;}
.hc{height:74.042066px;}
.h6{height:86.258729px;}
.hb{height:91.181162px;}
.h7{height:107.423950px;}
.h8{height:119.598660px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:7.740006px;}
.w3{width:8.279983px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:84.959997px;}
.x8{left:117.900003px;}
.x9{left:182.699993px;}
.x6{left:384.300007px;}
.x5{left:427.680005px;}
.x2{left:446.040012px;}
.x3{left:553.500000px;}
.xd{left:604.980011px;}
.xc{left:613.980011px;}
.x4{left:685.799973px;}
.xa{left:764.460023px;}
.xb{left:788.399987px;}
.x7{left:799.559967px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.007933pt;}
.ls5{letter-spacing:0.025991pt;}
.ls0{letter-spacing:0.031552pt;}
.ls6{letter-spacing:0.050966pt;}
.ls8{letter-spacing:0.053320pt;}
.ls3{letter-spacing:0.093008pt;}
.lsa{letter-spacing:0.132578pt;}
.lsb{letter-spacing:0.154400pt;}
.ls9{letter-spacing:0.154464pt;}
.ls7{letter-spacing:0.326532pt;}
.ls1{letter-spacing:158.852610pt;}
.ws2{word-spacing:-13.307422pt;}
.ws0{word-spacing:-11.427012pt;}
.ws1{word-spacing:0.000000pt;}
._b{margin-left:-11.886246pt;}
._d{margin-left:-8.958635pt;}
._c{margin-left:-5.099218pt;}
._8{margin-left:-3.938644pt;}
._3{margin-left:-2.629829pt;}
._0{margin-left:-1.545062pt;}
._1{width:1.736657pt;}
._f{width:3.015800pt;}
._14{width:3.985833pt;}
._a{width:5.069496pt;}
._9{width:6.078228pt;}
._e{width:7.303951pt;}
._7{width:8.422483pt;}
._13{width:9.694336pt;}
._10{width:11.483678pt;}
._11{width:12.410245pt;}
._12{width:14.776492pt;}
._15{width:16.576086pt;}
._5{width:673.596469pt;}
._4{width:754.519074pt;}
._2{width:895.458320pt;}
._6{width:932.123794pt;}
.fs3{font-size:48.002000pt;}
.fs7{font-size:50.562000pt;}
.fs4{font-size:53.122000pt;}
.fs0{font-size:58.882400pt;}
.fs1{font-size:64.002404pt;}
.fs9{font-size:69.122804pt;}
.fs2{font-size:74.882796pt;}
.fs8{font-size:85.123200pt;}
.fs5{font-size:96.003600pt;}
.fs6{font-size:106.884004pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:4.000000pt;}
.y2{bottom:4.000004pt;}
.y6{bottom:51.200074pt;}
.y4{bottom:67.200074pt;}
.y79{bottom:118.400086pt;}
.y99{bottom:119.360047pt;}
.y78{bottom:137.760071pt;}
.y98{bottom:138.560059pt;}
.y77{bottom:156.960083pt;}
.y97{bottom:168.640076pt;}
.y56{bottom:171.520081pt;}
.y76{bottom:175.680054pt;}
.y12{bottom:187.520081pt;}
.y96{bottom:187.840088pt;}
.y55{bottom:190.560059pt;}
.y75{bottom:193.280030pt;}
.y95{bottom:207.200074pt;}
.y74{bottom:207.520081pt;}
.y54{bottom:209.920044pt;}
.y11{bottom:216.640076pt;}
.y94{bottom:226.560059pt;}
.y53{bottom:229.280030pt;}
.y10{bottom:244.000061pt;}
.y93{bottom:245.760071pt;}
.y52{bottom:258.720032pt;}
.y92{bottom:265.120057pt;}
.yf{bottom:268.000061pt;}
.y51{bottom:276.160035pt;}
.y91{bottom:284.480042pt;}
.y50{bottom:301.120057pt;}
.y90{bottom:314.560059pt;}
.y8f{bottom:333.760071pt;}
.y5f{bottom:339.520081pt;}
.y2f{bottom:342.240052pt;}
.y8e{bottom:355.520081pt;}
.ye{bottom:356.480042pt;}
.y5e{bottom:358.560059pt;}
.y2e{bottom:372.160035pt;}
.y5d{bottom:377.920044pt;}
.yd{bottom:393.920044pt;}
.y5c{bottom:397.280030pt;}
.y2d{bottom:402.240052pt;}
.y73{bottom:410.880066pt;}
.y8d{bottom:416.480042pt;}
.y5b{bottom:425.120057pt;}
.y72{bottom:430.240052pt;}
.y2c{bottom:432.160035pt;}
.y8c{bottom:435.840088pt;}
.y71{bottom:449.600037pt;}
.y8b{bottom:455.200074pt;}
.y5a{bottom:461.120057pt;}
.y2b{bottom:462.240052pt;}
.y70{bottom:468.800049pt;}
.y8a{bottom:474.400086pt;}
.y59{bottom:478.560059pt;}
.y2a{bottom:481.280030pt;}
.y6f{bottom:488.160035pt;}
.y58{bottom:496.160035pt;}
.y29{bottom:500.640076pt;}
.y89{bottom:502.560059pt;}
.y6e{bottom:507.520081pt;}
.y57{bottom:521.120057pt;}
.y6d{bottom:526.880066pt;}
.y4f{bottom:527.040039pt;}
.y28{bottom:530.880066pt;}
.y88{bottom:540.640076pt;}
.y6c{bottom:546.080079pt;}
.y4e{bottom:546.240052pt;}
.y27{bottom:549.920044pt;}
.y87{bottom:559.680054pt;}
.y6b{bottom:564.000061pt;}
.y4d{bottom:565.600037pt;}
.y26{bottom:580.160035pt;}
.y6a{bottom:581.920044pt;}
.y4c{bottom:584.960083pt;}
.y86{bottom:587.840088pt;}
.y69{bottom:599.840088pt;}
.y4b{bottom:604.160035pt;}
.y25{bottom:608.480042pt;}
.y68{bottom:617.760071pt;}
.y4a{bottom:623.520050pt;}
.y85{bottom:625.120057pt;}
.y67{bottom:635.680054pt;}
.y24{bottom:638.720063pt;}
.y84{bottom:642.720063pt;}
.y49{bottom:642.880066pt;}
.y66{bottom:653.600068pt;}
.y23{bottom:656.480072pt;}
.y83{bottom:656.960053pt;}
.y48{bottom:670.720063pt;}
.y65{bottom:671.520050pt;}
.y3c{bottom:673.440064pt;}
.y22{bottom:674.400055pt;}
.y64{bottom:689.440064pt;}
.y21{bottom:692.320069pt;}
.ya3{bottom:697.120057pt;}
.y3b{bottom:703.360047pt;}
.y63{bottom:707.360047pt;}
.y47{bottom:708.000061pt;}
.y20{bottom:710.080048pt;}
.ya2{bottom:717.600068pt;}
.y1f{bottom:728.000061pt;}
.y3a{bottom:729.440064pt;}
.yc{bottom:729.760071pt;}
.y62{bottom:735.200074pt;}
.ya1{bottom:738.240052pt;}
.y46{bottom:748.480072pt;}
.y39{bottom:755.360047pt;}
.y1e{bottom:756.640046pt;}
.ya0{bottom:758.880066pt;}
.yb{bottom:764.320069pt;}
.y61{bottom:771.200074pt;}
.y1d{bottom:776.000061pt;}
.y9f{bottom:779.360047pt;}
.y38{bottom:781.440064pt;}
.y60{bottom:788.640046pt;}
.y45{bottom:791.520050pt;}
.y1c{bottom:793.920044pt;}
.y9e{bottom:800.000061pt;}
.ya{bottom:803.840058pt;}
.y37{bottom:807.360047pt;}
.y44{bottom:812.000061pt;}
.y82{bottom:821.280060pt;}
.y1b{bottom:822.400055pt;}
.y9d{bottom:830.240052pt;}
.y43{bottom:832.640046pt;}
.y36{bottom:833.280060pt;}
.y9{bottom:836.320069pt;}
.y81{bottom:840.640046pt;}
.y9c{bottom:849.280060pt;}
.y1a{bottom:851.040070pt;}
.y42{bottom:853.280060pt;}
.y35{bottom:859.360047pt;}
.y80{bottom:860.000061pt;}
.y9b{bottom:868.640061pt;}
.y8{bottom:871.680054pt;}
.y41{bottom:873.760056pt;}
.y7f{bottom:879.360062pt;}
.y19{bottom:879.520066pt;}
.y34{bottom:885.280060pt;}
.y40{bottom:894.400055pt;}
.y7e{bottom:898.560059pt;}
.y9a{bottom:898.720063pt;}
.y7{bottom:901.600052pt;}
.y18{bottom:908.160065pt;}
.y33{bottom:911.360062pt;}
.y3f{bottom:915.040055pt;}
.y7d{bottom:917.920060pt;}
.y3e{bottom:935.520066pt;}
.y17{bottom:936.640061pt;}
.y32{bottom:937.280060pt;}
.y3d{bottom:956.160065pt;}
.y7c{bottom:956.640061pt;}
.y16{bottom:965.280060pt;}
.y31{bottom:967.360062pt;}
.y7b{bottom:975.840058pt;}
.y30{bottom:988.960053pt;}
.y7a{bottom:995.200058pt;}
.y15{bottom:995.360062pt;}
.y3{bottom:1041.440056pt;}
.y14{bottom:1045.920060pt;}
.y1{bottom:1057.440056pt;}
.y13{bottom:1063.200058pt;}
.h2{height:17.920002pt;}
.h4{height:17.920044pt;}
.h10{height:44.650570pt;}
.h9{height:50.290427pt;}
.hf{height:52.836677pt;}
.he{height:54.392985pt;}
.h3{height:58.566137pt;}
.ha{height:60.291207pt;}
.hd{height:60.939789pt;}
.h5{height:63.658641pt;}
.hc{height:65.815170pt;}
.h6{height:76.674425pt;}
.hb{height:81.049922pt;}
.h7{height:95.487956pt;}
.h8{height:106.309920pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:6.880005pt;}
.w3{width:7.359985pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:75.519997pt;}
.x8{left:104.800003pt;}
.x9{left:162.399994pt;}
.x6{left:341.600006pt;}
.x5{left:380.160004pt;}
.x2{left:396.480011pt;}
.x3{left:492.000000pt;}
.xd{left:537.760010pt;}
.xc{left:545.760010pt;}
.x4{left:609.599976pt;}
.xa{left:679.520020pt;}
.xb{left:700.799988pt;}
.x7{left:710.719971pt;}
}




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