
    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_31362076783c08c7100d8db2.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_5760743c6c0f2257c65a9076.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_d48397ed250d8c02ba13b354.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_c9475da225f7de5a7281520b.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.084961;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_6991e02949b2233899cf8e76.woff2')format("woff");}.ff5{font-family:ff5;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;}
.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;}
.v1{vertical-align:1.440036px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.007763px;}
.ls3{letter-spacing:1.439325px;}
.ls2{letter-spacing:29.519280px;}
.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:-19.814330px;}
.ws2{word-spacing:-16.560675px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-2.101091px;}
._1{margin-left:-1.080045px;}
._0{width:1.086373px;}
._1e{width:2.087701px;}
._2{width:3.149217px;}
._4{width:4.298591px;}
._b{width:5.943390px;}
._e{width:7.407538px;}
._f{width:8.719670px;}
._15{width:10.489635px;}
._1c{width:11.494402px;}
._1d{width:12.715989px;}
._5{width:13.822988px;}
._12{width:15.475908px;}
._17{width:18.370446px;}
._14{width:20.004778px;}
._16{width:21.120812px;}
._19{width:22.589818px;}
._1f{width:23.862390px;}
._9{width:25.382124px;}
._8{width:26.739258px;}
._c{width:28.484361px;}
._d{width:29.577107px;}
._7{width:31.551170px;}
._6{width:32.557511px;}
._11{width:34.461126px;}
._10{width:35.627446px;}
._1b{width:36.983564px;}
._1a{width:38.233682px;}
._21{width:40.242181px;}
._a{width:42.207209px;}
._24{width:43.587179px;}
._22{width:44.769974px;}
._23{width:45.906383px;}
._18{width:47.917278px;}
._13{width:139.165821px;}
._3{width:179.423891px;}
.fc1{color:rgb(192,192,192);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:5.760225px;}
.fs0{font-size:54.002250px;}
.fs4{font-size:59.762250px;}
.fs1{font-size:66.242700px;}
.fs2{font-size:72.002705px;}
.y0{bottom:0.000000px;}
.yd{bottom:3.599997px;}
.y8{bottom:3.779984px;}
.y7{bottom:301.500068px;}
.y6{bottom:305.280052px;}
.y5{bottom:322.380066px;}
.y36{bottom:349.200096px;}
.y4b{bottom:361.620072px;}
.y35{bottom:368.100083px;}
.y4a{bottom:380.520058px;}
.y67{bottom:387.000068px;}
.y34{bottom:387.180039px;}
.y49{bottom:399.420043px;}
.y33{bottom:406.080093px;}
.y48{bottom:418.500068px;}
.y66{bottom:424.980079px;}
.y32{bottom:425.160049px;}
.y47{bottom:437.400055px;}
.y31{bottom:444.060036px;}
.y46{bottom:456.480079px;}
.y65{bottom:462.960091px;}
.y30{bottom:463.140060px;}
.y45{bottom:475.380066px;}
.y64{bottom:481.860077px;}
.y2f{bottom:482.040047px;}
.y44{bottom:494.280052px;}
.y2e{bottom:500.940033px;}
.y43{bottom:513.360077px;}
.y63{bottom:519.840088px;}
.y2d{bottom:520.020058px;}
.y42{bottom:532.260064px;}
.y2c{bottom:538.920043px;}
.y41{bottom:551.340088px;}
.y62{bottom:557.820099px;}
.y2b{bottom:558.000068px;}
.y40{bottom:570.240074px;}
.y61{bottom:576.720085px;}
.y2a{bottom:576.900055px;}
.y3f{bottom:585.180039px;}
.y29{bottom:595.440033px;}
.y60{bottom:595.800041px;}
.y5f{bottom:614.700096px;}
.y26{bottom:615.240074px;}
.y5e{bottom:633.780052px;}
.y25{bottom:634.140060px;}
.y28{bottom:634.500068px;}
.y5d{bottom:652.680039px;}
.y24{bottom:653.220085px;}
.y27{bottom:653.580093px;}
.y6a{bottom:669.240074px;}
.y6b{bottom:669.960091px;}
.y5c{bottom:671.760064px;}
.y23{bottom:672.840088px;}
.y69{bottom:688.860077px;}
.y5b{bottom:690.660049px;}
.y22{bottom:691.920078px;}
.y68{bottom:708.300076px;}
.y5a{bottom:709.560070px;}
.y21{bottom:711.900055px;}
.y59{bottom:728.640060px;}
.y20{bottom:730.980079px;}
.y58{bottom:747.540081px;}
.y1f{bottom:749.880066px;}
.y57{bottom:766.620072px;}
.y1e{bottom:768.960056px;}
.y56{bottom:785.520058px;}
.y1d{bottom:787.860077px;}
.y55{bottom:804.420078px;}
.y1c{bottom:806.760064px;}
.y54{bottom:823.500068px;}
.y1b{bottom:825.840054px;}
.y53{bottom:842.400055px;}
.y1a{bottom:844.740074px;}
.y52{bottom:861.480079px;}
.y19{bottom:863.820065px;}
.y51{bottom:880.380066px;}
.y18{bottom:882.720051px;}
.y50{bottom:899.280052px;}
.y17{bottom:901.620072px;}
.y4f{bottom:918.360077px;}
.y16{bottom:920.700061px;}
.y4e{bottom:937.260064px;}
.y15{bottom:939.240074px;}
.y4d{bottom:956.340054px;}
.y14{bottom:959.040081px;}
.y4c{bottom:975.240074px;}
.y13{bottom:978.120072px;}
.y3e{bottom:994.140060px;}
.y12{bottom:998.100065px;}
.y3d{bottom:1013.220068px;}
.y11{bottom:1019.880066px;}
.y3c{bottom:1032.120072px;}
.y10{bottom:1041.660067px;}
.y3b{bottom:1051.200061px;}
.yf{bottom:1063.440067px;}
.y3a{bottom:1070.100065px;}
.ye{bottom:1082.520058px;}
.y39{bottom:1089.000068px;}
.yc{bottom:1100.160067px;}
.yb{bottom:1103.760064px;}
.y38{bottom:1108.080059px;}
.ya{bottom:1122.660067px;}
.y37{bottom:1126.980063px;}
.y9{bottom:1140.660067px;}
.y4{bottom:1145.880066px;}
.y3{bottom:1164.420069px;}
.y2{bottom:1180.260064px;}
.y1{bottom:1196.100065px;}
.h6{height:4.064221px;}
.h8{height:18.539994px;}
.h5{height:19.259996px;}
.h2{height:38.682276px;}
.ha{height:41.728524px;}
.hd{height:46.253448px;}
.h9{height:46.738624px;}
.h3{height:47.450215px;}
.hc{height:48.420567px;}
.hb{height:49.860603px;}
.h4{height:50.275326px;}
.h7{height:53.757504px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w2{width:4.320030px;}
.w3{width:8.100013px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:166.860008px;}
.x15{left:175.319996px;}
.xc{left:190.800007px;}
.x10{left:208.979994px;}
.x2{left:215.099997px;}
.x16{left:217.439999px;}
.x12{left:223.560001px;}
.x1{left:228.780001px;}
.xb{left:236.159998px;}
.x11{left:237.240006px;}
.x9{left:274.680005px;}
.xf{left:282.960005px;}
.x3{left:375.300007px;}
.x13{left:383.759994px;}
.x6{left:427.500000px;}
.xe{left:433.980011px;}
.x4{left:442.079990px;}
.x14{left:450.540012px;}
.x7{left:458.279983px;}
.xd{left:463.319996px;}
.x17{left:582.840019px;}
.x8{left:600.480011px;}
.xa{left:717.480011px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:1.280032pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.006900pt;}
.ls3{letter-spacing:1.279400pt;}
.ls2{letter-spacing:26.239360pt;}
.ws0{word-spacing:-17.612738pt;}
.ws2{word-spacing:-14.720600pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-1.867637pt;}
._1{margin-left:-0.960040pt;}
._0{width:0.965665pt;}
._1e{width:1.855734pt;}
._2{width:2.799304pt;}
._4{width:3.820970pt;}
._b{width:5.283013pt;}
._e{width:6.584478pt;}
._f{width:7.750818pt;}
._15{width:9.324120pt;}
._1c{width:10.217246pt;}
._1d{width:11.303101pt;}
._5{width:12.287101pt;}
._12{width:13.756362pt;}
._17{width:16.329286pt;}
._14{width:17.782025pt;}
._16{width:18.774055pt;}
._19{width:20.079838pt;}
._1f{width:21.211013pt;}
._9{width:22.561888pt;}
._8{width:23.768230pt;}
._c{width:25.319432pt;}
._d{width:26.290762pt;}
._7{width:28.045484pt;}
._6{width:28.940009pt;}
._11{width:30.632112pt;}
._10{width:31.668841pt;}
._1b{width:32.874279pt;}
._1a{width:33.985495pt;}
._21{width:35.770828pt;}
._a{width:37.517519pt;}
._24{width:38.744159pt;}
._22{width:39.795532pt;}
._23{width:40.805673pt;}
._18{width:42.593136pt;}
._13{width:123.702952pt;}
._3{width:159.487903pt;}
.fs3{font-size:5.120200pt;}
.fs0{font-size:48.002000pt;}
.fs4{font-size:53.122000pt;}
.fs1{font-size:58.882400pt;}
.fs2{font-size:64.002404pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:3.199997pt;}
.y8{bottom:3.359986pt;}
.y7{bottom:268.000061pt;}
.y6{bottom:271.360047pt;}
.y5{bottom:286.560059pt;}
.y36{bottom:310.400086pt;}
.y4b{bottom:321.440064pt;}
.y35{bottom:327.200074pt;}
.y4a{bottom:338.240052pt;}
.y67{bottom:344.000061pt;}
.y34{bottom:344.160035pt;}
.y49{bottom:355.040039pt;}
.y33{bottom:360.960083pt;}
.y48{bottom:372.000061pt;}
.y66{bottom:377.760071pt;}
.y32{bottom:377.920044pt;}
.y47{bottom:388.800049pt;}
.y31{bottom:394.720032pt;}
.y46{bottom:405.760071pt;}
.y65{bottom:411.520081pt;}
.y30{bottom:411.680054pt;}
.y45{bottom:422.560059pt;}
.y64{bottom:428.320069pt;}
.y2f{bottom:428.480042pt;}
.y44{bottom:439.360047pt;}
.y2e{bottom:445.280030pt;}
.y43{bottom:456.320069pt;}
.y63{bottom:462.080079pt;}
.y2d{bottom:462.240052pt;}
.y42{bottom:473.120057pt;}
.y2c{bottom:479.040039pt;}
.y41{bottom:490.080079pt;}
.y62{bottom:495.840088pt;}
.y2b{bottom:496.000061pt;}
.y40{bottom:506.880066pt;}
.y61{bottom:512.640076pt;}
.y2a{bottom:512.800049pt;}
.y3f{bottom:520.160035pt;}
.y29{bottom:529.280030pt;}
.y60{bottom:529.600037pt;}
.y5f{bottom:546.400086pt;}
.y26{bottom:546.880066pt;}
.y5e{bottom:563.360047pt;}
.y25{bottom:563.680054pt;}
.y28{bottom:564.000061pt;}
.y5d{bottom:580.160035pt;}
.y24{bottom:580.640076pt;}
.y27{bottom:580.960083pt;}
.y6a{bottom:594.880066pt;}
.y6b{bottom:595.520081pt;}
.y5c{bottom:597.120057pt;}
.y23{bottom:598.080079pt;}
.y69{bottom:612.320069pt;}
.y5b{bottom:613.920044pt;}
.y22{bottom:615.040070pt;}
.y68{bottom:629.600068pt;}
.y5a{bottom:630.720063pt;}
.y21{bottom:632.800049pt;}
.y59{bottom:647.680054pt;}
.y20{bottom:649.760071pt;}
.y58{bottom:664.480072pt;}
.y1f{bottom:666.560059pt;}
.y57{bottom:681.440064pt;}
.y1e{bottom:683.520050pt;}
.y56{bottom:698.240052pt;}
.y1d{bottom:700.320069pt;}
.y55{bottom:715.040070pt;}
.y1c{bottom:717.120057pt;}
.y54{bottom:732.000061pt;}
.y1b{bottom:734.080048pt;}
.y53{bottom:748.800049pt;}
.y1a{bottom:750.880066pt;}
.y52{bottom:765.760071pt;}
.y19{bottom:767.840058pt;}
.y51{bottom:782.560059pt;}
.y18{bottom:784.640046pt;}
.y50{bottom:799.360047pt;}
.y17{bottom:801.440064pt;}
.y4f{bottom:816.320069pt;}
.y16{bottom:818.400055pt;}
.y4e{bottom:833.120057pt;}
.y15{bottom:834.880066pt;}
.y4d{bottom:850.080048pt;}
.y14{bottom:852.480072pt;}
.y4c{bottom:866.880066pt;}
.y13{bottom:869.440064pt;}
.y3e{bottom:883.680054pt;}
.y12{bottom:887.200058pt;}
.y3d{bottom:900.640061pt;}
.y11{bottom:906.560059pt;}
.y3c{bottom:917.440064pt;}
.y10{bottom:925.920060pt;}
.y3b{bottom:934.400055pt;}
.yf{bottom:945.280060pt;}
.y3a{bottom:951.200058pt;}
.ye{bottom:962.240052pt;}
.y39{bottom:968.000061pt;}
.yc{bottom:977.920060pt;}
.yb{bottom:981.120057pt;}
.y38{bottom:984.960053pt;}
.ya{bottom:997.920060pt;}
.y37{bottom:1001.760056pt;}
.y9{bottom:1013.920060pt;}
.y4{bottom:1018.560059pt;}
.y3{bottom:1035.040062pt;}
.y2{bottom:1049.120057pt;}
.y1{bottom:1063.200058pt;}
.h6{height:3.612641pt;}
.h8{height:16.479995pt;}
.h5{height:17.119996pt;}
.h2{height:34.384245pt;}
.ha{height:37.092021pt;}
.hd{height:41.114176pt;}
.h9{height:41.545443pt;}
.h3{height:42.177969pt;}
.hc{height:43.040504pt;}
.hb{height:44.320536pt;}
.h4{height:44.689179pt;}
.h7{height:47.784448pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w2{width:3.840027pt;}
.w3{width:7.200012pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:148.320007pt;}
.x15{left:155.839996pt;}
.xc{left:169.600006pt;}
.x10{left:185.759995pt;}
.x2{left:191.199997pt;}
.x16{left:193.279999pt;}
.x12{left:198.720001pt;}
.x1{left:203.360001pt;}
.xb{left:209.919998pt;}
.x11{left:210.880005pt;}
.x9{left:244.160004pt;}
.xf{left:251.520004pt;}
.x3{left:333.600006pt;}
.x13{left:341.119995pt;}
.x6{left:380.000000pt;}
.xe{left:385.760010pt;}
.x4{left:392.959991pt;}
.x14{left:400.480011pt;}
.x7{left:407.359985pt;}
.xd{left:411.839996pt;}
.x17{left:518.080017pt;}
.x8{left:533.760010pt;}
.xa{left:637.760010pt;}
}




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