
    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_53d0c3161c7d798a4325163d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.400000;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_88b3d6c224ce95bc8bb256be.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.000000;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_6eee6053e449c23731c89204.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_45119e91f1a1747d77698abc.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.927246;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_601b108f258f87748f203c5a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_3560ae5b3640e32ed0349b94.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.400000;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;}
.m1{transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,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);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-63.000002px;}
.v6{vertical-align:-45.762301px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:7.751700px;}
.v5{vertical-align:30.067201px;}
.v1{vertical-align:63.000002px;}
.v4{vertical-align:156.295378px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:5727.257180px;}
.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:-81.090003px;}
.ws6{word-spacing:-44.520000px;}
.ws3{word-spacing:-36.802779px;}
.ws1{word-spacing:-29.680001px;}
.ws2{word-spacing:-26.591957px;}
.ws7{word-spacing:0.000000px;}
.ws4{word-spacing:2211.828031px;}
.ws5{word-spacing:4762.494908px;}
._f{margin-left:-21.528001px;}
._5{margin-left:-18.372001px;}
._24{margin-left:-15.942947px;}
._7{margin-left:-13.440001px;}
._6{margin-left:-11.010001px;}
._a{margin-left:-9.154434px;}
._3{margin-left:-7.798674px;}
._0{margin-left:-6.120000px;}
._1{margin-left:-4.284000px;}
._2{margin-left:-2.754000px;}
._4{margin-left:-1.591566px;}
._8{width:1.512000px;}
._9{width:3.000000px;}
._20{width:4.500000px;}
._10{width:6.048000px;}
._21{width:8.100000px;}
._19{width:9.132000px;}
._18{width:10.855566px;}
._c{width:15.790674px;}
._d{width:16.976198px;}
._b{width:20.952001px;}
._23{width:22.020266px;}
._16{width:28.033566px;}
._15{width:29.254434px;}
._22{width:44.647835px;}
._12{width:45.766168px;}
._11{width:47.089566px;}
._e{width:48.564002px;}
._13{width:66.505566px;}
._14{width:67.657302px;}
._1e{width:69.228002px;}
._1f{width:70.603568px;}
._1d{width:87.145569px;}
._1c{width:96.444003px;}
._17{width:104.263566px;}
._1b{width:179.791572px;}
._1a{width:1249.660930px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(2,52,82);}
.fc3{color:rgb(0,0,0);}
.fc4{color:rgb(96,165,97);}
.fc2{color:rgb(167,198,55);}
.fc1{color:rgb(56,118,29);}
.fc0{color:rgb(116,181,73);}
.fs6{font-size:84.000000px;}
.fs8{font-size:90.000003px;}
.fse{font-size:100.347006px;}
.fsc{font-size:108.000003px;}
.fsa{font-size:112.000005px;}
.fs12{font-size:117.567611px;}
.fsf{font-size:118.347007px;}
.fs5{font-size:132.000007px;}
.fs11{font-size:138.000001px;}
.fs10{font-size:138.878410px;}
.fs7{font-size:144.000005px;}
.fsb{font-size:156.000011px;}
.fs1{font-size:159.156608px;}
.fs9{font-size:167.999999px;}
.fs13{font-size:180.000006px;}
.fsd{font-size:186.000000px;}
.fs4{font-size:216.000007px;}
.fs3{font-size:299.999998px;}
.fs0{font-size:306.000010px;}
.fs2{font-size:384.000024px;}
.y0{bottom:0.000000px;}
.y1d{bottom:808.211500px;}
.y1a{bottom:820.831403px;}
.y6c{bottom:828.365898px;}
.y1c{bottom:858.611502px;}
.y6b{bottom:878.765889px;}
.y1b{bottom:909.011497px;}
.y6a{bottom:929.165879px;}
.y69{bottom:979.565881px;}
.y68{bottom:1029.965882px;}
.y67{bottom:1080.365877px;}
.y2{bottom:1198.600947px;}
.y39{bottom:1326.711428px;}
.y32{bottom:1328.147176px;}
.y38{bottom:1357.086429px;}
.y3b{bottom:1392.496840px;}
.y3a{bottom:1422.600940px;}
.y2e{bottom:1429.486594px;}
.y31{bottom:1434.674779px;}
.y2d{bottom:1459.861595px;}
.y30{bottom:1464.778879px;}
.y34{bottom:1465.912205px;}
.y36{bottom:1465.942513px;}
.y33{bottom:1496.287200px;}
.y35{bottom:1496.317514px;}
.y25{bottom:1553.191704px;}
.y24{bottom:1583.566705px;}
.y2f{bottom:1602.314860px;}
.y2b{bottom:1602.725710px;}
.y28{bottom:1679.677489px;}
.y37{bottom:1694.180382px;}
.y27{bottom:1710.052490px;}
.y2a{bottom:1712.395438px;}
.y29{bottom:1742.499538px;}
.y2c{bottom:1785.958964px;}
.y26{bottom:1803.559366px;}
.y65{bottom:1936.602410px;}
.y23{bottom:1996.922640px;}
.y64{bottom:1998.702390px;}
.y63{bottom:2060.802392px;}
.y22{bottom:2061.092619px;}
.y62{bottom:2122.902360px;}
.y21{bottom:2125.262599px;}
.y61{bottom:2185.002339px;}
.y20{bottom:2189.432578px;}
.y60{bottom:2247.102319px;}
.y1f{bottom:2253.602569px;}
.y5f{bottom:2309.202298px;}
.y5e{bottom:2371.302300px;}
.y1e{bottom:2418.752541px;}
.y19{bottom:2423.438045px;}
.y5d{bottom:2433.402293px;}
.y66{bottom:2542.217695px;}
.y6d{bottom:2554.106462px;}
.y5c{bottom:2815.155022px;}
.y46{bottom:2874.430931px;}
.y5b{bottom:2877.255002px;}
.y56{bottom:2894.724412px;}
.y45{bottom:2916.055932px;}
.y5a{bottom:2939.354981px;}
.y10{bottom:2939.901214px;}
.y57{bottom:2971.852171px;}
.y59{bottom:3001.454983px;}
.y53{bottom:3028.582202px;}
.y4e{bottom:3035.957170px;}
.y58{bottom:3063.554976px;}
.y51{bottom:3092.782025px;}
.y50{bottom:3134.407026px;}
.y55{bottom:3146.129407px;}
.y4d{bottom:3197.400638px;}
.yd{bottom:3293.163859px;}
.ye{bottom:3329.730106px;}
.y3d{bottom:3341.542978px;}
.y4a{bottom:3342.126853px;}
.y4c{bottom:3358.840956px;}
.y3c{bottom:3383.167976px;}
.y49{bottom:3383.751851px;}
.y14{bottom:3403.952265px;}
.y54{bottom:3437.931129px;}
.y4b{bottom:3478.080700px;}
.yc{bottom:3498.526540px;}
.y11{bottom:3509.334787px;}
.yf{bottom:3536.959500px;}
.y42{bottom:3641.694427px;}
.y40{bottom:3642.190552px;}
.y44{bottom:3644.722477px;}
.y48{bottom:3644.740140px;}
.y3f{bottom:3644.741715px;}
.y41{bottom:3683.319434px;}
.y43{bottom:3686.347484px;}
.y47{bottom:3686.365147px;}
.y3e{bottom:3686.366722px;}
.y13{bottom:3691.395444px;}
.yb{bottom:3705.260484px;}
.y12{bottom:3730.995445px;}
.y52{bottom:3739.883388px;}
.y15{bottom:3902.704749px;}
.y4f{bottom:3947.995971px;}
.y1{bottom:3956.461990px;}
.ya{bottom:4105.927380px;}
.y9{bottom:4180.447360px;}
.y8{bottom:4254.967362px;}
.y7{bottom:4329.487376px;}
.y6{bottom:4404.007369px;}
.y18{bottom:4548.938129px;}
.y17{bottom:4595.738130px;}
.y5{bottom:4645.725848px;}
.y16{bottom:4687.101251px;}
.y4{bottom:4731.261828px;}
.y3{bottom:4834.941820px;}
.h7{height:63.820312px;}
.h9{height:65.566408px;}
.h16{height:89.323830px;}
.ha{height:96.099615px;}
.h6{height:100.289068px;}
.h10{height:105.364357px;}
.h8{height:109.406254px;}
.h12{height:113.116057px;}
.hd{height:113.400004px;}
.h11{height:124.264357px;}
.h17{height:138.600008px;}
.h13{height:145.822331px;}
.hc{height:163.800012px;}
.h2{height:167.114438px;}
.h15{height:174.967202px;}
.he{height:176.399999px;}
.hb{height:180.600007px;}
.h18{height:189.000006px;}
.hf{height:195.300000px;}
.h5{height:226.800007px;}
.h14{height:302.117708px;}
.h4{height:314.999997px;}
.h1{height:321.300010px;}
.h3{height:403.200026px;}
.h0{height:5055.000000px;}
.w0{width:3574.500000px;}
.x0{left:0.000000px;}
.x1{left:130.417350px;}
.x12{left:161.032708px;}
.x4{left:164.337620px;}
.x3{left:168.838172px;}
.x3e{left:276.160898px;}
.x3c{left:363.814225px;}
.x2d{left:445.921867px;}
.x2e{left:489.196501px;}
.x35{left:618.792657px;}
.x3f{left:756.709314px;}
.x31{left:775.356468px;}
.x32{left:865.307856px;}
.x34{left:986.884232px;}
.x33{left:997.368579px;}
.x30{left:1137.011696px;}
.x3a{left:1167.999458px;}
.x28{left:1197.992480px;}
.x2f{left:1221.894680px;}
.x29{left:1244.825606px;}
.x3b{left:1251.007538px;}
.x39{left:1255.363735px;}
.x2{left:1293.691728px;}
.x3d{left:1407.016834px;}
.x26{left:1430.139822px;}
.xe{left:1492.816323px;}
.x27{left:1504.225640px;}
.x2b{left:1522.715036px;}
.xf{left:1530.120874px;}
.x2c{left:1613.135054px;}
.x10{left:1696.027318px;}
.x43{left:1927.125062px;}
.x2a{left:1931.693482px;}
.x41{left:1967.354838px;}
.x42{left:1982.456726px;}
.x36{left:1993.807610px;}
.x38{left:2000.801674px;}
.x37{left:2026.577817px;}
.x14{left:2044.494744px;}
.x18{left:2046.981891px;}
.x25{left:2055.856453px;}
.x13{left:2078.596307px;}
.x15{left:2224.126612px;}
.x16{left:2309.177857px;}
.x1b{left:2333.860173px;}
.x17{left:2340.118819px;}
.x40{left:2350.458750px;}
.x5{left:2387.639232px;}
.x7{left:2503.161221px;}
.x6{left:2528.315390px;}
.x9{left:2639.743988px;}
.x22{left:2768.980953px;}
.x21{left:2770.059666px;}
.x23{left:2838.958440px;}
.x1e{left:2846.738116px;}
.x1c{left:2882.336830px;}
.x1a{left:2908.078518px;}
.x1d{left:2919.348431px;}
.x24{left:2978.601294px;}
.x8{left:3042.576561px;}
.xb{left:3050.231194px;}
.xa{left:3072.270271px;}
.xd{left:3137.847841px;}
.x19{left:3139.137325px;}
.x1f{left:3210.877045px;}
.xc{left:3213.618245px;}
.x20{left:3222.641437px;}
.x11{left:3273.122230px;}
.x44{left:3309.259369px;}
@media print{
.v2{vertical-align:-56.000002pt;}
.v6{vertical-align:-40.677601pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:6.890400pt;}
.v5{vertical-align:26.726401pt;}
.v1{vertical-align:56.000002pt;}
.v4{vertical-align:138.929224pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:5090.895271pt;}
.ws0{word-spacing:-72.080002pt;}
.ws6{word-spacing:-39.573333pt;}
.ws3{word-spacing:-32.713581pt;}
.ws1{word-spacing:-26.382223pt;}
.ws2{word-spacing:-23.637295pt;}
.ws7{word-spacing:0.000000pt;}
.ws4{word-spacing:1966.069361pt;}
.ws5{word-spacing:4233.328808pt;}
._f{margin-left:-19.136001pt;}
._5{margin-left:-16.330668pt;}
._24{margin-left:-14.171508pt;}
._7{margin-left:-11.946667pt;}
._6{margin-left:-9.786667pt;}
._a{margin-left:-8.137274pt;}
._3{margin-left:-6.932154pt;}
._0{margin-left:-5.440000pt;}
._1{margin-left:-3.808000pt;}
._2{margin-left:-2.448000pt;}
._4{margin-left:-1.414725pt;}
._8{width:1.344000pt;}
._9{width:2.666667pt;}
._20{width:4.000000pt;}
._10{width:5.376000pt;}
._21{width:7.200000pt;}
._19{width:8.117333pt;}
._18{width:9.649392pt;}
._c{width:14.036155pt;}
._d{width:15.089954pt;}
._b{width:18.624001pt;}
._23{width:19.573569pt;}
._16{width:24.918725pt;}
._15{width:26.003941pt;}
._22{width:39.686964pt;}
._12{width:40.681038pt;}
._11{width:41.857392pt;}
._e{width:43.168001pt;}
._13{width:59.116059pt;}
._14{width:60.139824pt;}
._1e{width:61.536002pt;}
._1f{width:62.758727pt;}
._1d{width:77.462728pt;}
._1c{width:85.728003pt;}
._17{width:92.678725pt;}
._1b{width:159.814730pt;}
._1a{width:1110.809716pt;}
.fs6{font-size:74.666666pt;}
.fs8{font-size:80.000003pt;}
.fse{font-size:89.197339pt;}
.fsc{font-size:96.000003pt;}
.fsa{font-size:99.555560pt;}
.fs12{font-size:104.504543pt;}
.fsf{font-size:105.197339pt;}
.fs5{font-size:117.333340pt;}
.fs11{font-size:122.666668pt;}
.fs10{font-size:123.447476pt;}
.fs7{font-size:128.000004pt;}
.fsb{font-size:138.666676pt;}
.fs1{font-size:141.472541pt;}
.fs9{font-size:149.333333pt;}
.fs13{font-size:160.000005pt;}
.fsd{font-size:165.333333pt;}
.fs4{font-size:192.000006pt;}
.fs3{font-size:266.666665pt;}
.fs0{font-size:272.000009pt;}
.fs2{font-size:341.333355pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:718.410223pt;}
.y1a{bottom:729.627914pt;}
.y6c{bottom:736.325243pt;}
.y1c{bottom:763.210224pt;}
.y6b{bottom:781.125235pt;}
.y1b{bottom:808.010219pt;}
.y6a{bottom:825.925226pt;}
.y69{bottom:870.725227pt;}
.y68{bottom:915.525229pt;}
.y67{bottom:960.325224pt;}
.y2{bottom:1065.423064pt;}
.y39{bottom:1179.299047pt;}
.y32{bottom:1180.575267pt;}
.y38{bottom:1206.299048pt;}
.y3b{bottom:1237.774969pt;}
.y3a{bottom:1264.534169pt;}
.y2e{bottom:1270.654750pt;}
.y31{bottom:1275.266470pt;}
.y2d{bottom:1297.654751pt;}
.y30{bottom:1302.025670pt;}
.y34{bottom:1303.033071pt;}
.y36{bottom:1303.060011pt;}
.y33{bottom:1330.033067pt;}
.y35{bottom:1330.060012pt;}
.y25{bottom:1380.614848pt;}
.y24{bottom:1407.614849pt;}
.y2f{bottom:1424.279875pt;}
.y2b{bottom:1424.645075pt;}
.y28{bottom:1493.046657pt;}
.y37{bottom:1505.938118pt;}
.y27{bottom:1520.046658pt;}
.y2a{bottom:1522.129278pt;}
.y29{bottom:1548.888478pt;}
.y2c{bottom:1587.519079pt;}
.y26{bottom:1603.163881pt;}
.y65{bottom:1721.424365pt;}
.y23{bottom:1775.042346pt;}
.y64{bottom:1776.624346pt;}
.y63{bottom:1831.824348pt;}
.y22{bottom:1832.082328pt;}
.y62{bottom:1887.024320pt;}
.y21{bottom:1889.122310pt;}
.y61{bottom:1942.224302pt;}
.y20{bottom:1946.162292pt;}
.y60{bottom:1997.424283pt;}
.y1f{bottom:2003.202284pt;}
.y5f{bottom:2052.624265pt;}
.y5e{bottom:2107.824267pt;}
.y1e{bottom:2150.002258pt;}
.y19{bottom:2154.167151pt;}
.y5d{bottom:2163.024261pt;}
.y66{bottom:2259.749062pt;}
.y6d{bottom:2270.316855pt;}
.y5c{bottom:2502.360020pt;}
.y46{bottom:2555.049716pt;}
.y5b{bottom:2557.560001pt;}
.y56{bottom:2573.088366pt;}
.y45{bottom:2592.049717pt;}
.y5a{bottom:2612.759983pt;}
.y10{bottom:2613.245523pt;}
.y57{bottom:2641.646374pt;}
.y59{bottom:2667.959985pt;}
.y53{bottom:2692.073069pt;}
.y4e{bottom:2698.628596pt;}
.y58{bottom:2723.159979pt;}
.y51{bottom:2749.139578pt;}
.y50{bottom:2786.139579pt;}
.y55{bottom:2796.559473pt;}
.y4d{bottom:2842.133900pt;}
.yd{bottom:2927.256763pt;}
.ye{bottom:2959.760094pt;}
.y3d{bottom:2970.260425pt;}
.y4a{bottom:2970.779425pt;}
.y4c{bottom:2985.636405pt;}
.y3c{bottom:3007.260423pt;}
.y49{bottom:3007.779423pt;}
.y14{bottom:3025.735346pt;}
.y54{bottom:3055.938781pt;}
.y4b{bottom:3091.627288pt;}
.yc{bottom:3109.801369pt;}
.y11{bottom:3119.408699pt;}
.yf{bottom:3143.964000pt;}
.y42{bottom:3237.061713pt;}
.y40{bottom:3237.502713pt;}
.y44{bottom:3239.753313pt;}
.y48{bottom:3239.769013pt;}
.y3f{bottom:3239.770413pt;}
.y41{bottom:3274.061719pt;}
.y43{bottom:3276.753319pt;}
.y47{bottom:3276.769019pt;}
.y3e{bottom:3276.770419pt;}
.y13{bottom:3281.240395pt;}
.yb{bottom:3293.564875pt;}
.y12{bottom:3316.440396pt;}
.y52{bottom:3324.340789pt;}
.y15{bottom:3469.070888pt;}
.y4f{bottom:3509.329752pt;}
.y1{bottom:3516.855102pt;}
.ya{bottom:3649.713226pt;}
.y9{bottom:3715.953208pt;}
.y8{bottom:3782.193211pt;}
.y7{bottom:3848.433223pt;}
.y6{bottom:3914.673217pt;}
.y18{bottom:4043.500559pt;}
.y17{bottom:4085.100560pt;}
.y5{bottom:4129.534087pt;}
.y16{bottom:4166.312223pt;}
.y4{bottom:4205.566069pt;}
.y3{bottom:4297.726062pt;}
.h7{height:56.729166pt;}
.h9{height:58.281252pt;}
.h16{height:79.398960pt;}
.ha{height:85.421880pt;}
.h6{height:89.145838pt;}
.h10{height:93.657206pt;}
.h8{height:97.250003pt;}
.h12{height:100.547606pt;}
.hd{height:100.800003pt;}
.h11{height:110.457206pt;}
.h17{height:123.200007pt;}
.h13{height:129.619850pt;}
.hc{height:145.600010pt;}
.h2{height:148.546168pt;}
.h15{height:155.526402pt;}
.he{height:156.799999pt;}
.hb{height:160.533340pt;}
.h18{height:168.000005pt;}
.hf{height:173.600000pt;}
.h5{height:201.600006pt;}
.h14{height:268.549074pt;}
.h4{height:279.999998pt;}
.h1{height:285.600009pt;}
.h3{height:358.400023pt;}
.h0{height:4493.333333pt;}
.w0{width:3177.333333pt;}
.x0{left:0.000000pt;}
.x1{left:115.926534pt;}
.x12{left:143.140185pt;}
.x4{left:146.077885pt;}
.x3{left:150.078375pt;}
.x3e{left:245.476354pt;}
.x3c{left:323.390422pt;}
.x2d{left:396.374993pt;}
.x2e{left:434.841334pt;}
.x35{left:550.037918pt;}
.x3f{left:672.630502pt;}
.x31{left:689.205749pt;}
.x32{left:769.162539pt;}
.x34{left:877.230428pt;}
.x33{left:886.549848pt;}
.x30{left:1010.677063pt;}
.x3a{left:1038.221740pt;}
.x28{left:1064.882204pt;}
.x2f{left:1086.128605pt;}
.x29{left:1106.511649pt;}
.x3b{left:1112.006701pt;}
.x39{left:1115.878876pt;}
.x2{left:1149.948203pt;}
.x3d{left:1250.681630pt;}
.x26{left:1271.235398pt;}
.xe{left:1326.947842pt;}
.x27{left:1337.089458pt;}
.x2b{left:1353.524476pt;}
.xf{left:1360.107444pt;}
.x2c{left:1433.897826pt;}
.x10{left:1507.579838pt;}
.x43{left:1713.000055pt;}
.x2a{left:1717.060873pt;}
.x41{left:1748.759856pt;}
.x42{left:1762.183756pt;}
.x36{left:1772.273431pt;}
.x38{left:1778.490377pt;}
.x37{left:1801.402504pt;}
.x14{left:1817.328661pt;}
.x18{left:1819.539458pt;}
.x25{left:1827.427958pt;}
.x13{left:1847.641162pt;}
.x15{left:1977.001433pt;}
.x16{left:2052.602540pt;}
.x1b{left:2074.542376pt;}
.x17{left:2080.105617pt;}
.x40{left:2089.296667pt;}
.x5{left:2122.345984pt;}
.x7{left:2225.032196pt;}
.x6{left:2247.391458pt;}
.x9{left:2346.439100pt;}
.x22{left:2461.316403pt;}
.x21{left:2462.275259pt;}
.x23{left:2523.518614pt;}
.x1e{left:2530.433881pt;}
.x1c{left:2562.077182pt;}
.x1a{left:2584.958683pt;}
.x1d{left:2594.976383pt;}
.x24{left:2647.645595pt;}
.x8{left:2704.512499pt;}
.xb{left:2711.316617pt;}
.xa{left:2730.906907pt;}
.xd{left:2789.198081pt;}
.x19{left:2790.344289pt;}
.x1f{left:2854.112929pt;}
.xc{left:2856.549551pt;}
.x20{left:2864.570167pt;}
.x11{left:2909.441982pt;}
.x44{left:2941.563883pt;}
}




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