
    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_e6f6bc131d540f8a1cc037ac.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919922;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_64c68ec60eef86b49fe7d96f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.088867;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_ffe0b0de3c8c80292df5567a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.721000;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_131166b0fcb9c1ffae6c0083.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.879395;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_63dd37553b361d5729bec2fb.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);}
.v2{vertical-align:-47.634000px;}
.v7{vertical-align:-38.952000px;}
.v5{vertical-align:-13.410000px;}
.v4{vertical-align:-8.670000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.410000px;}
.v3{vertical-align:47.634000px;}
.v8{vertical-align:55.404000px;}
.v1{vertical-align:83.238000px;}
.lsc{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.033000px;}
.ls8{letter-spacing:0.057000px;}
.ls3{letter-spacing:0.060000px;}
.lsa{letter-spacing:0.105000px;}
.lsb{letter-spacing:0.129000px;}
.ls2{letter-spacing:0.138000px;}
.ls0{letter-spacing:0.153000px;}
.ls4{letter-spacing:0.153216px;}
.ls1{letter-spacing:0.212232px;}
.ls9{letter-spacing:0.228954px;}
.ls7{letter-spacing:41.948904px;}
.ls5{letter-spacing:41.954904px;}
.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;}
}
.ws3{word-spacing:-59.995500px;}
.ws6{word-spacing:-48.004500px;}
.ws4{word-spacing:-42.009000px;}
.ws0{word-spacing:-36.591000px;}
.ws1{word-spacing:-27.000000px;}
.ws5{word-spacing:-24.280500px;}
.ws2{word-spacing:-15.618000px;}
.ws7{word-spacing:0.000000px;}
._7{margin-left:-15.560046px;}
._2{margin-left:-13.682916px;}
._e{margin-left:-11.441268px;}
._4{margin-left:-9.507564px;}
._3{margin-left:-7.922970px;}
._11{margin-left:-5.773380px;}
._b{margin-left:-3.791100px;}
._6{margin-left:-2.747526px;}
._a{margin-left:-1.123104px;}
._1{width:1.462920px;}
._5{width:2.927928px;}
._1a{width:4.345224px;}
._f{width:5.881260px;}
._10{width:6.889476px;}
._2e{width:7.947372px;}
._19{width:8.964000px;}
._1d{width:10.131348px;}
._9{width:11.252652px;}
._c{width:13.180536px;}
._8{width:14.209332px;}
._d{width:15.365004px;}
._13{width:16.535100px;}
._12{width:17.604000px;}
._27{width:18.693930px;}
._17{width:19.764000px;}
._16{width:21.600000px;}
._1f{width:22.848474px;}
._1e{width:24.131526px;}
._1b{width:28.404000px;}
._2c{width:29.406300px;}
._2d{width:30.408600px;}
._31{width:31.590768px;}
._15{width:32.640000px;}
._14{width:33.690000px;}
._1c{width:35.964000px;}
._28{width:38.259060px;}
._23{width:39.320424px;}
._24{width:40.496676px;}
._18{width:49.032000px;}
._2b{width:57.468312px;}
._29{width:62.341356px;}
._2a{width:64.278912px;}
._30{width:66.648552px;}
._2f{width:67.833396px;}
._21{width:75.280128px;}
._22{width:78.643944px;}
._20{width:120.313776px;}
._25{width:140.982204px;}
._26{width:153.080796px;}
._33{width:500.073624px;}
._32{width:720.294792px;}
._34{width:798.432756px;}
._35{width:920.084676px;}
._0{width:6260.173500px;}
.fc5{color:transparent;}
.fc4{color:rgb(255,255,56);}
.fc2{color:rgb(255,255,109);}
.fc1{color:rgb(224,255,255);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:62.472000px;}
.fse{font-size:75.684000px;}
.fs5{font-size:83.382000px;}
.fs0{font-size:84.018000px;}
.fsd{font-size:97.122000px;}
.fsa{font-size:108.000000px;}
.fs4{font-size:126.030000px;}
.fs9{font-size:131.982000px;}
.fs6{font-size:144.054000px;}
.fs3{font-size:146.364000px;}
.fsf{font-size:155.964000px;}
.fs8{font-size:168.036000px;}
.fs7{font-size:192.018000px;}
.fsc{font-size:239.982000px;}
.fs2{font-size:252.054000px;}
.fs1{font-size:492.036000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y12{bottom:119.224500px;}
.y74{bottom:120.501000px;}
.y11{bottom:155.749500px;}
.y73{bottom:240.108000px;}
.y72{bottom:287.644500px;}
.y71{bottom:337.308000px;}
.y70{bottom:386.971500px;}
.y31{bottom:404.617500px;}
.y30{bottom:434.508000px;}
.y6f{bottom:436.633500px;}
.y2f{bottom:464.400000px;}
.y2{bottom:465.930000px;}
.y6e{bottom:492.462000px;}
.y2e{bottom:494.290500px;}
.y2d{bottom:524.182500px;}
.y2c{bottom:554.073000px;}
.y6d{bottom:559.389000px;}
.y6c{bottom:624.868500px;}
.y6b{bottom:671.343000px;}
.y6a{bottom:727.554000px;}
.y69{bottom:777.897000px;}
.y68{bottom:834.108000px;}
.y67{bottom:884.451000px;}
.y66{bottom:930.925500px;}
.y65{bottom:987.136500px;}
.y64{bottom:1037.479500px;}
.y63{bottom:1083.954000px;}
.y62{bottom:1140.165000px;}
.y61{bottom:1190.508000px;}
.y60{bottom:1246.719000px;}
.y33{bottom:1322.361000px;}
.y2b{bottom:1493.503500px;}
.y5f{bottom:1505.749500px;}
.y2a{bottom:1523.394000px;}
.y5e{bottom:1552.222500px;}
.y29{bottom:1553.286000px;}
.y1b{bottom:1570.081500px;}
.y28{bottom:1583.178000px;}
.y1a{bottom:1599.972000px;}
.y5d{bottom:1608.433500px;}
.y27{bottom:1613.068500px;}
.y19{bottom:1629.864000px;}
.y26{bottom:1642.960500px;}
.y18{bottom:1659.756000px;}
.y5c{bottom:1663.029000px;}
.y25{bottom:1672.851000px;}
.y17{bottom:1689.646500px;}
.y24{bottom:1702.743000px;}
.y5b{bottom:1709.503500px;}
.y16{bottom:1719.538500px;}
.y5a{bottom:1755.978000px;}
.y59{bottom:1802.451000px;}
.y58{bottom:1858.662000px;}
.y57{bottom:1913.257500px;}
.y56{bottom:1959.732000px;}
.y55{bottom:2015.943000px;}
.y54{bottom:2070.538500px;}
.y53{bottom:2117.011500px;}
.y52{bottom:2163.486000px;}
.y51{bottom:2209.960500px;}
.y50{bottom:2219.697000px;}
.y4f{bottom:2274.292500px;}
.y4e{bottom:2320.767000px;}
.y4d{bottom:2367.240000px;}
.y4c{bottom:2413.714500px;}
.y4b{bottom:2423.451000px;}
.y32{bottom:2487.444000px;}
.y4a{bottom:2646.255000px;}
.y22{bottom:2679.930000px;}
.y49{bottom:2692.728000px;}
.y21{bottom:2709.822000px;}
.y20{bottom:2739.712500px;}
.y48{bottom:2748.939000px;}
.y41{bottom:2765.055000px;}
.y1f{bottom:2769.604500px;}
.y1e{bottom:2799.495000px;}
.y40{bottom:2811.528000px;}
.y1d{bottom:2829.387000px;}
.y47{bottom:2832.150000px;}
.y3f{bottom:2858.002500px;}
.y1c{bottom:2859.277500px;}
.y46{bottom:2878.624500px;}
.y3e{bottom:2904.477000px;}
.y45{bottom:2934.835500px;}
.y3d{bottom:2950.950000px;}
.y3c{bottom:2997.424500px;}
.y44{bottom:3018.046500px;}
.y3b{bottom:3043.899000px;}
.y43{bottom:3064.521000px;}
.y3a{bottom:3100.110000px;}
.y42{bottom:3120.732000px;}
.y15{bottom:3179.622000px;}
.y39{bottom:3183.321000px;}
.y14{bottom:3209.512500px;}
.y38{bottom:3229.794000px;}
.y13{bottom:3239.404500px;}
.y37{bottom:3276.268500px;}
.y36{bottom:3322.743000px;}
.y35{bottom:3369.217500px;}
.y34{bottom:3415.690500px;}
.y23{bottom:3506.215500px;}
.y10{bottom:3789.778500px;}
.yf{bottom:3836.253000px;}
.ye{bottom:3882.727500px;}
.yd{bottom:3929.200500px;}
.yc{bottom:3975.675000px;}
.yb{bottom:4022.149500px;}
.ya{bottom:4070.068500px;}
.y9{bottom:4200.817500px;}
.y8{bottom:4258.476000px;}
.y7{bottom:4291.426500px;}
.y6{bottom:4338.411000px;}
.y5{bottom:4418.730000px;}
.y4{bottom:4588.383000px;}
.y3{bottom:4745.068500px;}
.h8{height:58.709396px;}
.h3{height:59.157205px;}
.he{height:76.042969px;}
.h10{height:79.362410px;}
.h12{height:79.368410px;}
.h13{height:84.943752px;}
.h7{height:88.737920px;}
.hd{height:93.761719px;}
.h9{height:106.415396px;}
.h14{height:109.814496px;}
.hc{height:114.582029px;}
.hb{height:118.314410px;}
.h11{height:123.787752px;}
.ha{height:166.703127px;}
.h6{height:186.287121px;}
.h5{height:186.293121px;}
.hf{height:208.343748px;}
.h4{height:427.167973px;}
.h2{height:5055.547500px;}
.h0{height:5055.590551px;}
.h1{height:5055.750000px;}
.w2{width:3575.862000px;}
.w0{width:3575.905512px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x1{left:216.681000px;}
.x9{left:228.798000px;}
.x7{left:239.299500px;}
.xa{left:246.103500px;}
.x14{left:265.791000px;}
.xc{left:290.026500px;}
.x11{left:331.015500px;}
.xf{left:343.813500px;}
.x8{left:374.641500px;}
.xd{left:675.808500px;}
.x3{left:927.312000px;}
.x4{left:1059.208500px;}
.x17{left:1124.986500px;}
.x5{left:1134.297000px;}
.x15{left:1135.530000px;}
.xb{left:1149.775500px;}
.x16{left:1161.042000px;}
.x1a{left:1225.672500px;}
.x13{left:1248.718500px;}
.x1b{left:1251.184500px;}
.x2{left:1282.435500px;}
.x12{left:1663.582500px;}
.x6{left:1784.041500px;}
.x19{left:2170.630500px;}
.x18{left:2215.488000px;}
.xe{left:2522.947500px;}
.x10{left:2536.767000px;}
@media print{
.v2{vertical-align:-42.341333pt;}
.v7{vertical-align:-34.624000pt;}
.v5{vertical-align:-11.920000pt;}
.v4{vertical-align:-7.706667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.920000pt;}
.v3{vertical-align:42.341333pt;}
.v8{vertical-align:49.248000pt;}
.v1{vertical-align:73.989333pt;}
.lsc{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.029333pt;}
.ls8{letter-spacing:0.050667pt;}
.ls3{letter-spacing:0.053333pt;}
.lsa{letter-spacing:0.093333pt;}
.lsb{letter-spacing:0.114667pt;}
.ls2{letter-spacing:0.122667pt;}
.ls0{letter-spacing:0.136000pt;}
.ls4{letter-spacing:0.136192pt;}
.ls1{letter-spacing:0.188651pt;}
.ls9{letter-spacing:0.203515pt;}
.ls7{letter-spacing:37.287915pt;}
.ls5{letter-spacing:37.293248pt;}
.ws3{word-spacing:-53.329333pt;}
.ws6{word-spacing:-42.670667pt;}
.ws4{word-spacing:-37.341333pt;}
.ws0{word-spacing:-32.525333pt;}
.ws1{word-spacing:-24.000000pt;}
.ws5{word-spacing:-21.582667pt;}
.ws2{word-spacing:-13.882667pt;}
.ws7{word-spacing:0.000000pt;}
._7{margin-left:-13.831152pt;}
._2{margin-left:-12.162592pt;}
._e{margin-left:-10.170016pt;}
._4{margin-left:-8.451168pt;}
._3{margin-left:-7.042640pt;}
._11{margin-left:-5.131893pt;}
._b{margin-left:-3.369867pt;}
._6{margin-left:-2.442245pt;}
._a{margin-left:-0.998315pt;}
._1{width:1.300373pt;}
._5{width:2.602603pt;}
._1a{width:3.862421pt;}
._f{width:5.227787pt;}
._10{width:6.123979pt;}
._2e{width:7.064331pt;}
._19{width:7.968000pt;}
._1d{width:9.005643pt;}
._9{width:10.002357pt;}
._c{width:11.716032pt;}
._8{width:12.630517pt;}
._d{width:13.657781pt;}
._13{width:14.697867pt;}
._12{width:15.648000pt;}
._27{width:16.616827pt;}
._17{width:17.568000pt;}
._16{width:19.200000pt;}
._1f{width:20.309755pt;}
._1e{width:21.450245pt;}
._1b{width:25.248000pt;}
._2c{width:26.138933pt;}
._2d{width:27.029867pt;}
._31{width:28.080683pt;}
._15{width:29.013333pt;}
._14{width:29.946667pt;}
._1c{width:31.968000pt;}
._28{width:34.008053pt;}
._23{width:34.951488pt;}
._24{width:35.997045pt;}
._18{width:43.584000pt;}
._2b{width:51.082944pt;}
._29{width:55.414539pt;}
._2a{width:57.136811pt;}
._30{width:59.243157pt;}
._2f{width:60.296352pt;}
._21{width:66.915669pt;}
._22{width:69.905728pt;}
._20{width:106.945579pt;}
._25{width:125.317515pt;}
._26{width:136.071819pt;}
._33{width:444.509888pt;}
._32{width:640.262037pt;}
._34{width:709.718005pt;}
._35{width:817.853045pt;}
._0{width:5564.598667pt;}
.fsb{font-size:55.530667pt;}
.fse{font-size:67.274667pt;}
.fs5{font-size:74.117333pt;}
.fs0{font-size:74.682667pt;}
.fsd{font-size:86.330667pt;}
.fsa{font-size:96.000000pt;}
.fs4{font-size:112.026667pt;}
.fs9{font-size:117.317333pt;}
.fs6{font-size:128.048000pt;}
.fs3{font-size:130.101333pt;}
.fsf{font-size:138.634667pt;}
.fs8{font-size:149.365333pt;}
.fs7{font-size:170.682667pt;}
.fsc{font-size:213.317333pt;}
.fs2{font-size:224.048000pt;}
.fs1{font-size:437.365333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y12{bottom:105.977333pt;}
.y74{bottom:107.112000pt;}
.y11{bottom:138.444000pt;}
.y73{bottom:213.429333pt;}
.y72{bottom:255.684000pt;}
.y71{bottom:299.829333pt;}
.y70{bottom:343.974667pt;}
.y31{bottom:359.660000pt;}
.y30{bottom:386.229333pt;}
.y6f{bottom:388.118667pt;}
.y2f{bottom:412.800000pt;}
.y2{bottom:414.160000pt;}
.y6e{bottom:437.744000pt;}
.y2e{bottom:439.369333pt;}
.y2d{bottom:465.940000pt;}
.y2c{bottom:492.509333pt;}
.y6d{bottom:497.234667pt;}
.y6c{bottom:555.438667pt;}
.y6b{bottom:596.749333pt;}
.y6a{bottom:646.714667pt;}
.y69{bottom:691.464000pt;}
.y68{bottom:741.429333pt;}
.y67{bottom:786.178667pt;}
.y66{bottom:827.489333pt;}
.y65{bottom:877.454667pt;}
.y64{bottom:922.204000pt;}
.y63{bottom:963.514667pt;}
.y62{bottom:1013.480000pt;}
.y61{bottom:1058.229333pt;}
.y60{bottom:1108.194667pt;}
.y33{bottom:1175.432000pt;}
.y2b{bottom:1327.558667pt;}
.y5f{bottom:1338.444000pt;}
.y2a{bottom:1354.128000pt;}
.y5e{bottom:1379.753333pt;}
.y29{bottom:1380.698667pt;}
.y1b{bottom:1395.628000pt;}
.y28{bottom:1407.269333pt;}
.y1a{bottom:1422.197333pt;}
.y5d{bottom:1429.718667pt;}
.y27{bottom:1433.838667pt;}
.y19{bottom:1448.768000pt;}
.y26{bottom:1460.409333pt;}
.y18{bottom:1475.338667pt;}
.y5c{bottom:1478.248000pt;}
.y25{bottom:1486.978667pt;}
.y17{bottom:1501.908000pt;}
.y24{bottom:1513.549333pt;}
.y5b{bottom:1519.558667pt;}
.y16{bottom:1528.478667pt;}
.y5a{bottom:1560.869333pt;}
.y59{bottom:1602.178667pt;}
.y58{bottom:1652.144000pt;}
.y57{bottom:1700.673333pt;}
.y56{bottom:1741.984000pt;}
.y55{bottom:1791.949333pt;}
.y54{bottom:1840.478667pt;}
.y53{bottom:1881.788000pt;}
.y52{bottom:1923.098667pt;}
.y51{bottom:1964.409333pt;}
.y50{bottom:1973.064000pt;}
.y4f{bottom:2021.593333pt;}
.y4e{bottom:2062.904000pt;}
.y4d{bottom:2104.213333pt;}
.y4c{bottom:2145.524000pt;}
.y4b{bottom:2154.178667pt;}
.y32{bottom:2211.061333pt;}
.y4a{bottom:2352.226667pt;}
.y22{bottom:2382.160000pt;}
.y49{bottom:2393.536000pt;}
.y21{bottom:2408.730667pt;}
.y20{bottom:2435.300000pt;}
.y48{bottom:2443.501333pt;}
.y41{bottom:2457.826667pt;}
.y1f{bottom:2461.870667pt;}
.y1e{bottom:2488.440000pt;}
.y40{bottom:2499.136000pt;}
.y1d{bottom:2515.010667pt;}
.y47{bottom:2517.466667pt;}
.y3f{bottom:2540.446667pt;}
.y1c{bottom:2541.580000pt;}
.y46{bottom:2558.777333pt;}
.y3e{bottom:2581.757333pt;}
.y45{bottom:2608.742667pt;}
.y3d{bottom:2623.066667pt;}
.y3c{bottom:2664.377333pt;}
.y44{bottom:2682.708000pt;}
.y3b{bottom:2705.688000pt;}
.y43{bottom:2724.018667pt;}
.y3a{bottom:2755.653333pt;}
.y42{bottom:2773.984000pt;}
.y15{bottom:2826.330667pt;}
.y39{bottom:2829.618667pt;}
.y14{bottom:2852.900000pt;}
.y38{bottom:2870.928000pt;}
.y13{bottom:2879.470667pt;}
.y37{bottom:2912.238667pt;}
.y36{bottom:2953.549333pt;}
.y35{bottom:2994.860000pt;}
.y34{bottom:3036.169333pt;}
.y23{bottom:3116.636000pt;}
.y10{bottom:3368.692000pt;}
.yf{bottom:3410.002667pt;}
.ye{bottom:3451.313333pt;}
.yd{bottom:3492.622667pt;}
.yc{bottom:3533.933333pt;}
.yb{bottom:3575.244000pt;}
.ya{bottom:3617.838667pt;}
.y9{bottom:3734.060000pt;}
.y8{bottom:3785.312000pt;}
.y7{bottom:3814.601333pt;}
.y6{bottom:3856.365333pt;}
.y5{bottom:3927.760000pt;}
.y4{bottom:4078.562667pt;}
.y3{bottom:4217.838667pt;}
.h8{height:52.186130pt;}
.h3{height:52.584182pt;}
.he{height:67.593750pt;}
.h10{height:70.544365pt;}
.h12{height:70.549698pt;}
.h13{height:75.505557pt;}
.h7{height:78.878151pt;}
.hd{height:83.343750pt;}
.h9{height:94.591464pt;}
.h14{height:97.612885pt;}
.hc{height:101.850693pt;}
.hb{height:105.168365pt;}
.h11{height:110.033557pt;}
.ha{height:148.180557pt;}
.h6{height:165.588552pt;}
.h5{height:165.593885pt;}
.hf{height:185.194443pt;}
.h4{height:379.704865pt;}
.h2{height:4493.820000pt;}
.h0{height:4493.858268pt;}
.h1{height:4494.000000pt;}
.w2{width:3178.544000pt;}
.w0{width:3178.582677pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x1{left:192.605333pt;}
.x9{left:203.376000pt;}
.x7{left:212.710667pt;}
.xa{left:218.758667pt;}
.x14{left:236.258667pt;}
.xc{left:257.801333pt;}
.x11{left:294.236000pt;}
.xf{left:305.612000pt;}
.x8{left:333.014667pt;}
.xd{left:600.718667pt;}
.x3{left:824.277333pt;}
.x4{left:941.518667pt;}
.x17{left:999.988000pt;}
.x5{left:1008.264000pt;}
.x15{left:1009.360000pt;}
.xb{left:1022.022667pt;}
.x16{left:1032.037333pt;}
.x1a{left:1089.486667pt;}
.x13{left:1109.972000pt;}
.x1b{left:1112.164000pt;}
.x2{left:1139.942667pt;}
.x12{left:1478.740000pt;}
.x6{left:1585.814667pt;}
.x19{left:1929.449333pt;}
.x18{left:1969.322667pt;}
.xe{left:2242.620000pt;}
.x10{left:2254.904000pt;}
}




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