
    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_18082cc82c10503738361b44.woff')format("woff");}.ff1{font-family:ff1;line-height:0.921387;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_a31e9c882e18533732329c5e.woff')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_75958b1785aa5b1517b6c042.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_c95c783e458a2f2ad1640171.woff')format("woff");}.ff4{font-family:ff4;line-height:1.093262;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_59c517336c79b347652981a6.woff')format("woff");}.ff5{font-family:ff5;line-height:0.758789;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_130301694ab792f9947e2b7d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.739746;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_d40300764862428f692c93e7.woff')format("woff");}.ff7{font-family:ff7;line-height:0.986328;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_73936a70cb6f0650c4981858.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5addfad4b90c6e5287f0293f.woff')format("woff");}.ff9{font-family:ff9;line-height:0.986328;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);}
.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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-0.612000px;}
.ls3{letter-spacing:-0.540000px;}
.ls4{letter-spacing:-0.460200px;}
.ls2{letter-spacing:-0.360000px;}
.ls8{letter-spacing:-0.206400px;}
.ls7{letter-spacing:-0.053280px;}
.ls1{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.053280px;}
.lse{letter-spacing:0.174240px;}
.ls0{letter-spacing:0.180000px;}
.lsc{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.lsf{letter-spacing:0.900000px;}
.lsb{letter-spacing:16.506720px;}
.lsa{letter-spacing:46.026720px;}
.ls6{letter-spacing:64.026720px;}
.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;}
}
.ws5{word-spacing:-59.760000px;}
.ws0{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.ws6{word-spacing:-14.993280px;}
.ws2{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.580000px;}
.ws1{word-spacing:-10.440000px;}
.ws4{word-spacing:0.000000px;}
._20{margin-left:-8.200800px;}
._21{margin-left:-6.926400px;}
._10{margin-left:-5.527440px;}
._11{margin-left:-3.645360px;}
._13{margin-left:-2.390400px;}
._0{margin-left:-1.080000px;}
._f{width:1.149120px;}
._1{width:2.220000px;}
._16{width:3.664080px;}
._15{width:4.902720px;}
._14{width:6.006240px;}
._12{width:7.156080px;}
._1a{width:8.182800px;}
._18{width:9.228960px;}
._6{width:10.800000px;}
._17{width:12.034080px;}
._1b{width:13.327920px;}
._19{width:16.135200px;}
._1f{width:17.526720px;}
._1e{width:18.874080px;}
._1d{width:24.023520px;}
._1c{width:25.457760px;}
._22{width:35.138880px;}
._23{width:36.597120px;}
._7{width:76.284960px;}
._8{width:154.080000px;}
._c{width:195.120000px;}
._2{width:255.512640px;}
._3{width:357.300000px;}
._5{width:436.440000px;}
._4{width:443.166240px;}
._9{width:604.364160px;}
._d{width:653.880000px;}
._e{width:703.560000px;}
._a{width:1096.860000px;}
._b{width:1176.060000px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,112,192);}
.fs3{font-size:2.880000px;}
.fs4{font-size:41.760000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:90.000000px;}
.fs5{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y96{bottom:5.760000px;}
.y9a{bottom:5.940000px;}
.ye{bottom:6.300000px;}
.y93{bottom:6.480000px;}
.y6{bottom:12.420000px;}
.y8{bottom:18.180000px;}
.y9c{bottom:25.560000px;}
.y95{bottom:25.740000px;}
.yc{bottom:36.000000px;}
.y5{bottom:40.320000px;}
.y98{bottom:45.540000px;}
.yb{bottom:57.780000px;}
.y4{bottom:68.400000px;}
.yd{bottom:75.420000px;}
.ya{bottom:79.560000px;}
.y3{bottom:96.330000px;}
.y9e{bottom:103.320000px;}
.y6a{bottom:108.540000px;}
.y3b{bottom:111.420000px;}
.ya1{bottom:115.380000px;}
.y7c{bottom:117.540000px;}
.y9d{bottom:118.080000px;}
.y2{bottom:125.670000px;}
.y69{bottom:128.340000px;}
.y3a{bottom:131.400000px;}
.ya0{bottom:135.180000px;}
.y7b{bottom:137.340000px;}
.y68{bottom:148.320000px;}
.y39{bottom:151.200000px;}
.y9f{bottom:155.010000px;}
.y7a{bottom:157.350000px;}
.y9b{bottom:159.330000px;}
.y67{bottom:168.150000px;}
.y38{bottom:171.030000px;}
.y79{bottom:177.150000px;}
.y66{bottom:187.950000px;}
.y37{bottom:190.830000px;}
.y78{bottom:196.950000px;}
.y99{bottom:200.370000px;}
.y65{bottom:207.750000px;}
.y36{bottom:210.630000px;}
.y77{bottom:216.750000px;}
.y64{bottom:227.550000px;}
.y35{bottom:230.610000px;}
.y76{bottom:236.550000px;}
.y97{bottom:241.590000px;}
.y63{bottom:247.530000px;}
.y34{bottom:250.410000px;}
.y75{bottom:256.530000px;}
.y62{bottom:267.330000px;}
.y33{bottom:270.210000px;}
.y74{bottom:276.330000px;}
.y61{bottom:287.130000px;}
.y32{bottom:290.010000px;}
.y73{bottom:296.130000px;}
.y94{bottom:302.610000px;}
.y60{bottom:306.930000px;}
.y31{bottom:309.810000px;}
.y72{bottom:315.930000px;}
.y5f{bottom:326.730000px;}
.y30{bottom:329.790000px;}
.y71{bottom:335.730000px;}
.y92{bottom:343.830000px;}
.y5e{bottom:346.710000px;}
.y2f{bottom:349.590000px;}
.y70{bottom:355.710000px;}
.y5d{bottom:366.510000px;}
.y2e{bottom:369.390000px;}
.y91{bottom:371.730000px;}
.y6f{bottom:375.510000px;}
.y5c{bottom:386.310000px;}
.y2d{bottom:389.190000px;}
.y6e{bottom:395.310000px;}
.y90{bottom:400.575000px;}
.y5b{bottom:406.155000px;}
.y2c{bottom:409.035000px;}
.y6d{bottom:415.155000px;}
.y8f{bottom:420.375000px;}
.y5a{bottom:425.955000px;}
.y2b{bottom:429.015000px;}
.y6c{bottom:434.955000px;}
.y8e{bottom:440.175000px;}
.y59{bottom:445.935000px;}
.y2a{bottom:448.815000px;}
.y6b{bottom:454.935000px;}
.y8d{bottom:459.975000px;}
.y29{bottom:468.615000px;}
.y58{bottom:474.735000px;}
.y8c{bottom:479.955000px;}
.y28{bottom:488.415000px;}
.y57{bottom:494.535000px;}
.y8b{bottom:499.755000px;}
.y27{bottom:508.215000px;}
.y56{bottom:514.335000px;}
.y8a{bottom:519.555000px;}
.y26{bottom:528.195000px;}
.y55{bottom:534.135000px;}
.y89{bottom:539.355000px;}
.y25{bottom:547.995000px;}
.y54{bottom:554.115000px;}
.y88{bottom:559.155000px;}
.y24{bottom:567.795000px;}
.y53{bottom:573.915000px;}
.y87{bottom:579.135000px;}
.y23{bottom:587.595000px;}
.y52{bottom:593.715000px;}
.y86{bottom:598.935000px;}
.y22{bottom:607.395000px;}
.y51{bottom:613.515000px;}
.y85{bottom:616.215000px;}
.y21{bottom:627.375000px;}
.y50{bottom:633.315000px;}
.y84{bottom:636.015000px;}
.y20{bottom:647.175000px;}
.y4f{bottom:653.325000px;}
.y83{bottom:655.845000px;}
.y1f{bottom:667.005000px;}
.y4e{bottom:673.125000px;}
.y82{bottom:675.645000px;}
.y1e{bottom:686.805000px;}
.y4d{bottom:692.925000px;}
.y81{bottom:695.445000px;}
.y1d{bottom:706.605000px;}
.y4c{bottom:712.725000px;}
.y80{bottom:715.425000px;}
.y1c{bottom:726.585000px;}
.y4b{bottom:732.525000px;}
.y7f{bottom:735.225000px;}
.y1b{bottom:746.385000px;}
.y4a{bottom:752.505000px;}
.y7e{bottom:755.025000px;}
.y1a{bottom:766.185000px;}
.y49{bottom:772.305000px;}
.y7d{bottom:774.825000px;}
.y19{bottom:785.985000px;}
.y48{bottom:792.105000px;}
.y18{bottom:805.785000px;}
.y47{bottom:811.905000px;}
.y17{bottom:825.765000px;}
.y46{bottom:831.705000px;}
.y16{bottom:845.565000px;}
.y45{bottom:851.685000px;}
.y15{bottom:865.365000px;}
.y44{bottom:871.485000px;}
.y14{bottom:885.165000px;}
.y43{bottom:891.285000px;}
.y13{bottom:905.010000px;}
.y42{bottom:911.130000px;}
.y12{bottom:925.530000px;}
.y41{bottom:930.930000px;}
.y11{bottom:947.310000px;}
.y40{bottom:950.910000px;}
.y3f{bottom:970.710000px;}
.y10{bottom:972.150000px;}
.y3e{bottom:990.510000px;}
.yf{bottom:1003.830000px;}
.y3d{bottom:1010.310000px;}
.y3c{bottom:1030.110000px;}
.y9{bottom:1047.570000px;}
.y1{bottom:1062.150000px;}
.y7{bottom:1096.350000px;}
.h7{height:2.527031px;}
.he{height:20.520000px;}
.ha{height:21.780000px;}
.h8{height:33.480000px;}
.h11{height:39.600000px;}
.h12{height:39.636000px;}
.hf{height:39.780000px;}
.hd{height:42.164648px;}
.h14{height:45.024258px;}
.h4{height:46.736719px;}
.h5{height:52.435898px;}
.h9{height:58.121719px;}
.h13{height:59.439023px;}
.h10{height:59.580000px;}
.h3{height:63.500977px;}
.hb{height:67.565039px;}
.hc{height:84.023789px;}
.h6{height:112.536000px;}
.h2{height:146.736000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:9.900000px;}
.w3{width:131.796000px;}
.w6{width:147.816000px;}
.w7{width:584.070000px;}
.w2{width:654.630000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x1{left:53.280000px;}
.xd{left:75.239987px;}
.x6{left:77.759987px;}
.xb{left:80.999987px;}
.xe{left:102.275987px;}
.x4{left:118.290000px;}
.xc{left:228.810000px;}
.x7{left:290.054987px;}
.xa{left:291.134987px;}
.x9{left:387.614987px;}
.x8{left:446.504987px;}
.x3{left:707.910000px;}
.x5{left:829.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-0.544000pt;}
.ls3{letter-spacing:-0.480000pt;}
.ls4{letter-spacing:-0.409067pt;}
.ls2{letter-spacing:-0.320000pt;}
.ls8{letter-spacing:-0.183467pt;}
.ls7{letter-spacing:-0.047360pt;}
.ls1{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.154880pt;}
.ls0{letter-spacing:0.160000pt;}
.lsc{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.lsf{letter-spacing:0.800000pt;}
.lsb{letter-spacing:14.672640pt;}
.lsa{letter-spacing:40.912640pt;}
.ls6{letter-spacing:56.912640pt;}
.ws5{word-spacing:-53.120000pt;}
.ws0{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws6{word-spacing:-13.327360pt;}
.ws2{word-spacing:-13.280000pt;}
.ws7{word-spacing:-12.960000pt;}
.ws1{word-spacing:-9.280000pt;}
.ws4{word-spacing:0.000000pt;}
._20{margin-left:-7.289600pt;}
._21{margin-left:-6.156800pt;}
._10{margin-left:-4.913280pt;}
._11{margin-left:-3.240320pt;}
._13{margin-left:-2.124800pt;}
._0{margin-left:-0.960000pt;}
._f{width:1.021440pt;}
._1{width:1.973333pt;}
._16{width:3.256960pt;}
._15{width:4.357973pt;}
._14{width:5.338880pt;}
._12{width:6.360960pt;}
._1a{width:7.273600pt;}
._18{width:8.203520pt;}
._6{width:9.600000pt;}
._17{width:10.696960pt;}
._1b{width:11.847040pt;}
._19{width:14.342400pt;}
._1f{width:15.579307pt;}
._1e{width:16.776960pt;}
._1d{width:21.354240pt;}
._1c{width:22.629120pt;}
._22{width:31.234560pt;}
._23{width:32.530773pt;}
._7{width:67.808853pt;}
._8{width:136.960000pt;}
._c{width:173.440000pt;}
._2{width:227.122347pt;}
._3{width:317.600000pt;}
._5{width:387.946667pt;}
._4{width:393.925547pt;}
._9{width:537.212587pt;}
._d{width:581.226667pt;}
._e{width:625.386667pt;}
._a{width:974.986667pt;}
._b{width:1045.386667pt;}
.fs3{font-size:2.560000pt;}
.fs4{font-size:37.120000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:80.000000pt;}
.fs5{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:5.120000pt;}
.y9a{bottom:5.280000pt;}
.ye{bottom:5.600000pt;}
.y93{bottom:5.760000pt;}
.y6{bottom:11.040000pt;}
.y8{bottom:16.160000pt;}
.y9c{bottom:22.720000pt;}
.y95{bottom:22.880000pt;}
.yc{bottom:32.000000pt;}
.y5{bottom:35.840000pt;}
.y98{bottom:40.480000pt;}
.yb{bottom:51.360000pt;}
.y4{bottom:60.800000pt;}
.yd{bottom:67.040000pt;}
.ya{bottom:70.720000pt;}
.y3{bottom:85.626667pt;}
.y9e{bottom:91.840000pt;}
.y6a{bottom:96.480000pt;}
.y3b{bottom:99.040000pt;}
.ya1{bottom:102.560000pt;}
.y7c{bottom:104.480000pt;}
.y9d{bottom:104.960000pt;}
.y2{bottom:111.706667pt;}
.y69{bottom:114.080000pt;}
.y3a{bottom:116.800000pt;}
.ya0{bottom:120.160000pt;}
.y7b{bottom:122.080000pt;}
.y68{bottom:131.840000pt;}
.y39{bottom:134.400000pt;}
.y9f{bottom:137.786667pt;}
.y7a{bottom:139.866667pt;}
.y9b{bottom:141.626667pt;}
.y67{bottom:149.466667pt;}
.y38{bottom:152.026667pt;}
.y79{bottom:157.466667pt;}
.y66{bottom:167.066667pt;}
.y37{bottom:169.626667pt;}
.y78{bottom:175.066667pt;}
.y99{bottom:178.106667pt;}
.y65{bottom:184.666667pt;}
.y36{bottom:187.226667pt;}
.y77{bottom:192.666667pt;}
.y64{bottom:202.266667pt;}
.y35{bottom:204.986667pt;}
.y76{bottom:210.266667pt;}
.y97{bottom:214.746667pt;}
.y63{bottom:220.026667pt;}
.y34{bottom:222.586667pt;}
.y75{bottom:228.026667pt;}
.y62{bottom:237.626667pt;}
.y33{bottom:240.186667pt;}
.y74{bottom:245.626667pt;}
.y61{bottom:255.226667pt;}
.y32{bottom:257.786667pt;}
.y73{bottom:263.226667pt;}
.y94{bottom:268.986667pt;}
.y60{bottom:272.826667pt;}
.y31{bottom:275.386667pt;}
.y72{bottom:280.826667pt;}
.y5f{bottom:290.426667pt;}
.y30{bottom:293.146667pt;}
.y71{bottom:298.426667pt;}
.y92{bottom:305.626667pt;}
.y5e{bottom:308.186667pt;}
.y2f{bottom:310.746667pt;}
.y70{bottom:316.186667pt;}
.y5d{bottom:325.786667pt;}
.y2e{bottom:328.346667pt;}
.y91{bottom:330.426667pt;}
.y6f{bottom:333.786667pt;}
.y5c{bottom:343.386667pt;}
.y2d{bottom:345.946667pt;}
.y6e{bottom:351.386667pt;}
.y90{bottom:356.066667pt;}
.y5b{bottom:361.026667pt;}
.y2c{bottom:363.586667pt;}
.y6d{bottom:369.026667pt;}
.y8f{bottom:373.666667pt;}
.y5a{bottom:378.626667pt;}
.y2b{bottom:381.346667pt;}
.y6c{bottom:386.626667pt;}
.y8e{bottom:391.266667pt;}
.y59{bottom:396.386667pt;}
.y2a{bottom:398.946667pt;}
.y6b{bottom:404.386667pt;}
.y8d{bottom:408.866667pt;}
.y29{bottom:416.546667pt;}
.y58{bottom:421.986667pt;}
.y8c{bottom:426.626667pt;}
.y28{bottom:434.146667pt;}
.y57{bottom:439.586667pt;}
.y8b{bottom:444.226667pt;}
.y27{bottom:451.746667pt;}
.y56{bottom:457.186667pt;}
.y8a{bottom:461.826667pt;}
.y26{bottom:469.506667pt;}
.y55{bottom:474.786667pt;}
.y89{bottom:479.426667pt;}
.y25{bottom:487.106667pt;}
.y54{bottom:492.546667pt;}
.y88{bottom:497.026667pt;}
.y24{bottom:504.706667pt;}
.y53{bottom:510.146667pt;}
.y87{bottom:514.786667pt;}
.y23{bottom:522.306667pt;}
.y52{bottom:527.746667pt;}
.y86{bottom:532.386667pt;}
.y22{bottom:539.906667pt;}
.y51{bottom:545.346667pt;}
.y85{bottom:547.746667pt;}
.y21{bottom:557.666667pt;}
.y50{bottom:562.946667pt;}
.y84{bottom:565.346667pt;}
.y20{bottom:575.266667pt;}
.y4f{bottom:580.733333pt;}
.y83{bottom:582.973333pt;}
.y1f{bottom:592.893333pt;}
.y4e{bottom:598.333333pt;}
.y82{bottom:600.573333pt;}
.y1e{bottom:610.493333pt;}
.y4d{bottom:615.933333pt;}
.y81{bottom:618.173333pt;}
.y1d{bottom:628.093333pt;}
.y4c{bottom:633.533333pt;}
.y80{bottom:635.933333pt;}
.y1c{bottom:645.853333pt;}
.y4b{bottom:651.133333pt;}
.y7f{bottom:653.533333pt;}
.y1b{bottom:663.453333pt;}
.y4a{bottom:668.893333pt;}
.y7e{bottom:671.133333pt;}
.y1a{bottom:681.053333pt;}
.y49{bottom:686.493333pt;}
.y7d{bottom:688.733333pt;}
.y19{bottom:698.653333pt;}
.y48{bottom:704.093333pt;}
.y18{bottom:716.253333pt;}
.y47{bottom:721.693333pt;}
.y17{bottom:734.013333pt;}
.y46{bottom:739.293333pt;}
.y16{bottom:751.613333pt;}
.y45{bottom:757.053333pt;}
.y15{bottom:769.213333pt;}
.y44{bottom:774.653333pt;}
.y14{bottom:786.813333pt;}
.y43{bottom:792.253333pt;}
.y13{bottom:804.453333pt;}
.y42{bottom:809.893333pt;}
.y12{bottom:822.693333pt;}
.y41{bottom:827.493333pt;}
.y11{bottom:842.053333pt;}
.y40{bottom:845.253333pt;}
.y3f{bottom:862.853333pt;}
.y10{bottom:864.133333pt;}
.y3e{bottom:880.453333pt;}
.yf{bottom:892.293333pt;}
.y3d{bottom:898.053333pt;}
.y3c{bottom:915.653333pt;}
.y9{bottom:931.173333pt;}
.y1{bottom:944.133333pt;}
.y7{bottom:974.533333pt;}
.h7{height:2.246250pt;}
.he{height:18.240000pt;}
.ha{height:19.360000pt;}
.h8{height:29.760000pt;}
.h11{height:35.200000pt;}
.h12{height:35.232000pt;}
.hf{height:35.360000pt;}
.hd{height:37.479688pt;}
.h14{height:40.021563pt;}
.h4{height:41.543750pt;}
.h5{height:46.609688pt;}
.h9{height:51.663750pt;}
.h13{height:52.834688pt;}
.h10{height:52.960000pt;}
.h3{height:56.445312pt;}
.hb{height:60.057813pt;}
.hc{height:74.687812pt;}
.h6{height:100.032000pt;}
.h2{height:130.432000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:8.800000pt;}
.w3{width:117.152000pt;}
.w6{width:131.392000pt;}
.w7{width:519.173333pt;}
.w2{width:581.893333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x1{left:47.360000pt;}
.xd{left:66.879988pt;}
.x6{left:69.119988pt;}
.xb{left:71.999988pt;}
.xe{left:90.911988pt;}
.x4{left:105.146667pt;}
.xc{left:203.386667pt;}
.x7{left:257.826655pt;}
.xa{left:258.786655pt;}
.x9{left:344.546655pt;}
.x8{left:396.893322pt;}
.x3{left:629.253333pt;}
.x5{left:737.120000pt;}
}




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