
    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_6bcb389828c896c44ee451e5.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_f40efc29b2d6c9fa7d2c828b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_18accb030892504b636c5e75.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_135769c40cc4a771d7b44394.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.914062;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_19a976e3bdae347462e02964.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;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_817fcd3cd1c73ecfa215ea40.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.040039;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_49e1a029288779e75ed9ca2e.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.401855;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_271f29959492e78b99e9d1b7.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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);}
.v1{vertical-align:-84.240000px;}
.v3{vertical-align:-30.240000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls7{letter-spacing:-1.008000px;}
.ls6{letter-spacing:-0.109200px;}
.lsc{letter-spacing:-0.108000px;}
.ls8{letter-spacing:-0.008640px;}
.ls4{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.017280px;}
.ls0{letter-spacing:0.149760px;}
.ls3{letter-spacing:0.153360px;}
.ls5{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.ls9{letter-spacing:0.900000px;}
.lsa{letter-spacing:12.276000px;}
.lsb{letter-spacing:52.668000px;}
.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;}
}
.ws6{word-spacing:-59.760000px;}
.ws5{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.431360px;}
.ws1{word-spacing:-16.560000px;}
.ws0{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.940000px;}
.ws8{word-spacing:-13.860000px;}
.ws9{word-spacing:-13.500000px;}
.ws3{word-spacing:-10.440000px;}
.ws7{word-spacing:0.000000px;}
._8{margin-left:-3.231600px;}
._1{margin-left:-1.170000px;}
._2{width:1.080000px;}
._7{width:2.092800px;}
._c{width:3.186000px;}
._b{width:4.500000px;}
._a{width:5.760000px;}
._f{width:6.768000px;}
._e{width:8.568000px;}
._18{width:9.666000px;}
._9{width:10.708560px;}
._11{width:12.169440px;}
._10{width:14.742000px;}
._13{width:16.099440px;}
._1a{width:17.388000px;}
._19{width:18.414000px;}
._17{width:19.710000px;}
._16{width:21.168000px;}
._20{width:23.148000px;}
._12{width:24.354000px;}
._14{width:25.974000px;}
._15{width:28.134000px;}
._1f{width:29.754000px;}
._d{width:31.482000px;}
._1e{width:32.508000px;}
._1b{width:33.912000px;}
._1d{width:35.352000px;}
._1c{width:36.450000px;}
._3{width:59.610000px;}
._4{width:76.500000px;}
._5{width:202.500000px;}
._0{width:1037.280000px;}
._6{width:1224.300000px;}
.fc6{color:transparent;}
.fc4{color:rgb(33,37,41);}
.fc3{color:rgb(0,0,255);}
.fc5{color:rgb(0,176,240);}
.fc2{color:rgb(0,112,192);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.760000px;}
.fs0{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs3{font-size:84.240000px;}
.fs4{font-size:90.000000px;}
.fs2{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y3{bottom:2.880000px;}
.y3d{bottom:3.060000px;}
.y94{bottom:3.240000px;}
.y4{bottom:15.480000px;}
.y3e{bottom:15.660000px;}
.y2{bottom:18.720000px;}
.y3c{bottom:18.900000px;}
.y5{bottom:36.720000px;}
.y3f{bottom:39.780000px;}
.y1{bottom:57.600000px;}
.y3b{bottom:60.660000px;}
.y38{bottom:71.670000px;}
.y37{bottom:91.470000px;}
.y90{bottom:107.280000px;}
.y30{bottom:109.800000px;}
.y36{bottom:111.270000px;}
.y2f{bottom:127.620000px;}
.y35{bottom:131.070000px;}
.y2e{bottom:145.440000px;}
.y34{bottom:151.050000px;}
.y2d{bottom:163.260000px;}
.y33{bottom:170.850000px;}
.y2c{bottom:181.080000px;}
.y2b{bottom:198.900000px;}
.y32{bottom:201.135000px;}
.y2a{bottom:218.910000px;}
.y29{bottom:251.670000px;}
.y31{bottom:273.420000px;}
.y3a{bottom:295.770000px;}
.y28{bottom:297.750000px;}
.y27{bottom:324.030000px;}
.y39{bottom:325.290000px;}
.y26{bottom:350.490000px;}
.y25{bottom:376.770000px;}
.y24{bottom:403.050000px;}
.y23{bottom:429.330000px;}
.y67{bottom:430.590000px;}
.y8f{bottom:438.330000px;}
.y66{bottom:448.455000px;}
.y22{bottom:455.655000px;}
.y8e{bottom:456.195000px;}
.y65{bottom:466.275000px;}
.y96{bottom:471.855000px;}
.y8d{bottom:474.015000px;}
.y21{bottom:482.115000px;}
.y64{bottom:484.095000px;}
.y8c{bottom:491.835000px;}
.y63{bottom:501.915000px;}
.y20{bottom:508.395000px;}
.y8b{bottom:509.835000px;}
.y62{bottom:521.895000px;}
.y8a{bottom:527.655000px;}
.y95{bottom:528.195000px;}
.y1f{bottom:534.675000px;}
.y89{bottom:545.475000px;}
.y93{bottom:550.335000px;}
.y61{bottom:554.655000px;}
.y1e{bottom:556.455000px;}
.y88{bottom:563.295000px;}
.y60{bottom:572.475000px;}
.y87{bottom:581.115000px;}
.y1d{bottom:582.915000px;}
.y5f{bottom:590.295000px;}
.y86{bottom:599.115000px;}
.y5e{bottom:608.115000px;}
.y1c{bottom:613.695000px;}
.y85{bottom:618.915000px;}
.y5d{bottom:626.115000px;}
.y1b{bottom:635.475000px;}
.y5c{bottom:643.935000px;}
.y84{bottom:651.675000px;}
.y1a{bottom:661.755000px;}
.y83{bottom:678.525000px;}
.y5b{bottom:679.605000px;}
.y19{bottom:691.125000px;}
.y82{bottom:695.985000px;}
.y5a{bottom:697.425000px;}
.y18{bottom:705.525000px;}
.y81{bottom:723.165000px;}
.y59{bottom:724.245000px;}
.y17{bottom:726.945000px;}
.y80{bottom:741.165000px;}
.y58{bottom:742.245000px;}
.y16{bottom:748.725000px;}
.y7f{bottom:758.985000px;}
.y57{bottom:760.065000px;}
.y7e{bottom:776.805000px;}
.y56{bottom:777.885000px;}
.y7d{bottom:794.625000px;}
.y55{bottom:795.705000px;}
.y15{bottom:799.305000px;}
.y7c{bottom:812.445000px;}
.y54{bottom:813.525000px;}
.y7b{bottom:830.445000px;}
.y53{bottom:831.345000px;}
.y14{bottom:845.565000px;}
.y7a{bottom:848.265000px;}
.y52{bottom:849.345000px;}
.y92{bottom:852.225000px;}
.y79{bottom:866.085000px;}
.y51{bottom:867.165000px;}
.y13{bottom:870.765000px;}
.y91{bottom:875.985000px;}
.y50{bottom:884.985000px;}
.y12{bottom:890.565000px;}
.y78{bottom:892.905000px;}
.y4f{bottom:902.805000px;}
.y77{bottom:910.770000px;}
.y11{bottom:911.130000px;}
.y76{bottom:928.590000px;}
.y4e{bottom:929.670000px;}
.y10{bottom:931.830000px;}
.y75{bottom:946.590000px;}
.y4d{bottom:947.670000px;}
.yf{bottom:952.170000px;}
.y74{bottom:964.410000px;}
.y4c{bottom:965.490000px;}
.y73{bottom:982.230000px;}
.y4b{bottom:983.310000px;}
.ye{bottom:993.930000px;}
.y72{bottom:1000.050000px;}
.y4a{bottom:1001.130000px;}
.yd{bottom:1007.790000px;}
.y49{bottom:1018.950000px;}
.yc{bottom:1021.650000px;}
.y71{bottom:1026.870000px;}
.yb{bottom:1035.510000px;}
.y70{bottom:1044.870000px;}
.y48{bottom:1045.770000px;}
.ya{bottom:1054.050000px;}
.y6f{bottom:1062.690000px;}
.y47{bottom:1063.770000px;}
.y6e{bottom:1080.510000px;}
.y46{bottom:1081.590000px;}
.y9{bottom:1083.210000px;}
.y6d{bottom:1098.330000px;}
.y45{bottom:1099.410000px;}
.y8{bottom:1110.930000px;}
.y6c{bottom:1116.150000px;}
.y44{bottom:1117.230000px;}
.y6b{bottom:1133.970000px;}
.y43{bottom:1135.050000px;}
.y7{bottom:1138.830000px;}
.y42{bottom:1153.080000px;}
.y6a{bottom:1161.000000px;}
.y6{bottom:1170.540000px;}
.y41{bottom:1170.900000px;}
.y69{bottom:1178.820000px;}
.y40{bottom:1190.700000px;}
.y68{bottom:1196.640000px;}
.h2{height:30.955500px;}
.h14{height:31.135500px;}
.h16{height:37.705078px;}
.h8{height:40.985156px;}
.h3{height:52.998047px;}
.h15{height:53.709961px;}
.h11{height:54.421875px;}
.h17{height:55.503491px;}
.h13{height:58.621992px;}
.h9{height:58.651172px;}
.ha{height:60.226875px;}
.hb{height:65.010937px;}
.h4{height:65.884219px;}
.hf{height:66.757500px;}
.he{height:71.225156px;}
.hd{height:72.326250px;}
.h10{height:78.367500px;}
.hc{height:82.676953px;}
.h6{height:84.898125px;}
.h7{height:90.703125px;}
.h5{height:126.984375px;}
.h12{height:228.420000px;}
.h18{height:295.590000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:80.310000px;}
.w5{width:286.230000px;}
.w6{width:306.615000px;}
.w2{width:722.115000px;}
.w4{width:811.620000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x3{left:8.635500px;}
.x14{left:10.800000px;}
.x13{left:40.140000px;}
.x1{left:45.364500px;}
.x15{left:50.940000px;}
.x5{left:54.000000px;}
.xd{left:73.800000px;}
.xf{left:78.480000px;}
.x1a{left:149.796000px;}
.xc{left:178.590000px;}
.x10{left:182.190000px;}
.x2{left:222.370500px;}
.x7{left:270.615000px;}
.x9{left:272.595000px;}
.xe{left:278.715000px;}
.xa{left:287.715000px;}
.x1c{left:297.975000px;}
.x11{left:324.075000px;}
.x8{left:364.395000px;}
.xb{left:378.795000px;}
.x1b{left:436.935000px;}
.x6{left:446.505000px;}
.x12{left:473.505000px;}
.x16{left:500.505000px;}
.x17{left:527.505000px;}
.x4{left:767.490000px;}
.x18{left:814.500000px;}
.x19{left:816.660000px;}
@media print{
.v1{vertical-align:-74.880000pt;}
.v3{vertical-align:-26.880000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls7{letter-spacing:-0.896000pt;}
.ls6{letter-spacing:-0.097067pt;}
.lsc{letter-spacing:-0.096000pt;}
.ls8{letter-spacing:-0.007680pt;}
.ls4{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.015360pt;}
.ls0{letter-spacing:0.133120pt;}
.ls3{letter-spacing:0.136320pt;}
.ls5{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.ls9{letter-spacing:0.800000pt;}
.lsa{letter-spacing:10.912000pt;}
.lsb{letter-spacing:46.816000pt;}
.ws6{word-spacing:-53.120000pt;}
.ws5{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.272320pt;}
.ws1{word-spacing:-14.720000pt;}
.ws0{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.280000pt;}
.ws8{word-spacing:-12.320000pt;}
.ws9{word-spacing:-12.000000pt;}
.ws3{word-spacing:-9.280000pt;}
.ws7{word-spacing:0.000000pt;}
._8{margin-left:-2.872533pt;}
._1{margin-left:-1.040000pt;}
._2{width:0.960000pt;}
._7{width:1.860267pt;}
._c{width:2.832000pt;}
._b{width:4.000000pt;}
._a{width:5.120000pt;}
._f{width:6.016000pt;}
._e{width:7.616000pt;}
._18{width:8.592000pt;}
._9{width:9.518720pt;}
._11{width:10.817280pt;}
._10{width:13.104000pt;}
._13{width:14.310613pt;}
._1a{width:15.456000pt;}
._19{width:16.368000pt;}
._17{width:17.520000pt;}
._16{width:18.816000pt;}
._20{width:20.576000pt;}
._12{width:21.648000pt;}
._14{width:23.088000pt;}
._15{width:25.008000pt;}
._1f{width:26.448000pt;}
._d{width:27.984000pt;}
._1e{width:28.896000pt;}
._1b{width:30.144000pt;}
._1d{width:31.424000pt;}
._1c{width:32.400000pt;}
._3{width:52.986667pt;}
._4{width:68.000000pt;}
._5{width:180.000000pt;}
._0{width:922.026667pt;}
._6{width:1088.266667pt;}
.fs5{font-size:37.120000pt;}
.fs0{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs3{font-size:74.880000pt;}
.fs4{font-size:80.000000pt;}
.fs2{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:2.560000pt;}
.y3d{bottom:2.720000pt;}
.y94{bottom:2.880000pt;}
.y4{bottom:13.760000pt;}
.y3e{bottom:13.920000pt;}
.y2{bottom:16.640000pt;}
.y3c{bottom:16.800000pt;}
.y5{bottom:32.640000pt;}
.y3f{bottom:35.360000pt;}
.y1{bottom:51.200000pt;}
.y3b{bottom:53.920000pt;}
.y38{bottom:63.706667pt;}
.y37{bottom:81.306667pt;}
.y90{bottom:95.360000pt;}
.y30{bottom:97.600000pt;}
.y36{bottom:98.906667pt;}
.y2f{bottom:113.440000pt;}
.y35{bottom:116.506667pt;}
.y2e{bottom:129.280000pt;}
.y34{bottom:134.266667pt;}
.y2d{bottom:145.120000pt;}
.y33{bottom:151.866667pt;}
.y2c{bottom:160.960000pt;}
.y2b{bottom:176.800000pt;}
.y32{bottom:178.786667pt;}
.y2a{bottom:194.586667pt;}
.y29{bottom:223.706667pt;}
.y31{bottom:243.040000pt;}
.y3a{bottom:262.906667pt;}
.y28{bottom:264.666667pt;}
.y27{bottom:288.026667pt;}
.y39{bottom:289.146667pt;}
.y26{bottom:311.546667pt;}
.y25{bottom:334.906667pt;}
.y24{bottom:358.266667pt;}
.y23{bottom:381.626667pt;}
.y67{bottom:382.746667pt;}
.y8f{bottom:389.626667pt;}
.y66{bottom:398.626667pt;}
.y22{bottom:405.026667pt;}
.y8e{bottom:405.506667pt;}
.y65{bottom:414.466667pt;}
.y96{bottom:419.426667pt;}
.y8d{bottom:421.346667pt;}
.y21{bottom:428.546667pt;}
.y64{bottom:430.306667pt;}
.y8c{bottom:437.186667pt;}
.y63{bottom:446.146667pt;}
.y20{bottom:451.906667pt;}
.y8b{bottom:453.186667pt;}
.y62{bottom:463.906667pt;}
.y8a{bottom:469.026667pt;}
.y95{bottom:469.506667pt;}
.y1f{bottom:475.266667pt;}
.y89{bottom:484.866667pt;}
.y93{bottom:489.186667pt;}
.y61{bottom:493.026667pt;}
.y1e{bottom:494.626667pt;}
.y88{bottom:500.706667pt;}
.y60{bottom:508.866667pt;}
.y87{bottom:516.546667pt;}
.y1d{bottom:518.146667pt;}
.y5f{bottom:524.706667pt;}
.y86{bottom:532.546667pt;}
.y5e{bottom:540.546667pt;}
.y1c{bottom:545.506667pt;}
.y85{bottom:550.146667pt;}
.y5d{bottom:556.546667pt;}
.y1b{bottom:564.866667pt;}
.y5c{bottom:572.386667pt;}
.y84{bottom:579.266667pt;}
.y1a{bottom:588.226667pt;}
.y83{bottom:603.133333pt;}
.y5b{bottom:604.093333pt;}
.y19{bottom:614.333333pt;}
.y82{bottom:618.653333pt;}
.y5a{bottom:619.933333pt;}
.y18{bottom:627.133333pt;}
.y81{bottom:642.813333pt;}
.y59{bottom:643.773333pt;}
.y17{bottom:646.173333pt;}
.y80{bottom:658.813333pt;}
.y58{bottom:659.773333pt;}
.y16{bottom:665.533333pt;}
.y7f{bottom:674.653333pt;}
.y57{bottom:675.613333pt;}
.y7e{bottom:690.493333pt;}
.y56{bottom:691.453333pt;}
.y7d{bottom:706.333333pt;}
.y55{bottom:707.293333pt;}
.y15{bottom:710.493333pt;}
.y7c{bottom:722.173333pt;}
.y54{bottom:723.133333pt;}
.y7b{bottom:738.173333pt;}
.y53{bottom:738.973333pt;}
.y14{bottom:751.613333pt;}
.y7a{bottom:754.013333pt;}
.y52{bottom:754.973333pt;}
.y92{bottom:757.533333pt;}
.y79{bottom:769.853333pt;}
.y51{bottom:770.813333pt;}
.y13{bottom:774.013333pt;}
.y91{bottom:778.653333pt;}
.y50{bottom:786.653333pt;}
.y12{bottom:791.613333pt;}
.y78{bottom:793.693333pt;}
.y4f{bottom:802.493333pt;}
.y77{bottom:809.573333pt;}
.y11{bottom:809.893333pt;}
.y76{bottom:825.413333pt;}
.y4e{bottom:826.373333pt;}
.y10{bottom:828.293333pt;}
.y75{bottom:841.413333pt;}
.y4d{bottom:842.373333pt;}
.yf{bottom:846.373333pt;}
.y74{bottom:857.253333pt;}
.y4c{bottom:858.213333pt;}
.y73{bottom:873.093333pt;}
.y4b{bottom:874.053333pt;}
.ye{bottom:883.493333pt;}
.y72{bottom:888.933333pt;}
.y4a{bottom:889.893333pt;}
.yd{bottom:895.813333pt;}
.y49{bottom:905.733333pt;}
.yc{bottom:908.133333pt;}
.y71{bottom:912.773333pt;}
.yb{bottom:920.453333pt;}
.y70{bottom:928.773333pt;}
.y48{bottom:929.573333pt;}
.ya{bottom:936.933333pt;}
.y6f{bottom:944.613333pt;}
.y47{bottom:945.573333pt;}
.y6e{bottom:960.453333pt;}
.y46{bottom:961.413333pt;}
.y9{bottom:962.853333pt;}
.y6d{bottom:976.293333pt;}
.y45{bottom:977.253333pt;}
.y8{bottom:987.493333pt;}
.y6c{bottom:992.133333pt;}
.y44{bottom:993.093333pt;}
.y6b{bottom:1007.973333pt;}
.y43{bottom:1008.933333pt;}
.y7{bottom:1012.293333pt;}
.y42{bottom:1024.960000pt;}
.y6a{bottom:1032.000000pt;}
.y6{bottom:1040.480000pt;}
.y41{bottom:1040.800000pt;}
.y69{bottom:1047.840000pt;}
.y40{bottom:1058.400000pt;}
.y68{bottom:1063.680000pt;}
.h2{height:27.516000pt;}
.h14{height:27.676000pt;}
.h16{height:33.515625pt;}
.h8{height:36.431250pt;}
.h3{height:47.109375pt;}
.h15{height:47.742188pt;}
.h11{height:48.375000pt;}
.h17{height:49.336436pt;}
.h13{height:52.108438pt;}
.h9{height:52.134375pt;}
.ha{height:53.535000pt;}
.hb{height:57.787500pt;}
.h4{height:58.563750pt;}
.hf{height:59.340000pt;}
.he{height:63.311250pt;}
.hd{height:64.290000pt;}
.h10{height:69.660000pt;}
.hc{height:73.490625pt;}
.h6{height:75.465000pt;}
.h7{height:80.625000pt;}
.h5{height:112.875000pt;}
.h12{height:203.040000pt;}
.h18{height:262.746667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:71.386667pt;}
.w5{width:254.426667pt;}
.w6{width:272.546667pt;}
.w2{width:641.880000pt;}
.w4{width:721.440000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3{left:7.676000pt;}
.x14{left:9.600000pt;}
.x13{left:35.680000pt;}
.x1{left:40.324000pt;}
.x15{left:45.280000pt;}
.x5{left:48.000000pt;}
.xd{left:65.600000pt;}
.xf{left:69.760000pt;}
.x1a{left:133.152000pt;}
.xc{left:158.746667pt;}
.x10{left:161.946667pt;}
.x2{left:197.662667pt;}
.x7{left:240.546667pt;}
.x9{left:242.306667pt;}
.xe{left:247.746667pt;}
.xa{left:255.746667pt;}
.x1c{left:264.866667pt;}
.x11{left:288.066667pt;}
.x8{left:323.906667pt;}
.xb{left:336.706667pt;}
.x1b{left:388.386667pt;}
.x6{left:396.893333pt;}
.x12{left:420.893333pt;}
.x16{left:444.893333pt;}
.x17{left:468.893333pt;}
.x4{left:682.213333pt;}
.x18{left:724.000000pt;}
.x19{left:725.920000pt;}
}




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