
    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_082bee84e15a72251fc66f1a.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.128000;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_912827eb2f6757636083e3fb.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.128000;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_84ff7f41f418d989d896555d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.142000;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_cdc7b6f7316efd76897076be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.142000;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_27ecb649bf9beb584b25b551.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.003906;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_97e44b7ff2ec1850ccaf8c2c.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.159000;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_a6fcce909c5715e919574911.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.159000;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_3f72b70609af37b4275cb91c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.160500;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.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,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);}
.v2{vertical-align:-19.380000px;}
.v3{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:19.200000px;}
.lsb{letter-spacing:-4.962000px;}
.lsc{letter-spacing:-2.928000px;}
.ls7{letter-spacing:-2.922000px;}
.lsd{letter-spacing:-2.166000px;}
.ls6{letter-spacing:-0.606000px;}
.ls5{letter-spacing:-0.282000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.124800px;}
.lsa{letter-spacing:0.422400px;}
.ls2{letter-spacing:0.691200px;}
.ls0{letter-spacing:1.033650px;}
.ls3{letter-spacing:1.084800px;}
.ls8{letter-spacing:1.902000px;}
.ls9{letter-spacing:2.022000px;}
.sc_{text-shadow:none;}
.sc2{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);}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(64,136,137),0 0.015em rgb(64,136,137),0.015em 0 rgb(64,136,137),0 -0.015em  rgb(64,136,137);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(64,136,137);text-shadow:none;}
}
.ws0{word-spacing:-22.883850px;}
.ws5{word-spacing:-14.766424px;}
.ws9{word-spacing:-14.733537px;}
.ws6{word-spacing:-14.008800px;}
.ws7{word-spacing:-13.977600px;}
.wsb{word-spacing:-11.811600px;}
.ws4{word-spacing:-10.982400px;}
.ws3{word-spacing:-10.376400px;}
.wsa{word-spacing:-9.015600px;}
.ws2{word-spacing:-8.018400px;}
.ws1{word-spacing:-7.987200px;}
.ws8{word-spacing:0.000000px;}
._11{margin-left:-9.740550px;}
._e{margin-left:-8.367750px;}
._b{margin-left:-7.170600px;}
._6{margin-left:-6.071100px;}
._4{margin-left:-4.774650px;}
._d{margin-left:-3.752250px;}
._2{margin-left:-2.542650px;}
._0{margin-left:-1.326600px;}
._1{width:1.216050px;}
._3{width:2.641800px;}
._7{width:3.749550px;}
._c{width:4.760700px;}
._5{width:6.033750px;}
._a{width:8.072700px;}
._8{width:9.085500px;}
._9{width:10.664400px;}
._10{width:12.487800px;}
._f{width:15.609150px;}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(64,136,137);}
.fs7{font-size:33.600000px;}
.fs3{font-size:38.400000px;}
.fs4{font-size:38.550000px;}
.fs8{font-size:52.800000px;}
.fs1{font-size:67.200000px;}
.fs2{font-size:67.350000px;}
.fsa{font-size:70.834311px;}
.fs9{font-size:70.992424px;}
.fs5{font-size:110.400000px;}
.fs0{font-size:110.550000px;}
.fs6{font-size:168.150000px;}
.y0{bottom:0.000000px;}
.yc{bottom:31.237500px;}
.yb{bottom:48.037500px;}
.y41{bottom:79.275000px;}
.y40{bottom:99.712500px;}
.y3a{bottom:110.512500px;}
.y21{bottom:117.712500px;}
.y3f{bottom:120.112500px;}
.y39{bottom:130.950000px;}
.y20{bottom:138.150000px;}
.y38{bottom:151.350000px;}
.y1f{bottom:158.550000px;}
.y37{bottom:171.780000px;}
.y36{bottom:192.180000px;}
.y61{bottom:193.380000px;}
.y60{bottom:213.825000px;}
.y5f{bottom:234.225000px;}
.y1e{bottom:247.425000px;}
.y35{bottom:248.625000px;}
.y5e{bottom:254.655000px;}
.y1d{bottom:267.870000px;}
.y34{bottom:269.055000px;}
.y33{bottom:312.300000px;}
.y5d{bottom:317.100000px;}
.y1c{bottom:332.730000px;}
.y5c{bottom:337.545000px;}
.y1b{bottom:353.130000px;}
.y5b{bottom:357.945000px;}
.y1a{bottom:373.575000px;}
.y5a{bottom:378.375000px;}
.y3e{bottom:384.375000px;}
.y19{bottom:393.975000px;}
.y3d{bottom:404.775000px;}
.y3c{bottom:425.205000px;}
.y59{bottom:432.405000px;}
.y3b{bottom:445.605000px;}
.y58{bottom:452.850000px;}
.y18{bottom:466.050000px;}
.y57{bottom:473.250000px;}
.y17{bottom:486.450000px;}
.y56{bottom:493.695000px;}
.y16{bottom:506.880000px;}
.y27{bottom:522.480000px;}
.y26{bottom:542.925000px;}
.y55{bottom:554.925000px;}
.y54{bottom:575.355000px;}
.y15{bottom:577.755000px;}
.y53{bottom:595.755000px;}
.y14{bottom:598.155000px;}
.y32{bottom:612.600000px;}
.y52{bottom:616.200000px;}
.y13{bottom:618.600000px;}
.y31{bottom:633.000000px;}
.y51{bottom:636.600000px;}
.y12{bottom:639.000000px;}
.y30{bottom:653.430000px;}
.y11{bottom:684.630000px;}
.y50{bottom:687.030000px;}
.y10{bottom:705.075000px;}
.y4f{bottom:707.475000px;}
.y2f{bottom:718.275000px;}
.yf{bottom:725.475000px;}
.y4e{bottom:727.905000px;}
.y2e{bottom:738.705000px;}
.ye{bottom:745.905000px;}
.y4d{bottom:748.305000px;}
.y2d{bottom:759.105000px;}
.yd{bottom:766.305000px;}
.y4c{bottom:768.750000px;}
.y9{bottom:805.950000px;}
.y46{bottom:817.980000px;}
.y2c{bottom:835.980000px;}
.y45{bottom:838.380000px;}
.y2b{bottom:856.425000px;}
.y44{bottom:858.825000px;}
.y43{bottom:879.225000px;}
.y42{bottom:899.655000px;}
.y8{bottom:902.070000px;}
.y7{bottom:922.455000px;}
.y2a{bottom:923.655000px;}
.y6{bottom:942.900000px;}
.y29{bottom:944.100000px;}
.y28{bottom:964.500000px;}
.y5{bottom:972.945000px;}
.y4b{bottom:975.330000px;}
.y4{bottom:993.330000px;}
.y4a{bottom:995.730000px;}
.y3{bottom:1013.775000px;}
.y49{bottom:1016.175000px;}
.y25{bottom:1023.375000px;}
.y2{bottom:1034.175000px;}
.y48{bottom:1036.575000px;}
.y24{bottom:1043.775000px;}
.y23{bottom:1064.205000px;}
.y1{bottom:1071.405000px;}
.y47{bottom:1082.205000px;}
.y22{bottom:1084.605000px;}
.ya{bottom:1177.125000px;}
.h9{height:33.727200px;}
.h4{height:61.252800px;}
.h5{height:61.389525px;}
.ha{height:62.529600px;}
.hc{height:62.669175px;}
.hd{height:64.565475px;}
.hb{height:64.709594px;}
.h6{height:66.988257px;}
.h7{height:100.243200px;}
.h3{height:100.379400px;}
.h8{height:157.892850px;}
.h1{height:1262.250000px;}
.h2{height:1262.399908px;}
.h0{height:1262.400000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x2{left:57.674987px;}
.x1{left:58.874987px;}
.xf{left:60.074987px;}
.x9{left:104.549987px;}
.x3{left:157.424987px;}
.xa{left:200.654987px;}
.x37{left:227.099987px;}
.x22{left:228.299987px;}
.x10{left:235.499987px;}
.x30{left:237.944987px;}
.xb{left:247.529987px;}
.x14{left:253.529987px;}
.x15{left:261.944987px;}
.x2a{left:267.974987px;}
.xe{left:273.974987px;}
.x2b{left:277.574987px;}
.x11{left:287.174987px;}
.x23{left:294.404987px;}
.x36{left:296.819987px;}
.x4{left:308.819987px;}
.x16{left:310.004987px;}
.x17{left:318.404987px;}
.x12{left:319.619987px;}
.x2c{left:331.649987px;}
.x2e{left:336.449987px;}
.x31{left:344.849987px;}
.x5{left:348.449987px;}
.x13{left:365.279987px;}
.x38{left:373.694987px;}
.x6{left:377.279987px;}
.x18{left:388.124987px;}
.x19{left:396.524987px;}
.x24{left:406.124987px;}
.x2d{left:426.569987px;}
.x8{left:432.569987px;}
.x1a{left:450.599987px;}
.x7{left:457.799987px;}
.x2f{left:480.644987px;}
.x1b{left:504.674987px;}
.x1c{left:513.074987px;}
.x25{left:559.949987px;}
.x34{left:561.149987px;}
.x1d{left:570.749987px;}
.x1e{left:579.194987px;}
.x1f{left:642.869987px;}
.x20{left:678.899987px;}
.x26{left:688.529987px;}
.xc{left:704.129987px;}
.x35{left:711.329987px;}
.x21{left:737.774987px;}
.x32{left:741.374987px;}
.xd{left:766.604987px;}
.x27{left:770.204987px;}
.x28{left:777.449987px;}
.x33{left:787.049987px;}
.x29{left:832.724987px;}
@media print{
.v2{vertical-align:-17.226667pt;}
.v3{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:17.066667pt;}
.lsb{letter-spacing:-4.410667pt;}
.lsc{letter-spacing:-2.602667pt;}
.ls7{letter-spacing:-2.597333pt;}
.lsd{letter-spacing:-1.925333pt;}
.ls6{letter-spacing:-0.538667pt;}
.ls5{letter-spacing:-0.250667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.110933pt;}
.lsa{letter-spacing:0.375467pt;}
.ls2{letter-spacing:0.614400pt;}
.ls0{letter-spacing:0.918800pt;}
.ls3{letter-spacing:0.964267pt;}
.ls8{letter-spacing:1.690667pt;}
.ls9{letter-spacing:1.797333pt;}
.ws0{word-spacing:-20.341200pt;}
.ws5{word-spacing:-13.125710pt;}
.ws9{word-spacing:-13.096477pt;}
.ws6{word-spacing:-12.452267pt;}
.ws7{word-spacing:-12.424533pt;}
.wsb{word-spacing:-10.499200pt;}
.ws4{word-spacing:-9.762133pt;}
.ws3{word-spacing:-9.223467pt;}
.wsa{word-spacing:-8.013867pt;}
.ws2{word-spacing:-7.127467pt;}
.ws1{word-spacing:-7.099733pt;}
.ws8{word-spacing:0.000000pt;}
._11{margin-left:-8.658267pt;}
._e{margin-left:-7.438000pt;}
._b{margin-left:-6.373867pt;}
._6{margin-left:-5.396533pt;}
._4{margin-left:-4.244133pt;}
._d{margin-left:-3.335333pt;}
._2{margin-left:-2.260133pt;}
._0{margin-left:-1.179200pt;}
._1{width:1.080933pt;}
._3{width:2.348267pt;}
._7{width:3.332933pt;}
._c{width:4.231733pt;}
._5{width:5.363333pt;}
._a{width:7.175733pt;}
._8{width:8.076000pt;}
._9{width:9.479467pt;}
._10{width:11.100267pt;}
._f{width:13.874800pt;}
.fs7{font-size:29.866667pt;}
.fs3{font-size:34.133333pt;}
.fs4{font-size:34.266667pt;}
.fs8{font-size:46.933333pt;}
.fs1{font-size:59.733333pt;}
.fs2{font-size:59.866667pt;}
.fsa{font-size:62.963832pt;}
.fs9{font-size:63.104377pt;}
.fs5{font-size:98.133333pt;}
.fs0{font-size:98.266667pt;}
.fs6{font-size:149.466667pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:27.766667pt;}
.yb{bottom:42.700000pt;}
.y41{bottom:70.466667pt;}
.y40{bottom:88.633333pt;}
.y3a{bottom:98.233333pt;}
.y21{bottom:104.633333pt;}
.y3f{bottom:106.766667pt;}
.y39{bottom:116.400000pt;}
.y20{bottom:122.800000pt;}
.y38{bottom:134.533333pt;}
.y1f{bottom:140.933333pt;}
.y37{bottom:152.693333pt;}
.y36{bottom:170.826667pt;}
.y61{bottom:171.893333pt;}
.y60{bottom:190.066667pt;}
.y5f{bottom:208.200000pt;}
.y1e{bottom:219.933333pt;}
.y35{bottom:221.000000pt;}
.y5e{bottom:226.360000pt;}
.y1d{bottom:238.106667pt;}
.y34{bottom:239.160000pt;}
.y33{bottom:277.600000pt;}
.y5d{bottom:281.866667pt;}
.y1c{bottom:295.760000pt;}
.y5c{bottom:300.040000pt;}
.y1b{bottom:313.893333pt;}
.y5b{bottom:318.173333pt;}
.y1a{bottom:332.066667pt;}
.y5a{bottom:336.333333pt;}
.y3e{bottom:341.666667pt;}
.y19{bottom:350.200000pt;}
.y3d{bottom:359.800000pt;}
.y3c{bottom:377.960000pt;}
.y59{bottom:384.360000pt;}
.y3b{bottom:396.093333pt;}
.y58{bottom:402.533333pt;}
.y18{bottom:414.266667pt;}
.y57{bottom:420.666667pt;}
.y17{bottom:432.400000pt;}
.y56{bottom:438.840000pt;}
.y16{bottom:450.560000pt;}
.y27{bottom:464.426667pt;}
.y26{bottom:482.600000pt;}
.y55{bottom:493.266667pt;}
.y54{bottom:511.426667pt;}
.y15{bottom:513.560000pt;}
.y53{bottom:529.560000pt;}
.y14{bottom:531.693333pt;}
.y32{bottom:544.533333pt;}
.y52{bottom:547.733333pt;}
.y13{bottom:549.866667pt;}
.y31{bottom:562.666667pt;}
.y51{bottom:565.866667pt;}
.y12{bottom:568.000000pt;}
.y30{bottom:580.826667pt;}
.y11{bottom:608.560000pt;}
.y50{bottom:610.693333pt;}
.y10{bottom:626.733333pt;}
.y4f{bottom:628.866667pt;}
.y2f{bottom:638.466667pt;}
.yf{bottom:644.866667pt;}
.y4e{bottom:647.026667pt;}
.y2e{bottom:656.626667pt;}
.ye{bottom:663.026667pt;}
.y4d{bottom:665.160000pt;}
.y2d{bottom:674.760000pt;}
.yd{bottom:681.160000pt;}
.y4c{bottom:683.333333pt;}
.y9{bottom:716.400000pt;}
.y46{bottom:727.093333pt;}
.y2c{bottom:743.093333pt;}
.y45{bottom:745.226667pt;}
.y2b{bottom:761.266667pt;}
.y44{bottom:763.400000pt;}
.y43{bottom:781.533333pt;}
.y42{bottom:799.693333pt;}
.y8{bottom:801.840000pt;}
.y7{bottom:819.960000pt;}
.y2a{bottom:821.026667pt;}
.y6{bottom:838.133333pt;}
.y29{bottom:839.200000pt;}
.y28{bottom:857.333333pt;}
.y5{bottom:864.840000pt;}
.y4b{bottom:866.960000pt;}
.y4{bottom:882.960000pt;}
.y4a{bottom:885.093333pt;}
.y3{bottom:901.133333pt;}
.y49{bottom:903.266667pt;}
.y25{bottom:909.666667pt;}
.y2{bottom:919.266667pt;}
.y48{bottom:921.400000pt;}
.y24{bottom:927.800000pt;}
.y23{bottom:945.960000pt;}
.y1{bottom:952.360000pt;}
.y47{bottom:961.960000pt;}
.y22{bottom:964.093333pt;}
.ya{bottom:1046.333333pt;}
.h9{height:29.979733pt;}
.h4{height:54.446933pt;}
.h5{height:54.568467pt;}
.ha{height:55.581867pt;}
.hc{height:55.705933pt;}
.hd{height:57.391533pt;}
.hb{height:57.519639pt;}
.h6{height:59.545117pt;}
.h7{height:89.105067pt;}
.h3{height:89.226133pt;}
.h8{height:140.349200pt;}
.h1{height:1122.000000pt;}
.h2{height:1122.133252pt;}
.h0{height:1122.133333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x2{left:51.266655pt;}
.x1{left:52.333322pt;}
.xf{left:53.399988pt;}
.x9{left:92.933322pt;}
.x3{left:139.933322pt;}
.xa{left:178.359988pt;}
.x37{left:201.866655pt;}
.x22{left:202.933322pt;}
.x10{left:209.333322pt;}
.x30{left:211.506655pt;}
.xb{left:220.026655pt;}
.x14{left:225.359988pt;}
.x15{left:232.839988pt;}
.x2a{left:238.199988pt;}
.xe{left:243.533322pt;}
.x2b{left:246.733322pt;}
.x11{left:255.266655pt;}
.x23{left:261.693322pt;}
.x36{left:263.839988pt;}
.x4{left:274.506655pt;}
.x16{left:275.559988pt;}
.x17{left:283.026655pt;}
.x12{left:284.106655pt;}
.x2c{left:294.799988pt;}
.x2e{left:299.066655pt;}
.x31{left:306.533322pt;}
.x5{left:309.733322pt;}
.x13{left:324.693322pt;}
.x38{left:332.173322pt;}
.x6{left:335.359988pt;}
.x18{left:344.999988pt;}
.x19{left:352.466655pt;}
.x24{left:360.999988pt;}
.x2d{left:379.173322pt;}
.x8{left:384.506655pt;}
.x1a{left:400.533322pt;}
.x7{left:406.933322pt;}
.x2f{left:427.239988pt;}
.x1b{left:448.599988pt;}
.x1c{left:456.066655pt;}
.x25{left:497.733322pt;}
.x34{left:498.799988pt;}
.x1d{left:507.333322pt;}
.x1e{left:514.839988pt;}
.x1f{left:571.439988pt;}
.x20{left:603.466655pt;}
.x26{left:612.026655pt;}
.xc{left:625.893322pt;}
.x35{left:632.293322pt;}
.x21{left:655.799988pt;}
.x32{left:658.999988pt;}
.xd{left:681.426655pt;}
.x27{left:684.626655pt;}
.x28{left:691.066655pt;}
.x33{left:699.599988pt;}
.x29{left:740.199988pt;}
}




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