
    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_d1262f69980202b98ddf0242.woff')format("woff");}.ff1{font-family:ff1;line-height:0.930000;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_b5b3c789e5117d68d84552d7.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938965;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_729180b06585d26f8d856f62.woff')format("woff");}.ff3{font-family:ff3;line-height:0.920000;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_4645bd4905a91b8d3d6c1e06.woff')format("woff");}.ff4{font-family:ff4;line-height:0.938965;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_0b10cc9a11ee6bf2d71a1d73.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1ad8ea32e2b84308841601be.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_87cb8380af6257cc18c820fc.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740234;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_380dec839f753268bb57e0f1.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_91ccb1f3b811140c04270936.woff')format("woff");}.ff9{font-family:ff9;line-height:0.740723;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_4cc010615f838c4885f00957.woff')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,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);}
.v3{vertical-align:-65.728784px;}
.v8{vertical-align:-15.413013px;}
.v7{vertical-align:-6.413013px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:2.587122px;}
.v6{vertical-align:11.587122px;}
.v4{vertical-align:20.587123px;}
.v1{vertical-align:40.500001px;}
.v2{vertical-align:71.249987px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:108.000849px;}
.ls1{letter-spacing:321.971400px;}
.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;}
}
.ws7{word-spacing:-46.536000px;}
.wsb{word-spacing:-39.888001px;}
.wsa{word-spacing:-32.832001px;}
.ws3{word-spacing:-30.096002px;}
.ws8{word-spacing:-23.268000px;}
.ws0{word-spacing:-16.560001px;}
.ws1{word-spacing:0.000000px;}
.ws9{word-spacing:68.253752px;}
.ws5{word-spacing:78.190315px;}
.ws4{word-spacing:381.533149px;}
.ws2{word-spacing:520.800569px;}
.ws6{word-spacing:2220.042135px;}
._a{margin-left:-15.981188px;}
._8{margin-left:-12.011438px;}
._0{margin-left:-9.240000px;}
._4{margin-left:-7.920000px;}
._2{margin-left:-6.216000px;}
._6{margin-left:-4.347764px;}
._1{margin-left:-3.024000px;}
._3{margin-left:-1.848000px;}
._5{width:1.543230px;}
._9{width:3.172500px;}
._7{width:108.141753px;}
._b{width:2562.538812px;}
.fc3{color:rgb(70,120,134);}
.fc2{color:rgb(94,71,57);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(194,81,47);}
.fsd{font-size:72.000002px;}
.fs3{font-size:72.000006px;}
.fsc{font-size:84.000000px;}
.fsa{font-size:90.000003px;}
.fsf{font-size:96.000006px;}
.fs2{font-size:108.000003px;}
.fs4{font-size:110.138825px;}
.fs8{font-size:132.000007px;}
.fs9{font-size:144.000005px;}
.fs6{font-size:149.999999px;}
.fs1{font-size:167.999999px;}
.fse{font-size:194.399993px;}
.fs5{font-size:210.000013px;}
.fs0{font-size:216.000007px;}
.fsb{font-size:264.000014px;}
.fs7{font-size:269.228245px;}
.y0{bottom:0.000000px;}
.ya{bottom:17.221418px;}
.y9{bottom:49.621413px;}
.y63{bottom:54.495880px;}
.y33{bottom:59.199917px;}
.y62{bottom:63.537247px;}
.y8{bottom:82.021410px;}
.y47{bottom:113.451162px;}
.y18{bottom:114.272741px;}
.y53{bottom:117.072354px;}
.y32{bottom:130.227087px;}
.y40{bottom:138.535797px;}
.y52{bottom:145.872350px;}
.y31{bottom:164.787088px;}
.y58{bottom:172.978342px;}
.y51{bottom:174.672351px;}
.y6c{bottom:184.239137px;}
.y3f{bottom:200.743777px;}
.y57{bottom:201.778338px;}
.y50{bottom:203.472352px;}
.y46{bottom:204.818974px;}
.y71{bottom:206.067052px;}
.y1d{bottom:207.490644px;}
.y30{bottom:216.627090px;}
.y11{bottom:222.023636px;}
.y56{bottom:230.578339px;}
.y6b{bottom:239.559147px;}
.y3e{bottom:239.623778px;}
.y7{bottom:239.790946px;}
.y1c{bottom:239.890648px;}
.y3a{bottom:240.836894px;}
.y70{bottom:251.427053px;}
.y55{bottom:259.378340px;}
.y10{bottom:267.023638px;}
.y2f{bottom:267.891069px;}
.y17{bottom:269.144870px;}
.y6{bottom:272.190944px;}
.y3d{bottom:278.503802px;}
.y39{bottom:279.716884px;}
.y6a{bottom:294.879145px;}
.y44{bottom:296.186808px;}
.y6f{bottom:296.787055px;}
.y2e{bottom:299.571047px;}
.y4c{bottom:299.721014px;}
.y15{bottom:304.784860px;}
.yf{bottom:312.023633px;}
.y3c{bottom:317.383803px;}
.y38{bottom:318.596883px;}
.y5{bottom:323.043509px;}
.y4b{bottom:328.521011px;}
.y4f{bottom:330.483652px;}
.y2d{bottom:331.251037px;}
.y69{bottom:335.199146px;}
.y23{bottom:339.747015px;}
.y16{bottom:340.424858px;}
.y61{bottom:349.371008px;}
.ye{bottom:357.023629px;}
.y4a{bottom:357.321012px;}
.y4e{bottom:359.283642px;}
.y2c{bottom:363.507027px;}
.y4{bottom:368.403500px;}
.y22{bottom:385.107005px;}
.y49{bottom:386.121013px;}
.y45{bottom:387.554743px;}
.y4d{bottom:388.083639px;}
.y60{bottom:388.251009px;}
.y68{bottom:390.519144px;}
.y3b{bottom:395.143794px;}
.yd{bottom:402.023622px;}
.y3{bottom:413.763493px;}
.y6e{bottom:417.507017px;}
.y2b{bottom:422.259029px;}
.y5f{bottom:427.130999px;}
.y21{bottom:429.171007px;}
.y37{bottom:434.023795px;}
.y67{bottom:445.839142px;}
.y2a{bottom:448.179018px;}
.y72{bottom:461.589784px;}
.y6d{bottom:462.867008px;}
.y5e{bottom:466.011000px;}
.y20{bottom:468.051008px;}
.y36{bottom:472.903797px;}
.y29{bottom:474.099008px;}
.y14{bottom:477.469526px;}
.y43{bottom:478.922577px;}
.y66{bottom:486.159132px;}
.y54{bottom:490.568973px;}
.y25{bottom:493.226995px;}
.y13{bottom:495.297024px;}
.yc{bottom:499.439291px;}
.y28{bottom:500.018998px;}
.y5d{bottom:504.890990px;}
.y2{bottom:507.886438px;}
.y1f{bottom:508.226998px;}
.y35{bottom:511.783788px;}
.y27{bottom:527.666998px;}
.y65{bottom:541.479130px;}
.y1e{bottom:553.586991px;}
.y5c{bottom:558.770989px;}
.yb{bottom:559.289289px;}
.y26{bottom:562.226991px;}
.y1{bottom:566.206444px;}
.y64{bottom:596.799120px;}
.y42{bottom:613.067082px;}
.y34{bottom:614.233487px;}
.y19{bottom:620.969755px;}
.y5b{bottom:631.561627px;}
.y1b{bottom:659.883640px;}
.y41{bottom:665.555073px;}
.y24{bottom:667.201617px;}
.y12{bottom:667.209717px;}
.y1a{bottom:690.123641px;}
.y59{bottom:691.538270px;}
.y5a{bottom:702.841623px;}
.y48{bottom:718.043064px;}
.h13{height:52.453127px;}
.he{height:65.566408px;}
.h16{height:69.937504px;}
.h4{height:75.600002px;}
.h6{height:77.097178px;}
.hc{height:78.626956px;}
.h3{height:78.679690px;}
.h5{height:90.900005px;}
.h12{height:96.099615px;}
.hb{height:96.164068px;}
.h15{height:99.266813px;}
.hd{height:104.835941px;}
.h10{height:104.906253px;}
.h8{height:109.277343px;}
.h11{height:122.308593px;}
.h2{height:122.390625px;}
.h14{height:138.023995px;}
.h7{height:149.100009px;}
.h1{height:153.360005px;}
.ha{height:167.414055px;}
.hf{height:187.440010px;}
.h9{height:188.459772px;}
.h0{height:810.000000px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x8{left:37.896497px;}
.x21{left:50.338584px;}
.x30{left:76.410688px;}
.x28{left:100.549292px;}
.x27{left:103.255653px;}
.x1e{left:104.338586px;}
.x1a{left:106.101566px;}
.x24{left:107.345964px;}
.xa{left:109.125003px;}
.x17{left:113.607426px;}
.x12{left:122.755279px;}
.x37{left:127.133793px;}
.x2e{left:134.308708px;}
.x11{left:138.343025px;}
.x19{left:150.191555px;}
.x38{left:151.278552px;}
.x29{left:157.406518px;}
.x2d{left:160.927183px;}
.x1b{left:163.125005px;}
.xd{left:165.915851px;}
.x18{left:167.607427px;}
.xb{left:176.419846px;}
.x34{left:177.521490px;}
.x4{left:212.297339px;}
.x1c{left:217.125007px;}
.x2f{left:226.003125px;}
.x1{left:238.615984px;}
.x2{left:260.593996px;}
.x36{left:297.060535px;}
.x35{left:305.313501px;}
.x3{left:308.117282px;}
.x20{left:315.678104px;}
.x1f{left:359.456704px;}
.x25{left:398.556463px;}
.x1d{left:424.399851px;}
.xe{left:435.463691px;}
.xf{left:452.991889px;}
.x23{left:467.572999px;}
.x5{left:479.610094px;}
.x10{left:487.838524px;}
.x22{left:496.627475px;}
.xc{left:499.865600px;}
.x7{left:549.607101px;}
.x6{left:572.909103px;}
.x26{left:588.746663px;}
.x16{left:758.538329px;}
.x15{left:764.101805px;}
.x9{left:830.087633px;}
.x32{left:980.467333px;}
.x33{left:1003.987002px;}
.x31{left:1016.036791px;}
.x14{left:1133.502879px;}
.x13{left:1145.748240px;}
.x2a{left:1169.523421px;}
.x2b{left:1175.551242px;}
.x2c{left:1195.767030px;}
@media print{
.v3{vertical-align:-58.425586pt;}
.v8{vertical-align:-13.700456pt;}
.v7{vertical-align:-5.700456pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:2.299664pt;}
.v6{vertical-align:10.299664pt;}
.v4{vertical-align:18.299665pt;}
.v1{vertical-align:36.000001pt;}
.v2{vertical-align:63.333322pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:96.000755pt;}
.ls1{letter-spacing:286.196800pt;}
.ws7{word-spacing:-41.365333pt;}
.wsb{word-spacing:-35.456001pt;}
.wsa{word-spacing:-29.184001pt;}
.ws3{word-spacing:-26.752001pt;}
.ws8{word-spacing:-20.682667pt;}
.ws0{word-spacing:-14.720001pt;}
.ws1{word-spacing:0.000000pt;}
.ws9{word-spacing:60.670002pt;}
.ws5{word-spacing:69.502502pt;}
.ws4{word-spacing:339.140577pt;}
.ws2{word-spacing:462.933839pt;}
.ws6{word-spacing:1973.370787pt;}
._a{margin-left:-14.205500pt;}
._8{margin-left:-10.676834pt;}
._0{margin-left:-8.213333pt;}
._4{margin-left:-7.040000pt;}
._2{margin-left:-5.525333pt;}
._6{margin-left:-3.864679pt;}
._1{margin-left:-2.688000pt;}
._3{margin-left:-1.642667pt;}
._5{width:1.371760pt;}
._9{width:2.820000pt;}
._7{width:96.126003pt;}
._b{width:2277.812277pt;}
.fsd{font-size:64.000002pt;}
.fs3{font-size:64.000005pt;}
.fsc{font-size:74.666666pt;}
.fsa{font-size:80.000003pt;}
.fsf{font-size:85.333339pt;}
.fs2{font-size:96.000003pt;}
.fs4{font-size:97.901178pt;}
.fs8{font-size:117.333340pt;}
.fs9{font-size:128.000004pt;}
.fs6{font-size:133.333332pt;}
.fs1{font-size:149.333333pt;}
.fse{font-size:172.799994pt;}
.fs5{font-size:186.666678pt;}
.fs0{font-size:192.000006pt;}
.fsb{font-size:234.666680pt;}
.fs7{font-size:239.313996pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:15.307927pt;}
.y9{bottom:44.107922pt;}
.y63{bottom:48.440783pt;}
.y33{bottom:52.622149pt;}
.y62{bottom:56.477553pt;}
.y8{bottom:72.907920pt;}
.y47{bottom:100.845477pt;}
.y18{bottom:101.575770pt;}
.y53{bottom:104.064314pt;}
.y32{bottom:115.757411pt;}
.y40{bottom:123.142931pt;}
.y52{bottom:129.664311pt;}
.y31{bottom:146.477412pt;}
.y58{bottom:153.758526pt;}
.y51{bottom:155.264312pt;}
.y6c{bottom:163.768122pt;}
.y3f{bottom:178.438913pt;}
.y57{bottom:179.358523pt;}
.y50{bottom:180.864313pt;}
.y46{bottom:182.061310pt;}
.y71{bottom:183.170713pt;}
.y1d{bottom:184.436128pt;}
.y30{bottom:192.557413pt;}
.y11{bottom:197.354343pt;}
.y56{bottom:204.958524pt;}
.y6b{bottom:212.941464pt;}
.y3e{bottom:212.998914pt;}
.y7{bottom:213.147508pt;}
.y1c{bottom:213.236132pt;}
.y3a{bottom:214.077239pt;}
.y70{bottom:223.490714pt;}
.y55{bottom:230.558524pt;}
.y10{bottom:237.354345pt;}
.y2f{bottom:238.125395pt;}
.y17{bottom:239.239885pt;}
.y6{bottom:241.947506pt;}
.y3d{bottom:247.558935pt;}
.y39{bottom:248.637230pt;}
.y6a{bottom:262.114795pt;}
.y44{bottom:263.277162pt;}
.y6f{bottom:263.810715pt;}
.y2e{bottom:266.285375pt;}
.y4c{bottom:266.418679pt;}
.y15{bottom:270.919876pt;}
.yf{bottom:277.354341pt;}
.y3c{bottom:282.118936pt;}
.y38{bottom:283.197229pt;}
.y5{bottom:287.149786pt;}
.y4b{bottom:292.018676pt;}
.y4f{bottom:293.763246pt;}
.y2d{bottom:294.445366pt;}
.y69{bottom:297.954796pt;}
.y23{bottom:301.997347pt;}
.y16{bottom:302.599874pt;}
.y61{bottom:310.552007pt;}
.ye{bottom:317.354337pt;}
.y4a{bottom:317.618677pt;}
.y4e{bottom:319.363237pt;}
.y2c{bottom:323.117357pt;}
.y4{bottom:327.469777pt;}
.y22{bottom:342.317338pt;}
.y49{bottom:343.218678pt;}
.y45{bottom:344.493105pt;}
.y4d{bottom:344.963235pt;}
.y60{bottom:345.112008pt;}
.y68{bottom:347.128128pt;}
.y3b{bottom:351.238928pt;}
.yd{bottom:357.354330pt;}
.y3{bottom:367.789772pt;}
.y6e{bottom:371.117349pt;}
.y2b{bottom:375.341359pt;}
.y5f{bottom:379.671999pt;}
.y21{bottom:381.485339pt;}
.y37{bottom:385.798929pt;}
.y67{bottom:396.301460pt;}
.y2a{bottom:398.381350pt;}
.y72{bottom:410.302030pt;}
.y6d{bottom:411.437340pt;}
.y5e{bottom:414.232000pt;}
.y20{bottom:416.045340pt;}
.y36{bottom:420.358930pt;}
.y29{bottom:421.421340pt;}
.y14{bottom:424.417357pt;}
.y43{bottom:425.708958pt;}
.y66{bottom:432.141451pt;}
.y54{bottom:436.061309pt;}
.y25{bottom:438.423996pt;}
.y13{bottom:440.264021pt;}
.yc{bottom:443.946036pt;}
.y28{bottom:444.461331pt;}
.y5d{bottom:448.791991pt;}
.y2{bottom:451.454611pt;}
.y1f{bottom:451.757331pt;}
.y35{bottom:454.918923pt;}
.y27{bottom:469.037332pt;}
.y65{bottom:481.314782pt;}
.y1e{bottom:492.077326pt;}
.y5c{bottom:496.685324pt;}
.yb{bottom:497.146035pt;}
.y26{bottom:499.757325pt;}
.y1{bottom:503.294617pt;}
.y64{bottom:530.488107pt;}
.y42{bottom:544.948517pt;}
.y34{bottom:545.985321pt;}
.y19{bottom:551.973116pt;}
.y5b{bottom:561.388113pt;}
.y1b{bottom:586.563236pt;}
.y41{bottom:591.604509pt;}
.y24{bottom:593.068104pt;}
.y12{bottom:593.075304pt;}
.y1a{bottom:613.443237pt;}
.y59{bottom:614.700685pt;}
.y5a{bottom:624.748109pt;}
.y48{bottom:638.260501pt;}
.h13{height:46.625001pt;}
.he{height:58.281252pt;}
.h16{height:62.166671pt;}
.h4{height:67.200002pt;}
.h6{height:68.530824pt;}
.hc{height:69.890627pt;}
.h3{height:69.937502pt;}
.h5{height:80.800005pt;}
.h12{height:85.421880pt;}
.hb{height:85.479171pt;}
.h15{height:88.237167pt;}
.hd{height:93.187503pt;}
.h10{height:93.250003pt;}
.h8{height:97.135416pt;}
.h11{height:108.718750pt;}
.h2{height:108.791666pt;}
.h14{height:122.687995pt;}
.h7{height:132.533341pt;}
.h1{height:136.320004pt;}
.ha{height:148.812493pt;}
.hf{height:166.613342pt;}
.h9{height:167.519797pt;}
.h0{height:720.000000pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x8{left:33.685775pt;}
.x21{left:44.745408pt;}
.x30{left:67.920611pt;}
.x28{left:89.377149pt;}
.x27{left:91.782803pt;}
.x1e{left:92.745410pt;}
.x1a{left:94.312503pt;}
.x24{left:95.418635pt;}
.xa{left:97.000003pt;}
.x17{left:100.984378pt;}
.x12{left:109.115803pt;}
.x37{left:113.007816pt;}
.x2e{left:119.385518pt;}
.x11{left:122.971578pt;}
.x19{left:133.503604pt;}
.x38{left:134.469824pt;}
.x29{left:139.916904pt;}
.x2d{left:143.046385pt;}
.x1b{left:145.000005pt;}
.xd{left:147.480757pt;}
.x18{left:148.984380pt;}
.xb{left:156.817641pt;}
.x34{left:157.796880pt;}
.x4{left:188.708746pt;}
.x1c{left:193.000006pt;}
.x2f{left:200.891666pt;}
.x1{left:212.103097pt;}
.x2{left:231.639107pt;}
.x36{left:264.053808pt;}
.x35{left:271.389779pt;}
.x3{left:273.882029pt;}
.x20{left:280.602759pt;}
.x1f{left:319.517070pt;}
.x25{left:354.272411pt;}
.x1d{left:377.244312pt;}
.xe{left:387.078836pt;}
.xf{left:402.659457pt;}
.x23{left:415.620443pt;}
.x5{left:426.320084pt;}
.x10{left:433.634244pt;}
.x22{left:441.446644pt;}
.xc{left:444.324978pt;}
.x7{left:488.539646pt;}
.x6{left:509.252536pt;}
.x26{left:523.330367pt;}
.x16{left:674.256293pt;}
.x15{left:679.201605pt;}
.x9{left:737.855674pt;}
.x32{left:871.526518pt;}
.x33{left:892.432891pt;}
.x31{left:903.143814pt;}
.x14{left:1007.558114pt;}
.x13{left:1018.442880pt;}
.x2a{left:1039.576374pt;}
.x2b{left:1044.934437pt;}
.x2c{left:1062.904027pt;}
}




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