
    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_dc73c6c99c42f40292082c65.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.002930;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_fe8e2b771592c26a7f1b7934.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.106934;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_f8f24a0dc0cde6b60656a62e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.863770;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_2c68b336a966724823182396.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.002930;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_50d1c6fafa207dae57887e8a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.822754;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_de6f4d9c3061471a29a4920a.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.935547;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);}
.v0{vertical-align:0.000000px;}
.lsf{letter-spacing:-0.162000px;}
.ls2{letter-spacing:-0.138240px;}
.ls9{letter-spacing:-0.131760px;}
.ls7{letter-spacing:-0.120240px;}
.ls1{letter-spacing:-0.114120px;}
.ls8{letter-spacing:-0.065880px;}
.lsa{letter-spacing:-0.060120px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.060120px;}
.lsb{letter-spacing:0.065880px;}
.ls10{letter-spacing:0.108000px;}
.ls3{letter-spacing:0.120240px;}
.ls4{letter-spacing:0.131760px;}
.lse{letter-spacing:0.162000px;}
.ls11{letter-spacing:0.197640px;}
.lsc{letter-spacing:0.263520px;}
.lsd{letter-spacing:0.486000px;}
.ls6{letter-spacing:1.623240px;}
.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:-31.611240px;}
.ws6{word-spacing:-16.773480px;}
.ws18{word-spacing:-14.954760px;}
.ws16{word-spacing:-14.888880px;}
.ws1b{word-spacing:-14.850000px;}
.ws5{word-spacing:-14.823000px;}
.ws4{word-spacing:-13.707360px;}
.ws3{word-spacing:-13.587120px;}
.wsa{word-spacing:-3.359880px;}
.wsb{word-spacing:-3.228120px;}
.ws9{word-spacing:-2.964600px;}
.wse{word-spacing:-2.766960px;}
.wsd{word-spacing:-2.635200px;}
.ws8{word-spacing:-0.360720px;}
.ws1f{word-spacing:-0.329400px;}
.ws15{word-spacing:-0.263520px;}
.ws2{word-spacing:-0.228240px;}
.ws14{word-spacing:-0.197640px;}
.ws11{word-spacing:-0.180360px;}
.ws13{word-spacing:-0.131760px;}
.ws1d{word-spacing:-0.108000px;}
.ws12{word-spacing:-0.065880px;}
.ws1{word-spacing:0.000000px;}
.wsc{word-spacing:0.065880px;}
.ws19{word-spacing:0.108000px;}
.ws7{word-spacing:0.120240px;}
.ws1a{word-spacing:0.131760px;}
.ws1e{word-spacing:0.162000px;}
.ws17{word-spacing:0.197640px;}
.ws20{word-spacing:0.263520px;}
.ws1c{word-spacing:0.270000px;}
.wsf{word-spacing:1.623240px;}
.ws10{word-spacing:1.743480px;}
._2{margin-left:-3.240576px;}
._1{margin-left:-1.238472px;}
._0{width:1.071360px;}
._4{width:539.622000px;}
._7{width:558.728280px;}
._3{width:559.782360px;}
._6{width:577.108800px;}
._5{width:579.630240px;}
.fc8{color:rgb(0,0,255);}
.fc6{color:rgb(0,112,192);}
.fc5{color:transparent;}
.fc3{color:rgb(255,192,0);}
.fc2{color:rgb(255,204,0);}
.fc9{color:rgb(99,99,99);}
.fc7{color:rgb(51,51,51);}
.fc4{color:rgb(13,13,13);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.120000px;}
.fs0{font-size:65.880000px;}
.fs4{font-size:69.120000px;}
.fs3{font-size:114.120000px;}
.fs5{font-size:180.000000px;}
.fs2{font-size:209.880000px;}
.fs1{font-size:450.000000px;}
.y2{bottom:-59.580000px;}
.y0{bottom:0.000000px;}
.y28{bottom:8.820000px;}
.y24{bottom:14.670000px;}
.y2a{bottom:17.640000px;}
.y2c{bottom:21.510000px;}
.y26{bottom:25.920000px;}
.y35{bottom:29.970720px;}
.y22{bottom:39.330000px;}
.y34{bottom:50.130000px;}
.y33{bottom:69.916860px;}
.y20{bottom:86.468940px;}
.y32{bottom:88.193340px;}
.y31{bottom:106.560000px;}
.y2f{bottom:124.470000px;}
.y1f{bottom:124.629930px;}
.y30{bottom:125.190000px;}
.y1e{bottom:162.790920px;}
.y44{bottom:175.860000px;}
.y2e{bottom:183.960000px;}
.y81{bottom:191.700000px;}
.y43{bottom:195.834150px;}
.y1d{bottom:200.951910px;}
.y80{bottom:211.769010px;}
.y8e{bottom:225.810000px;}
.y27{bottom:227.700000px;}
.y98{bottom:229.590000px;}
.y42{bottom:229.680000px;}
.y1c{bottom:239.112900px;}
.y2d{bottom:243.450000px;}
.y7f{bottom:249.930000px;}
.y4e{bottom:250.296120px;}
.y97{bottom:252.720000px;}
.y77{bottom:261.810000px;}
.y2b{bottom:263.610000px;}
.y6d{bottom:263.790000px;}
.y8d{bottom:263.970000px;}
.ya3{bottom:272.070000px;}
.y4d{bottom:273.420000px;}
.y96{bottom:275.847300px;}
.y1b{bottom:277.273890px;}
.y1{bottom:281.610000px;}
.y76{bottom:284.939010px;}
.y8c{bottom:287.100000px;}
.y7e{bottom:288.092970px;}
.y4c{bottom:296.549010px;}
.yb1{bottom:299.879010px;}
.y6c{bottom:301.944150px;}
.y95{bottom:309.693150px;}
.ya2{bottom:310.230000px;}
.y1a{bottom:315.434880px;}
.y75{bottom:318.784860px;}
.yaa{bottom:320.840910px;}
.y8b{bottom:320.938920px;}
.y7d{bottom:321.840000px;}
.y55{bottom:329.940000px;}
.y4b{bottom:330.394860px;}
.y64{bottom:332.820000px;}
.yb0{bottom:333.724860px;}
.y6b{bottom:335.790000px;}
.ya9{bottom:344.063610px;}
.ya1{bottom:344.073150px;}
.y19{bottom:353.595870px;}
.ya8{bottom:362.790000px;}
.y54{bottom:363.780000px;}
.y63{bottom:371.160000px;}
.y18{bottom:391.756860px;}
.y62{bottom:398.160000px;}
.y61{bottom:428.400000px;}
.y17{bottom:429.917850px;}
.y60{bottom:458.640000px;}
.y41{bottom:464.580000px;}
.y16{bottom:468.078840px;}
.y40{bottom:487.704150px;}
.y5f{bottom:496.800000px;}
.y15{bottom:506.239830px;}
.y5e{bottom:515.520000px;}
.y3f{bottom:521.550000px;}
.y94{bottom:529.650000px;}
.y8a{bottom:540.813420px;}
.y14{bottom:544.400820px;}
.y7c{bottom:549.000000px;}
.y93{bottom:550.620000px;}
.y74{bottom:553.680000px;}
.ya0{bottom:564.030000px;}
.y89{bottom:564.036120px;}
.y4a{bottom:565.290000px;}
.yaf{bottom:568.620000px;}
.y6a{bottom:570.690000px;}
.y7b{bottom:572.127300px;}
.y13{bottom:582.561810px;}
.y53{bottom:583.740000px;}
.y92{bottom:585.629010px;}
.y88{bottom:587.160000px;}
.y9f{bottom:587.170530px;}
.y73{bottom:591.840000px;}
.y69{bottom:593.912970px;}
.y7a{bottom:595.350000px;}
.ya7{bottom:595.620000px;}
.y49{bottom:603.449010px;}
.yae{bottom:606.775950px;}
.y52{bottom:606.870000px;}
.y87{bottom:610.284150px;}
.y9e{bottom:610.294410px;}
.ya6{bottom:615.600000px;}
.y79{bottom:618.474150px;}
.y91{bottom:619.474860px;}
.y12{bottom:620.805150px;}
.y72{bottom:625.680000px;}
.y68{bottom:627.660000px;}
.y9d{bottom:629.103150px;}
.y51{bottom:630.000000px;}
.y48{bottom:637.294860px;}
.yad{bottom:640.522980px;}
.y86{bottom:644.130000px;}
.y50{bottom:648.810000px;}
.ya5{bottom:649.440000px;}
.y78{bottom:652.320000px;}
.y11{bottom:658.966140px;}
.y10{bottom:697.127130px;}
.y5d{bottom:733.320000px;}
.yf{bottom:735.288120px;}
.y5c{bottom:751.230000px;}
.y3e{bottom:756.450000px;}
.ye{bottom:773.449110px;}
.y3d{bottom:779.674590px;}
.y5b{bottom:784.080000px;}
.y3c{bottom:802.798470px;}
.y5a{bottom:804.060000px;}
.yd{bottom:811.610100px;}
.y3b{bottom:821.524860px;}
.y59{bottom:842.220000px;}
.y9c{bottom:849.060000px;}
.yc{bottom:849.771090px;}
.y90{bottom:854.370000px;}
.y71{bottom:860.577300px;}
.y47{bottom:872.190000px;}
.y67{bottom:873.090000px;}
.y85{bottom:879.030000px;}
.y58{bottom:880.380000px;}
.ya4{bottom:882.180000px;}
.y70{bottom:883.800000px;}
.y9b{bottom:887.217750px;}
.y4f{bottom:887.220000px;}
.yb{bottom:887.932080px;}
.y8f{bottom:890.370000px;}
.y84{bottom:902.254860px;}
.y57{bottom:902.610000px;}
.y6f{bottom:906.932340px;}
.y46{bottom:910.341630px;}
.yac{bottom:910.350000px;}
.y66{bottom:918.360000px;}
.y56{bottom:920.970000px;}
.y9a{bottom:921.063600px;}
.y29{bottom:923.760000px;}
.y83{bottom:925.378740px;}
.ya{bottom:926.093070px;}
.y6e{bottom:940.679370px;}
.y65{bottom:944.100000px;}
.y82{bottom:944.105130px;}
.y45{bottom:944.187480px;}
.yab{bottom:944.190000px;}
.y9{bottom:964.254060px;}
.y25{bottom:967.500000px;}
.y8{bottom:1002.415050px;}
.y23{bottom:1035.990000px;}
.y3a{bottom:1039.950000px;}
.y7{bottom:1040.576040px;}
.y39{bottom:1076.585490px;}
.y6{bottom:1078.737030px;}
.y38{bottom:1096.380000px;}
.y5{bottom:1116.898020px;}
.y37{bottom:1117.806120px;}
.y36{bottom:1140.930000px;}
.y99{bottom:1140.938100px;}
.y4{bottom:1155.059010px;}
.y21{bottom:1170.244350px;}
.y3{bottom:1193.220000px;}
.ha{height:33.750000px;}
.h8{height:35.458500px;}
.he{height:41.215078px;}
.hc{height:48.148500px;}
.h13{height:48.410156px;}
.hf{height:49.581387px;}
.h10{height:53.896641px;}
.h11{height:54.309739px;}
.h3{height:54.331699px;}
.h15{height:54.335659px;}
.h18{height:54.340699px;}
.h17{height:54.342499px;}
.h1a{height:54.347899px;}
.h12{height:54.355099px;}
.h14{height:54.365179px;}
.h19{height:54.368059px;}
.h16{height:59.060391px;}
.hb{height:61.965000px;}
.h6{height:75.060000px;}
.h9{height:102.306797px;}
.h4{height:120.060000px;}
.hd{height:161.367188px;}
.h7{height:188.154141px;}
.h5{height:403.417969px;}
.h2{height:652.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:278.640000px;}
.w4{width:299.610000px;}
.w3{width:311.398500px;}
.w5{width:312.030000px;}
.w7{width:324.090000px;}
.w2{width:638.280000px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xc{left:15.210000px;}
.x9{left:17.010000px;}
.x7{left:18.180000px;}
.x6{left:26.820000px;}
.x8{left:32.670000px;}
.xb{left:37.530000px;}
.x3{left:54.000000px;}
.xa{left:83.970000px;}
.x14{left:127.620000px;}
.x11{left:189.540000px;}
.x1{left:247.860000px;}
.x20{left:249.119190px;}
.x1d{left:253.615500px;}
.x15{left:255.871890px;}
.x1c{left:258.930000px;}
.x21{left:260.368200px;}
.x16{left:262.620000px;}
.x1a{left:264.870000px;}
.x19{left:267.483240px;}
.x17{left:269.370000px;}
.x18{left:271.617210px;}
.x1b{left:276.120000px;}
.x1f{left:280.626300px;}
.x4{left:329.032530px;}
.x5{left:330.300000px;}
.x12{left:409.774590px;}
.x1e{left:438.917760px;}
.x13{left:442.690290px;}
.xe{left:445.320000px;}
.x10{left:446.490000px;}
.xf{left:470.340000px;}
.xd{left:511.650000px;}
.x2{left:568.260000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsf{letter-spacing:-0.144000pt;}
.ls2{letter-spacing:-0.122880pt;}
.ls9{letter-spacing:-0.117120pt;}
.ls7{letter-spacing:-0.106880pt;}
.ls1{letter-spacing:-0.101440pt;}
.ls8{letter-spacing:-0.058560pt;}
.lsa{letter-spacing:-0.053440pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.053440pt;}
.lsb{letter-spacing:0.058560pt;}
.ls10{letter-spacing:0.096000pt;}
.ls3{letter-spacing:0.106880pt;}
.ls4{letter-spacing:0.117120pt;}
.lse{letter-spacing:0.144000pt;}
.ls11{letter-spacing:0.175680pt;}
.lsc{letter-spacing:0.234240pt;}
.lsd{letter-spacing:0.432000pt;}
.ls6{letter-spacing:1.442880pt;}
.ws0{word-spacing:-28.098880pt;}
.ws6{word-spacing:-14.909760pt;}
.ws18{word-spacing:-13.293120pt;}
.ws16{word-spacing:-13.234560pt;}
.ws1b{word-spacing:-13.200000pt;}
.ws5{word-spacing:-13.176000pt;}
.ws4{word-spacing:-12.184320pt;}
.ws3{word-spacing:-12.077440pt;}
.wsa{word-spacing:-2.986560pt;}
.wsb{word-spacing:-2.869440pt;}
.ws9{word-spacing:-2.635200pt;}
.wse{word-spacing:-2.459520pt;}
.wsd{word-spacing:-2.342400pt;}
.ws8{word-spacing:-0.320640pt;}
.ws1f{word-spacing:-0.292800pt;}
.ws15{word-spacing:-0.234240pt;}
.ws2{word-spacing:-0.202880pt;}
.ws14{word-spacing:-0.175680pt;}
.ws11{word-spacing:-0.160320pt;}
.ws13{word-spacing:-0.117120pt;}
.ws1d{word-spacing:-0.096000pt;}
.ws12{word-spacing:-0.058560pt;}
.ws1{word-spacing:0.000000pt;}
.wsc{word-spacing:0.058560pt;}
.ws19{word-spacing:0.096000pt;}
.ws7{word-spacing:0.106880pt;}
.ws1a{word-spacing:0.117120pt;}
.ws1e{word-spacing:0.144000pt;}
.ws17{word-spacing:0.175680pt;}
.ws20{word-spacing:0.234240pt;}
.ws1c{word-spacing:0.240000pt;}
.wsf{word-spacing:1.442880pt;}
.ws10{word-spacing:1.549760pt;}
._2{margin-left:-2.880512pt;}
._1{margin-left:-1.100864pt;}
._0{width:0.952320pt;}
._4{width:479.664000pt;}
._7{width:496.647360pt;}
._3{width:497.584320pt;}
._6{width:512.985600pt;}
._5{width:515.226880pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.440000pt;}
.fs0{font-size:58.560000pt;}
.fs4{font-size:61.440000pt;}
.fs3{font-size:101.440000pt;}
.fs5{font-size:160.000000pt;}
.fs2{font-size:186.560000pt;}
.fs1{font-size:400.000000pt;}
.y2{bottom:-52.960000pt;}
.y0{bottom:0.000000pt;}
.y28{bottom:7.840000pt;}
.y24{bottom:13.040000pt;}
.y2a{bottom:15.680000pt;}
.y2c{bottom:19.120000pt;}
.y26{bottom:23.040000pt;}
.y35{bottom:26.640640pt;}
.y22{bottom:34.960000pt;}
.y34{bottom:44.560000pt;}
.y33{bottom:62.148320pt;}
.y20{bottom:76.861280pt;}
.y32{bottom:78.394080pt;}
.y31{bottom:94.720000pt;}
.y2f{bottom:110.640000pt;}
.y1f{bottom:110.782160pt;}
.y30{bottom:111.280000pt;}
.y1e{bottom:144.703040pt;}
.y44{bottom:156.320000pt;}
.y2e{bottom:163.520000pt;}
.y81{bottom:170.400000pt;}
.y43{bottom:174.074800pt;}
.y1d{bottom:178.623920pt;}
.y80{bottom:188.239120pt;}
.y8e{bottom:200.720000pt;}
.y27{bottom:202.400000pt;}
.y98{bottom:204.080000pt;}
.y42{bottom:204.160000pt;}
.y1c{bottom:212.544800pt;}
.y2d{bottom:216.400000pt;}
.y7f{bottom:222.160000pt;}
.y4e{bottom:222.485440pt;}
.y97{bottom:224.640000pt;}
.y77{bottom:232.720000pt;}
.y2b{bottom:234.320000pt;}
.y6d{bottom:234.480000pt;}
.y8d{bottom:234.640000pt;}
.ya3{bottom:241.840000pt;}
.y4d{bottom:243.040000pt;}
.y96{bottom:245.197600pt;}
.y1b{bottom:246.465680pt;}
.y1{bottom:250.320000pt;}
.y76{bottom:253.279120pt;}
.y8c{bottom:255.200000pt;}
.y7e{bottom:256.082640pt;}
.y4c{bottom:263.599120pt;}
.yb1{bottom:266.559120pt;}
.y6c{bottom:268.394800pt;}
.y95{bottom:275.282800pt;}
.ya2{bottom:275.760000pt;}
.y1a{bottom:280.386560pt;}
.y75{bottom:283.364320pt;}
.yaa{bottom:285.191920pt;}
.y8b{bottom:285.279040pt;}
.y7d{bottom:286.080000pt;}
.y55{bottom:293.280000pt;}
.y4b{bottom:293.684320pt;}
.y64{bottom:295.840000pt;}
.yb0{bottom:296.644320pt;}
.y6b{bottom:298.480000pt;}
.ya9{bottom:305.834320pt;}
.ya1{bottom:305.842800pt;}
.y19{bottom:314.307440pt;}
.ya8{bottom:322.480000pt;}
.y54{bottom:323.360000pt;}
.y63{bottom:329.920000pt;}
.y18{bottom:348.228320pt;}
.y62{bottom:353.920000pt;}
.y61{bottom:380.800000pt;}
.y17{bottom:382.149200pt;}
.y60{bottom:407.680000pt;}
.y41{bottom:412.960000pt;}
.y16{bottom:416.070080pt;}
.y40{bottom:433.514800pt;}
.y5f{bottom:441.600000pt;}
.y15{bottom:449.990960pt;}
.y5e{bottom:458.240000pt;}
.y3f{bottom:463.600000pt;}
.y94{bottom:470.800000pt;}
.y8a{bottom:480.723040pt;}
.y14{bottom:483.911840pt;}
.y7c{bottom:488.000000pt;}
.y93{bottom:489.440000pt;}
.y74{bottom:492.160000pt;}
.ya0{bottom:501.360000pt;}
.y89{bottom:501.365440pt;}
.y4a{bottom:502.480000pt;}
.yaf{bottom:505.440000pt;}
.y6a{bottom:507.280000pt;}
.y7b{bottom:508.557600pt;}
.y13{bottom:517.832720pt;}
.y53{bottom:518.880000pt;}
.y92{bottom:520.559120pt;}
.y88{bottom:521.920000pt;}
.y9f{bottom:521.929360pt;}
.y73{bottom:526.080000pt;}
.y69{bottom:527.922640pt;}
.y7a{bottom:529.200000pt;}
.ya7{bottom:529.440000pt;}
.y49{bottom:536.399120pt;}
.yae{bottom:539.356400pt;}
.y52{bottom:539.440000pt;}
.y87{bottom:542.474800pt;}
.y9e{bottom:542.483920pt;}
.ya6{bottom:547.200000pt;}
.y79{bottom:549.754800pt;}
.y91{bottom:550.644320pt;}
.y12{bottom:551.826800pt;}
.y72{bottom:556.160000pt;}
.y68{bottom:557.920000pt;}
.y9d{bottom:559.202800pt;}
.y51{bottom:560.000000pt;}
.y48{bottom:566.484320pt;}
.yad{bottom:569.353760pt;}
.y86{bottom:572.560000pt;}
.y50{bottom:576.720000pt;}
.ya5{bottom:577.280000pt;}
.y78{bottom:579.840000pt;}
.y11{bottom:585.747680pt;}
.y10{bottom:619.668560pt;}
.y5d{bottom:651.840000pt;}
.yf{bottom:653.589440pt;}
.y5c{bottom:667.760000pt;}
.y3e{bottom:672.400000pt;}
.ye{bottom:687.510320pt;}
.y3d{bottom:693.044080pt;}
.y5b{bottom:696.960000pt;}
.y3c{bottom:713.598640pt;}
.y5a{bottom:714.720000pt;}
.yd{bottom:721.431200pt;}
.y3b{bottom:730.244320pt;}
.y59{bottom:748.640000pt;}
.y9c{bottom:754.720000pt;}
.yc{bottom:755.352080pt;}
.y90{bottom:759.440000pt;}
.y71{bottom:764.957600pt;}
.y47{bottom:775.280000pt;}
.y67{bottom:776.080000pt;}
.y85{bottom:781.360000pt;}
.y58{bottom:782.560000pt;}
.ya4{bottom:784.160000pt;}
.y70{bottom:785.600000pt;}
.y9b{bottom:788.638000pt;}
.y4f{bottom:788.640000pt;}
.yb{bottom:789.272960pt;}
.y8f{bottom:791.440000pt;}
.y84{bottom:802.004320pt;}
.y57{bottom:802.320000pt;}
.y6f{bottom:806.162080pt;}
.y46{bottom:809.192560pt;}
.yac{bottom:809.200000pt;}
.y66{bottom:816.320000pt;}
.y56{bottom:818.640000pt;}
.y9a{bottom:818.723200pt;}
.y29{bottom:821.120000pt;}
.y83{bottom:822.558880pt;}
.ya{bottom:823.193840pt;}
.y6e{bottom:836.159440pt;}
.y65{bottom:839.200000pt;}
.y82{bottom:839.204560pt;}
.y45{bottom:839.277760pt;}
.yab{bottom:839.280000pt;}
.y9{bottom:857.114720pt;}
.y25{bottom:860.000000pt;}
.y8{bottom:891.035600pt;}
.y23{bottom:920.880000pt;}
.y3a{bottom:924.400000pt;}
.y7{bottom:924.956480pt;}
.y39{bottom:956.964880pt;}
.y6{bottom:958.877360pt;}
.y38{bottom:974.560000pt;}
.y5{bottom:992.798240pt;}
.y37{bottom:993.605440pt;}
.y36{bottom:1014.160000pt;}
.y99{bottom:1014.167200pt;}
.y4{bottom:1026.719120pt;}
.y21{bottom:1040.217200pt;}
.y3{bottom:1060.640000pt;}
.ha{height:30.000000pt;}
.h8{height:31.518667pt;}
.he{height:36.635625pt;}
.hc{height:42.798667pt;}
.h13{height:43.031250pt;}
.hf{height:44.072344pt;}
.h10{height:47.908125pt;}
.h11{height:48.275324pt;}
.h3{height:48.294844pt;}
.h15{height:48.298364pt;}
.h18{height:48.302844pt;}
.h17{height:48.304444pt;}
.h1a{height:48.309244pt;}
.h12{height:48.315644pt;}
.h14{height:48.324604pt;}
.h19{height:48.327164pt;}
.h16{height:52.498125pt;}
.hb{height:55.080000pt;}
.h6{height:66.720000pt;}
.h9{height:90.939375pt;}
.h4{height:106.720000pt;}
.hd{height:143.437500pt;}
.h7{height:167.248125pt;}
.h5{height:358.593750pt;}
.h2{height:579.760000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:247.680000pt;}
.w4{width:266.320000pt;}
.w3{width:276.798667pt;}
.w5{width:277.360000pt;}
.w7{width:288.080000pt;}
.w2{width:567.360000pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xc{left:13.520000pt;}
.x9{left:15.120000pt;}
.x7{left:16.160000pt;}
.x6{left:23.840000pt;}
.x8{left:29.040000pt;}
.xb{left:33.360000pt;}
.x3{left:48.000000pt;}
.xa{left:74.640000pt;}
.x14{left:113.440000pt;}
.x11{left:168.480000pt;}
.x1{left:220.320000pt;}
.x20{left:221.439280pt;}
.x1d{left:225.436000pt;}
.x15{left:227.441680pt;}
.x1c{left:230.160000pt;}
.x21{left:231.438400pt;}
.x16{left:233.440000pt;}
.x1a{left:235.440000pt;}
.x19{left:237.762880pt;}
.x17{left:239.440000pt;}
.x18{left:241.437520pt;}
.x1b{left:245.440000pt;}
.x1f{left:249.445600pt;}
.x4{left:292.473360pt;}
.x5{left:293.600000pt;}
.x12{left:364.244080pt;}
.x1e{left:390.149120pt;}
.x13{left:393.502480pt;}
.xe{left:395.840000pt;}
.x10{left:396.880000pt;}
.xf{left:418.080000pt;}
.xd{left:454.800000pt;}
.x2{left:505.120000pt;}
}




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