
    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_848b56df8c2f2bbf5d47c60e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.821777;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_1d057b004744a8e1628a2946.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904297;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_9e1579eccf9d425c60874e2d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_935c3a522cc242352fd63c08.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.910645;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_9ad37f4debd0883e3e08b01e.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7fef9664e725b9a7e7112bdd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.926270;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;}
.m1{transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249897,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249898,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249900,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-6.120000px;}
.v1{vertical-align:-2.878956px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.000000px;}
.ls38{letter-spacing:-0.266400px;}
.ls13{letter-spacing:-0.125172px;}
.ls39{letter-spacing:-0.100800px;}
.ls17{letter-spacing:-0.081000px;}
.ls36{letter-spacing:-0.059292px;}
.ls37{letter-spacing:-0.057600px;}
.ls31{letter-spacing:-0.043200px;}
.ls19{letter-spacing:-0.039528px;}
.ls1b{letter-spacing:-0.026352px;}
.ls1d{letter-spacing:-0.014400px;}
.ls16{letter-spacing:-0.008388px;}
.ls32{letter-spacing:-0.007200px;}
.ls15{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.007200px;}
.ls6{letter-spacing:0.014400px;}
.ls9{letter-spacing:0.021600px;}
.ls26{letter-spacing:0.026352px;}
.ls5{letter-spacing:0.028800px;}
.ls21{letter-spacing:0.032940px;}
.ls8{letter-spacing:0.036000px;}
.ls30{letter-spacing:0.039528px;}
.ls7{letter-spacing:0.043200px;}
.ls2{letter-spacing:0.046116px;}
.lsa{letter-spacing:0.050400px;}
.ls1c{letter-spacing:0.052704px;}
.ls4{letter-spacing:0.057600px;}
.ls14{letter-spacing:0.058716px;}
.ls1a{letter-spacing:0.059292px;}
.lsf{letter-spacing:0.064800px;}
.ls2f{letter-spacing:0.065880px;}
.ls0{letter-spacing:0.067104px;}
.ls11{letter-spacing:0.072000px;}
.ls2c{letter-spacing:0.072468px;}
.ls1f{letter-spacing:0.079200px;}
.ls3{letter-spacing:0.085644px;}
.lsb{letter-spacing:0.086400px;}
.lse{letter-spacing:0.093600px;}
.ls25{letter-spacing:0.098820px;}
.ls20{letter-spacing:0.100800px;}
.ls10{letter-spacing:0.115200px;}
.ls27{letter-spacing:0.118584px;}
.ls28{letter-spacing:0.125172px;}
.ls18{letter-spacing:0.125820px;}
.lsc{letter-spacing:0.129600px;}
.ls1{letter-spacing:0.131760px;}
.ls2e{letter-spacing:0.138348px;}
.ls2b{letter-spacing:0.144936px;}
.ls2a{letter-spacing:0.151524px;}
.ls2d{letter-spacing:0.171288px;}
.ls29{letter-spacing:0.188475px;}
.ls35{letter-spacing:0.191520px;}
.ls12{letter-spacing:0.453600px;}
.ls23{letter-spacing:1.580040px;}
.ls1e{letter-spacing:7.927200px;}
.ls22{letter-spacing:14.796648px;}
.ls34{letter-spacing:14.888880px;}
.ls24{letter-spacing:15.942960px;}
.ls33{letter-spacing:18.130176px;}
.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;}
}
.ws1{word-spacing:-83.947104px;}
.wsa{word-spacing:-81.822960px;}
.ws3{word-spacing:-66.011760px;}
.ws6{word-spacing:-65.965644px;}
.ws5{word-spacing:-65.926116px;}
.ws4{word-spacing:-65.853648px;}
.ws2{word-spacing:-65.840472px;}
.ws9{word-spacing:-49.460040px;}
.wsc{word-spacing:-16.410708px;}
.wsb{word-spacing:-10.530000px;}
.ws8{word-spacing:-3.628800px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:2.844000px;}
.wsd{word-spacing:20.520000px;}
.wse{word-spacing:20.534400px;}
.ws0{word-spacing:231.719724px;}
._f{margin-left:-8.755200px;}
._10{margin-left:-6.991200px;}
._13{margin-left:-4.341600px;}
._d{margin-left:-2.440800px;}
._4{margin-left:-1.008000px;}
._0{width:1.067256px;}
._6{width:2.138400px;}
._5{width:3.204000px;}
._7{width:5.004000px;}
._b{width:6.242400px;}
._e{width:7.898400px;}
._14{width:9.684000px;}
._18{width:11.066400px;}
._12{width:12.225600px;}
._8{width:13.788000px;}
._9{width:14.976000px;}
._17{width:16.509600px;}
._3{width:20.145600px;}
._11{width:21.247200px;}
._16{width:22.284000px;}
._15{width:24.112800px;}
._a{width:31.680000px;}
._1a{width:65.849588px;}
._2a{width:68.025600px;}
._1e{width:78.752952px;}
._29{width:93.712968px;}
._1d{width:94.992372px;}
._2b{width:116.078400px;}
._27{width:181.426932px;}
._c{width:194.457600px;}
._1b{width:207.541764px;}
._24{width:210.275784px;}
._23{width:217.753164px;}
._22{width:237.075976px;}
._26{width:240.172128px;}
._21{width:445.783665px;}
._1c{width:565.737912px;}
._1{width:577.299852px;}
._19{width:592.982271px;}
._1f{width:602.452836px;}
._25{width:626.663736px;}
._20{width:664.828020px;}
._2{width:715.595148px;}
._28{width:806.318496px;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:42.120000px;}
.fs4{font-size:47.880000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:65.880000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:83.880000px;}
.y0{bottom:0.000000px;}
.y60{bottom:113.700450px;}
.y2a{bottom:125.850450px;}
.y5f{bottom:132.600450px;}
.y59{bottom:132.601725px;}
.y29{bottom:149.610450px;}
.y5e{bottom:151.590450px;}
.y58{bottom:151.591635px;}
.y5d{bottom:170.580450px;}
.y57{bottom:170.581545px;}
.y28{bottom:182.370450px;}
.y5c{bottom:189.570450px;}
.y56{bottom:189.571455px;}
.y27{bottom:206.220450px;}
.y5b{bottom:208.560450px;}
.y55{bottom:208.561365px;}
.y5a{bottom:227.460600px;}
.y54{bottom:227.460690px;}
.y26{bottom:229.980450px;}
.y53{bottom:246.450600px;}
.y25{bottom:253.830450px;}
.y52{bottom:266.160450px;}
.y24{bottom:277.590450px;}
.y51{bottom:285.150450px;}
.y23{bottom:301.440450px;}
.y50{bottom:304.140450px;}
.y4f{bottom:323.130450px;}
.y22{bottom:325.200450px;}
.y4e{bottom:342.750600px;}
.y21{bottom:349.050450px;}
.y20{bottom:372.810450px;}
.y4d{bottom:374.970600px;}
.y1f{bottom:396.660450px;}
.y4c{bottom:407.730600px;}
.y1e{bottom:429.240450px;}
.y4b{bottom:431.580600px;}
.y1d{bottom:459.120450px;}
.y4a{bottom:464.340600px;}
.y49{bottom:488.190600px;}
.y1c{bottom:491.970450px;}
.y46{bottom:511.950450px;}
.y48{bottom:511.950600px;}
.y1b{bottom:515.730450px;}
.y47{bottom:518.700600px;}
.y45{bottom:535.800450px;}
.y1a{bottom:539.580450px;}
.y19{bottom:563.340450px;}
.y44{bottom:568.380450px;}
.y18{bottom:587.190450px;}
.y43{bottom:601.230450px;}
.y17{bottom:610.950450px;}
.y40{bottom:622.560450px;}
.y3f{bottom:625.980450px;}
.y42{bottom:626.700189px;}
.y41{bottom:626.700450px;}
.y16{bottom:634.800450px;}
.y3e{bottom:648.750450px;}
.y15{bottom:658.560450px;}
.y70{bottom:661.350450px;}
.y3d{bottom:672.510450px;}
.y14{bottom:682.410450px;}
.y6f{bottom:693.120450px;}
.y3c{bottom:696.360450px;}
.y13{bottom:714.990450px;}
.y6e{bottom:716.970450px;}
.y3b{bottom:720.120450px;}
.y6d{bottom:740.730450px;}
.y3a{bottom:743.970450px;}
.y12{bottom:749.910126px;}
.y39{bottom:767.730450px;}
.y6c{bottom:773.580450px;}
.y11{bottom:783.660450px;}
.y6b{bottom:797.340450px;}
.y38{bottom:800.580450px;}
.y10{bottom:805.353042px;}
.y6a{bottom:821.190450px;}
.y37{bottom:824.340450px;}
.yf{bottom:827.132970px;}
.y36{bottom:848.190450px;}
.ye{bottom:848.822313px;}
.y69{bottom:853.950450px;}
.yd{bottom:870.602241px;}
.y35{bottom:871.950450px;}
.y68{bottom:877.800450px;}
.yc{bottom:892.291584px;}
.y34{bottom:895.800450px;}
.y67{bottom:909.840450px;}
.y66{bottom:910.560450px;}
.yb{bottom:914.071512px;}
.y33{bottom:919.560450px;}
.y65{bottom:933.690450px;}
.y64{bottom:934.410450px;}
.ya{bottom:935.760855px;}
.y32{bottom:943.410450px;}
.y9{bottom:957.540783px;}
.y31{bottom:967.170450px;}
.y8{bottom:979.230126px;}
.y30{bottom:991.020450px;}
.y7{bottom:1012.980450px;}
.y2f{bottom:1014.780450px;}
.y2e{bottom:1038.630450px;}
.y6{bottom:1048.440450px;}
.y4{bottom:1048.440459px;}
.y5{bottom:1055.910450px;}
.y63{bottom:1062.390450px;}
.y2d{bottom:1071.390450px;}
.y3{bottom:1088.130378px;}
.y62{bottom:1095.060450px;}
.y2c{bottom:1095.240450px;}
.y2{bottom:1115.760450px;}
.y61{bottom:1118.820450px;}
.y2b{bottom:1119.000450px;}
.y1{bottom:1135.650450px;}
.ha{height:33.268184px;}
.h9{height:33.782520px;}
.h3{height:36.729492px;}
.h1{height:44.809980px;}
.hd{height:45.775020px;}
.hb{height:46.137360px;}
.h8{height:46.482715px;}
.h4{height:47.833770px;}
.h5{height:48.796875px;}
.h6{height:50.027344px;}
.he{height:56.265396px;}
.hc{height:56.265996px;}
.h2{height:57.053145px;}
.h7{height:70.628906px;}
.h0{height:1263.000000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x32{left:125.190000px;}
.x1{left:127.620000px;}
.x2{left:138.150000px;}
.x9{left:148.949981px;}
.x12{left:180.719909px;}
.x36{left:221.310000px;}
.x37{left:227.340000px;}
.x13{left:234.810000px;}
.x14{left:243.450000px;}
.x15{left:253.440000px;}
.x11{left:277.199867px;}
.x16{left:280.440000px;}
.x17{left:285.840000px;}
.x4{left:289.169943px;}
.x18{left:295.380000px;}
.xd{left:302.849844px;}
.x19{left:306.630000px;}
.xf{left:327.869273px;}
.x1a{left:331.380000px;}
.x31{left:333.268228px;}
.xb{left:335.160913px;}
.x1b{left:336.780000px;}
.x3{left:350.729970px;}
.x1c{left:352.170000px;}
.xa{left:358.471441px;}
.x1d{left:363.420000px;}
.xc{left:374.580878px;}
.x1e{left:388.529978px;}
.xe{left:403.829754px;}
.x1f{left:424.620000px;}
.x20{left:439.290000px;}
.x10{left:446.489717px;}
.x21{left:448.650000px;}
.x22{left:459.990000px;}
.x23{left:485.550000px;}
.x5{left:492.480000px;}
.x24{left:500.220000px;}
.x6{left:507.150000px;}
.x25{left:509.940000px;}
.x33{left:515.790353px;}
.x26{left:521.280000px;}
.x7{left:539.550000px;}
.x27{left:546.840000px;}
.x8{left:551.160000px;}
.x28{left:561.510000px;}
.x29{left:571.230000px;}
.x2a{left:582.570000px;}
.x2b{left:606.780000px;}
.x2c{left:612.180000px;}
.x2f{left:623.970000px;}
.x30{left:632.970000px;}
.x2d{left:652.950000px;}
.x2e{left:658.260000px;}
.x34{left:749.339850px;}
.x35{left:755.370000px;}
@media print{
.v3{vertical-align:-5.440000pt;}
.v1{vertical-align:-2.559072pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.000000pt;}
.ls38{letter-spacing:-0.236800pt;}
.ls13{letter-spacing:-0.111264pt;}
.ls39{letter-spacing:-0.089600pt;}
.ls17{letter-spacing:-0.072000pt;}
.ls36{letter-spacing:-0.052704pt;}
.ls37{letter-spacing:-0.051200pt;}
.ls31{letter-spacing:-0.038400pt;}
.ls19{letter-spacing:-0.035136pt;}
.ls1b{letter-spacing:-0.023424pt;}
.ls1d{letter-spacing:-0.012800pt;}
.ls16{letter-spacing:-0.007456pt;}
.ls32{letter-spacing:-0.006400pt;}
.ls15{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.006400pt;}
.ls6{letter-spacing:0.012800pt;}
.ls9{letter-spacing:0.019200pt;}
.ls26{letter-spacing:0.023424pt;}
.ls5{letter-spacing:0.025600pt;}
.ls21{letter-spacing:0.029280pt;}
.ls8{letter-spacing:0.032000pt;}
.ls30{letter-spacing:0.035136pt;}
.ls7{letter-spacing:0.038400pt;}
.ls2{letter-spacing:0.040992pt;}
.lsa{letter-spacing:0.044800pt;}
.ls1c{letter-spacing:0.046848pt;}
.ls4{letter-spacing:0.051200pt;}
.ls14{letter-spacing:0.052192pt;}
.ls1a{letter-spacing:0.052704pt;}
.lsf{letter-spacing:0.057600pt;}
.ls2f{letter-spacing:0.058560pt;}
.ls0{letter-spacing:0.059648pt;}
.ls11{letter-spacing:0.064000pt;}
.ls2c{letter-spacing:0.064416pt;}
.ls1f{letter-spacing:0.070400pt;}
.ls3{letter-spacing:0.076128pt;}
.lsb{letter-spacing:0.076800pt;}
.lse{letter-spacing:0.083200pt;}
.ls25{letter-spacing:0.087840pt;}
.ls20{letter-spacing:0.089600pt;}
.ls10{letter-spacing:0.102400pt;}
.ls27{letter-spacing:0.105408pt;}
.ls28{letter-spacing:0.111264pt;}
.ls18{letter-spacing:0.111840pt;}
.lsc{letter-spacing:0.115200pt;}
.ls1{letter-spacing:0.117120pt;}
.ls2e{letter-spacing:0.122976pt;}
.ls2b{letter-spacing:0.128832pt;}
.ls2a{letter-spacing:0.134688pt;}
.ls2d{letter-spacing:0.152256pt;}
.ls29{letter-spacing:0.167533pt;}
.ls35{letter-spacing:0.170240pt;}
.ls12{letter-spacing:0.403200pt;}
.ls23{letter-spacing:1.404480pt;}
.ls1e{letter-spacing:7.046400pt;}
.ls22{letter-spacing:13.152576pt;}
.ls34{letter-spacing:13.234560pt;}
.ls24{letter-spacing:14.171520pt;}
.ls33{letter-spacing:16.115712pt;}
.ws1{word-spacing:-74.619648pt;}
.wsa{word-spacing:-72.731520pt;}
.ws3{word-spacing:-58.677120pt;}
.ws6{word-spacing:-58.636128pt;}
.ws5{word-spacing:-58.600992pt;}
.ws4{word-spacing:-58.536576pt;}
.ws2{word-spacing:-58.524864pt;}
.ws9{word-spacing:-43.964480pt;}
.wsc{word-spacing:-14.587296pt;}
.wsb{word-spacing:-9.360000pt;}
.ws8{word-spacing:-3.225600pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:2.528000pt;}
.wsd{word-spacing:18.240000pt;}
.wse{word-spacing:18.252800pt;}
.ws0{word-spacing:205.973088pt;}
._f{margin-left:-7.782400pt;}
._10{margin-left:-6.214400pt;}
._13{margin-left:-3.859200pt;}
._d{margin-left:-2.169600pt;}
._4{margin-left:-0.896000pt;}
._0{width:0.948672pt;}
._6{width:1.900800pt;}
._5{width:2.848000pt;}
._7{width:4.448000pt;}
._b{width:5.548800pt;}
._e{width:7.020800pt;}
._14{width:8.608000pt;}
._18{width:9.836800pt;}
._12{width:10.867200pt;}
._8{width:12.256000pt;}
._9{width:13.312000pt;}
._17{width:14.675200pt;}
._3{width:17.907200pt;}
._11{width:18.886400pt;}
._16{width:19.808000pt;}
._15{width:21.433600pt;}
._a{width:28.160000pt;}
._1a{width:58.532967pt;}
._2a{width:60.467200pt;}
._1e{width:70.002624pt;}
._29{width:83.300416pt;}
._1d{width:84.437664pt;}
._2b{width:103.180800pt;}
._27{width:161.268384pt;}
._c{width:172.851200pt;}
._1b{width:184.481568pt;}
._24{width:186.911808pt;}
._23{width:193.558368pt;}
._22{width:210.734201pt;}
._26{width:213.486336pt;}
._21{width:396.252146pt;}
._1c{width:502.878144pt;}
._1{width:513.155424pt;}
._19{width:527.095352pt;}
._1f{width:535.513632pt;}
._25{width:557.034432pt;}
._20{width:590.958240pt;}
._2{width:636.084576pt;}
._28{width:716.727552pt;}
.fs5{font-size:37.440000pt;}
.fs4{font-size:42.560000pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:58.560000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:74.560000pt;}
.y0{bottom:0.000000pt;}
.y60{bottom:101.067067pt;}
.y2a{bottom:111.867067pt;}
.y5f{bottom:117.867067pt;}
.y59{bottom:117.868200pt;}
.y29{bottom:132.987067pt;}
.y5e{bottom:134.747067pt;}
.y58{bottom:134.748120pt;}
.y5d{bottom:151.627067pt;}
.y57{bottom:151.628040pt;}
.y28{bottom:162.107067pt;}
.y5c{bottom:168.507067pt;}
.y56{bottom:168.507960pt;}
.y27{bottom:183.307067pt;}
.y5b{bottom:185.387067pt;}
.y55{bottom:185.387880pt;}
.y5a{bottom:202.187200pt;}
.y54{bottom:202.187280pt;}
.y26{bottom:204.427067pt;}
.y53{bottom:219.067200pt;}
.y25{bottom:225.627067pt;}
.y52{bottom:236.587067pt;}
.y24{bottom:246.747067pt;}
.y51{bottom:253.467067pt;}
.y23{bottom:267.947067pt;}
.y50{bottom:270.347067pt;}
.y4f{bottom:287.227067pt;}
.y22{bottom:289.067067pt;}
.y4e{bottom:304.667200pt;}
.y21{bottom:310.267067pt;}
.y20{bottom:331.387067pt;}
.y4d{bottom:333.307200pt;}
.y1f{bottom:352.587067pt;}
.y4c{bottom:362.427200pt;}
.y1e{bottom:381.547067pt;}
.y4b{bottom:383.627200pt;}
.y1d{bottom:408.107067pt;}
.y4a{bottom:412.747200pt;}
.y49{bottom:433.947200pt;}
.y1c{bottom:437.307067pt;}
.y46{bottom:455.067067pt;}
.y48{bottom:455.067200pt;}
.y1b{bottom:458.427067pt;}
.y47{bottom:461.067200pt;}
.y45{bottom:476.267067pt;}
.y1a{bottom:479.627067pt;}
.y19{bottom:500.747067pt;}
.y44{bottom:505.227067pt;}
.y18{bottom:521.947067pt;}
.y43{bottom:534.427067pt;}
.y17{bottom:543.067067pt;}
.y40{bottom:553.387067pt;}
.y3f{bottom:556.427067pt;}
.y42{bottom:557.066835pt;}
.y41{bottom:557.067067pt;}
.y16{bottom:564.267067pt;}
.y3e{bottom:576.667067pt;}
.y15{bottom:585.387067pt;}
.y70{bottom:587.867067pt;}
.y3d{bottom:597.787067pt;}
.y14{bottom:606.587067pt;}
.y6f{bottom:616.107067pt;}
.y3c{bottom:618.987067pt;}
.y13{bottom:635.547067pt;}
.y6e{bottom:637.307067pt;}
.y3b{bottom:640.107067pt;}
.y6d{bottom:658.427067pt;}
.y3a{bottom:661.307067pt;}
.y12{bottom:666.586779pt;}
.y39{bottom:682.427067pt;}
.y6c{bottom:687.627067pt;}
.y11{bottom:696.587067pt;}
.y6b{bottom:708.747067pt;}
.y38{bottom:711.627067pt;}
.y10{bottom:715.869371pt;}
.y6a{bottom:729.947067pt;}
.y37{bottom:732.747067pt;}
.yf{bottom:735.229307pt;}
.y36{bottom:753.947067pt;}
.ye{bottom:754.508723pt;}
.y69{bottom:759.067067pt;}
.yd{bottom:773.868659pt;}
.y35{bottom:775.067067pt;}
.y68{bottom:780.267067pt;}
.yc{bottom:793.148075pt;}
.y34{bottom:796.267067pt;}
.y67{bottom:808.747067pt;}
.y66{bottom:809.387067pt;}
.yb{bottom:812.508011pt;}
.y33{bottom:817.387067pt;}
.y65{bottom:829.947067pt;}
.y64{bottom:830.587067pt;}
.ya{bottom:831.787427pt;}
.y32{bottom:838.587067pt;}
.y9{bottom:851.147363pt;}
.y31{bottom:859.707067pt;}
.y8{bottom:870.426779pt;}
.y30{bottom:880.907067pt;}
.y7{bottom:900.427067pt;}
.y2f{bottom:902.027067pt;}
.y2e{bottom:923.227067pt;}
.y6{bottom:931.947067pt;}
.y4{bottom:931.947075pt;}
.y5{bottom:938.587067pt;}
.y63{bottom:944.347067pt;}
.y2d{bottom:952.347067pt;}
.y3{bottom:967.227003pt;}
.y62{bottom:973.387067pt;}
.y2c{bottom:973.547067pt;}
.y2{bottom:991.787067pt;}
.y61{bottom:994.507067pt;}
.y2b{bottom:994.667067pt;}
.y1{bottom:1009.467067pt;}
.ha{height:29.571719pt;}
.h9{height:30.028906pt;}
.h3{height:32.648438pt;}
.h1{height:39.831094pt;}
.hd{height:40.688906pt;}
.hb{height:41.010986pt;}
.h8{height:41.317969pt;}
.h4{height:42.518906pt;}
.h5{height:43.375000pt;}
.h6{height:44.468750pt;}
.he{height:50.013685pt;}
.hc{height:50.014219pt;}
.h2{height:50.713906pt;}
.h7{height:62.781250pt;}
.h0{height:1122.666667pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x32{left:111.280000pt;}
.x1{left:113.440000pt;}
.x2{left:122.800000pt;}
.x9{left:132.399983pt;}
.x12{left:160.639919pt;}
.x36{left:196.720000pt;}
.x37{left:202.080000pt;}
.x13{left:208.720000pt;}
.x14{left:216.400000pt;}
.x15{left:225.280000pt;}
.x11{left:246.399882pt;}
.x16{left:249.280000pt;}
.x17{left:254.080000pt;}
.x4{left:257.039950pt;}
.x18{left:262.560000pt;}
.xd{left:269.199862pt;}
.x19{left:272.560000pt;}
.xf{left:291.439354pt;}
.x1a{left:294.560000pt;}
.x31{left:296.238425pt;}
.xb{left:297.920812pt;}
.x1b{left:299.360000pt;}
.x3{left:311.759974pt;}
.x1c{left:313.040000pt;}
.xa{left:318.641281pt;}
.x1d{left:323.040000pt;}
.xc{left:332.960780pt;}
.x1e{left:345.359980pt;}
.xe{left:358.959782pt;}
.x1f{left:377.440000pt;}
.x20{left:390.480000pt;}
.x10{left:396.879748pt;}
.x21{left:398.800000pt;}
.x22{left:408.880000pt;}
.x23{left:431.600000pt;}
.x5{left:437.760000pt;}
.x24{left:444.640000pt;}
.x6{left:450.800000pt;}
.x25{left:453.280000pt;}
.x33{left:458.480314pt;}
.x26{left:463.360000pt;}
.x7{left:479.600000pt;}
.x27{left:486.080000pt;}
.x8{left:489.920000pt;}
.x28{left:499.120000pt;}
.x29{left:507.760000pt;}
.x2a{left:517.840000pt;}
.x2b{left:539.360000pt;}
.x2c{left:544.160000pt;}
.x2f{left:554.640000pt;}
.x30{left:562.640000pt;}
.x2d{left:580.400000pt;}
.x2e{left:585.120000pt;}
.x34{left:666.079867pt;}
.x35{left:671.440000pt;}
}




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