
    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_706eb86d04763c99c885e1d8.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934000;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_bf31cb93652c0086d71d82c3.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666000;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_683fa43085a5d9f8f4ba7afd.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.919000;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_3c1287e941e9c604484a18cf.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666000;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_c96d4c2fc84b37ccd5ebf191.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.940000;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_5ba0524b2ba699c8bfa9eabe.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.722000;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:ff7;src:url('chunks/assets/font_cd803043066d340923381e19.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.911000;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:ff8;src:url('chunks/assets/font_c0cbe68f4f109db0af4d0049.woff2')format("woff");}.ff8{font-family:ff8;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.250009,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250009,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:4.314000px;}
.v2{vertical-align:29.076000px;}
.ls10{letter-spacing:-3.887551px;}
.lsf{letter-spacing:0.000000px;}
.ls5{letter-spacing:3.110041px;}
.ls9{letter-spacing:857.504170px;}
.ls8{letter-spacing:879.167696px;}
.lsb{letter-spacing:879.173696px;}
.lse{letter-spacing:1007.049055px;}
.ls7{letter-spacing:1007.055054px;}
.lsa{letter-spacing:1028.718581px;}
.lsd{letter-spacing:1028.724581px;}
.ls3{letter-spacing:1731.871782px;}
.ls4{letter-spacing:2185.402269px;}
.ls2{letter-spacing:2487.701929px;}
.ls0{letter-spacing:2585.432586px;}
.ls1{letter-spacing:2683.565230px;}
.ls6{letter-spacing:3663.137899px;}
.lsc{letter-spacing:4347.516517px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-160.109505px;}
.ws6{word-spacing:-90.061597px;}
.ws4{word-spacing:-60.041064px;}
.ws2{word-spacing:-53.369835px;}
.ws0{word-spacing:-50.034220px;}
.ws1{word-spacing:-0.215975px;}
.ws7{word-spacing:0.000000px;}
.ws3{word-spacing:3.671576px;}
._2{margin-left:-37.147709px;}
._e{margin-left:-29.804557px;}
._f{margin-left:-27.860782px;}
._19{margin-left:-23.973231px;}
._1{margin-left:-21.309538px;}
._1a{margin-left:-19.869705px;}
._3{margin-left:-16.663075px;}
._4{margin-left:-13.336459px;}
._b{margin-left:-12.310578px;}
._15{margin-left:-9.987646px;}
._5{margin-left:-6.647232px;}
._0{margin-left:-5.183401px;}
._8{margin-left:-3.887551px;}
._9{margin-left:-1.555020px;}
._7{width:3.887551px;}
._11{width:23.325306px;}
._12{width:28.530304px;}
._6{width:29.869350px;}
._16{width:33.087378px;}
._18{width:37.104514px;}
._d{width:42.439098px;}
._14{width:44.771628px;}
._17{width:47.536109px;}
._c{width:62.351998px;}
._13{width:63.453470px;}
._10{width:90.579937px;}
._a{width:106.432506px;}
.fc2{color:rgb(74,69,42);}
.fc1{color:rgb(89,89,89);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:149.982675px;}
.fs3{font-size:179.979210px;}
.fs2{font-size:191.977824px;}
.fs4{font-size:215.975052px;}
.fs8{font-size:239.972280px;}
.fs1{font-size:287.966736px;}
.fs5{font-size:323.962578px;}
.fs0{font-size:479.944560px;}
.fs6{font-size:575.933472px;}
.fs7{font-size:587.932086px;}
.y0{bottom:0.000000px;}
.y34{bottom:41.208642px;}
.y50{bottom:309.803187px;}
.y5f{bottom:310.735887px;}
.y4f{bottom:374.295987px;}
.y5e{bottom:375.228687px;}
.y4e{bottom:438.788337px;}
.y5d{bottom:439.721037px;}
.y4d{bottom:503.280837px;}
.y5c{bottom:504.213537px;}
.y2a{bottom:511.911537px;}
.y5b{bottom:568.706187px;}
.y4c{bottom:569.273337px;}
.y29{bottom:577.903737px;}
.y4b{bottom:633.765837px;}
.y5a{bottom:634.698537px;}
.y28{bottom:642.396537px;}
.y4a{bottom:698.258187px;}
.y59{bottom:699.191187px;}
.y27{bottom:706.888887px;}
.y49{bottom:762.750987px;}
.y58{bottom:763.683687px;}
.y26{bottom:771.381537px;}
.y57{bottom:828.176037px;}
.y48{bottom:828.743187px;}
.y25{bottom:835.874037px;}
.y47{bottom:893.235987px;}
.y56{bottom:894.168537px;}
.y24{bottom:901.866387px;}
.y46{bottom:957.728337px;}
.y55{bottom:958.661037px;}
.y23{bottom:966.359037px;}
.y45{bottom:1022.220837px;}
.y54{bottom:1023.153687px;}
.y22{bottom:1030.851537px;}
.y44{bottom:1086.713487px;}
.y53{bottom:1087.646187px;}
.y21{bottom:1095.344037px;}
.y43{bottom:1151.205987px;}
.y52{bottom:1152.138687px;}
.y20{bottom:1159.836687px;}
.y51{bottom:1216.631337px;}
.y1f{bottom:1225.828887px;}
.y41{bottom:1246.587882px;}
.y1e{bottom:1290.321687px;}
.y1d{bottom:1354.814037px;}
.y1c{bottom:1419.306537px;}
.y42{bottom:1455.847855px;}
.y1b{bottom:1485.298737px;}
.y1a{bottom:1549.791237px;}
.y19{bottom:1614.283737px;}
.y18{bottom:1678.776237px;}
.y67{bottom:1738.898197px;}
.y17{bottom:1743.268737px;}
.y16{bottom:1807.761237px;}
.y66{bottom:1870.339331px;}
.y14{bottom:1955.794856px;}
.y60{bottom:1970.181237px;}
.y37{bottom:1980.168237px;}
.y63{bottom:2078.699198px;}
.y62{bottom:2203.117331px;}
.y61{bottom:2310.565737px;}
.y36{bottom:2328.562737px;}
.y65{bottom:2377.943198px;}
.y64{bottom:2510.978831px;}
.y33{bottom:2618.534544px;}
.y38{bottom:2696.082930px;}
.y12{bottom:2737.596237px;}
.y11{bottom:2803.588737px;}
.y10{bottom:2868.081237px;}
.y35{bottom:2878.573737px;}
.yf{bottom:2932.573737px;}
.y40{bottom:2950.755237px;}
.y30{bottom:2992.579737px;}
.ye{bottom:2997.066237px;}
.y3f{bottom:3015.247737px;}
.y2f{bottom:3057.072237px;}
.yd{bottom:3063.058737px;}
.y3e{bottom:3081.240237px;}
.y2e{bottom:3121.564737px;}
.yc{bottom:3127.551237px;}
.y3d{bottom:3145.732737px;}
.y2d{bottom:3186.057237px;}
.yb{bottom:3192.043737px;}
.y32{bottom:3202.368132px;}
.y3c{bottom:3210.225237px;}
.y2c{bottom:3250.549737px;}
.ya{bottom:3256.536237px;}
.y3b{bottom:3274.717737px;}
.y2b{bottom:3315.042237px;}
.y9{bottom:3321.028737px;}
.y31{bottom:3335.454132px;}
.y3a{bottom:3339.210237px;}
.y8{bottom:3385.521237px;}
.y39{bottom:3403.702737px;}
.y13{bottom:3534.117356px;}
.y15{bottom:3535.060855px;}
.y7{bottom:3586.230698px;}
.y6{bottom:3640.223198px;}
.y5{bottom:3694.217198px;}
.y3{bottom:3803.680559px;}
.y4{bottom:3838.990534px;}
.y2{bottom:3940.566360px;}
.y1{bottom:4084.549860px;}
.hc{height:109.637335px;}
.h5{height:119.866154px;}
.h4{height:131.564803px;}
.h3{height:144.265834px;}
.h7{height:155.933988px;}
.h6{height:157.877763px;}
.ha{height:169.411789px;}
.hb{height:175.419737px;}
.h2{height:209.927751px;}
.h8{height:236.168719px;}
.h1{height:349.879584px;}
.h9{height:421.007368px;}
.h0{height:4252.500000px;}
.w1{width:6047.509500px;}
.w0{width:6048.000000px;}
.x0{left:0.000000px;}
.x7{left:122.541570px;}
.x8{left:140.540100px;}
.x12{left:289.817250px;}
.x1{left:347.166494px;}
.x13{left:817.087327px;}
.x5{left:923.407861px;}
.x3{left:1084.622974px;}
.x4{left:1819.909500px;}
.x9{left:2147.085000px;}
.x29{left:2175.752233px;}
.x24{left:2178.910339px;}
.x26{left:2184.767041px;}
.x3f{left:2185.827000px;}
.x40{left:2187.327000px;}
.x22{left:2192.786242px;}
.x23{left:2194.352400px;}
.x2b{left:2196.352142px;}
.x25{left:2201.370869px;}
.x2c{left:2208.256854px;}
.x2d{left:2222.727168px;}
.x2e{left:2239.788761px;}
.x2a{left:2271.781984px;}
.x10{left:2302.324500px;}
.x27{left:2303.853802px;}
.x14{left:2341.816924px;}
.x15{left:2386.801500px;}
.xd{left:2418.536571px;}
.x2{left:2424.652531px;}
.xe{left:2427.014578px;}
.xa{left:2439.053679px;}
.xc{left:2473.475940px;}
.x20{left:2486.462861px;}
.x28{left:2519.293210px;}
.xb{left:2529.524073px;}
.xf{left:2645.072113px;}
.x16{left:2767.242000px;}
.x6{left:3005.587316px;}
.x18{left:3628.701000px;}
.x17{left:3635.713500px;}
.x19{left:4002.064500px;}
.x11{left:4635.658361px;}
.x1e{left:4843.401942px;}
.x1a{left:4857.412453px;}
.x3e{left:4865.079000px;}
.x1d{left:4871.830706px;}
.x1f{left:4882.412945px;}
.x1c{left:4886.977209px;}
.x1b{left:4917.429173px;}
.x3b{left:5119.936406px;}
.x36{left:5123.554367px;}
.x35{left:5160.973070px;}
.x3c{left:5165.964919px;}
.x39{left:5169.475174px;}
.x30{left:5181.032634px;}
.x34{left:5186.538761px;}
.x2f{left:5192.532484px;}
.x37{left:5201.980411px;}
.x31{left:5215.480348px;}
.x3a{left:5219.528849px;}
.x38{left:5231.489521px;}
.x21{left:5281.605000px;}
.x32{left:5430.999340px;}
.x3d{left:5491.015010px;}
.x33{left:5536.504962px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:3.834667pt;}
.v2{vertical-align:25.845333pt;}
.ls10{letter-spacing:-3.455601pt;}
.lsf{letter-spacing:0.000000pt;}
.ls5{letter-spacing:2.764481pt;}
.ls9{letter-spacing:762.225928pt;}
.ls8{letter-spacing:781.482397pt;}
.lsb{letter-spacing:781.487730pt;}
.lse{letter-spacing:895.154715pt;}
.ls7{letter-spacing:895.160048pt;}
.lsa{letter-spacing:914.416517pt;}
.lsd{letter-spacing:914.421850pt;}
.ls3{letter-spacing:1539.441584pt;}
.ls4{letter-spacing:1942.579795pt;}
.ls2{letter-spacing:2211.290604pt;}
.ls0{letter-spacing:2298.162299pt;}
.ls1{letter-spacing:2385.391315pt;}
.ls6{letter-spacing:3256.122577pt;}
.lsc{letter-spacing:3864.459126pt;}
.ws5{word-spacing:-142.319560pt;}
.ws6{word-spacing:-80.054753pt;}
.ws4{word-spacing:-53.369835pt;}
.ws2{word-spacing:-47.439853pt;}
.ws0{word-spacing:-44.474863pt;}
.ws1{word-spacing:-0.191978pt;}
.ws7{word-spacing:0.000000pt;}
.ws3{word-spacing:3.263623pt;}
._2{margin-left:-33.020186pt;}
._e{margin-left:-26.492940pt;}
._f{margin-left:-24.765139pt;}
._19{margin-left:-21.309538pt;}
._1{margin-left:-18.941812pt;}
._1a{margin-left:-17.661960pt;}
._3{margin-left:-14.811622pt;}
._4{margin-left:-11.854631pt;}
._b{margin-left:-10.942736pt;}
._15{margin-left:-8.877908pt;}
._5{margin-left:-5.908651pt;}
._0{margin-left:-4.607468pt;}
._8{margin-left:-3.455601pt;}
._9{margin-left:-1.382240pt;}
._7{width:3.455601pt;}
._11{width:20.733605pt;}
._12{width:25.360271pt;}
._6{width:26.550533pt;}
._16{width:29.411003pt;}
._18{width:32.981790pt;}
._d{width:37.723642pt;}
._14{width:39.797003pt;}
._17{width:42.254319pt;}
._c{width:55.423998pt;}
._13{width:56.403085pt;}
._10{width:80.515499pt;}
._a{width:94.606672pt;}
.fs9{font-size:133.317933pt;}
.fs3{font-size:159.981520pt;}
.fs2{font-size:170.646955pt;}
.fs4{font-size:191.977824pt;}
.fs8{font-size:213.308693pt;}
.fs1{font-size:255.970432pt;}
.fs5{font-size:287.966736pt;}
.fs0{font-size:426.617387pt;}
.fs6{font-size:511.940864pt;}
.fs7{font-size:522.606299pt;}
.y0{bottom:0.000000pt;}
.y34{bottom:36.629904pt;}
.y50{bottom:275.380611pt;}
.y5f{bottom:276.209677pt;}
.y4f{bottom:332.707544pt;}
.y5e{bottom:333.536611pt;}
.y4e{bottom:390.034077pt;}
.y5d{bottom:390.863144pt;}
.y4d{bottom:447.360744pt;}
.y5c{bottom:448.189811pt;}
.y2a{bottom:455.032477pt;}
.y5b{bottom:505.516611pt;}
.y4c{bottom:506.020744pt;}
.y29{bottom:513.692211pt;}
.y4b{bottom:563.347411pt;}
.y5a{bottom:564.176477pt;}
.y28{bottom:571.019144pt;}
.y4a{bottom:620.673944pt;}
.y59{bottom:621.503277pt;}
.y27{bottom:628.345677pt;}
.y49{bottom:678.000877pt;}
.y58{bottom:678.829944pt;}
.y26{bottom:685.672477pt;}
.y57{bottom:736.156477pt;}
.y48{bottom:736.660611pt;}
.y25{bottom:742.999144pt;}
.y47{bottom:793.987544pt;}
.y56{bottom:794.816477pt;}
.y24{bottom:801.659011pt;}
.y46{bottom:851.314077pt;}
.y55{bottom:852.143144pt;}
.y23{bottom:858.985811pt;}
.y45{bottom:908.640744pt;}
.y54{bottom:909.469944pt;}
.y22{bottom:916.312477pt;}
.y44{bottom:965.967544pt;}
.y53{bottom:966.796611pt;}
.y21{bottom:973.639144pt;}
.y43{bottom:1023.294211pt;}
.y52{bottom:1024.123277pt;}
.y20{bottom:1030.965944pt;}
.y51{bottom:1081.450077pt;}
.y1f{bottom:1089.625677pt;}
.y41{bottom:1108.078117pt;}
.y1e{bottom:1146.952611pt;}
.y1d{bottom:1204.279144pt;}
.y1c{bottom:1261.605811pt;}
.y42{bottom:1294.086983pt;}
.y1b{bottom:1320.265544pt;}
.y1a{bottom:1377.592211pt;}
.y19{bottom:1434.918877pt;}
.y18{bottom:1492.245544pt;}
.y67{bottom:1545.687287pt;}
.y17{bottom:1549.572211pt;}
.y16{bottom:1606.898877pt;}
.y66{bottom:1662.523850pt;}
.y14{bottom:1738.484316pt;}
.y60{bottom:1751.272211pt;}
.y37{bottom:1760.149544pt;}
.y63{bottom:1847.732620pt;}
.y62{bottom:1958.326517pt;}
.y61{bottom:2053.836211pt;}
.y36{bottom:2069.833544pt;}
.y65{bottom:2113.727287pt;}
.y64{bottom:2231.981183pt;}
.y33{bottom:2327.586261pt;}
.y38{bottom:2396.518160pt;}
.y12{bottom:2433.418877pt;}
.y11{bottom:2492.078877pt;}
.y10{bottom:2549.405544pt;}
.y35{bottom:2558.732211pt;}
.yf{bottom:2606.732211pt;}
.y40{bottom:2622.893544pt;}
.y30{bottom:2660.070877pt;}
.ye{bottom:2664.058877pt;}
.y3f{bottom:2680.220211pt;}
.y2f{bottom:2717.397544pt;}
.yd{bottom:2722.718877pt;}
.y3e{bottom:2738.880211pt;}
.y2e{bottom:2774.724211pt;}
.yc{bottom:2780.045544pt;}
.y3d{bottom:2796.206877pt;}
.y2d{bottom:2832.050877pt;}
.yb{bottom:2837.372211pt;}
.y32{bottom:2846.549451pt;}
.y3c{bottom:2853.533544pt;}
.y2c{bottom:2889.377544pt;}
.ya{bottom:2894.698877pt;}
.y3b{bottom:2910.860211pt;}
.y2b{bottom:2946.704211pt;}
.y9{bottom:2952.025544pt;}
.y31{bottom:2964.848117pt;}
.y3a{bottom:2968.186877pt;}
.y8{bottom:3009.352211pt;}
.y39{bottom:3025.513544pt;}
.y13{bottom:3141.437649pt;}
.y15{bottom:3142.276316pt;}
.y7{bottom:3187.760620pt;}
.y6{bottom:3235.753953pt;}
.y5{bottom:3283.748620pt;}
.y3{bottom:3381.049386pt;}
.y4{bottom:3412.436030pt;}
.y2{bottom:3502.725653pt;}
.y1{bottom:3630.710987pt;}
.hc{height:97.455409pt;}
.h5{height:106.547692pt;}
.h4{height:116.946491pt;}
.h3{height:128.236297pt;}
.h7{height:138.607989pt;}
.h6{height:140.335789pt;}
.ha{height:150.588257pt;}
.hb{height:155.928655pt;}
.h2{height:186.602445pt;}
.h8{height:209.927751pt;}
.h1{height:311.004075pt;}
.h9{height:374.228772pt;}
.h0{height:3780.000000pt;}
.w1{width:5375.564000pt;}
.w0{width:5376.000000pt;}
.x0{left:0.000000pt;}
.x7{left:108.925840pt;}
.x8{left:124.924533pt;}
.x12{left:257.615333pt;}
.x1{left:308.592439pt;}
.x13{left:726.299847pt;}
.x5{left:820.806987pt;}
.x3{left:964.109311pt;}
.x4{left:1617.697333pt;}
.x9{left:1908.520000pt;}
.x29{left:1934.001984pt;}
.x24{left:1936.809191pt;}
.x26{left:1942.015147pt;}
.x3f{left:1942.957333pt;}
.x40{left:1944.290667pt;}
.x22{left:1949.143326pt;}
.x23{left:1950.535467pt;}
.x2b{left:1952.313015pt;}
.x25{left:1956.774106pt;}
.x2c{left:1962.894982pt;}
.x2d{left:1975.757483pt;}
.x2e{left:1990.923343pt;}
.x2a{left:2019.361764pt;}
.x10{left:2046.510667pt;}
.x27{left:2047.870046pt;}
.x14{left:2081.615043pt;}
.x15{left:2121.601333pt;}
.xd{left:2149.810285pt;}
.x2{left:2155.246694pt;}
.xe{left:2157.346291pt;}
.xa{left:2168.047715pt;}
.xc{left:2198.645280pt;}
.x20{left:2210.189210pt;}
.x28{left:2239.371742pt;}
.xb{left:2248.465843pt;}
.xf{left:2351.175212pt;}
.x16{left:2459.770667pt;}
.x6{left:2671.633170pt;}
.x18{left:3225.512000pt;}
.x17{left:3231.745333pt;}
.x19{left:3557.390667pt;}
.x11{left:4120.585210pt;}
.x1e{left:4305.246171pt;}
.x1a{left:4317.699958pt;}
.x3e{left:4324.514667pt;}
.x1d{left:4330.516183pt;}
.x1f{left:4339.922618pt;}
.x1c{left:4343.979741pt;}
.x1b{left:4371.048154pt;}
.x3b{left:4551.054584pt;}
.x36{left:4554.270549pt;}
.x35{left:4587.531618pt;}
.x3c{left:4591.968817pt;}
.x39{left:4595.089043pt;}
.x30{left:4605.362341pt;}
.x34{left:4610.256677pt;}
.x2f{left:4615.584430pt;}
.x37{left:4623.982587pt;}
.x31{left:4635.982532pt;}
.x3a{left:4639.581199pt;}
.x38{left:4650.212908pt;}
.x21{left:4694.760000pt;}
.x32{left:4827.554969pt;}
.x3d{left:4880.902231pt;}
.x33{left:4921.337744pt;}
}




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