
    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_67b72d692b919d50b59bd823.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_83bb0d145ab982e41506a433.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_02be971b0484f5b79b889149.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d05a69188d267254e65e4a9e.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_29611e259b6e8006160055a4.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;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_29730d5fb69feff53b2006b0.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7ed1b0182595c2061fb5d88c.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.734863;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_1d620edd11e7d0ab8c14e200.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.734863;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:ff9;src:url('chunks/assets/font_cf4fb00aded2cb1e8a9d66c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.734863;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:ffa;src:url('chunks/assets/font_163843ac4283181dacabeea0.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.734863;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws2{word-spacing:-33.736499px;}
.ws3{word-spacing:-20.249999px;}
.ws6{word-spacing:-16.971144px;}
.ws5{word-spacing:-14.048753px;}
.ws4{word-spacing:-0.108430px;}
.ws7{word-spacing:0.000000px;}
.ws1{word-spacing:388.183731px;}
.ws0{word-spacing:555.738412px;}
._19{margin-left:-1.000216px;}
._a{width:1.058400px;}
._17{width:3.792174px;}
._16{width:4.853297px;}
._1d{width:6.383259px;}
._18{width:7.557890px;}
._1c{width:8.637763px;}
._1a{width:12.662286px;}
._0{width:14.154486px;}
._d{width:17.952258px;}
._10{width:18.971324px;}
._1{width:23.495815px;}
._2{width:24.825079px;}
._b{width:26.143132px;}
._11{width:35.777450px;}
._e{width:38.476955px;}
._15{width:47.958794px;}
._12{width:51.089450px;}
._f{width:52.438202px;}
._c{width:57.227508px;}
._13{width:82.742949px;}
._1b{width:93.614377px;}
._14{width:98.762683px;}
._6{width:448.495541px;}
._7{width:453.034016px;}
._8{width:552.034012px;}
._5{width:572.486241px;}
._4{width:578.362701px;}
._3{width:661.050242px;}
._9{width:681.370532px;}
.fc7{color:transparent;}
.fc6{color:rgb(78,134,205);}
.fc5{color:rgb(241,148,32);}
.fc4{color:rgb(245,120,48);}
.fc3{color:rgb(137,214,245);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(14,19,22);}
.fc0{color:rgb(13,72,122);}
.fs2{font-size:39.554998px;}
.fsb{font-size:53.999998px;}
.fs5{font-size:54.044999px;}
.fs8{font-size:54.082416px;}
.fsc{font-size:56.570481px;}
.fs1{font-size:65.969996px;}
.fs4{font-size:67.499997px;}
.fsa{font-size:92.339996px;}
.fs6{font-size:92.365447px;}
.fs9{font-size:92.376880px;}
.fs7{font-size:108.430236px;}
.fs3{font-size:112.454995px;}
.fs0{font-size:172.485002px;}
.y0{bottom:0.000000px;}
.y27{bottom:0.000022px;}
.y3e{bottom:4.205352px;}
.y33{bottom:7.482927px;}
.y40{bottom:7.496987px;}
.y55{bottom:8.825384px;}
.y4b{bottom:8.862298px;}
.y35{bottom:8.864144px;}
.y42{bottom:8.957923px;}
.yc{bottom:10.927504px;}
.y1e{bottom:12.938601px;}
.y14{bottom:12.938651px;}
.y57{bottom:17.436358px;}
.y3d{bottom:18.247522px;}
.y20{bottom:20.811347px;}
.y26{bottom:24.327431px;}
.y4{bottom:31.687479px;}
.y3c{bottom:32.289693px;}
.y1d{bottom:34.313600px;}
.y13{bottom:34.313651px;}
.yb{bottom:36.802503px;}
.y25{bottom:45.702430px;}
.y3b{bottom:46.331864px;}
.y1c{bottom:55.688599px;}
.y12{bottom:55.688650px;}
.y3a{bottom:60.374034px;}
.ya{bottom:62.677502px;}
.y24{bottom:67.077429px;}
.y39{bottom:74.416205px;}
.y3{bottom:74.437478px;}
.y1b{bottom:77.063598px;}
.y11{bottom:77.063649px;}
.y23{bottom:88.452428px;}
.y38{bottom:88.458375px;}
.y1a{bottom:98.438597px;}
.y10{bottom:98.438648px;}
.y21{bottom:99.265266px;}
.y37{bottom:102.500546px;}
.y22{bottom:113.202427px;}
.y2{bottom:117.187476px;}
.y82{bottom:118.809127px;}
.y19{bottom:119.813597px;}
.yf{bottom:119.813647px;}
.y81{bottom:136.487402px;}
.y7{bottom:140.302499px;}
.y18{bottom:141.188596px;}
.ye{bottom:144.563646px;}
.y9{bottom:147.052499px;}
.y80{bottom:154.165677px;}
.y17{bottom:162.563595px;}
.y6{bottom:166.177498px;}
.y7f{bottom:171.843953px;}
.y8{bottom:172.927498px;}
.y16{bottom:187.313594px;}
.y7e{bottom:266.040011px;}
.y52{bottom:328.761562px;}
.y51{bottom:342.261562px;}
.y50{bottom:355.761561px;}
.y54{bottom:359.280008px;}
.y4f{bottom:369.261561px;}
.y4e{bottom:382.761560px;}
.y4d{bottom:396.261559px;}
.y4c{bottom:409.761559px;}
.y53{bottom:432.757782px;}
.y48{bottom:507.606675px;}
.y47{bottom:521.106674px;}
.y4a{bottom:528.480000px;}
.y46{bottom:534.606674px;}
.y45{bottom:548.106673px;}
.y44{bottom:561.606673px;}
.y43{bottom:575.106672px;}
.y49{bottom:599.227895px;}
.y7d{bottom:599.928383px;}
.y7c{bottom:616.803382px;}
.y7b{bottom:633.678382px;}
.y7a{bottom:650.553381px;}
.y79{bottom:667.428380px;}
.y36{bottom:677.519994px;}
.y78{bottom:684.303379px;}
.y77{bottom:701.178379px;}
.y41{bottom:713.519993px;}
.y76{bottom:718.053378px;}
.y75{bottom:734.928377px;}
.y74{bottom:751.803377px;}
.y73{bottom:775.589116px;}
.y3f{bottom:793.439989px;}
.y72{bottom:849.369781px;}
.y71{bottom:866.244780px;}
.y31{bottom:880.174043px;}
.y70{bottom:883.119779px;}
.y30{bottom:893.674043px;}
.y6f{bottom:899.994779px;}
.y2f{bottom:907.174042px;}
.y6e{bottom:916.869778px;}
.y2e{bottom:920.674042px;}
.y6d{bottom:933.744777px;}
.y2d{bottom:934.174041px;}
.y2c{bottom:947.674041px;}
.y34{bottom:948.959983px;}
.y6c{bottom:950.619776px;}
.y2b{bottom:961.174040px;}
.y2a{bottom:974.674039px;}
.y6b{bottom:984.369775px;}
.y29{bottom:988.174039px;}
.y6a{bottom:1001.244774px;}
.y28{bottom:1001.674038px;}
.y69{bottom:1018.119774px;}
.y32{bottom:1020.239980px;}
.y68{bottom:1034.994773px;}
.y67{bottom:1051.869772px;}
.y1f{bottom:1065.155162px;}
.y66{bottom:1068.744771px;}
.y65{bottom:1085.619771px;}
.y64{bottom:1102.494770px;}
.y63{bottom:1119.369769px;}
.yd{bottom:1179.982845px;}
.y62{bottom:1401.633971px;}
.y61{bottom:1418.508970px;}
.y15{bottom:1421.548556px;}
.y60{bottom:1435.383970px;}
.y5f{bottom:1452.258969px;}
.y5e{bottom:1469.133968px;}
.y5d{bottom:1486.008968px;}
.y5c{bottom:1519.758966px;}
.y5b{bottom:1536.633966px;}
.y5a{bottom:1553.508965px;}
.y59{bottom:1570.383964px;}
.y58{bottom:1587.258963px;}
.y56{bottom:1603.107993px;}
.y5{bottom:1695.834006px;}
.y1{bottom:1871.597515px;}
.h6{height:31.643999px;}
.hf{height:31.679999px;}
.h11{height:37.079998px;}
.he{height:41.351813px;}
.h14{height:41.380442px;}
.h18{height:43.199998px;}
.h17{height:43.874998px;}
.h1a{height:45.256384px;}
.hb{height:47.249998px;}
.h5{height:52.775997px;}
.h9{height:53.999998px;}
.h16{height:70.156755px;}
.h10{height:70.176091px;}
.h15{height:70.184778px;}
.h12{height:78.622510px;}
.h8{height:89.963996px;}
.h13{height:116.999995px;}
.h3{height:137.988001px;}
.hc{height:139.499994px;}
.h2{height:157.499993px;}
.h7{height:170.999993px;}
.h4{height:181.125014px;}
.ha{height:213.749948px;}
.h19{height:303.479987px;}
.hd{height:2159.999880px;}
.h0{height:2159.999903px;}
.h1{height:2160.000000px;}
.w9{width:32.039999px;}
.w5{width:156.374993px;}
.wa{width:309.959987px;}
.wb{width:324.359986px;}
.w8{width:336.599986px;}
.w4{width:390.374984px;}
.w3{width:403.874983px;}
.wc{width:663.749972px;}
.wd{width:700.919971px;}
.w2{width:818.999966px;}
.w6{width:1119.374953px;}
.w1{width:1187.999951px;}
.w7{width:1214.999949px;}
.w0{width:1215.000000px;}
.x0{left:0.000000px;}
.x5{left:9.562500px;}
.x1{left:13.309902px;}
.x2{left:19.283202px;}
.x6{left:49.166014px;}
.xc{left:53.890569px;}
.xd{left:67.458907px;}
.xe{left:77.707262px;}
.x15{left:79.315024px;}
.x11{left:86.039996px;}
.x13{left:87.119996px;}
.x12{left:93.602242px;}
.x8{left:107.419917px;}
.x10{left:113.039995px;}
.xa{left:116.683589px;}
.x7{left:125.261714px;}
.x14{left:135.019715px;}
.xf{left:137.639439px;}
.xb{left:138.656244px;}
.x3{left:151.189447px;}
.x9{left:179.244133px;}
.x4{left:197.917638px;}
.x17{left:266.080073px;}
.x21{left:493.176954px;}
.x1f{left:504.719979px;}
.x22{left:519.933760px;}
.x16{left:522.561600px;}
.x1d{left:530.141374px;}
.x18{left:538.289978px;}
.x23{left:541.074031px;}
.x1c{left:545.233117px;}
.x1e{left:553.080826px;}
.x19{left:561.229430px;}
.x20{left:580.500267px;}
.x1a{left:849.295693px;}
.x1b{left:872.235145px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws2{word-spacing:-29.987999pt;}
.ws3{word-spacing:-17.999999pt;}
.ws6{word-spacing:-15.085461pt;}
.ws5{word-spacing:-12.487780pt;}
.ws4{word-spacing:-0.096382pt;}
.ws7{word-spacing:0.000000pt;}
.ws1{word-spacing:345.052206pt;}
.ws0{word-spacing:493.989699pt;}
._19{margin-left:-0.889081pt;}
._a{width:0.940800pt;}
._17{width:3.370821pt;}
._16{width:4.314042pt;}
._1d{width:5.674008pt;}
._18{width:6.718125pt;}
._1c{width:7.678011pt;}
._1a{width:11.255366pt;}
._0{width:12.581765pt;}
._d{width:15.957563pt;}
._10{width:16.863399pt;}
._1{width:20.885169pt;}
._2{width:22.066737pt;}
._b{width:23.238340pt;}
._11{width:31.802177pt;}
._e{width:34.201737pt;}
._15{width:42.630039pt;}
._12{width:45.412844pt;}
._f{width:46.611735pt;}
._c{width:50.868896pt;}
._13{width:73.549288pt;}
._1b{width:83.212780pt;}
._14{width:87.789052pt;}
._6{width:398.662703pt;}
._7{width:402.696903pt;}
._8{width:490.696900pt;}
._5{width:508.876659pt;}
._4{width:514.100179pt;}
._3{width:587.600216pt;}
._9{width:605.662695pt;}
.fs2{font-size:35.159999pt;}
.fsb{font-size:47.999998pt;}
.fs5{font-size:48.039999pt;}
.fs8{font-size:48.073259pt;}
.fsc{font-size:50.284872pt;}
.fs1{font-size:58.639997pt;}
.fs4{font-size:59.999998pt;}
.fsa{font-size:82.079997pt;}
.fs6{font-size:82.102619pt;}
.fs9{font-size:82.112782pt;}
.fs7{font-size:96.382432pt;}
.fs3{font-size:99.959996pt;}
.fs0{font-size:153.320002pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:0.000020pt;}
.y3e{bottom:3.738091pt;}
.y33{bottom:6.651490pt;}
.y40{bottom:6.663988pt;}
.y55{bottom:7.844786pt;}
.y4b{bottom:7.877598pt;}
.y35{bottom:7.879239pt;}
.y42{bottom:7.962598pt;}
.yc{bottom:9.713337pt;}
.y1e{bottom:11.500979pt;}
.y14{bottom:11.501024pt;}
.y57{bottom:15.498985pt;}
.y3d{bottom:16.220020pt;}
.y20{bottom:18.498975pt;}
.y26{bottom:21.624383pt;}
.y4{bottom:28.166648pt;}
.y3c{bottom:28.701949pt;}
.y1d{bottom:30.500978pt;}
.y13{bottom:30.501023pt;}
.yb{bottom:32.713336pt;}
.y25{bottom:40.624382pt;}
.y3b{bottom:41.183879pt;}
.y1c{bottom:49.500977pt;}
.y12{bottom:49.501022pt;}
.y3a{bottom:53.665808pt;}
.ya{bottom:55.713335pt;}
.y24{bottom:59.624382pt;}
.y39{bottom:66.147737pt;}
.y3{bottom:66.166647pt;}
.y1b{bottom:68.500976pt;}
.y11{bottom:68.501021pt;}
.y23{bottom:78.624381pt;}
.y38{bottom:78.629667pt;}
.y1a{bottom:87.500976pt;}
.y10{bottom:87.501020pt;}
.y21{bottom:88.235792pt;}
.y37{bottom:91.111596pt;}
.y22{bottom:100.624380pt;}
.y2{bottom:104.166645pt;}
.y82{bottom:105.608113pt;}
.y19{bottom:106.500975pt;}
.yf{bottom:106.501020pt;}
.y81{bottom:121.322135pt;}
.y7{bottom:124.713332pt;}
.y18{bottom:125.500974pt;}
.ye{bottom:128.501019pt;}
.y9{bottom:130.713332pt;}
.y80{bottom:137.036158pt;}
.y17{bottom:144.500973pt;}
.y6{bottom:147.713331pt;}
.y7f{bottom:152.750180pt;}
.y8{bottom:153.713331pt;}
.y16{bottom:166.500972pt;}
.y7e{bottom:236.480010pt;}
.y52{bottom:292.232500pt;}
.y51{bottom:304.232499pt;}
.y50{bottom:316.232499pt;}
.y54{bottom:319.360007pt;}
.y4f{bottom:328.232498pt;}
.y4e{bottom:340.232498pt;}
.y4d{bottom:352.232497pt;}
.y4c{bottom:364.232497pt;}
.y53{bottom:384.673584pt;}
.y48{bottom:451.205933pt;}
.y47{bottom:463.205933pt;}
.y4a{bottom:469.760000pt;}
.y46{bottom:475.205932pt;}
.y45{bottom:487.205932pt;}
.y44{bottom:499.205931pt;}
.y43{bottom:511.205931pt;}
.y49{bottom:532.647018pt;}
.y7d{bottom:533.269674pt;}
.y7c{bottom:548.269673pt;}
.y7b{bottom:563.269673pt;}
.y7a{bottom:578.269672pt;}
.y79{bottom:593.269671pt;}
.y36{bottom:602.239995pt;}
.y78{bottom:608.269671pt;}
.y77{bottom:623.269670pt;}
.y41{bottom:634.239994pt;}
.y76{bottom:638.269669pt;}
.y75{bottom:653.269669pt;}
.y74{bottom:668.269668pt;}
.y73{bottom:689.412547pt;}
.y3f{bottom:705.279991pt;}
.y72{bottom:754.995361pt;}
.y71{bottom:769.995360pt;}
.y31{bottom:782.376927pt;}
.y70{bottom:784.995359pt;}
.y30{bottom:794.376927pt;}
.y6f{bottom:799.995359pt;}
.y2f{bottom:806.376926pt;}
.y6e{bottom:814.995358pt;}
.y2e{bottom:818.376926pt;}
.y6d{bottom:829.995357pt;}
.y2d{bottom:830.376925pt;}
.y2c{bottom:842.376925pt;}
.y34{bottom:843.519985pt;}
.y6c{bottom:844.995357pt;}
.y2b{bottom:854.376924pt;}
.y2a{bottom:866.376924pt;}
.y6b{bottom:874.995356pt;}
.y29{bottom:878.376923pt;}
.y6a{bottom:889.995355pt;}
.y28{bottom:890.376923pt;}
.y69{bottom:904.995354pt;}
.y32{bottom:906.879982pt;}
.y68{bottom:919.995354pt;}
.y67{bottom:934.995353pt;}
.y1f{bottom:946.804589pt;}
.y66{bottom:949.995352pt;}
.y65{bottom:964.995352pt;}
.y64{bottom:979.995351pt;}
.y63{bottom:994.995351pt;}
.yd{bottom:1048.873640pt;}
.y62{bottom:1245.896863pt;}
.y61{bottom:1260.896863pt;}
.y15{bottom:1263.598716pt;}
.y60{bottom:1275.896862pt;}
.y5f{bottom:1290.896861pt;}
.y5e{bottom:1305.896861pt;}
.y5d{bottom:1320.896860pt;}
.y5c{bottom:1350.896859pt;}
.y5b{bottom:1365.896858pt;}
.y5a{bottom:1380.896858pt;}
.y59{bottom:1395.896857pt;}
.y58{bottom:1410.896856pt;}
.y56{bottom:1424.984882pt;}
.y5{bottom:1507.408005pt;}
.y1{bottom:1663.642235pt;}
.h6{height:28.127999pt;}
.hf{height:28.159999pt;}
.h11{height:32.959999pt;}
.he{height:36.757167pt;}
.h14{height:36.782615pt;}
.h18{height:38.399998pt;}
.h17{height:38.999998pt;}
.h1a{height:40.227897pt;}
.hb{height:41.999998pt;}
.h5{height:46.911997pt;}
.h9{height:47.999998pt;}
.h16{height:62.361560pt;}
.h10{height:62.378748pt;}
.h15{height:62.386469pt;}
.h12{height:69.886676pt;}
.h8{height:79.967997pt;}
.h13{height:103.999996pt;}
.h3{height:122.656001pt;}
.hc{height:123.999995pt;}
.h2{height:139.999994pt;}
.h7{height:151.999994pt;}
.h4{height:161.000012pt;}
.ha{height:189.999954pt;}
.h19{height:269.759989pt;}
.hd{height:1919.999893pt;}
.h0{height:1919.999913pt;}
.h1{height:1920.000000pt;}
.w9{width:28.479999pt;}
.w5{width:138.999994pt;}
.wa{width:275.519989pt;}
.wb{width:288.319988pt;}
.w8{width:299.199988pt;}
.w4{width:346.999986pt;}
.w3{width:358.999985pt;}
.wc{width:589.999975pt;}
.wd{width:623.039974pt;}
.w2{width:727.999970pt;}
.w6{width:994.999959pt;}
.w1{width:1055.999956pt;}
.w7{width:1079.999955pt;}
.w0{width:1080.000000pt;}
.x0{left:0.000000pt;}
.x5{left:8.500000pt;}
.x1{left:11.831024pt;}
.x2{left:17.140624pt;}
.x6{left:43.703123pt;}
.xc{left:47.902728pt;}
.xd{left:59.963473pt;}
.xe{left:69.073122pt;}
.x15{left:70.502244pt;}
.x11{left:76.479997pt;}
.x13{left:77.439997pt;}
.x12{left:83.201993pt;}
.x8{left:95.484371pt;}
.x10{left:100.479996pt;}
.xa{left:103.718746pt;}
.x7{left:111.343745pt;}
.x14{left:120.017525pt;}
.xf{left:122.346168pt;}
.xb{left:123.249995pt;}
.x3{left:134.390619pt;}
.x9{left:159.328118pt;}
.x4{left:175.926789pt;}
.x17{left:236.515620pt;}
.x21{left:438.379515pt;}
.x1f{left:448.639981pt;}
.x22{left:462.163342pt;}
.x16{left:464.499200pt;}
.x1d{left:471.236777pt;}
.x18{left:478.479980pt;}
.x23{left:480.954694pt;}
.x1c{left:484.651660pt;}
.x1e{left:491.627401pt;}
.x19{left:498.870604pt;}
.x20{left:516.000238pt;}
.x1a{left:754.929505pt;}
.x1b{left:775.320129pt;}
}




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