
    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_b7b2d2b0db581a73baebfb58.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_582c3e076b70dc82b94e323c.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_8e0e99c0c9388efa1f5ea4e1.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_7ba6bdd7356aebed69f589d9.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.939941;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_c9a529038544bbf33a58ab15.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_eb40de58ec55b93952ec1c89.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_8c3d99ef2527066814acd66d.woff2')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_91ed4a94fc6e97dcaa1ce904.woff2')format("woff");}.ff9{font-family:ff9;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;}
.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:-118.800000px;}
.v3{vertical-align:-84.420000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:33.120000px;}
.lsc{letter-spacing:-1.008000px;}
.ls17{letter-spacing:-0.720000px;}
.ls1a{letter-spacing:-0.576000px;}
.lsa{letter-spacing:-0.432000px;}
.ls8{letter-spacing:-0.288000px;}
.ls16{letter-spacing:-0.223800px;}
.lsd{letter-spacing:-0.216000px;}
.lsf{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.053280px;}
.ls4{letter-spacing:-0.036000px;}
.ls0{letter-spacing:0.000000px;}
.ls15{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls18{letter-spacing:0.216000px;}
.ls19{letter-spacing:0.269400px;}
.ls1{letter-spacing:0.360000px;}
.ls12{letter-spacing:0.432000px;}
.ls14{letter-spacing:0.504000px;}
.ls10{letter-spacing:0.576000px;}
.ls13{letter-spacing:0.648000px;}
.ls7{letter-spacing:0.720000px;}
.ls11{letter-spacing:1.152000px;}
.lsb{letter-spacing:1.440000px;}
.ls6{letter-spacing:6.480000px;}
.ls9{letter-spacing:7.920000px;}
.lse{letter-spacing:18.720000px;}
.ls1b{letter-spacing:645.996000px;}
.ls2{letter-spacing:957.576000px;}
.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;}
}
.ws3{word-spacing:-27.000000px;}
.ws2{word-spacing:-26.964000px;}
.wsa{word-spacing:-19.440000px;}
.wsb{word-spacing:-19.152000px;}
.ws6{word-spacing:-18.720000px;}
.wsc{word-spacing:-18.648000px;}
.ws11{word-spacing:-18.216000px;}
.ws8{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws10{word-spacing:-17.856000px;}
.wsd{word-spacing:-17.784000px;}
.ws7{word-spacing:-17.712000px;}
.ws9{word-spacing:-17.568000px;}
.ws13{word-spacing:-17.280000px;}
.ws4{word-spacing:-16.560000px;}
.ws1{word-spacing:-15.300000px;}
.ws12{word-spacing:-12.329400px;}
.wsf{word-spacing:-11.836200px;}
.ws0{word-spacing:0.000000px;}
._19{margin-left:-3.547920px;}
._11{margin-left:-2.328000px;}
._4{margin-left:-1.135440px;}
._1{width:1.015920px;}
._5{width:2.660880px;}
._3{width:4.175760px;}
._e{width:5.197200px;}
._0{width:6.274800px;}
._2{width:7.564800px;}
._9{width:9.272880px;}
._8{width:10.275600px;}
._a{width:11.706480px;}
._d{width:12.815280px;}
._10{width:13.896720px;}
._14{width:14.910960px;}
._13{width:16.715520px;}
._b{width:18.679680px;}
._c{width:20.094000px;}
._7{width:21.761760px;}
._6{width:23.082240px;}
._12{width:24.581280px;}
._16{width:26.098800px;}
._15{width:27.234720px;}
._1a{width:28.781280px;}
._1b{width:30.600000px;}
._18{width:31.680000px;}
._1c{width:32.701920px;}
._17{width:33.816000px;}
._f{width:35.568000px;}
._1d{width:36.775440px;}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,255);}
.fc3{color:rgb(17,17,17);}
.fc0{color:rgb(0,0,0);}
.fsb{font-size:38.880000px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:48.240000px;}
.fsa{font-size:54.000000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:77.760000px;}
.fs6{font-size:84.240000px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1f{bottom:4.492500px;}
.y1e{bottom:55.123500px;}
.y1d{bottom:59.616000px;}
.y4{bottom:97.125005px;}
.y4e{bottom:110.016000px;}
.y80{bottom:126.036000px;}
.y4d{bottom:127.296000px;}
.y4c{bottom:134.136000px;}
.y1c{bottom:139.264499px;}
.y4b{bottom:145.296000px;}
.y7f{bottom:146.736000px;}
.y7e{bottom:167.430000px;}
.y7d{bottom:188.130000px;}
.y13{bottom:196.933500px;}
.y7c{bottom:208.830000px;}
.y1b{bottom:209.518500px;}
.y12{bottom:209.533503px;}
.y1a{bottom:222.118502px;}
.y11{bottom:222.133505px;}
.y7b{bottom:229.530000px;}
.y19{bottom:234.718504px;}
.y10{bottom:234.733496px;}
.y7a{bottom:250.230000px;}
.y18{bottom:259.918497px;}
.yf{bottom:259.933500px;}
.y79{bottom:270.930000px;}
.y17{bottom:272.518500px;}
.ye{bottom:272.533503px;}
.y16{bottom:285.118502px;}
.yd{bottom:285.133499px;}
.y78{bottom:291.675000px;}
.y15{bottom:310.318501px;}
.yc{bottom:310.333501px;}
.y4a{bottom:311.475000px;}
.y77{bottom:312.375000px;}
.y14{bottom:322.918500px;}
.yb{bottom:322.933500px;}
.y49{bottom:330.555000px;}
.y76{bottom:333.075000px;}
.ya{bottom:348.133500px;}
.y48{bottom:349.455000px;}
.y75{bottom:353.775000px;}
.y47{bottom:367.995000px;}
.y74{bottom:374.475000px;}
.y46{bottom:385.995000px;}
.y9{bottom:386.785499px;}
.y73{bottom:395.175000px;}
.y45{bottom:403.995000px;}
.y8{bottom:408.044999px;}
.y72{bottom:415.875000px;}
.y44{bottom:421.995000px;}
.y71{bottom:436.395000px;}
.y43{bottom:439.995000px;}
.y70{bottom:457.095000px;}
.y42{bottom:458.355000px;}
.y41{bottom:477.435000px;}
.y6f{bottom:477.795000px;}
.y40{bottom:496.335000px;}
.y6e{bottom:498.495000px;}
.y3f{bottom:515.415000px;}
.y6d{bottom:519.195000px;}
.y7{bottom:520.864502px;}
.y3e{bottom:534.315000px;}
.y6{bottom:538.864499px;}
.y82{bottom:539.535000px;}
.y6c{bottom:539.895000px;}
.y3d{bottom:553.395000px;}
.y5{bottom:556.864499px;}
.y6b{bottom:560.625000px;}
.y3c{bottom:572.325000px;}
.y6a{bottom:581.325000px;}
.y3b{bottom:591.225000px;}
.y69{bottom:602.025000px;}
.y3a{bottom:610.305000px;}
.y83{bottom:622.365000px;}
.y68{bottom:622.725000px;}
.y39{bottom:629.205000px;}
.y67{bottom:643.425000px;}
.y38{bottom:648.285000px;}
.y66{bottom:664.125000px;}
.y37{bottom:667.185000px;}
.y65{bottom:684.825000px;}
.y36{bottom:686.085000px;}
.y35{bottom:705.165000px;}
.y64{bottom:705.525000px;}
.y34{bottom:724.065000px;}
.y63{bottom:726.225000px;}
.y33{bottom:743.145000px;}
.y62{bottom:746.925000px;}
.y3{bottom:752.599495px;}
.y32{bottom:762.045000px;}
.y61{bottom:767.625000px;}
.y31{bottom:780.945000px;}
.y60{bottom:788.325000px;}
.y30{bottom:800.025000px;}
.y84{bottom:808.665000px;}
.y5f{bottom:809.025000px;}
.y2f{bottom:818.925000px;}
.y5e{bottom:829.725000px;}
.y2e{bottom:838.005000px;}
.y5d{bottom:850.470000px;}
.y2d{bottom:856.950000px;}
.y5c{bottom:871.170000px;}
.y2b{bottom:876.930000px;}
.y2{bottom:879.369000px;}
.y2c{bottom:886.650000px;}
.y5b{bottom:891.870000px;}
.y2a{bottom:900.150000px;}
.y5a{bottom:912.570000px;}
.y29{bottom:919.050000px;}
.y59{bottom:933.270000px;}
.y28{bottom:937.950000px;}
.y58{bottom:953.970000px;}
.y27{bottom:957.750000px;}
.y1{bottom:966.726000px;}
.y57{bottom:974.310000px;}
.y81{bottom:974.670000px;}
.y56{bottom:995.370000px;}
.y26{bottom:1012.830000px;}
.y55{bottom:1016.070000px;}
.y54{bottom:1036.770000px;}
.y25{bottom:1036.950000px;}
.y53{bottom:1057.470000px;}
.y24{bottom:1061.250000px;}
.y52{bottom:1078.170000px;}
.y23{bottom:1085.370000px;}
.y51{bottom:1098.870000px;}
.y22{bottom:1108.590000px;}
.y50{bottom:1119.570000px;}
.y21{bottom:1125.720000px;}
.y4f{bottom:1140.300000px;}
.y20{bottom:1143.000000px;}
.ha{height:20.692500px;}
.h7{height:32.130000px;}
.h13{height:38.158594px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h15{height:52.066406px;}
.h10{height:52.998047px;}
.h2{height:55.080000px;}
.hb{height:58.651172px;}
.hd{height:65.010937px;}
.h11{height:66.757500px;}
.h17{height:70.628906px;}
.h9{height:70.664062px;}
.h12{height:72.562500px;}
.h5{height:78.030000px;}
.h14{height:80.464922px;}
.h16{height:80.584922px;}
.he{height:82.676953px;}
.hc{height:84.898125px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.hf{height:1262.877945px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:9.180000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w5{width:892.978125px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x5{left:127.656000px;}
.xd{left:132.516000px;}
.xf{left:148.896000px;}
.xe{left:181.650000px;}
.x4{left:203.484001px;}
.x7{left:281.370000px;}
.xc{left:343.695000px;}
.x9{left:384.195000px;}
.x6{left:441.975000px;}
.x8{left:446.475000px;}
.x3{left:454.959000px;}
.xa{left:502.123125px;}
.xb{left:508.965000px;}
@media print{
.v1{vertical-align:-105.600000pt;}
.v3{vertical-align:-75.040000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:29.440000pt;}
.lsc{letter-spacing:-0.896000pt;}
.ls17{letter-spacing:-0.640000pt;}
.ls1a{letter-spacing:-0.512000pt;}
.lsa{letter-spacing:-0.384000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls16{letter-spacing:-0.198933pt;}
.lsd{letter-spacing:-0.192000pt;}
.lsf{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:-0.032000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls15{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls18{letter-spacing:0.192000pt;}
.ls19{letter-spacing:0.239467pt;}
.ls1{letter-spacing:0.320000pt;}
.ls12{letter-spacing:0.384000pt;}
.ls14{letter-spacing:0.448000pt;}
.ls10{letter-spacing:0.512000pt;}
.ls13{letter-spacing:0.576000pt;}
.ls7{letter-spacing:0.640000pt;}
.ls11{letter-spacing:1.024000pt;}
.lsb{letter-spacing:1.280000pt;}
.ls6{letter-spacing:5.760000pt;}
.ls9{letter-spacing:7.040000pt;}
.lse{letter-spacing:16.640000pt;}
.ls1b{letter-spacing:574.218667pt;}
.ls2{letter-spacing:851.178667pt;}
.ws3{word-spacing:-24.000000pt;}
.ws2{word-spacing:-23.968000pt;}
.wsa{word-spacing:-17.280000pt;}
.wsb{word-spacing:-17.024000pt;}
.ws6{word-spacing:-16.640000pt;}
.wsc{word-spacing:-16.576000pt;}
.ws11{word-spacing:-16.192000pt;}
.ws8{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws10{word-spacing:-15.872000pt;}
.wsd{word-spacing:-15.808000pt;}
.ws7{word-spacing:-15.744000pt;}
.ws9{word-spacing:-15.616000pt;}
.ws13{word-spacing:-15.360000pt;}
.ws4{word-spacing:-14.720000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws12{word-spacing:-10.959467pt;}
.wsf{word-spacing:-10.521067pt;}
.ws0{word-spacing:0.000000pt;}
._19{margin-left:-3.153707pt;}
._11{margin-left:-2.069333pt;}
._4{margin-left:-1.009280pt;}
._1{width:0.903040pt;}
._5{width:2.365227pt;}
._3{width:3.711787pt;}
._e{width:4.619733pt;}
._0{width:5.577600pt;}
._2{width:6.724267pt;}
._9{width:8.242560pt;}
._8{width:9.133867pt;}
._a{width:10.405760pt;}
._d{width:11.391360pt;}
._10{width:12.352640pt;}
._14{width:13.254187pt;}
._13{width:14.858240pt;}
._b{width:16.604160pt;}
._c{width:17.861333pt;}
._7{width:19.343787pt;}
._6{width:20.517547pt;}
._12{width:21.850027pt;}
._16{width:23.198933pt;}
._15{width:24.208640pt;}
._1a{width:25.583360pt;}
._1b{width:27.200000pt;}
._18{width:28.160000pt;}
._1c{width:29.068373pt;}
._17{width:30.058667pt;}
._f{width:31.616000pt;}
._1d{width:32.689280pt;}
.fsb{font-size:34.560000pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.880000pt;}
.fsa{font-size:48.000000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:69.120000pt;}
.fs6{font-size:74.880000pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1f{bottom:3.993333pt;}
.y1e{bottom:48.998667pt;}
.y1d{bottom:52.992000pt;}
.y4{bottom:86.333337pt;}
.y4e{bottom:97.792000pt;}
.y80{bottom:112.032000pt;}
.y4d{bottom:113.152000pt;}
.y4c{bottom:119.232000pt;}
.y1c{bottom:123.790666pt;}
.y4b{bottom:129.152000pt;}
.y7f{bottom:130.432000pt;}
.y7e{bottom:148.826667pt;}
.y7d{bottom:167.226667pt;}
.y13{bottom:175.052000pt;}
.y7c{bottom:185.626667pt;}
.y1b{bottom:186.238666pt;}
.y12{bottom:186.252002pt;}
.y1a{bottom:197.438668pt;}
.y11{bottom:197.452004pt;}
.y7b{bottom:204.026667pt;}
.y19{bottom:208.638670pt;}
.y10{bottom:208.651996pt;}
.y7a{bottom:222.426667pt;}
.y18{bottom:231.038664pt;}
.yf{bottom:231.052000pt;}
.y79{bottom:240.826667pt;}
.y17{bottom:242.238666pt;}
.ye{bottom:242.252002pt;}
.y16{bottom:253.438668pt;}
.yd{bottom:253.451999pt;}
.y78{bottom:259.266667pt;}
.y15{bottom:275.838667pt;}
.yc{bottom:275.852001pt;}
.y4a{bottom:276.866667pt;}
.y77{bottom:277.666667pt;}
.y14{bottom:287.038667pt;}
.yb{bottom:287.052000pt;}
.y49{bottom:293.826667pt;}
.y76{bottom:296.066667pt;}
.ya{bottom:309.452000pt;}
.y48{bottom:310.626667pt;}
.y75{bottom:314.466667pt;}
.y47{bottom:327.106667pt;}
.y74{bottom:332.866667pt;}
.y46{bottom:343.106667pt;}
.y9{bottom:343.809333pt;}
.y73{bottom:351.266667pt;}
.y45{bottom:359.106667pt;}
.y8{bottom:362.706666pt;}
.y72{bottom:369.666667pt;}
.y44{bottom:375.106667pt;}
.y71{bottom:387.906667pt;}
.y43{bottom:391.106667pt;}
.y70{bottom:406.306667pt;}
.y42{bottom:407.426667pt;}
.y41{bottom:424.386667pt;}
.y6f{bottom:424.706667pt;}
.y40{bottom:441.186667pt;}
.y6e{bottom:443.106667pt;}
.y3f{bottom:458.146667pt;}
.y6d{bottom:461.506667pt;}
.y7{bottom:462.990669pt;}
.y3e{bottom:474.946667pt;}
.y6{bottom:478.990666pt;}
.y82{bottom:479.586667pt;}
.y6c{bottom:479.906667pt;}
.y3d{bottom:491.906667pt;}
.y5{bottom:494.990666pt;}
.y6b{bottom:498.333333pt;}
.y3c{bottom:508.733333pt;}
.y6a{bottom:516.733333pt;}
.y3b{bottom:525.533333pt;}
.y69{bottom:535.133333pt;}
.y3a{bottom:542.493333pt;}
.y83{bottom:553.213333pt;}
.y68{bottom:553.533333pt;}
.y39{bottom:559.293333pt;}
.y67{bottom:571.933333pt;}
.y38{bottom:576.253333pt;}
.y66{bottom:590.333333pt;}
.y37{bottom:593.053333pt;}
.y65{bottom:608.733333pt;}
.y36{bottom:609.853333pt;}
.y35{bottom:626.813333pt;}
.y64{bottom:627.133333pt;}
.y34{bottom:643.613333pt;}
.y63{bottom:645.533333pt;}
.y33{bottom:660.573333pt;}
.y62{bottom:663.933333pt;}
.y3{bottom:668.977329pt;}
.y32{bottom:677.373333pt;}
.y61{bottom:682.333333pt;}
.y31{bottom:694.173333pt;}
.y60{bottom:700.733333pt;}
.y30{bottom:711.133333pt;}
.y84{bottom:718.813333pt;}
.y5f{bottom:719.133333pt;}
.y2f{bottom:727.933333pt;}
.y5e{bottom:737.533333pt;}
.y2e{bottom:744.893333pt;}
.y5d{bottom:755.973333pt;}
.y2d{bottom:761.733333pt;}
.y5c{bottom:774.373333pt;}
.y2b{bottom:779.493333pt;}
.y2{bottom:781.661334pt;}
.y2c{bottom:788.133333pt;}
.y5b{bottom:792.773333pt;}
.y2a{bottom:800.133333pt;}
.y5a{bottom:811.173333pt;}
.y29{bottom:816.933333pt;}
.y59{bottom:829.573333pt;}
.y28{bottom:833.733333pt;}
.y58{bottom:847.973333pt;}
.y27{bottom:851.333333pt;}
.y1{bottom:859.312000pt;}
.y57{bottom:866.053333pt;}
.y81{bottom:866.373333pt;}
.y56{bottom:884.773333pt;}
.y26{bottom:900.293333pt;}
.y55{bottom:903.173333pt;}
.y54{bottom:921.573333pt;}
.y25{bottom:921.733333pt;}
.y53{bottom:939.973333pt;}
.y24{bottom:943.333333pt;}
.y52{bottom:958.373333pt;}
.y23{bottom:964.773333pt;}
.y51{bottom:976.773333pt;}
.y22{bottom:985.413333pt;}
.y50{bottom:995.173333pt;}
.y21{bottom:1000.640000pt;}
.y4f{bottom:1013.600000pt;}
.y20{bottom:1016.000000pt;}
.ha{height:18.393333pt;}
.h7{height:28.560000pt;}
.h13{height:33.918750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h15{height:46.281250pt;}
.h10{height:47.109375pt;}
.h2{height:48.960000pt;}
.hb{height:52.134375pt;}
.hd{height:57.787500pt;}
.h11{height:59.340000pt;}
.h17{height:62.781250pt;}
.h9{height:62.812500pt;}
.h12{height:64.500000pt;}
.h5{height:69.360000pt;}
.h14{height:71.524375pt;}
.h16{height:71.631042pt;}
.he{height:73.490625pt;}
.hc{height:75.465000pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.hf{height:1122.558173pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:8.160000pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w5{width:793.758333pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x5{left:113.472000pt;}
.xd{left:117.792000pt;}
.xf{left:132.352000pt;}
.xe{left:161.466667pt;}
.x4{left:180.874667pt;}
.x7{left:250.106667pt;}
.xc{left:305.506667pt;}
.x9{left:341.506667pt;}
.x6{left:392.866667pt;}
.x8{left:396.866667pt;}
.x3{left:404.408000pt;}
.xa{left:446.331667pt;}
.xb{left:452.413333pt;}
}




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