
    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_92a568346144025966dae983.woff')format("woff");}.ff1{font-family:ff1;line-height:0.962000;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_4fbf6fab0a5ff92512b37070.woff')format("woff");}.ff2{font-family:ff2;line-height:0.686000;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_33891fdbed03adf93b9a075c.woff')format("woff");}.ff3{font-family:ff3;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;}
@font-face{font-family:ff4;src:url('chunks/assets/font_27b4e1f09f3895680f5e0291.woff')format("woff");}.ff4{font-family:ff4;line-height:0.946000;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_84f027c61d5252313c144e14.woff')format("woff");}.ff5{font-family:ff5;line-height:0.881836;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_a4584ce2b7beaad72fc4db1b.woff')format("woff");}.ff6{font-family:ff6;line-height:0.837000;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_21c98e4df989721a5cb0571d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.954000;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_586277442f548090b405d1bd.woff')format("woff");}.ff8{font-family:ff8;line-height:0.962000;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_9d3bdcdccc56c1c9db11c7a8.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_50b58c0b74950b0c24922ffb.woff')format("woff");}.ffa{font-family:ffa;line-height:1.456055;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v8{vertical-align:-53.441340px;}
.v4{vertical-align:-10.199892px;}
.v3{vertical-align:-9.000000px;}
.v1{vertical-align:-7.999998px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:18.424002px;}
.v2{vertical-align:21.055998px;}
.v5{vertical-align:23.688000px;}
.v7{vertical-align:75.294660px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000018px;}
.ls1{letter-spacing:0.022245px;}
.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;}
}
.wsc{word-spacing:-34.320000px;}
.ws3{word-spacing:-27.000000px;}
.ws1{word-spacing:-24.000000px;}
.ws6{word-spacing:-23.976000px;}
.ws8{word-spacing:-21.000000px;}
.ws9{word-spacing:-18.648000px;}
.ws2{word-spacing:-16.000005px;}
.wsb{word-spacing:-0.132000px;}
.ws4{word-spacing:-0.108000px;}
.ws7{word-spacing:-0.096000px;}
.ws5{word-spacing:-0.060000px;}
.ws0{word-spacing:0.000000px;}
.wsa{word-spacing:505.874408px;}
._5{margin-left:-9.768000px;}
._2{margin-left:-7.104030px;}
._1{margin-left:-5.328000px;}
._0{width:234.653946px;}
._4{width:598.035573px;}
._3{width:951.697800px;}
._6{width:1214.654658px;}
.fc10{color:rgb(26,26,26);}
.fcf{color:rgb(221,221,221);}
.fc5{color:rgb(255,255,255);}
.fcb{color:rgb(83,83,83);}
.fc1{color:rgb(0,151,167);}
.fc3{color:rgb(66,149,165);}
.fc6{color:transparent;}
.fcd{color:rgb(161,223,251);}
.fc4{color:rgb(0,0,0);}
.fc7{color:rgb(204,137,51);}
.fce{color:rgb(128,203,211);}
.fc9{color:rgb(62,134,37);}
.fc0{color:rgb(89,89,89);}
.fc8{color:rgb(4,51,255);}
.fca{color:rgb(238,255,65);}
.fc2{color:rgb(255,192,112);}
.fcc{color:rgb(255,213,159);}
.fs0{font-size:48.000000px;}
.fsa{font-size:56.000004px;}
.fs8{font-size:60.000000px;}
.fs6{font-size:64.000020px;}
.fs4{font-size:72.000000px;}
.fsd{font-size:82.309536px;}
.fs9{font-size:84.000000px;}
.fs5{font-size:96.000000px;}
.fs7{font-size:108.000000px;}
.fse{font-size:109.746048px;}
.fs3{font-size:132.000000px;}
.fs2{font-size:144.000000px;}
.fsc{font-size:156.000000px;}
.fs1{font-size:174.000000px;}
.fsb{font-size:240.000000px;}
.y0{bottom:0.000000px;}
.y42{bottom:20.933220px;}
.y44{bottom:20.933280px;}
.y11{bottom:25.038150px;}
.y1{bottom:30.655530px;}
.y1f{bottom:71.317200px;}
.y6{bottom:71.398275px;}
.y2a{bottom:74.762220px;}
.y56{bottom:77.181195px;}
.y2f{bottom:78.974220px;}
.y20{bottom:79.760730px;}
.y1b{bottom:80.249640px;}
.y4{bottom:81.735210px;}
.y14{bottom:82.532235px;}
.y21{bottom:85.518780px;}
.y34{bottom:85.650555px;}
.y43{bottom:90.715365px;}
.y49{bottom:93.624300px;}
.y3f{bottom:96.442245px;}
.y1e{bottom:98.317200px;}
.y29{bottom:100.262220px;}
.yf{bottom:100.738500px;}
.y55{bottom:102.681195px;}
.y4b{bottom:104.324610px;}
.y2e{bottom:104.474220px;}
.y36{bottom:109.630830px;}
.y3e{bottom:122.692245px;}
.y28{bottom:125.762220px;}
.y54{bottom:128.181195px;}
.y4a{bottom:130.574610px;}
.y41{bottom:133.002480px;}
.y2b{bottom:136.891935px;}
.y5c{bottom:141.541530px;}
.y1a{bottom:149.081535px;}
.y1d{bottom:152.317200px;}
.ye{bottom:155.867100px;}
.y1c{bottom:158.644350px;}
.y3{bottom:161.155950px;}
.y4d{bottom:161.655264px;}
.y2d{bottom:161.982900px;}
.y5b{bottom:180.541500px;}
.y4c{bottom:181.339350px;}
.y53{bottom:182.152800px;}
.y39{bottom:183.184050px;}
.y10{bottom:186.316500px;}
.y19{bottom:188.231400px;}
.y4e{bottom:202.063484px;}
.y2{bottom:210.655950px;}
.y38{bottom:219.184050px;}
.y5a{bottom:219.541500px;}
.y18{bottom:219.731400px;}
.y52{bottom:221.152800px;}
.y2c{bottom:230.982900px;}
.y3d{bottom:238.804500px;}
.yd{bottom:251.216100px;}
.y17{bottom:251.231400px;}
.y59{bottom:258.541500px;}
.y51{bottom:260.152800px;}
.y3c{bottom:277.804500px;}
.yc{bottom:278.216100px;}
.y58{bottom:297.541500px;}
.y50{bottom:299.152800px;}
.y35{bottom:310.636800px;}
.y16{bottom:314.231400px;}
.y3b{bottom:316.804500px;}
.y27{bottom:325.260900px;}
.y57{bottom:336.541500px;}
.y4f{bottom:338.152800px;}
.y15{bottom:347.049900px;}
.y3a{bottom:355.804500px;}
.y9{bottom:364.890900px;}
.y48{bottom:377.152800px;}
.y33{bottom:381.425100px;}
.y26{bottom:381.790800px;}
.y8{bottom:393.894750px;}
.y32{bottom:412.925100px;}
.y47{bottom:416.152800px;}
.y25{bottom:417.940650px;}
.y7{bottom:420.894750px;}
.y24{bottom:429.051600px;}
.y46{bottom:455.152800px;}
.y13{bottom:467.006550px;}
.y31{bottom:475.925100px;}
.y37{bottom:478.417650px;}
.y40{bottom:483.004800px;}
.yb{bottom:483.383550px;}
.y23{bottom:486.801600px;}
.y12{bottom:494.006550px;}
.y45{bottom:494.152800px;}
.y30{bottom:507.425100px;}
.ya{bottom:510.767700px;}
.y22{bottom:513.801600px;}
.y5{bottom:565.296300px;}
.h1{height:34.176000px;}
.h5{height:51.264000px;}
.hc{height:59.808000px;}
.h10{height:60.480270px;}
.h11{height:67.366560px;}
.h6{height:68.352000px;}
.hb{height:75.360000px;}
.h8{height:76.896000px;}
.h9{height:84.780000px;}
.h14{height:91.312141px;}
.h4{height:93.984000px;}
.hd{height:96.000000px;}
.h3{height:102.528000px;}
.h12{height:111.072000px;}
.h15{height:121.749522px;}
.h2{height:123.888000px;}
.hf{height:135.102660px;}
.h13{height:151.171800px;}
.he{height:170.880000px;}
.h7{height:204.500250px;}
.ha{height:240.166800px;}
.h0{height:607.500000px;}
.w1{width:40.764150px;}
.w4{width:141.269115px;}
.w2{width:196.964550px;}
.w3{width:230.410500px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x1{left:10.798213px;}
.x13{left:12.619461px;}
.x1b{left:23.846400px;}
.x11{left:27.882000px;}
.x45{left:33.563728px;}
.x12{left:34.871460px;}
.x25{left:44.257950px;}
.x6{left:46.556985px;}
.x40{left:49.275645px;}
.x1c{left:51.693750px;}
.x1f{left:57.203445px;}
.x23{left:61.574100px;}
.x30{left:68.600370px;}
.x2f{left:77.132370px;}
.x2e{left:80.021370px;}
.x24{left:86.081580px;}
.x3c{left:98.677230px;}
.x2a{left:113.957445px;}
.x31{left:115.377870px;}
.x41{left:130.950885px;}
.x14{left:135.070110px;}
.xf{left:179.310900px;}
.x33{left:186.225300px;}
.x1e{left:193.270500px;}
.x3b{left:195.603450px;}
.x32{left:197.957250px;}
.x5{left:218.563500px;}
.x2b{left:246.167400px;}
.x10{left:274.219050px;}
.x20{left:281.195400px;}
.x3a{left:305.460900px;}
.x29{left:341.373000px;}
.x1a{left:476.723550px;}
.x16{left:478.757850px;}
.x2{left:483.118350px;}
.x17{left:485.135850px;}
.x15{left:491.204850px;}
.xa{left:499.186050px;}
.x42{left:506.216250px;}
.x3{left:507.456600px;}
.x18{left:514.910850px;}
.xb{left:531.742050px;}
.x35{left:575.641650px;}
.x43{left:580.705800px;}
.x3e{left:586.730100px;}
.x34{left:607.341150px;}
.xc{left:640.954050px;}
.x7{left:645.178050px;}
.x4{left:656.411850px;}
.xe{left:662.178000px;}
.x2c{left:669.689700px;}
.x9{left:694.066050px;}
.xd{left:696.123150px;}
.x8{left:702.459150px;}
.x3d{left:707.678700px;}
.x44{left:724.162650px;}
.x2d{left:740.400150px;}
.x3f{left:766.992150px;}
.x47{left:770.816400px;}
.x48{left:775.796850px;}
.x19{left:779.641200px;}
.x46{left:780.910350px;}
.x26{left:817.132350px;}
.x1d{left:819.231300px;}
.x27{left:825.497400px;}
.x22{left:843.184350px;}
.x28{left:849.157350px;}
.x36{left:909.866700px;}
.x21{left:911.926350px;}
.x38{left:918.743700px;}
.x37{left:921.185700px;}
.x39{left:940.441200px;}
@media print{
.v8{vertical-align:-47.503413pt;}
.v4{vertical-align:-9.066571pt;}
.v3{vertical-align:-8.000000pt;}
.v1{vertical-align:-7.111109pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:16.376891pt;}
.v2{vertical-align:18.716443pt;}
.v5{vertical-align:21.056000pt;}
.v7{vertical-align:66.928587pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000016pt;}
.ls1{letter-spacing:0.019773pt;}
.wsc{word-spacing:-30.506667pt;}
.ws3{word-spacing:-24.000000pt;}
.ws1{word-spacing:-21.333333pt;}
.ws6{word-spacing:-21.312000pt;}
.ws8{word-spacing:-18.666667pt;}
.ws9{word-spacing:-16.576000pt;}
.ws2{word-spacing:-14.222227pt;}
.wsb{word-spacing:-0.117333pt;}
.ws4{word-spacing:-0.096000pt;}
.ws7{word-spacing:-0.085333pt;}
.ws5{word-spacing:-0.053333pt;}
.ws0{word-spacing:0.000000pt;}
.wsa{word-spacing:449.666141pt;}
._5{margin-left:-8.682667pt;}
._2{margin-left:-6.314693pt;}
._1{margin-left:-4.736000pt;}
._0{width:208.581285pt;}
._4{width:531.587176pt;}
._3{width:845.953600pt;}
._6{width:1079.693029pt;}
.fs0{font-size:42.666667pt;}
.fsa{font-size:49.777781pt;}
.fs8{font-size:53.333333pt;}
.fs6{font-size:56.888907pt;}
.fs4{font-size:64.000000pt;}
.fsd{font-size:73.164032pt;}
.fs9{font-size:74.666667pt;}
.fs5{font-size:85.333333pt;}
.fs7{font-size:96.000000pt;}
.fse{font-size:97.552043pt;}
.fs3{font-size:117.333333pt;}
.fs2{font-size:128.000000pt;}
.fsc{font-size:138.666667pt;}
.fs1{font-size:154.666667pt;}
.fsb{font-size:213.333333pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:18.607307pt;}
.y44{bottom:18.607360pt;}
.y11{bottom:22.256133pt;}
.y1{bottom:27.249360pt;}
.y1f{bottom:63.393067pt;}
.y6{bottom:63.465133pt;}
.y2a{bottom:66.455307pt;}
.y56{bottom:68.605507pt;}
.y2f{bottom:70.199307pt;}
.y20{bottom:70.898427pt;}
.y1b{bottom:71.333013pt;}
.y4{bottom:72.653520pt;}
.y14{bottom:73.361987pt;}
.y21{bottom:76.016693pt;}
.y34{bottom:76.133827pt;}
.y43{bottom:80.635880pt;}
.y49{bottom:83.221600pt;}
.y3f{bottom:85.726440pt;}
.y1e{bottom:87.393067pt;}
.y29{bottom:89.121973pt;}
.yf{bottom:89.545333pt;}
.y55{bottom:91.272173pt;}
.y4b{bottom:92.732987pt;}
.y2e{bottom:92.865973pt;}
.y36{bottom:97.449627pt;}
.y3e{bottom:109.059773pt;}
.y28{bottom:111.788640pt;}
.y54{bottom:113.938840pt;}
.y4a{bottom:116.066320pt;}
.y41{bottom:118.224427pt;}
.y2b{bottom:121.681720pt;}
.y5c{bottom:125.814693pt;}
.y1a{bottom:132.516920pt;}
.y1d{bottom:135.393067pt;}
.ye{bottom:138.548533pt;}
.y1c{bottom:141.017200pt;}
.y3{bottom:143.249733pt;}
.y4d{bottom:143.693568pt;}
.y2d{bottom:143.984800pt;}
.y5b{bottom:160.481333pt;}
.y4c{bottom:161.190533pt;}
.y53{bottom:161.913600pt;}
.y39{bottom:162.830267pt;}
.y10{bottom:165.614667pt;}
.y19{bottom:167.316800pt;}
.y4e{bottom:179.611986pt;}
.y2{bottom:187.249733pt;}
.y38{bottom:194.830267pt;}
.y5a{bottom:195.148000pt;}
.y18{bottom:195.316800pt;}
.y52{bottom:196.580267pt;}
.y2c{bottom:205.318133pt;}
.y3d{bottom:212.270667pt;}
.yd{bottom:223.303200pt;}
.y17{bottom:223.316800pt;}
.y59{bottom:229.814667pt;}
.y51{bottom:231.246933pt;}
.y3c{bottom:246.937333pt;}
.yc{bottom:247.303200pt;}
.y58{bottom:264.481333pt;}
.y50{bottom:265.913600pt;}
.y35{bottom:276.121600pt;}
.y16{bottom:279.316800pt;}
.y3b{bottom:281.604000pt;}
.y27{bottom:289.120800pt;}
.y57{bottom:299.148000pt;}
.y4f{bottom:300.580267pt;}
.y15{bottom:308.488800pt;}
.y3a{bottom:316.270667pt;}
.y9{bottom:324.347467pt;}
.y48{bottom:335.246933pt;}
.y33{bottom:339.044533pt;}
.y26{bottom:339.369600pt;}
.y8{bottom:350.128667pt;}
.y32{bottom:367.044533pt;}
.y47{bottom:369.913600pt;}
.y25{bottom:371.502800pt;}
.y7{bottom:374.128667pt;}
.y24{bottom:381.379200pt;}
.y46{bottom:404.580267pt;}
.y13{bottom:415.116933pt;}
.y31{bottom:423.044533pt;}
.y37{bottom:425.260133pt;}
.y40{bottom:429.337600pt;}
.yb{bottom:429.674267pt;}
.y23{bottom:432.712533pt;}
.y12{bottom:439.116933pt;}
.y45{bottom:439.246933pt;}
.y30{bottom:451.044533pt;}
.ya{bottom:454.015733pt;}
.y22{bottom:456.712533pt;}
.y5{bottom:502.485600pt;}
.h1{height:30.378667pt;}
.h5{height:45.568000pt;}
.hc{height:53.162667pt;}
.h10{height:53.760240pt;}
.h11{height:59.881387pt;}
.h6{height:60.757333pt;}
.hb{height:66.986667pt;}
.h8{height:68.352000pt;}
.h9{height:75.360000pt;}
.h14{height:81.166348pt;}
.h4{height:83.541333pt;}
.hd{height:85.333333pt;}
.h3{height:91.136000pt;}
.h12{height:98.730667pt;}
.h15{height:108.221797pt;}
.h2{height:110.122667pt;}
.hf{height:120.091253pt;}
.h13{height:134.374933pt;}
.he{height:151.893333pt;}
.h7{height:181.778000pt;}
.ha{height:213.481600pt;}
.h0{height:540.000000pt;}
.w1{width:36.234800pt;}
.w4{width:125.572547pt;}
.w2{width:175.079600pt;}
.w3{width:204.809333pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x1{left:9.598412pt;}
.x13{left:11.217299pt;}
.x1b{left:21.196800pt;}
.x11{left:24.784000pt;}
.x45{left:29.834425pt;}
.x12{left:30.996853pt;}
.x25{left:39.340400pt;}
.x6{left:41.383987pt;}
.x40{left:43.800573pt;}
.x1c{left:45.950000pt;}
.x1f{left:50.847507pt;}
.x23{left:54.732533pt;}
.x30{left:60.978107pt;}
.x2f{left:68.562107pt;}
.x2e{left:71.130107pt;}
.x24{left:76.516960pt;}
.x3c{left:87.713093pt;}
.x2a{left:101.295507pt;}
.x31{left:102.558107pt;}
.x41{left:116.400787pt;}
.x14{left:120.062320pt;}
.xf{left:159.387467pt;}
.x33{left:165.533600pt;}
.x1e{left:171.796000pt;}
.x3b{left:173.869733pt;}
.x32{left:175.962000pt;}
.x5{left:194.278667pt;}
.x2b{left:218.815467pt;}
.x10{left:243.750267pt;}
.x20{left:249.951467pt;}
.x3a{left:271.520800pt;}
.x29{left:303.442667pt;}
.x1a{left:423.754267pt;}
.x16{left:425.562533pt;}
.x2{left:429.438533pt;}
.x17{left:431.231867pt;}
.x15{left:436.626533pt;}
.xa{left:443.720933pt;}
.x42{left:449.970000pt;}
.x3{left:451.072533pt;}
.x18{left:457.698533pt;}
.xb{left:472.659600pt;}
.x35{left:511.681467pt;}
.x43{left:516.182933pt;}
.x3e{left:521.537867pt;}
.x34{left:539.858800pt;}
.xc{left:569.736933pt;}
.x7{left:573.491600pt;}
.x4{left:583.477200pt;}
.xe{left:588.602667pt;}
.x2c{left:595.279733pt;}
.x9{left:616.947600pt;}
.xd{left:618.776133pt;}
.x8{left:624.408133pt;}
.x3d{left:629.047733pt;}
.x44{left:643.700133pt;}
.x2d{left:658.133467pt;}
.x3f{left:681.770800pt;}
.x47{left:685.170133pt;}
.x48{left:689.597200pt;}
.x19{left:693.014400pt;}
.x46{left:694.142533pt;}
.x26{left:726.339867pt;}
.x1d{left:728.205600pt;}
.x27{left:733.775467pt;}
.x22{left:749.497200pt;}
.x28{left:754.806533pt;}
.x36{left:808.770400pt;}
.x21{left:810.601200pt;}
.x38{left:816.661067pt;}
.x37{left:818.831733pt;}
.x39{left:835.947733pt;}
}




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