
    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_9d2131424977c63410c8f172.woff')format("woff");}.ff1{font-family:ff1;line-height:0.938965;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_0bbea65debed832fa48e6c99.woff')format("woff");}.ff2{font-family:ff2;line-height:0.938477;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_1b6e0daee1887dcb1ce48273.woff')format("woff");}.ff3{font-family:ff3;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_c36e7abc76b6ceb2bc6a0b94.woff')format("woff");}.ff4{font-family:ff4;line-height:0.747559;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_e49bf6c12a9994681150e247.woff')format("woff");}.ff5{font-family:ff5;line-height:0.959473;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_8f3e271a38f6c596555be484.woff')format("woff");}.ff6{font-family:ff6;line-height:0.757812;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_da2dc8a929c617948cfcd418.woff')format("woff");}.ff7{font-family:ff7;line-height:0.912000;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_8c2890105d89b24857f1f435.woff')format("woff");}.ff8{font-family:ff8;line-height:0.714000;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_01f1af39943332eb1f6c107c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.733398;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);}
.v1{vertical-align:-3.336600px;}
.v0{vertical-align:0.000000px;}
.lsc{letter-spacing:-0.040800px;}
.ls10{letter-spacing:-0.030000px;}
.lsb{letter-spacing:-0.020400px;}
.lsa{letter-spacing:-0.019380px;}
.lsf{letter-spacing:-0.018768px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.018300px;}
.lse{letter-spacing:0.018768px;}
.ls8{letter-spacing:0.018900px;}
.ls9{letter-spacing:0.019380px;}
.ls4{letter-spacing:0.019740px;}
.ls2{letter-spacing:0.019920px;}
.ls5{letter-spacing:0.020196px;}
.ls3{letter-spacing:0.020400px;}
.ls7{letter-spacing:0.027600px;}
.ls6{letter-spacing:0.028800px;}
.ls1{letter-spacing:0.030000px;}
.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:-68.400000px;}
.ws1{word-spacing:-46.512000px;}
.ws2{word-spacing:-41.700000px;}
.ws3{word-spacing:-38.364000px;}
.ws6{word-spacing:-0.288000px;}
.ws4{word-spacing:-0.150000px;}
.ws0{word-spacing:0.000000px;}
._8{margin-left:-33.120000px;}
._9{margin-left:-18.441600px;}
._7{margin-left:-17.424000px;}
._5{margin-left:-13.533600px;}
._0{margin-left:-12.530400px;}
._a{margin-left:-11.373408px;}
._2{margin-left:-8.731200px;}
._3{margin-left:-6.480000px;}
._4{margin-left:-4.290000px;}
._1{margin-left:-2.958000px;}
._6{width:1.008000px;}
.fc5{color:rgb(238,34,12);}
.fc4{color:rgb(115,109,178);}
.fc3{color:rgb(255,38,0);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs6{font-size:138.000000px;}
.fs4{font-size:144.000000px;}
.fs5{font-size:150.000000px;}
.fsc{font-size:187.680000px;}
.fsb{font-size:193.800000px;}
.fs8{font-size:201.960000px;}
.fs3{font-size:204.000000px;}
.fs0{font-size:276.000000px;}
.fsa{font-size:288.000000px;}
.fs2{font-size:300.000000px;}
.fs7{font-size:360.000000px;}
.fsd{font-size:456.000000px;}
.fs1{font-size:504.000000px;}
.fs9{font-size:612.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:16.740600px;}
.y2c{bottom:16.740750px;}
.yc{bottom:18.596010px;}
.y91{bottom:19.811850px;}
.y71{bottom:22.177575px;}
.y17{bottom:29.228400px;}
.y18{bottom:30.038550px;}
.y1a{bottom:45.969945px;}
.y43{bottom:48.960150px;}
.y5d{bottom:48.960195px;}
.y5f{bottom:48.960225px;}
.y1d{bottom:48.960240px;}
.y8f{bottom:48.960285px;}
.y70{bottom:48.960300px;}
.y2f{bottom:58.740600px;}
.y2b{bottom:58.740750px;}
.y84{bottom:66.883935px;}
.y5e{bottom:84.998040px;}
.y9c{bottom:87.391500px;}
.y37{bottom:91.837830px;}
.y8e{bottom:124.083915px;}
.y5b{bottom:136.400055px;}
.y83{bottom:141.133935px;}
.y55{bottom:149.121300px;}
.y5c{bottom:149.121345px;}
.y9b{bottom:161.641500px;}
.y1c{bottom:164.121255px;}
.y36{bottom:166.087800px;}
.y6d{bottom:170.593800px;}
.y47{bottom:198.365400px;}
.y89{bottom:215.383950px;}
.y6c{bottom:242.689200px;}
.y77{bottom:243.456600px;}
.y29{bottom:254.771550px;}
.y51{bottom:272.563350px;}
.y35{bottom:277.837800px;}
.y1b{bottom:279.282405px;}
.y82{bottom:282.883950px;}
.y53{bottom:285.365550px;}
.y5a{bottom:287.653800px;}
.ya4{bottom:287.882850px;}
.y41{bottom:288.487950px;}
.y88{bottom:289.633950px;}
.y6b{bottom:292.056600px;}
.y9a{bottom:303.391500px;}
.y50{bottom:323.305950px;}
.y76{bottom:339.889200px;}
.y46{bottom:340.115400px;}
.y59{bottom:341.137950px;}
.y28{bottom:356.545650px;}
.y81{bottom:357.133950px;}
.y87{bottom:363.883950px;}
.y6a{bottom:388.489200px;}
.y75{bottom:389.256600px;}
.y34{bottom:389.587800px;}
.y90{bottom:391.795950px;}
.y15{bottom:392.953800px;}
.y27{bottom:408.671550px;}
.y45{bottom:414.365400px;}
.y4f{bottom:423.205950px;}
.y52{bottom:427.115400px;}
.ya3{bottom:429.632850px;}
.y69{bottom:437.089200px;}
.y8c{bottom:437.856600px;}
.y72{bottom:439.114800px;}
.y99{bottom:445.141500px;}
.y40{bottom:445.603800px;}
.y14{bottom:446.437950px;}
.y33{bottom:463.837800px;}
.y68{bottom:485.689200px;}
.y2{bottom:485.724600px;}
.y80{bottom:498.883950px;}
.y3f{bottom:499.087950px;}
.y86{bottom:505.633950px;}
.y26{bottom:510.445650px;}
.y6e{bottom:515.500800px;}
.y98{bottom:519.391500px;}
.y4e{bottom:522.313350px;}
.y67{bottom:535.056600px;}
.y13{bottom:550.903800px;}
.y6f{bottom:555.499800px;}
.y44{bottom:556.115400px;}
.y25{bottom:561.745650px;}
.y1{bottom:565.224600px;}
.ya2{bottom:571.382850px;}
.y4d{bottom:572.263350px;}
.y7f{bottom:573.133950px;}
.y32{bottom:575.587800px;}
.y16{bottom:576.592050px;}
.y12{bottom:603.553800px;}
.y58{bottom:604.387950px;}
.y24{bottom:613.045650px;}
.y4c{bottom:622.213350px;}
.y66{bottom:631.489200px;}
.y8b{bottom:632.256600px;}
.y7e{bottom:647.383950px;}
.y31{bottom:649.837800px;}
.yb{bottom:656.203800px;}
.y3e{bottom:657.037950px;}
.y97{bottom:661.141500px;}
.y23{bottom:665.171550px;}
.y4b{bottom:672.955950px;}
.y4{bottom:676.823400px;}
.y65{bottom:680.089200px;}
.y74{bottom:680.856600px;}
.ya{bottom:708.853800px;}
.y11{bottom:709.687950px;}
.ya1{bottom:713.132850px;}
.y19{bottom:726.723600px;}
.y64{bottom:728.689200px;}
.y3d{bottom:761.503800px;}
.y9{bottom:762.337950px;}
.y22{bottom:766.945650px;}
.y4a{bottom:772.855950px;}
.y63{bottom:777.289200px;}
.y8a{bottom:778.056600px;}
.y3c{bottom:786.652050px;}
.y7d{bottom:789.133950px;}
.ya5{bottom:790.288200px;}
.y96{bottom:802.891500px;}
.y3{bottom:807.773400px;}
.y10{bottom:814.153800px;}
.y57{bottom:814.987950px;}
.y21{bottom:818.245650px;}
.y62{bottom:825.889200px;}
.y73{bottom:826.656600px;}
.y2e{bottom:846.571200px;}
.y54{bottom:852.049650px;}
.ya0{bottom:854.882850px;}
.y3b{bottom:860.902050px;}
.y7c{bottom:863.383950px;}
.y8{bottom:866.803800px;}
.y56{bottom:867.637950px;}
.y20{bottom:869.545650px;}
.y49{bottom:871.963350px;}
.y61{bottom:874.489200px;}
.y42{bottom:876.027450px;}
.y95{bottom:877.141500px;}
.y7{bottom:920.287950px;}
.y1f{bottom:921.671550px;}
.y48{bottom:922.705950px;}
.y60{bottom:923.856600px;}
.y85{bottom:930.883950px;}
.y94{bottom:951.391500px;}
.y8d{bottom:989.597400px;}
.y9f{bottom:996.632850px;}
.y3a{bottom:1002.652050px;}
.y7b{bottom:1005.133950px;}
.y79{bottom:1059.499500px;}
.y39{bottom:1076.902050px;}
.y7a{bottom:1079.383950px;}
.y93{bottom:1093.141500px;}
.y1e{bottom:1106.275650px;}
.yf{bottom:1107.175650px;}
.y6{bottom:1107.475650px;}
.y2a{bottom:1135.649700px;}
.y9e{bottom:1138.382850px;}
.y38{bottom:1151.152050px;}
.y92{bottom:1167.391500px;}
.y78{bottom:1183.487400px;}
.ye{bottom:1185.475650px;}
.y5{bottom:1185.775650px;}
.yd{bottom:1263.775650px;}
.y9d{bottom:1280.132850px;}
.y2d{bottom:1390.572000px;}
.h18{height:66.455745px;}
.h7{height:87.938640px;}
.h9{height:102.354492px;}
.hf{height:103.140855px;}
.h6{height:104.765625px;}
.h19{height:105.264000px;}
.h8{height:111.254883px;}
.ha{height:112.500000px;}
.h16{height:133.658212px;}
.h17{height:136.727812px;}
.h13{height:138.015928px;}
.h14{height:141.186328px;}
.hd{height:143.827416px;}
.h4{height:145.280587px;}
.he{height:147.131016px;}
.h5{height:148.617188px;}
.h12{height:164.640000px;}
.h1{height:201.070312px;}
.h11{height:209.812500px;}
.h3{height:218.554688px;}
.hc{height:263.160000px;}
.h15{height:264.801150px;}
.h1a{height:332.203125px;}
.h2{height:366.925781px;}
.hb{height:394.962150px;}
.h10{height:436.968000px;}
.h0{height:1620.000000px;}
.w5{width:112.712535px;}
.w2{width:136.604190px;}
.w4{width:138.284745px;}
.w6{width:141.318240px;}
.w3{width:142.172670px;}
.w1{width:170.464800px;}
.w12{width:228.925650px;}
.wd{width:232.690800px;}
.w8{width:245.958900px;}
.we{width:270.688800px;}
.w11{width:346.025550px;}
.wa{width:493.820250px;}
.w10{width:654.377850px;}
.w9{width:784.759200px;}
.wf{width:854.894250px;}
.wb{width:1006.203900px;}
.wc{width:1076.371500px;}
.w7{width:1668.015000px;}
.w0{width:2880.000000px;}
.x0{left:0.000000px;}
.x6{left:9.375000px;}
.x26{left:12.000000px;}
.xe{left:26.820000px;}
.x3{left:47.456445px;}
.x17{left:74.456445px;}
.x2{left:158.664150px;}
.x1b{left:838.136100px;}
.x24{left:840.966600px;}
.x21{left:846.566100px;}
.x27{left:872.668800px;}
.x1{left:877.232100px;}
.x12{left:892.285650px;}
.x15{left:911.822850px;}
.x1f{left:912.902700px;}
.xf{left:921.262350px;}
.xd{left:1017.386550px;}
.x1d{left:1153.090650px;}
.x28{left:1207.215750px;}
.x1c{left:1601.413500px;}
.x11{left:1621.458000px;}
.x10{left:1662.567000px;}
.x19{left:1676.479500px;}
.xa{left:1684.767000px;}
.x18{left:1783.509000px;}
.x5{left:1835.065500px;}
.x22{left:1846.819500px;}
.x1a{left:1900.158000px;}
.x23{left:1981.012500px;}
.x20{left:2013.414000px;}
.x7{left:2017.666500px;}
.x14{left:2024.517000px;}
.x8{left:2167.824000px;}
.x13{left:2195.380500px;}
.x1e{left:2281.210500px;}
.x16{left:2311.647000px;}
.x9{left:2333.251500px;}
.xc{left:2436.565500px;}
.xb{left:2485.789500px;}
.x25{left:2543.763000px;}
.x4{left:2576.325000px;}
@media print{
.v1{vertical-align:-2.965867pt;}
.v0{vertical-align:0.000000pt;}
.lsc{letter-spacing:-0.036267pt;}
.ls10{letter-spacing:-0.026667pt;}
.lsb{letter-spacing:-0.018133pt;}
.lsa{letter-spacing:-0.017227pt;}
.lsf{letter-spacing:-0.016683pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.016267pt;}
.lse{letter-spacing:0.016683pt;}
.ls8{letter-spacing:0.016800pt;}
.ls9{letter-spacing:0.017227pt;}
.ls4{letter-spacing:0.017547pt;}
.ls2{letter-spacing:0.017707pt;}
.ls5{letter-spacing:0.017952pt;}
.ls3{letter-spacing:0.018133pt;}
.ls7{letter-spacing:0.024533pt;}
.ls6{letter-spacing:0.025600pt;}
.ls1{letter-spacing:0.026667pt;}
.ws5{word-spacing:-60.800000pt;}
.ws1{word-spacing:-41.344000pt;}
.ws2{word-spacing:-37.066667pt;}
.ws3{word-spacing:-34.101333pt;}
.ws6{word-spacing:-0.256000pt;}
.ws4{word-spacing:-0.133333pt;}
.ws0{word-spacing:0.000000pt;}
._8{margin-left:-29.440000pt;}
._9{margin-left:-16.392533pt;}
._7{margin-left:-15.488000pt;}
._5{margin-left:-12.029867pt;}
._0{margin-left:-11.138133pt;}
._a{margin-left:-10.109696pt;}
._2{margin-left:-7.761067pt;}
._3{margin-left:-5.760000pt;}
._4{margin-left:-3.813333pt;}
._1{margin-left:-2.629333pt;}
._6{width:0.896000pt;}
.fs6{font-size:122.666667pt;}
.fs4{font-size:128.000000pt;}
.fs5{font-size:133.333333pt;}
.fsc{font-size:166.826667pt;}
.fsb{font-size:172.266667pt;}
.fs8{font-size:179.520000pt;}
.fs3{font-size:181.333333pt;}
.fs0{font-size:245.333333pt;}
.fsa{font-size:256.000000pt;}
.fs2{font-size:266.666667pt;}
.fs7{font-size:320.000000pt;}
.fsd{font-size:405.333333pt;}
.fs1{font-size:448.000000pt;}
.fs9{font-size:544.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:14.880533pt;}
.y2c{bottom:14.880667pt;}
.yc{bottom:16.529787pt;}
.y91{bottom:17.610533pt;}
.y71{bottom:19.713400pt;}
.y17{bottom:25.980800pt;}
.y18{bottom:26.700933pt;}
.y1a{bottom:40.862173pt;}
.y43{bottom:43.520133pt;}
.y5d{bottom:43.520173pt;}
.y5f{bottom:43.520200pt;}
.y1d{bottom:43.520213pt;}
.y8f{bottom:43.520253pt;}
.y70{bottom:43.520267pt;}
.y2f{bottom:52.213867pt;}
.y2b{bottom:52.214000pt;}
.y84{bottom:59.452387pt;}
.y5e{bottom:75.553813pt;}
.y9c{bottom:77.681333pt;}
.y37{bottom:81.633627pt;}
.y8e{bottom:110.296813pt;}
.y5b{bottom:121.244493pt;}
.y83{bottom:125.452387pt;}
.y55{bottom:132.552267pt;}
.y5c{bottom:132.552307pt;}
.y9b{bottom:143.681333pt;}
.y1c{bottom:145.885560pt;}
.y36{bottom:147.633600pt;}
.y6d{bottom:151.638933pt;}
.y47{bottom:176.324800pt;}
.y89{bottom:191.452400pt;}
.y6c{bottom:215.723733pt;}
.y77{bottom:216.405867pt;}
.y29{bottom:226.463600pt;}
.y51{bottom:242.278533pt;}
.y35{bottom:246.966933pt;}
.y1b{bottom:248.251027pt;}
.y82{bottom:251.452400pt;}
.y53{bottom:253.658267pt;}
.y5a{bottom:255.692267pt;}
.ya4{bottom:255.895867pt;}
.y41{bottom:256.433733pt;}
.y88{bottom:257.452400pt;}
.y6b{bottom:259.605867pt;}
.y9a{bottom:269.681333pt;}
.y50{bottom:287.383067pt;}
.y76{bottom:302.123733pt;}
.y46{bottom:302.324800pt;}
.y59{bottom:303.233733pt;}
.y28{bottom:316.929467pt;}
.y81{bottom:317.452400pt;}
.y87{bottom:323.452400pt;}
.y6a{bottom:345.323733pt;}
.y75{bottom:346.005867pt;}
.y34{bottom:346.300267pt;}
.y90{bottom:348.263067pt;}
.y15{bottom:349.292267pt;}
.y27{bottom:363.263600pt;}
.y45{bottom:368.324800pt;}
.y4f{bottom:376.183067pt;}
.y52{bottom:379.658133pt;}
.ya3{bottom:381.895867pt;}
.y69{bottom:388.523733pt;}
.y8c{bottom:389.205867pt;}
.y72{bottom:390.324267pt;}
.y99{bottom:395.681333pt;}
.y40{bottom:396.092267pt;}
.y14{bottom:396.833733pt;}
.y33{bottom:412.300267pt;}
.y68{bottom:431.723733pt;}
.y2{bottom:431.755200pt;}
.y80{bottom:443.452400pt;}
.y3f{bottom:443.633733pt;}
.y86{bottom:449.452400pt;}
.y26{bottom:453.729467pt;}
.y6e{bottom:458.222933pt;}
.y98{bottom:461.681333pt;}
.y4e{bottom:464.278533pt;}
.y67{bottom:475.605867pt;}
.y13{bottom:489.692267pt;}
.y6f{bottom:493.777600pt;}
.y44{bottom:494.324800pt;}
.y25{bottom:499.329467pt;}
.y1{bottom:502.421867pt;}
.ya2{bottom:507.895867pt;}
.y4d{bottom:508.678533pt;}
.y7f{bottom:509.452400pt;}
.y32{bottom:511.633600pt;}
.y16{bottom:512.526267pt;}
.y12{bottom:536.492267pt;}
.y58{bottom:537.233733pt;}
.y24{bottom:544.929467pt;}
.y4c{bottom:553.078533pt;}
.y66{bottom:561.323733pt;}
.y8b{bottom:562.005867pt;}
.y7e{bottom:575.452400pt;}
.y31{bottom:577.633600pt;}
.yb{bottom:583.292267pt;}
.y3e{bottom:584.033733pt;}
.y97{bottom:587.681333pt;}
.y23{bottom:591.263600pt;}
.y4b{bottom:598.183067pt;}
.y4{bottom:601.620800pt;}
.y65{bottom:604.523733pt;}
.y74{bottom:605.205867pt;}
.ya{bottom:630.092267pt;}
.y11{bottom:630.833733pt;}
.ya1{bottom:633.895867pt;}
.y19{bottom:645.976533pt;}
.y64{bottom:647.723733pt;}
.y3d{bottom:676.892267pt;}
.y9{bottom:677.633733pt;}
.y22{bottom:681.729467pt;}
.y4a{bottom:686.983067pt;}
.y63{bottom:690.923733pt;}
.y8a{bottom:691.605867pt;}
.y3c{bottom:699.246267pt;}
.y7d{bottom:701.452400pt;}
.ya5{bottom:702.478400pt;}
.y96{bottom:713.681333pt;}
.y3{bottom:718.020800pt;}
.y10{bottom:723.692267pt;}
.y57{bottom:724.433733pt;}
.y21{bottom:727.329467pt;}
.y62{bottom:734.123733pt;}
.y73{bottom:734.805867pt;}
.y2e{bottom:752.507733pt;}
.y54{bottom:757.377467pt;}
.ya0{bottom:759.895867pt;}
.y3b{bottom:765.246267pt;}
.y7c{bottom:767.452400pt;}
.y8{bottom:770.492267pt;}
.y56{bottom:771.233733pt;}
.y20{bottom:772.929467pt;}
.y49{bottom:775.078533pt;}
.y61{bottom:777.323733pt;}
.y42{bottom:778.691067pt;}
.y95{bottom:779.681333pt;}
.y7{bottom:818.033733pt;}
.y1f{bottom:819.263600pt;}
.y48{bottom:820.183067pt;}
.y60{bottom:821.205867pt;}
.y85{bottom:827.452400pt;}
.y94{bottom:845.681333pt;}
.y8d{bottom:879.642133pt;}
.y9f{bottom:885.895867pt;}
.y3a{bottom:891.246267pt;}
.y7b{bottom:893.452400pt;}
.y79{bottom:941.777333pt;}
.y39{bottom:957.246267pt;}
.y7a{bottom:959.452400pt;}
.y93{bottom:971.681333pt;}
.y1e{bottom:983.356133pt;}
.yf{bottom:984.156133pt;}
.y6{bottom:984.422800pt;}
.y2a{bottom:1009.466400pt;}
.y9e{bottom:1011.895867pt;}
.y38{bottom:1023.246267pt;}
.y92{bottom:1037.681333pt;}
.y78{bottom:1051.988800pt;}
.ye{bottom:1053.756133pt;}
.y5{bottom:1054.022800pt;}
.yd{bottom:1123.356133pt;}
.y9d{bottom:1137.895867pt;}
.y2d{bottom:1236.064000pt;}
.h18{height:59.071773pt;}
.h7{height:78.167680pt;}
.h9{height:90.981771pt;}
.hf{height:91.680760pt;}
.h6{height:93.125000pt;}
.h19{height:93.568000pt;}
.h8{height:98.893229pt;}
.ha{height:100.000000pt;}
.h16{height:118.807300pt;}
.h17{height:121.535833pt;}
.h13{height:122.680825pt;}
.h14{height:125.498958pt;}
.hd{height:127.846592pt;}
.h4{height:129.138300pt;}
.he{height:130.783125pt;}
.h5{height:132.104167pt;}
.h12{height:146.346667pt;}
.h1{height:178.729167pt;}
.h11{height:186.500000pt;}
.h3{height:194.270833pt;}
.hc{height:233.920000pt;}
.h15{height:235.378800pt;}
.h1a{height:295.291667pt;}
.h2{height:326.156250pt;}
.hb{height:351.077467pt;}
.h10{height:388.416000pt;}
.h0{height:1440.000000pt;}
.w5{width:100.188920pt;}
.w2{width:121.425947pt;}
.w4{width:122.919773pt;}
.w6{width:125.616213pt;}
.w3{width:126.375707pt;}
.w1{width:151.524267pt;}
.w12{width:203.489467pt;}
.wd{width:206.836267pt;}
.w8{width:218.630133pt;}
.we{width:240.612267pt;}
.w11{width:307.578267pt;}
.wa{width:438.951333pt;}
.w10{width:581.669200pt;}
.w9{width:697.563733pt;}
.wf{width:759.906000pt;}
.wb{width:894.403467pt;}
.wc{width:956.774667pt;}
.w7{width:1482.680000pt;}
.w0{width:2560.000000pt;}
.x0{left:0.000000pt;}
.x6{left:8.333333pt;}
.x26{left:10.666667pt;}
.xe{left:23.840000pt;}
.x3{left:42.183507pt;}
.x17{left:66.183507pt;}
.x2{left:141.034800pt;}
.x1b{left:745.009867pt;}
.x24{left:747.525867pt;}
.x21{left:752.503200pt;}
.x27{left:775.705600pt;}
.x1{left:779.761867pt;}
.x12{left:793.142800pt;}
.x15{left:810.509200pt;}
.x1f{left:811.469067pt;}
.xf{left:818.899867pt;}
.xd{left:904.343600pt;}
.x1d{left:1024.969467pt;}
.x28{left:1073.080667pt;}
.x1c{left:1423.478667pt;}
.x11{left:1441.296000pt;}
.x10{left:1477.837333pt;}
.x19{left:1490.204000pt;}
.xa{left:1497.570667pt;}
.x18{left:1585.341333pt;}
.x5{left:1631.169333pt;}
.x22{left:1641.617333pt;}
.x1a{left:1689.029333pt;}
.x23{left:1760.900000pt;}
.x20{left:1789.701333pt;}
.x7{left:1793.481333pt;}
.x14{left:1799.570667pt;}
.x8{left:1926.954667pt;}
.x13{left:1951.449333pt;}
.x1e{left:2027.742667pt;}
.x16{left:2054.797333pt;}
.x9{left:2074.001333pt;}
.xc{left:2165.836000pt;}
.xb{left:2209.590667pt;}
.x25{left:2261.122667pt;}
.x4{left:2290.066667pt;}
}




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