
    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_32f42f1145615faf05e738d3.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.682617;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_1554cfef22d06a7be80feb30.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_0c403a563cda8b8ba7667ab5.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_869048e666bd55e837ad0f73.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.201172;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_ce0de7e55a9989827c157fce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.201172;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_279e0549fcc0956142d1d092.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.983398;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_e9ebba77467052fe6f63dbc3.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.983398;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_7f297542b1b53801c9c937e5.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.435059;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_4c6f59b6f288b87d2960fa2d.woff2')format("woff");}.ff9{font-family:ff9;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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.ls13{letter-spacing:-0.544800px;}
.ls7{letter-spacing:-0.463800px;}
.ls12{letter-spacing:-0.326400px;}
.lsa{letter-spacing:-0.115800px;}
.lsb{letter-spacing:-0.058320px;}
.ls9{letter-spacing:-0.020160px;}
.ls6{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.060600px;}
.ls3{letter-spacing:0.104400px;}
.ls16{letter-spacing:0.169200px;}
.lsc{letter-spacing:0.174000px;}
.ls4{letter-spacing:0.174240px;}
.ls17{letter-spacing:0.180000px;}
.ls8{letter-spacing:0.256200px;}
.lsf{letter-spacing:0.306000px;}
.lse{letter-spacing:0.479400px;}
.ls18{letter-spacing:0.660000px;}
.ls5{letter-spacing:0.894240px;}
.ls2{letter-spacing:1.258560px;}
.ls0{letter-spacing:1.296000px;}
.ls1{letter-spacing:2.016000px;}
.ls10{letter-spacing:6.570720px;}
.ls15{letter-spacing:12.186720px;}
.ls14{letter-spacing:42.426720px;}
.lsd{letter-spacing:45.450720px;}
.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;}
}
.ws0{word-spacing:-41.040000px;}
.ws3{word-spacing:-15.226440px;}
.ws2{word-spacing:-14.970240px;}
.ws1{word-spacing:-14.506440px;}
.wsa{word-spacing:-14.165760px;}
.ws8{word-spacing:-13.985160px;}
.wsb{word-spacing:-13.811760px;}
.wsc{word-spacing:-13.674960px;}
.ws5{word-spacing:-13.505760px;}
.ws9{word-spacing:-13.447440px;}
.ws6{word-spacing:-13.389960px;}
.ws4{word-spacing:-9.437760px;}
.ws7{word-spacing:0.000000px;}
._4{margin-left:-1451.376240px;}
._2{margin-left:-1329.557760px;}
._3{margin-left:-1009.684800px;}
._5{margin-left:-582.156960px;}
._7{margin-left:-4.899840px;}
._6{margin-left:-3.312000px;}
._11{margin-left:-2.270880px;}
._1{margin-left:-1.258560px;}
._0{width:1.394400px;}
._9{width:2.689200px;}
._8{width:3.823200px;}
._a{width:5.265360px;}
._b{width:6.513120px;}
._d{width:8.067600px;}
._10{width:9.318000px;}
._e{width:10.454160px;}
._f{width:11.653200px;}
._14{width:14.621280px;}
._12{width:15.896160px;}
._13{width:18.649200px;}
._c{width:2718.950640px;}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(4,12,40);}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(33,33,33);}
.fs6{font-size:2.880000px;}
.fs5{font-size:38.880000px;}
.fs4{font-size:41.760000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:84.240000px;}
.fs2{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y30{bottom:6.480000px;}
.y32{bottom:6.654000px;}
.y28{bottom:6.660000px;}
.y96{bottom:7.020000px;}
.y2c{bottom:7.380000px;}
.y2e{bottom:11.160000px;}
.y95{bottom:28.080000px;}
.y92{bottom:35.460000px;}
.y94{bottom:49.500000px;}
.y6{bottom:61.200000px;}
.y93{bottom:70.554000px;}
.y98{bottom:71.496000px;}
.y5d{bottom:91.836000px;}
.y34{bottom:97.596000px;}
.y91{bottom:97.776000px;}
.y90{bottom:112.536000px;}
.y5c{bottom:112.896000px;}
.y33{bottom:123.336000px;}
.y8f{bottom:133.596000px;}
.y5b{bottom:133.956000px;}
.y31{bottom:149.076000px;}
.y8e{bottom:154.650000px;}
.y5a{bottom:155.010000px;}
.y2f{bottom:174.810000px;}
.y8d{bottom:175.710000px;}
.y59{bottom:176.070000px;}
.y8c{bottom:196.770000px;}
.y58{bottom:197.130000px;}
.y2d{bottom:200.370000px;}
.y8b{bottom:217.830000px;}
.y57{bottom:218.190000px;}
.y2b{bottom:230.430000px;}
.y8a{bottom:238.890000px;}
.y56{bottom:239.250000px;}
.y2a{bottom:256.890000px;}
.y89{bottom:259.950000px;}
.y55{bottom:269.310000px;}
.y88{bottom:281.010000px;}
.y29{bottom:282.450000px;}
.y54{bottom:290.370000px;}
.y87{bottom:302.070000px;}
.y27{bottom:308.190000px;}
.y53{bottom:311.430000px;}
.y86{bottom:323.130000px;}
.y52{bottom:332.490000px;}
.y26{bottom:340.635000px;}
.y85{bottom:344.235000px;}
.y51{bottom:353.595000px;}
.y25{bottom:361.695000px;}
.y84{bottom:365.295000px;}
.y50{bottom:374.475000px;}
.y24{bottom:382.755000px;}
.y83{bottom:386.355000px;}
.y4f{bottom:395.535000px;}
.y23{bottom:403.815000px;}
.y82{bottom:407.415000px;}
.y4e{bottom:416.595000px;}
.y22{bottom:424.875000px;}
.y81{bottom:428.475000px;}
.y4d{bottom:437.655000px;}
.y21{bottom:445.935000px;}
.y80{bottom:449.535000px;}
.y4c{bottom:458.715000px;}
.y20{bottom:466.995000px;}
.y7f{bottom:470.595000px;}
.y4b{bottom:479.775000px;}
.y1f{bottom:488.055000px;}
.y7e{bottom:491.655000px;}
.y4a{bottom:500.835000px;}
.y1e{bottom:509.115000px;}
.y7d{bottom:512.715000px;}
.y49{bottom:521.895000px;}
.y1d{bottom:530.175000px;}
.y7c{bottom:533.775000px;}
.y48{bottom:542.955000px;}
.y1c{bottom:551.235000px;}
.y7b{bottom:554.835000px;}
.y47{bottom:564.015000px;}
.y1b{bottom:572.295000px;}
.y7a{bottom:575.895000px;}
.y46{bottom:585.075000px;}
.y1a{bottom:593.355000px;}
.y79{bottom:596.955000px;}
.y45{bottom:606.165000px;}
.y19{bottom:614.445000px;}
.y78{bottom:618.045000px;}
.y44{bottom:627.225000px;}
.y18{bottom:635.505000px;}
.y77{bottom:639.105000px;}
.y43{bottom:648.285000px;}
.y17{bottom:656.565000px;}
.y76{bottom:659.985000px;}
.y42{bottom:669.345000px;}
.y16{bottom:677.625000px;}
.y75{bottom:681.045000px;}
.y41{bottom:686.445000px;}
.y15{bottom:698.685000px;}
.y74{bottom:702.105000px;}
.y14{bottom:722.085000px;}
.y73{bottom:723.165000px;}
.y72{bottom:744.225000px;}
.y13{bottom:751.965000px;}
.y71{bottom:765.285000px;}
.y12{bottom:773.025000px;}
.y70{bottom:786.345000px;}
.y11{bottom:794.085000px;}
.y6f{bottom:807.405000px;}
.y10{bottom:815.145000px;}
.y6e{bottom:828.465000px;}
.yf{bottom:836.205000px;}
.y6d{bottom:849.525000px;}
.ye{bottom:857.265000px;}
.y6c{bottom:870.585000px;}
.yd{bottom:878.370000px;}
.y6b{bottom:891.690000px;}
.yc{bottom:899.610000px;}
.y6a{bottom:912.750000px;}
.yb{bottom:922.830000px;}
.y69{bottom:933.810000px;}
.y40{bottom:944.430000px;}
.ya{bottom:949.110000px;}
.y68{bottom:954.870000px;}
.y3f{bottom:965.490000px;}
.y9{bottom:965.670000px;}
.y67{bottom:975.930000px;}
.y3e{bottom:986.550000px;}
.y8{bottom:987.990000px;}
.y66{bottom:996.990000px;}
.y3d{bottom:1007.610000px;}
.y7{bottom:1013.190000px;}
.y65{bottom:1018.050000px;}
.y3c{bottom:1028.670000px;}
.y64{bottom:1039.110000px;}
.y3b{bottom:1049.730000px;}
.y63{bottom:1060.170000px;}
.y5{bottom:1060.530000px;}
.y3a{bottom:1070.790000px;}
.y62{bottom:1081.230000px;}
.y39{bottom:1091.850000px;}
.y4{bottom:1092.750000px;}
.y61{bottom:1102.290000px;}
.y38{bottom:1112.910000px;}
.y60{bottom:1123.350000px;}
.y3{bottom:1124.790000px;}
.y37{bottom:1128.390000px;}
.y5f{bottom:1144.440000px;}
.y36{bottom:1154.160000px;}
.y2{bottom:1157.040000px;}
.y99{bottom:1162.980000px;}
.y5e{bottom:1165.500000px;}
.y1{bottom:1191.600000px;}
.y35{bottom:1193.400000px;}
.y97{bottom:1194.840000px;}
.h11{height:2.864531px;}
.hc{height:20.880000px;}
.h9{height:21.060000px;}
.hd{height:21.096000px;}
.ha{height:21.780000px;}
.hb{height:25.560000px;}
.h7{height:38.671172px;}
.h2{height:56.146289px;}
.h8{height:59.439023px;}
.h5{height:61.189805px;}
.hf{height:61.423863px;}
.he{height:62.211094px;}
.h3{height:65.884219px;}
.h6{height:67.824844px;}
.h10{height:84.960000px;}
.h4{height:98.051133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w3{width:33.660000px;}
.w7{width:44.280000px;}
.w5{width:85.176000px;}
.w6{width:122.436000px;}
.w8{width:153.750000px;}
.w9{width:210.855000px;}
.w4{width:264.810000px;}
.wa{width:580.965000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:7.200000px;}
.x1{left:53.999987px;}
.xe{left:81.035987px;}
.x10{left:83.735987px;}
.xd{left:86.615987px;}
.x3{left:92.916000px;}
.xf{left:97.595987px;}
.x2{left:108.035987px;}
.x11{left:110.735987px;}
.x5{left:127.656000px;}
.x12{left:190.155000px;}
.x13{left:264.855000px;}
.xb{left:389.414987px;}
.x6{left:393.555000px;}
.xc{left:446.144987px;}
.x7{left:479.805000px;}
.x8{left:603.150000px;}
.x9{left:648.510000px;}
.xa{left:655.529987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls13{letter-spacing:-0.484267pt;}
.ls7{letter-spacing:-0.412267pt;}
.ls12{letter-spacing:-0.290133pt;}
.lsa{letter-spacing:-0.102933pt;}
.lsb{letter-spacing:-0.051840pt;}
.ls9{letter-spacing:-0.017920pt;}
.ls6{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.053867pt;}
.ls3{letter-spacing:0.092800pt;}
.ls16{letter-spacing:0.150400pt;}
.lsc{letter-spacing:0.154667pt;}
.ls4{letter-spacing:0.154880pt;}
.ls17{letter-spacing:0.160000pt;}
.ls8{letter-spacing:0.227733pt;}
.lsf{letter-spacing:0.272000pt;}
.lse{letter-spacing:0.426133pt;}
.ls18{letter-spacing:0.586667pt;}
.ls5{letter-spacing:0.794880pt;}
.ls2{letter-spacing:1.118720pt;}
.ls0{letter-spacing:1.152000pt;}
.ls1{letter-spacing:1.792000pt;}
.ls10{letter-spacing:5.840640pt;}
.ls15{letter-spacing:10.832640pt;}
.ls14{letter-spacing:37.712640pt;}
.lsd{letter-spacing:40.400640pt;}
.ws0{word-spacing:-36.480000pt;}
.ws3{word-spacing:-13.534613pt;}
.ws2{word-spacing:-13.306880pt;}
.ws1{word-spacing:-12.894613pt;}
.wsa{word-spacing:-12.591787pt;}
.ws8{word-spacing:-12.431253pt;}
.wsb{word-spacing:-12.277120pt;}
.wsc{word-spacing:-12.155520pt;}
.ws5{word-spacing:-12.005120pt;}
.ws9{word-spacing:-11.953280pt;}
.ws6{word-spacing:-11.902187pt;}
.ws4{word-spacing:-8.389120pt;}
.ws7{word-spacing:0.000000pt;}
._4{margin-left:-1290.112213pt;}
._2{margin-left:-1181.829120pt;}
._3{margin-left:-897.497600pt;}
._5{margin-left:-517.472853pt;}
._7{margin-left:-4.355413pt;}
._6{margin-left:-2.944000pt;}
._11{margin-left:-2.018560pt;}
._1{margin-left:-1.118720pt;}
._0{width:1.239467pt;}
._9{width:2.390400pt;}
._8{width:3.398400pt;}
._a{width:4.680320pt;}
._b{width:5.789440pt;}
._d{width:7.171200pt;}
._10{width:8.282667pt;}
._e{width:9.292587pt;}
._f{width:10.358400pt;}
._14{width:12.996693pt;}
._12{width:14.129920pt;}
._13{width:16.577067pt;}
._c{width:2416.845013pt;}
.fs6{font-size:2.560000pt;}
.fs5{font-size:34.560000pt;}
.fs4{font-size:37.120000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:74.880000pt;}
.fs2{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:5.760000pt;}
.y32{bottom:5.914667pt;}
.y28{bottom:5.920000pt;}
.y96{bottom:6.240000pt;}
.y2c{bottom:6.560000pt;}
.y2e{bottom:9.920000pt;}
.y95{bottom:24.960000pt;}
.y92{bottom:31.520000pt;}
.y94{bottom:44.000000pt;}
.y6{bottom:54.400000pt;}
.y93{bottom:62.714667pt;}
.y98{bottom:63.552000pt;}
.y5d{bottom:81.632000pt;}
.y34{bottom:86.752000pt;}
.y91{bottom:86.912000pt;}
.y90{bottom:100.032000pt;}
.y5c{bottom:100.352000pt;}
.y33{bottom:109.632000pt;}
.y8f{bottom:118.752000pt;}
.y5b{bottom:119.072000pt;}
.y31{bottom:132.512000pt;}
.y8e{bottom:137.466667pt;}
.y5a{bottom:137.786667pt;}
.y2f{bottom:155.386667pt;}
.y8d{bottom:156.186667pt;}
.y59{bottom:156.506667pt;}
.y8c{bottom:174.906667pt;}
.y58{bottom:175.226667pt;}
.y2d{bottom:178.106667pt;}
.y8b{bottom:193.626667pt;}
.y57{bottom:193.946667pt;}
.y2b{bottom:204.826667pt;}
.y8a{bottom:212.346667pt;}
.y56{bottom:212.666667pt;}
.y2a{bottom:228.346667pt;}
.y89{bottom:231.066667pt;}
.y55{bottom:239.386667pt;}
.y88{bottom:249.786667pt;}
.y29{bottom:251.066667pt;}
.y54{bottom:258.106667pt;}
.y87{bottom:268.506667pt;}
.y27{bottom:273.946667pt;}
.y53{bottom:276.826667pt;}
.y86{bottom:287.226667pt;}
.y52{bottom:295.546667pt;}
.y26{bottom:302.786667pt;}
.y85{bottom:305.986667pt;}
.y51{bottom:314.306667pt;}
.y25{bottom:321.506667pt;}
.y84{bottom:324.706667pt;}
.y50{bottom:332.866667pt;}
.y24{bottom:340.226667pt;}
.y83{bottom:343.426667pt;}
.y4f{bottom:351.586667pt;}
.y23{bottom:358.946667pt;}
.y82{bottom:362.146667pt;}
.y4e{bottom:370.306667pt;}
.y22{bottom:377.666667pt;}
.y81{bottom:380.866667pt;}
.y4d{bottom:389.026667pt;}
.y21{bottom:396.386667pt;}
.y80{bottom:399.586667pt;}
.y4c{bottom:407.746667pt;}
.y20{bottom:415.106667pt;}
.y7f{bottom:418.306667pt;}
.y4b{bottom:426.466667pt;}
.y1f{bottom:433.826667pt;}
.y7e{bottom:437.026667pt;}
.y4a{bottom:445.186667pt;}
.y1e{bottom:452.546667pt;}
.y7d{bottom:455.746667pt;}
.y49{bottom:463.906667pt;}
.y1d{bottom:471.266667pt;}
.y7c{bottom:474.466667pt;}
.y48{bottom:482.626667pt;}
.y1c{bottom:489.986667pt;}
.y7b{bottom:493.186667pt;}
.y47{bottom:501.346667pt;}
.y1b{bottom:508.706667pt;}
.y7a{bottom:511.906667pt;}
.y46{bottom:520.066667pt;}
.y1a{bottom:527.426667pt;}
.y79{bottom:530.626667pt;}
.y45{bottom:538.813333pt;}
.y19{bottom:546.173333pt;}
.y78{bottom:549.373333pt;}
.y44{bottom:557.533333pt;}
.y18{bottom:564.893333pt;}
.y77{bottom:568.093333pt;}
.y43{bottom:576.253333pt;}
.y17{bottom:583.613333pt;}
.y76{bottom:586.653333pt;}
.y42{bottom:594.973333pt;}
.y16{bottom:602.333333pt;}
.y75{bottom:605.373333pt;}
.y41{bottom:610.173333pt;}
.y15{bottom:621.053333pt;}
.y74{bottom:624.093333pt;}
.y14{bottom:641.853333pt;}
.y73{bottom:642.813333pt;}
.y72{bottom:661.533333pt;}
.y13{bottom:668.413333pt;}
.y71{bottom:680.253333pt;}
.y12{bottom:687.133333pt;}
.y70{bottom:698.973333pt;}
.y11{bottom:705.853333pt;}
.y6f{bottom:717.693333pt;}
.y10{bottom:724.573333pt;}
.y6e{bottom:736.413333pt;}
.yf{bottom:743.293333pt;}
.y6d{bottom:755.133333pt;}
.ye{bottom:762.013333pt;}
.y6c{bottom:773.853333pt;}
.yd{bottom:780.773333pt;}
.y6b{bottom:792.613333pt;}
.yc{bottom:799.653333pt;}
.y6a{bottom:811.333333pt;}
.yb{bottom:820.293333pt;}
.y69{bottom:830.053333pt;}
.y40{bottom:839.493333pt;}
.ya{bottom:843.653333pt;}
.y68{bottom:848.773333pt;}
.y3f{bottom:858.213333pt;}
.y9{bottom:858.373333pt;}
.y67{bottom:867.493333pt;}
.y3e{bottom:876.933333pt;}
.y8{bottom:878.213333pt;}
.y66{bottom:886.213333pt;}
.y3d{bottom:895.653333pt;}
.y7{bottom:900.613333pt;}
.y65{bottom:904.933333pt;}
.y3c{bottom:914.373333pt;}
.y64{bottom:923.653333pt;}
.y3b{bottom:933.093333pt;}
.y63{bottom:942.373333pt;}
.y5{bottom:942.693333pt;}
.y3a{bottom:951.813333pt;}
.y62{bottom:961.093333pt;}
.y39{bottom:970.533333pt;}
.y4{bottom:971.333333pt;}
.y61{bottom:979.813333pt;}
.y38{bottom:989.253333pt;}
.y60{bottom:998.533333pt;}
.y3{bottom:999.813333pt;}
.y37{bottom:1003.013333pt;}
.y5f{bottom:1017.280000pt;}
.y36{bottom:1025.920000pt;}
.y2{bottom:1028.480000pt;}
.y99{bottom:1033.760000pt;}
.y5e{bottom:1036.000000pt;}
.y1{bottom:1059.200000pt;}
.y35{bottom:1060.800000pt;}
.y97{bottom:1062.080000pt;}
.h11{height:2.546250pt;}
.hc{height:18.560000pt;}
.h9{height:18.720000pt;}
.hd{height:18.752000pt;}
.ha{height:19.360000pt;}
.hb{height:22.720000pt;}
.h7{height:34.374375pt;}
.h2{height:49.907812pt;}
.h8{height:52.834688pt;}
.h5{height:54.390938pt;}
.hf{height:54.598989pt;}
.he{height:55.298750pt;}
.h3{height:58.563750pt;}
.h6{height:60.288750pt;}
.h10{height:75.520000pt;}
.h4{height:87.156562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w3{width:29.920000pt;}
.w7{width:39.360000pt;}
.w5{width:75.712000pt;}
.w6{width:108.832000pt;}
.w8{width:136.666667pt;}
.w9{width:187.426667pt;}
.w4{width:235.386667pt;}
.wa{width:516.413333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:6.400000pt;}
.x1{left:47.999988pt;}
.xe{left:72.031988pt;}
.x10{left:74.431988pt;}
.xd{left:76.991988pt;}
.x3{left:82.592000pt;}
.xf{left:86.751988pt;}
.x2{left:96.031988pt;}
.x11{left:98.431988pt;}
.x5{left:113.472000pt;}
.x12{left:169.026667pt;}
.x13{left:235.426667pt;}
.xb{left:346.146655pt;}
.x6{left:349.826667pt;}
.xc{left:396.573322pt;}
.x7{left:426.493333pt;}
.x8{left:536.133333pt;}
.x9{left:576.453333pt;}
.xa{left:582.693322pt;}
}




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