
    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_f669996f064874cf726b12b2.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.762207;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_021864f328a14754faadd5ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.962402;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_498cc5d98ddb4b7d395b01ac.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.958496;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_f5f9474fc9f3af29a84d8cd1.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.760254;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_5bf1e57c60caa25aeb56f252.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666504;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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.010969px;}
.ls2{letter-spacing:175.685861px;}
.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:-59.762250px;}
.ws2{word-spacing:-41.485140px;}
.ws3{word-spacing:-21.540394px;}
.ws1{word-spacing:-19.944749px;}
.ws0{word-spacing:0.000000px;}
._b{margin-left:-4.770206px;}
._a{margin-left:-3.609621px;}
._6{margin-left:-2.163682px;}
._2{margin-left:-1.029055px;}
._0{width:1.030539px;}
._1{width:2.070396px;}
._3{width:3.956751px;}
._1e{width:5.022196px;}
._15{width:6.174101px;}
._f{width:7.341988px;}
._4{width:8.367056px;}
._5{width:9.937891px;}
._10{width:11.089162px;}
._11{width:12.179104px;}
._18{width:13.435090px;}
._22{width:15.086052px;}
._23{width:16.625216px;}
._25{width:17.630717px;}
._1a{width:18.666983px;}
._19{width:19.822807px;}
._21{width:23.179318px;}
._9{width:24.786710px;}
._7{width:25.888314px;}
._8{width:27.184555px;}
._24{width:28.234317px;}
._1b{width:29.987720px;}
._1c{width:31.552831px;}
._1d{width:32.554348px;}
._17{width:33.782895px;}
._16{width:34.875346px;}
._26{width:37.142842px;}
._20{width:38.684436px;}
._c{width:40.895111px;}
._14{width:44.843021px;}
._12{width:45.965166px;}
._13{width:47.229158px;}
._1f{width:49.611678px;}
._27{width:56.363403px;}
._28{width:57.395714px;}
._e{width:66.427404px;}
._d{width:67.658144px;}
._2b{width:82.298326px;}
._2a{width:129.682899px;}
._29{width:133.284832px;}
.fc4{color:rgb(7,133,77);}
.fc3{color:rgb(11,201,117);}
.fc1{color:transparent;}
.fc6{color:rgb(34,34,34);}
.fc5{color:rgb(0,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(38,38,38);}
.fs5{font-size:59.762250px;}
.fs0{font-size:72.002705px;}
.fs1{font-size:77.763154px;}
.fs2{font-size:84.243145px;}
.fs4{font-size:108.004050px;}
.fs3{font-size:149.765850px;}
.y8{bottom:-9.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.779997px;}
.y6{bottom:3.960000px;}
.ya{bottom:58.320099px;}
.y1{bottom:91.440033px;}
.y2e{bottom:118.980079px;}
.y84{bottom:127.620072px;}
.y56{bottom:131.940033px;}
.y2d{bottom:146.160049px;}
.y83{bottom:149.940033px;}
.y55{bottom:152.280052px;}
.y82{bottom:172.440033px;}
.y54{bottom:172.980079px;}
.y2c{bottom:173.340088px;}
.y53{bottom:193.680039px;}
.y81{bottom:194.760064px;}
.y2b{bottom:200.520058px;}
.y52{bottom:214.380066px;}
.y80{bottom:217.260064px;}
.y2a{bottom:227.700096px;}
.y51{bottom:235.800041px;}
.y7f{bottom:239.760064px;}
.y29{bottom:254.880066px;}
.y50{bottom:259.920043px;}
.y7e{bottom:262.080093px;}
.y28{bottom:281.880066px;}
.y4f{bottom:284.040047px;}
.y7d{bottom:284.580093px;}
.y7c{bottom:306.900055px;}
.y4e{bottom:308.160049px;}
.y27{bottom:309.060036px;}
.y7b{bottom:329.400055px;}
.y4d{bottom:332.460091px;}
.y26{bottom:336.240074px;}
.y7a{bottom:351.720085px;}
.y4c{bottom:356.580093px;}
.y25{bottom:363.420043px;}
.y79{bottom:374.220085px;}
.y4b{bottom:380.700096px;}
.y24{bottom:390.600083px;}
.y78{bottom:396.720085px;}
.y4a{bottom:404.820099px;}
.y23{bottom:416.880066px;}
.y77{bottom:419.040047px;}
.y49{bottom:428.940033px;}
.y22{bottom:441.360077px;}
.y76{bottom:441.540047px;}
.y48{bottom:453.060036px;}
.y75{bottom:463.860077px;}
.y21{bottom:468.540047px;}
.y47{bottom:477.180039px;}
.y74{bottom:486.360077px;}
.y20{bottom:495.720085px;}
.y46{bottom:501.480079px;}
.y73{bottom:508.680039px;}
.y1f{bottom:522.900055px;}
.y45{bottom:525.600083px;}
.y72{bottom:531.180039px;}
.y44{bottom:549.720085px;}
.y1e{bottom:549.900055px;}
.y71{bottom:553.680039px;}
.y43{bottom:573.840088px;}
.y70{bottom:576.000068px;}
.y1d{bottom:577.080093px;}
.y42{bottom:597.960091px;}
.y6f{bottom:598.500068px;}
.y1c{bottom:604.260064px;}
.y6e{bottom:620.820099px;}
.y41{bottom:622.080093px;}
.y85{bottom:622.620072px;}
.y1b{bottom:631.440033px;}
.y6d{bottom:643.320099px;}
.y40{bottom:646.380066px;}
.y1a{bottom:658.620072px;}
.y6c{bottom:665.640060px;}
.y3f{bottom:670.500068px;}
.y19{bottom:685.800041px;}
.y6b{bottom:688.140060px;}
.y3e{bottom:694.620072px;}
.y6a{bottom:710.640060px;}
.y18{bottom:712.800076px;}
.y3d{bottom:718.740074px;}
.y69{bottom:732.960056px;}
.y17{bottom:741.240074px;}
.y3c{bottom:742.860077px;}
.y68{bottom:755.460056px;}
.y3b{bottom:766.980079px;}
.y16{bottom:775.260064px;}
.y67{bottom:777.780052px;}
.y3a{bottom:791.100083px;}
.y66{bottom:800.280052px;}
.y15{bottom:809.460056px;}
.y39{bottom:815.400055px;}
.y65{bottom:822.600083px;}
.y38{bottom:839.520058px;}
.y14{bottom:843.480079px;}
.y64{bottom:845.100083px;}
.y37{bottom:863.640060px;}
.y63{bottom:867.600083px;}
.y13{bottom:877.500068px;}
.y36{bottom:887.760064px;}
.y62{bottom:889.920078px;}
.y12{bottom:910.260064px;}
.y35{bottom:911.880066px;}
.y61{bottom:912.420078px;}
.y60{bottom:934.740074px;}
.y34{bottom:936.000068px;}
.y11{bottom:937.440067px;}
.y5f{bottom:957.240074px;}
.y33{bottom:960.300076px;}
.y10{bottom:964.620072px;}
.y5e{bottom:979.560070px;}
.y32{bottom:984.420061px;}
.yf{bottom:995.040064px;}
.y5d{bottom:1002.060070px;}
.y31{bottom:1008.540064px;}
.y5c{bottom:1024.560070px;}
.y30{bottom:1032.660067px;}
.ye{bottom:1038.240074px;}
.y5b{bottom:1046.880066px;}
.y2f{bottom:1056.780069px;}
.y5a{bottom:1069.380066px;}
.yd{bottom:1080.900072px;}
.y59{bottom:1091.700061px;}
.yc{bottom:1108.080059px;}
.y58{bottom:1114.200061px;}
.yb{bottom:1135.260064px;}
.y57{bottom:1136.520066px;}
.y9{bottom:1162.080068px;}
.y7{bottom:1179.720068px;}
.y3{bottom:1188.360068px;}
.y5{bottom:1208.880066px;}
.y2{bottom:1212.840066px;}
.h7{height:7.200001px;}
.h6{height:7.739997px;}
.h4{height:20.519998px;}
.h5{height:20.700000px;}
.h8{height:53.861398px;}
.h2{height:54.002028px;}
.h3{height:54.142659px;}
.he{height:58.170485px;}
.h9{height:58.322366px;}
.hd{height:58.474247px;}
.ha{height:63.017822px;}
.hc{height:80.792092px;}
.hb{height:112.616899px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w4{width:7.740006px;}
.w6{width:10.079990px;}
.w5{width:10.079999px;}
.w3{width:10.080007px;}
.w2{width:154.079999px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:67.860000px;}
.x1{left:81.000000px;}
.x8{left:126.540003px;}
.xf{left:134.099997px;}
.xd{left:205.740006px;}
.x3{left:221.939999px;}
.xc{left:272.340002px;}
.x9{left:346.319996px;}
.xb{left:364.680005px;}
.xe{left:365.939999px;}
.xa{left:410.399987px;}
.x7{left:446.399987px;}
.x6{left:524.879998px;}
.x4{left:732.419975px;}
.x5{left:822.600014px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009750pt;}
.ls2{letter-spacing:156.165210pt;}
.ws4{word-spacing:-53.122000pt;}
.ws2{word-spacing:-36.875680pt;}
.ws3{word-spacing:-19.147017pt;}
.ws1{word-spacing:-17.728666pt;}
.ws0{word-spacing:0.000000pt;}
._b{margin-left:-4.240183pt;}
._a{margin-left:-3.208552pt;}
._6{margin-left:-1.923273pt;}
._2{margin-left:-0.914716pt;}
._0{width:0.916034pt;}
._1{width:1.840352pt;}
._3{width:3.517112pt;}
._1e{width:4.464174pt;}
._15{width:5.488090pt;}
._f{width:6.526211pt;}
._4{width:7.437383pt;}
._5{width:8.833681pt;}
._10{width:9.857033pt;}
._11{width:10.825870pt;}
._18{width:11.942302pt;}
._22{width:13.409824pt;}
._23{width:14.777970pt;}
._25{width:15.671749pt;}
._1a{width:16.592874pt;}
._19{width:17.620273pt;}
._21{width:20.603839pt;}
._9{width:22.032631pt;}
._7{width:23.011834pt;}
._8{width:24.164049pt;}
._24{width:25.097171pt;}
._1b{width:26.655751pt;}
._1c{width:28.046960pt;}
._1d{width:28.937198pt;}
._17{width:30.029240pt;}
._16{width:31.000308pt;}
._26{width:33.015859pt;}
._20{width:34.386165pt;}
._c{width:36.351210pt;}
._14{width:39.860463pt;}
._12{width:40.857926pt;}
._13{width:41.981474pt;}
._1f{width:44.099269pt;}
._27{width:50.100802pt;}
._28{width:51.018412pt;}
._e{width:59.046581pt;}
._d{width:60.140572pt;}
._2b{width:73.154068pt;}
._2a{width:115.273688pt;}
._29{width:118.475406pt;}
.fs5{font-size:53.122000pt;}
.fs0{font-size:64.002404pt;}
.fs1{font-size:69.122804pt;}
.fs2{font-size:74.882796pt;}
.fs4{font-size:96.003600pt;}
.fs3{font-size:133.125200pt;}
.y8{bottom:-8.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:3.359997pt;}
.y6{bottom:3.520000pt;}
.ya{bottom:51.840088pt;}
.y1{bottom:81.280030pt;}
.y2e{bottom:105.760071pt;}
.y84{bottom:113.440064pt;}
.y56{bottom:117.280030pt;}
.y2d{bottom:129.920044pt;}
.y83{bottom:133.280030pt;}
.y55{bottom:135.360047pt;}
.y82{bottom:153.280030pt;}
.y54{bottom:153.760071pt;}
.y2c{bottom:154.080079pt;}
.y53{bottom:172.160035pt;}
.y81{bottom:173.120057pt;}
.y2b{bottom:178.240052pt;}
.y52{bottom:190.560059pt;}
.y80{bottom:193.120057pt;}
.y2a{bottom:202.400086pt;}
.y51{bottom:209.600037pt;}
.y7f{bottom:213.120057pt;}
.y29{bottom:226.560059pt;}
.y50{bottom:231.040039pt;}
.y7e{bottom:232.960083pt;}
.y28{bottom:250.560059pt;}
.y4f{bottom:252.480042pt;}
.y7d{bottom:252.960083pt;}
.y7c{bottom:272.800049pt;}
.y4e{bottom:273.920044pt;}
.y27{bottom:274.720032pt;}
.y7b{bottom:292.800049pt;}
.y4d{bottom:295.520081pt;}
.y26{bottom:298.880066pt;}
.y7a{bottom:312.640076pt;}
.y4c{bottom:316.960083pt;}
.y25{bottom:323.040039pt;}
.y79{bottom:332.640076pt;}
.y4b{bottom:338.400086pt;}
.y24{bottom:347.200074pt;}
.y78{bottom:352.640076pt;}
.y4a{bottom:359.840088pt;}
.y23{bottom:370.560059pt;}
.y77{bottom:372.480042pt;}
.y49{bottom:381.280030pt;}
.y22{bottom:392.320069pt;}
.y76{bottom:392.480042pt;}
.y48{bottom:402.720032pt;}
.y75{bottom:412.320069pt;}
.y21{bottom:416.480042pt;}
.y47{bottom:424.160035pt;}
.y74{bottom:432.320069pt;}
.y20{bottom:440.640076pt;}
.y46{bottom:445.760071pt;}
.y73{bottom:452.160035pt;}
.y1f{bottom:464.800049pt;}
.y45{bottom:467.200074pt;}
.y72{bottom:472.160035pt;}
.y44{bottom:488.640076pt;}
.y1e{bottom:488.800049pt;}
.y71{bottom:492.160035pt;}
.y43{bottom:510.080079pt;}
.y70{bottom:512.000061pt;}
.y1d{bottom:512.960083pt;}
.y42{bottom:531.520081pt;}
.y6f{bottom:532.000061pt;}
.y1c{bottom:537.120057pt;}
.y6e{bottom:551.840088pt;}
.y41{bottom:552.960083pt;}
.y85{bottom:553.440064pt;}
.y1b{bottom:561.280030pt;}
.y6d{bottom:571.840088pt;}
.y40{bottom:574.560059pt;}
.y1a{bottom:585.440064pt;}
.y6c{bottom:591.680054pt;}
.y3f{bottom:596.000061pt;}
.y19{bottom:609.600037pt;}
.y6b{bottom:611.680054pt;}
.y3e{bottom:617.440064pt;}
.y6a{bottom:631.680054pt;}
.y18{bottom:633.600068pt;}
.y3d{bottom:638.880066pt;}
.y69{bottom:651.520050pt;}
.y17{bottom:658.880066pt;}
.y3c{bottom:660.320069pt;}
.y68{bottom:671.520050pt;}
.y3b{bottom:681.760071pt;}
.y16{bottom:689.120057pt;}
.y67{bottom:691.360047pt;}
.y3a{bottom:703.200074pt;}
.y66{bottom:711.360047pt;}
.y15{bottom:719.520050pt;}
.y39{bottom:724.800049pt;}
.y65{bottom:731.200074pt;}
.y38{bottom:746.240052pt;}
.y14{bottom:749.760071pt;}
.y64{bottom:751.200074pt;}
.y37{bottom:767.680054pt;}
.y63{bottom:771.200074pt;}
.y13{bottom:780.000061pt;}
.y36{bottom:789.120057pt;}
.y62{bottom:791.040070pt;}
.y12{bottom:809.120057pt;}
.y35{bottom:810.560059pt;}
.y61{bottom:811.040070pt;}
.y60{bottom:830.880066pt;}
.y34{bottom:832.000061pt;}
.y11{bottom:833.280060pt;}
.y5f{bottom:850.880066pt;}
.y33{bottom:853.600068pt;}
.y10{bottom:857.440064pt;}
.y5e{bottom:870.720063pt;}
.y32{bottom:875.040055pt;}
.yf{bottom:884.480057pt;}
.y5d{bottom:890.720063pt;}
.y31{bottom:896.480057pt;}
.y5c{bottom:910.720063pt;}
.y30{bottom:917.920060pt;}
.ye{bottom:922.880066pt;}
.y5b{bottom:930.560059pt;}
.y2f{bottom:939.360062pt;}
.y5a{bottom:950.560059pt;}
.yd{bottom:960.800064pt;}
.y59{bottom:970.400055pt;}
.yc{bottom:984.960053pt;}
.y58{bottom:990.400055pt;}
.yb{bottom:1009.120057pt;}
.y57{bottom:1010.240059pt;}
.y9{bottom:1032.960061pt;}
.y7{bottom:1048.640061pt;}
.y3{bottom:1056.320061pt;}
.y5{bottom:1074.560059pt;}
.y2{bottom:1078.080059pt;}
.h7{height:6.400001pt;}
.h6{height:6.879997pt;}
.h4{height:18.239998pt;}
.h5{height:18.400000pt;}
.h8{height:47.876798pt;}
.h2{height:48.001803pt;}
.h3{height:48.126808pt;}
.he{height:51.707098pt;}
.h9{height:51.842103pt;}
.hd{height:51.977108pt;}
.ha{height:56.015842pt;}
.hc{height:71.815193pt;}
.hb{height:100.103910pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w4{width:6.880005pt;}
.w6{width:8.959991pt;}
.w5{width:8.959999pt;}
.w3{width:8.960006pt;}
.w2{width:136.959999pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:60.320000pt;}
.x1{left:72.000000pt;}
.x8{left:112.480003pt;}
.xf{left:119.199997pt;}
.xd{left:182.880005pt;}
.x3{left:197.279999pt;}
.xc{left:242.080002pt;}
.x9{left:307.839996pt;}
.xb{left:324.160004pt;}
.xe{left:325.279999pt;}
.xa{left:364.799988pt;}
.x7{left:396.799988pt;}
.x6{left:466.559998pt;}
.x4{left:651.039978pt;}
.x5{left:731.200012pt;}
}




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