
    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_f024f3bed8aa68c80f330f54.woff')format("woff");}.ff1{font-family:ff1;line-height:1.171875;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_19bffbe0170e6b2be22c32d7.woff')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_44e9e501af61041125b9648d.woff')format("woff");}.ff3{font-family:ff3;line-height:1.119629;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_6e67c920517a32dc3437f43f.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_55b2e700331a15efa9824729.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_dbc395c5934c797829aafce1.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_7166f918b8bfa0e2f2992bed.woff')format("woff");}.ff7{font-family:ff7;line-height:0.978027;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_43b8363aa35811a7af787216.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_f108aa452e868583493c18a3.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_6d3f8f5a30d67e3acbecb34f.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_1789b830b008549ec6a7328b.woff')format("woff");}.ffb{font-family:ffb;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;}
.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);}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.359998px;}
.v1{vertical-align:36.000000px;}
.ls9{letter-spacing:-0.720000px;}
.ls3{letter-spacing:-0.648000px;}
.ls1{letter-spacing:-0.298200px;}
.ls8{letter-spacing:-0.144000px;}
.ls2{letter-spacing:-0.058320px;}
.ls0{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.359999px;}
.ls6{letter-spacing:0.360000px;}
.ls7{letter-spacing:0.864000px;}
.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:-18.144000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-17.856000px;}
.ws0{word-spacing:-13.447440px;}
.ws3{word-spacing:-12.060000px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-8.064000px;}
._1{margin-left:-6.912000px;}
._27{margin-left:-4.308000px;}
._3{margin-left:-3.096000px;}
._2{margin-left:-1.800000px;}
._0{width:1.544400px;}
._d{width:2.592000px;}
._e{width:3.771600px;}
._f{width:5.588400px;}
._b{width:7.104000px;}
._c{width:8.160000px;}
._5{width:10.272000px;}
._4{width:11.496000px;}
._a{width:12.984000px;}
._12{width:14.215200px;}
._13{width:16.272000px;}
._7{width:20.880000px;}
._6{width:22.248000px;}
._1f{width:27.360000px;}
._9{width:28.512000px;}
._8{width:29.664000px;}
._10{width:33.552000px;}
._11{width:34.632000px;}
._28{width:39.024000px;}
._29{width:40.836000px;}
._17{width:42.048000px;}
._22{width:55.015200px;}
._21{width:56.016000px;}
._20{width:79.920000px;}
._1d{width:109.224000px;}
._1e{width:110.808000px;}
._15{width:117.792000px;}
._26{width:176.040000px;}
._18{width:218.304000px;}
._23{width:228.816000px;}
._24{width:230.484000px;}
._19{width:247.152000px;}
._1c{width:250.344000px;}
._16{width:258.048000px;}
._25{width:444.456000px;}
._1a{width:662.616000px;}
._1b{width:739.008000px;}
.fc5{color:rgb(47,84,150);}
.fc4{color:rgb(31,55,99);}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(0,112,192);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y3b{bottom:8.460000px;}
.y50{bottom:11.880000px;}
.y57{bottom:12.060000px;}
.y54{bottom:12.780000px;}
.y43{bottom:39.960000px;}
.y4f{bottom:40.860000px;}
.y56{bottom:41.040000px;}
.y53{bottom:41.760000px;}
.y4d{bottom:43.380000px;}
.y4b{bottom:44.100000px;}
.y3e{bottom:52.200000px;}
.y5a{bottom:52.245000px;}
.y7{bottom:57.636000px;}
.y48{bottom:67.320000px;}
.y46{bottom:68.220000px;}
.y42{bottom:68.940000px;}
.y52{bottom:70.740000px;}
.y55{bottom:70.920000px;}
.y4a{bottom:73.080000px;}
.y4c{bottom:73.260000px;}
.y59{bottom:81.045000px;}
.y3d{bottom:81.180000px;}
.y45{bottom:97.020000px;}
.y47{bottom:97.200000px;}
.y41{bottom:97.740000px;}
.y3a{bottom:124.740000px;}
.y2a{bottom:124.776000px;}
.y40{bottom:126.765000px;}
.y44{bottom:126.945000px;}
.y70{bottom:133.416000px;}
.y3f{bottom:155.730000px;}
.y6f{bottom:157.170000px;}
.y29{bottom:169.590000px;}
.y6e{bottom:180.930000px;}
.y6d{bottom:204.690000px;}
.y28{bottom:214.410000px;}
.y6c{bottom:249.510000px;}
.y27{bottom:259.050000px;}
.y6b{bottom:272.370000px;}
.y3c{bottom:300.135000px;}
.y26{bottom:304.095000px;}
.y6a{bottom:324.075000px;}
.y25{bottom:327.855000px;}
.y69{bottom:347.655000px;}
.y24{bottom:372.675000px;}
.y68{bottom:392.655000px;}
.y23{bottom:396.435000px;}
.y39{bottom:398.955000px;}
.y67{bottom:416.415000px;}
.y22{bottom:420.195000px;}
.y66{bottom:461.235000px;}
.y21{bottom:465.015000px;}
.y65{bottom:484.995000px;}
.y20{bottom:488.775000px;}
.y64{bottom:508.755000px;}
.y1f{bottom:512.715000px;}
.y1e{bottom:536.475000px;}
.y63{bottom:553.575000px;}
.y1d{bottom:560.235000px;}
.y62{bottom:577.365000px;}
.y61{bottom:601.125000px;}
.y1c{bottom:605.085000px;}
.y1b{bottom:628.845000px;}
.y60{bottom:646.125000px;}
.y5f{bottom:669.885000px;}
.y1a{bottom:673.665000px;}
.y38{bottom:685.005000px;}
.y5e{bottom:693.645000px;}
.y7d{bottom:697.245000px;}
.y19{bottom:697.425000px;}
.y37{bottom:708.585000px;}
.y5d{bottom:717.405000px;}
.y7c{bottom:721.185000px;}
.y18{bottom:721.365000px;}
.y5c{bottom:741.345000px;}
.y7b{bottom:744.945000px;}
.y17{bottom:745.125000px;}
.y36{bottom:753.585000px;}
.y5b{bottom:765.105000px;}
.y7a{bottom:768.705000px;}
.y16{bottom:768.885000px;}
.y35{bottom:777.345000px;}
.y79{bottom:792.465000px;}
.y15{bottom:792.645000px;}
.y34{bottom:801.105000px;}
.y58{bottom:803.625000px;}
.y78{bottom:816.405000px;}
.y14{bottom:816.585000px;}
.y33{bottom:824.865000px;}
.y77{bottom:839.985000px;}
.y13{bottom:840.345000px;}
.y32{bottom:869.730000px;}
.y76{bottom:884.850000px;}
.y12{bottom:885.210000px;}
.y31{bottom:893.670000px;}
.y51{bottom:902.310000px;}
.y11{bottom:908.970000px;}
.y75{bottom:911.850000px;}
.y30{bottom:917.250000px;}
.y10{bottom:932.730000px;}
.y74{bottom:935.610000px;}
.yf{bottom:956.670000px;}
.y73{bottom:959.370000px;}
.y2f{bottom:962.250000px;}
.ye{bottom:980.430000px;}
.y72{bottom:983.130000px;}
.y2e{bottom:986.010000px;}
.y4e{bottom:990.690000px;}
.yd{bottom:1004.190000px;}
.y71{bottom:1006.890000px;}
.y2d{bottom:1009.770000px;}
.yc{bottom:1027.950000px;}
.y2c{bottom:1033.530000px;}
.y49{bottom:1049.190000px;}
.yb{bottom:1051.710000px;}
.ya{bottom:1075.650000px;}
.y2b{bottom:1078.350000px;}
.y9{bottom:1099.410000px;}
.y8{bottom:1123.170000px;}
.y6{bottom:1143.900000px;}
.y5{bottom:1164.600000px;}
.y4{bottom:1182.960000px;}
.y3{bottom:1201.320000px;}
.y2{bottom:1219.500000px;}
.y1{bottom:1237.860000px;}
.h12{height:50.273438px;}
.h15{height:57.780000px;}
.h2{height:61.189805px;}
.h4{height:65.884219px;}
.h6{height:70.628906px;}
.h7{height:70.664062px;}
.hf{height:72.562464px;}
.hc{height:72.562468px;}
.he{height:72.562470px;}
.h10{height:72.562472px;}
.hb{height:72.562476px;}
.ha{height:72.562487px;}
.h5{height:72.562500px;}
.h18{height:74.004654px;}
.hd{height:75.976854px;}
.h3{height:84.898125px;}
.h16{height:87.660000px;}
.h14{height:90.036000px;}
.h17{height:97.956000px;}
.h11{height:98.100000px;}
.h9{height:108.562500px;}
.h13{height:143.676000px;}
.h8{height:272.370000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:41.760000px;}
.w8{width:46.476000px;}
.w9{width:52.200000px;}
.w5{width:52.380000px;}
.w6{width:52.596000px;}
.wa{width:53.280000px;}
.w7{width:62.100000px;}
.w3{width:198.615000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.776000px;}
.x12{left:24.840000px;}
.x13{left:28.620000px;}
.x18{left:33.480000px;}
.xe{left:84.959987px;}
.xf{left:138.995987px;}
.x11{left:285.195000px;}
.x5{left:299.954987px;}
.xa{left:317.234987px;}
.x7{left:319.214987px;}
.xc{left:325.694987px;}
.xb{left:328.394987px;}
.x9{left:335.954987px;}
.x3{left:350.534987px;}
.x8{left:377.534987px;}
.x14{left:380.775000px;}
.xd{left:399.314987px;}
.x1d{left:404.534987px;}
.x4{left:433.874987px;}
.x6{left:446.474987px;}
.x2{left:457.094987px;}
.x15{left:487.185000px;}
.x1{left:510.404987px;}
.x16{left:529.665000px;}
.x17{left:572.145000px;}
.x19{left:634.965000px;}
.x1a{left:682.170000px;}
.x1b{left:735.090000px;}
.x1c{left:807.989987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.319998pt;}
.v1{vertical-align:32.000000pt;}
.ls9{letter-spacing:-0.640000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:-0.265067pt;}
.ls8{letter-spacing:-0.128000pt;}
.ls2{letter-spacing:-0.051840pt;}
.ls0{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.319999pt;}
.ls6{letter-spacing:0.320000pt;}
.ls7{letter-spacing:0.768000pt;}
.ws5{word-spacing:-16.128000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-15.872000pt;}
.ws0{word-spacing:-11.953280pt;}
.ws3{word-spacing:-10.720000pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-7.168000pt;}
._1{margin-left:-6.144000pt;}
._27{margin-left:-3.829333pt;}
._3{margin-left:-2.752000pt;}
._2{margin-left:-1.600000pt;}
._0{width:1.372800pt;}
._d{width:2.304000pt;}
._e{width:3.352533pt;}
._f{width:4.967467pt;}
._b{width:6.314667pt;}
._c{width:7.253333pt;}
._5{width:9.130667pt;}
._4{width:10.218667pt;}
._a{width:11.541333pt;}
._12{width:12.635733pt;}
._13{width:14.464000pt;}
._7{width:18.560000pt;}
._6{width:19.776000pt;}
._1f{width:24.320000pt;}
._9{width:25.344000pt;}
._8{width:26.368000pt;}
._10{width:29.824000pt;}
._11{width:30.784000pt;}
._28{width:34.688000pt;}
._29{width:36.298667pt;}
._17{width:37.376000pt;}
._22{width:48.902400pt;}
._21{width:49.792000pt;}
._20{width:71.040000pt;}
._1d{width:97.088000pt;}
._1e{width:98.496000pt;}
._15{width:104.704000pt;}
._26{width:156.480000pt;}
._18{width:194.048000pt;}
._23{width:203.392000pt;}
._24{width:204.874667pt;}
._19{width:219.690667pt;}
._1c{width:222.528000pt;}
._16{width:229.376000pt;}
._25{width:395.072000pt;}
._1a{width:588.992000pt;}
._1b{width:656.896000pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y3b{bottom:7.520000pt;}
.y50{bottom:10.560000pt;}
.y57{bottom:10.720000pt;}
.y54{bottom:11.360000pt;}
.y43{bottom:35.520000pt;}
.y4f{bottom:36.320000pt;}
.y56{bottom:36.480000pt;}
.y53{bottom:37.120000pt;}
.y4d{bottom:38.560000pt;}
.y4b{bottom:39.200000pt;}
.y3e{bottom:46.400000pt;}
.y5a{bottom:46.440000pt;}
.y7{bottom:51.232000pt;}
.y48{bottom:59.840000pt;}
.y46{bottom:60.640000pt;}
.y42{bottom:61.280000pt;}
.y52{bottom:62.880000pt;}
.y55{bottom:63.040000pt;}
.y4a{bottom:64.960000pt;}
.y4c{bottom:65.120000pt;}
.y59{bottom:72.040000pt;}
.y3d{bottom:72.160000pt;}
.y45{bottom:86.240000pt;}
.y47{bottom:86.400000pt;}
.y41{bottom:86.880000pt;}
.y3a{bottom:110.880000pt;}
.y2a{bottom:110.912000pt;}
.y40{bottom:112.680000pt;}
.y44{bottom:112.840000pt;}
.y70{bottom:118.592000pt;}
.y3f{bottom:138.426667pt;}
.y6f{bottom:139.706667pt;}
.y29{bottom:150.746667pt;}
.y6e{bottom:160.826667pt;}
.y6d{bottom:181.946667pt;}
.y28{bottom:190.586667pt;}
.y6c{bottom:221.786667pt;}
.y27{bottom:230.266667pt;}
.y6b{bottom:242.106667pt;}
.y3c{bottom:266.786667pt;}
.y26{bottom:270.306667pt;}
.y6a{bottom:288.066667pt;}
.y25{bottom:291.426667pt;}
.y69{bottom:309.026667pt;}
.y24{bottom:331.266667pt;}
.y68{bottom:349.026667pt;}
.y23{bottom:352.386667pt;}
.y39{bottom:354.626667pt;}
.y67{bottom:370.146667pt;}
.y22{bottom:373.506667pt;}
.y66{bottom:409.986667pt;}
.y21{bottom:413.346667pt;}
.y65{bottom:431.106667pt;}
.y20{bottom:434.466667pt;}
.y64{bottom:452.226667pt;}
.y1f{bottom:455.746667pt;}
.y1e{bottom:476.866667pt;}
.y63{bottom:492.066667pt;}
.y1d{bottom:497.986667pt;}
.y62{bottom:513.213333pt;}
.y61{bottom:534.333333pt;}
.y1c{bottom:537.853333pt;}
.y1b{bottom:558.973333pt;}
.y60{bottom:574.333333pt;}
.y5f{bottom:595.453333pt;}
.y1a{bottom:598.813333pt;}
.y38{bottom:608.893333pt;}
.y5e{bottom:616.573333pt;}
.y7d{bottom:619.773333pt;}
.y19{bottom:619.933333pt;}
.y37{bottom:629.853333pt;}
.y5d{bottom:637.693333pt;}
.y7c{bottom:641.053333pt;}
.y18{bottom:641.213333pt;}
.y5c{bottom:658.973333pt;}
.y7b{bottom:662.173333pt;}
.y17{bottom:662.333333pt;}
.y36{bottom:669.853333pt;}
.y5b{bottom:680.093333pt;}
.y7a{bottom:683.293333pt;}
.y16{bottom:683.453333pt;}
.y35{bottom:690.973333pt;}
.y79{bottom:704.413333pt;}
.y15{bottom:704.573333pt;}
.y34{bottom:712.093333pt;}
.y58{bottom:714.333333pt;}
.y78{bottom:725.693333pt;}
.y14{bottom:725.853333pt;}
.y33{bottom:733.213333pt;}
.y77{bottom:746.653333pt;}
.y13{bottom:746.973333pt;}
.y32{bottom:773.093333pt;}
.y76{bottom:786.533333pt;}
.y12{bottom:786.853333pt;}
.y31{bottom:794.373333pt;}
.y51{bottom:802.053333pt;}
.y11{bottom:807.973333pt;}
.y75{bottom:810.533333pt;}
.y30{bottom:815.333333pt;}
.y10{bottom:829.093333pt;}
.y74{bottom:831.653333pt;}
.yf{bottom:850.373333pt;}
.y73{bottom:852.773333pt;}
.y2f{bottom:855.333333pt;}
.ye{bottom:871.493333pt;}
.y72{bottom:873.893333pt;}
.y2e{bottom:876.453333pt;}
.y4e{bottom:880.613333pt;}
.yd{bottom:892.613333pt;}
.y71{bottom:895.013333pt;}
.y2d{bottom:897.573333pt;}
.yc{bottom:913.733333pt;}
.y2c{bottom:918.693333pt;}
.y49{bottom:932.613333pt;}
.yb{bottom:934.853333pt;}
.ya{bottom:956.133333pt;}
.y2b{bottom:958.533333pt;}
.y9{bottom:977.253333pt;}
.y8{bottom:998.373333pt;}
.y6{bottom:1016.800000pt;}
.y5{bottom:1035.200000pt;}
.y4{bottom:1051.520000pt;}
.y3{bottom:1067.840000pt;}
.y2{bottom:1084.000000pt;}
.y1{bottom:1100.320000pt;}
.h12{height:44.687500pt;}
.h15{height:51.360000pt;}
.h2{height:54.390938pt;}
.h4{height:58.563750pt;}
.h6{height:62.781250pt;}
.h7{height:62.812500pt;}
.hf{height:64.499968pt;}
.hc{height:64.499971pt;}
.he{height:64.499973pt;}
.h10{height:64.499975pt;}
.hb{height:64.499979pt;}
.ha{height:64.499989pt;}
.h5{height:64.500000pt;}
.h18{height:65.781915pt;}
.hd{height:67.534981pt;}
.h3{height:75.465000pt;}
.h16{height:77.920000pt;}
.h14{height:80.032000pt;}
.h17{height:87.072000pt;}
.h11{height:87.200000pt;}
.h9{height:96.500000pt;}
.h13{height:127.712000pt;}
.h8{height:242.106667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:37.120000pt;}
.w8{width:41.312000pt;}
.w9{width:46.400000pt;}
.w5{width:46.560000pt;}
.w6{width:46.752000pt;}
.wa{width:47.360000pt;}
.w7{width:55.200000pt;}
.w3{width:176.546667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.912000pt;}
.x12{left:22.080000pt;}
.x13{left:25.440000pt;}
.x18{left:29.760000pt;}
.xe{left:75.519988pt;}
.xf{left:123.551988pt;}
.x11{left:253.506667pt;}
.x5{left:266.626655pt;}
.xa{left:281.986655pt;}
.x7{left:283.746655pt;}
.xc{left:289.506655pt;}
.xb{left:291.906655pt;}
.x9{left:298.626655pt;}
.x3{left:311.586655pt;}
.x8{left:335.586655pt;}
.x14{left:338.466667pt;}
.xd{left:354.946655pt;}
.x1d{left:359.586655pt;}
.x4{left:385.666655pt;}
.x6{left:396.866655pt;}
.x2{left:406.306655pt;}
.x15{left:433.053333pt;}
.x1{left:453.693322pt;}
.x16{left:470.813333pt;}
.x17{left:508.573333pt;}
.x19{left:564.413333pt;}
.x1a{left:606.373333pt;}
.x1b{left:653.413333pt;}
.x1c{left:718.213322pt;}
}




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