
    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_cdcd76394ef61cf582bf08a6.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_99a028ad7b8fff492fb1084a.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_a850c98907b90e45a34343aa.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_6044b1f7aa001ebec81b6bc9.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_41d0edd6635205eeb0f6e19e.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_e3c250dbba158d7c77c140e5.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_d1eee9c73a3aa7b4a276186e.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.364258;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_d7baa915b161b58b4bbf06f6.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;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:ffa;src:url('chunks/assets/font_a8fb9dae27c14cb1681813b2.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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;}
.v1{vertical-align:23.760000px;}
.ls3{letter-spacing:-1.176000px;}
.ls6{letter-spacing:-1.026000px;}
.ls4{letter-spacing:-0.720000px;}
.ls8{letter-spacing:-0.612000px;}
.ls13{letter-spacing:-0.457800px;}
.lsb{letter-spacing:-0.305400px;}
.lsc{letter-spacing:-0.262200px;}
.lsf{letter-spacing:-0.152400px;}
.lsa{letter-spacing:-0.109200px;}
.ls0{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.109200px;}
.lse{letter-spacing:0.152400px;}
.ls5{letter-spacing:0.262200px;}
.ls11{letter-spacing:0.305400px;}
.ls12{letter-spacing:0.315600px;}
.ls1{letter-spacing:0.360000px;}
.lsd{letter-spacing:0.414600px;}
.ls10{letter-spacing:0.720000px;}
.ls2{letter-spacing:4.440000px;}
.ls9{letter-spacing:16.865280px;}
.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;}
}
.ws10{word-spacing:-17.280000px;}
.wsd{word-spacing:-16.974600px;}
.ws11{word-spacing:-16.865400px;}
.ws6{word-spacing:-16.822200px;}
.wse{word-spacing:-16.712400px;}
.ws9{word-spacing:-16.669200px;}
.ws4{word-spacing:-16.560000px;}
.wsa{word-spacing:-16.450800px;}
.wsf{word-spacing:-16.407600px;}
.wsc{word-spacing:-16.297800px;}
.wsb{word-spacing:-16.254600px;}
.ws8{word-spacing:-15.840000px;}
.ws7{word-spacing:-15.534000px;}
.ws5{word-spacing:-15.384000px;}
.ws1{word-spacing:-14.940000px;}
.ws3{word-spacing:-13.860000px;}
.ws12{word-spacing:-10.755600px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:41.760000px;}
._3{margin-left:-9.090000px;}
._1c{margin-left:-5.639076px;}
._18{margin-left:-4.611712px;}
._12{margin-left:-3.526011px;}
._c{margin-left:-2.475601px;}
._2{margin-left:-1.050000px;}
._0{width:1.008000px;}
._4{width:2.126641px;}
._b{width:3.311758px;}
._13{width:4.504188px;}
._9{width:5.662917px;}
._7{width:6.991800px;}
._8{width:8.170919px;}
._15{width:9.173923px;}
._16{width:10.249344px;}
._a{width:11.592000px;}
._e{width:13.446588px;}
._f{width:15.169225px;}
._1b{width:18.007308px;}
._5{width:19.123200px;}
._6{width:20.625000px;}
._20{width:21.960811px;}
._d{width:23.250041px;}
._1a{width:24.840132px;}
._1f{width:26.084135px;}
._1d{width:27.555575px;}
._1e{width:28.830770px;}
._21{width:30.073357px;}
._22{width:31.769684px;}
._24{width:39.344466px;}
._23{width:40.454160px;}
._10{width:45.970891px;}
._11{width:47.075834px;}
._1{width:53.892000px;}
._17{width:58.320000px;}
._27{width:110.904546px;}
._26{width:112.702080px;}
._25{width:158.446279px;}
._19{width:995.088000px;}
._14{width:1166.880000px;}
.fc5{color:rgb(0,75,94);}
.fc2{color:rgb(4,12,40);}
.fc1{color:rgb(77,81,86);}
.fc8{color:rgb(30,30,30);}
.fc7{color:rgb(42,42,42);}
.fc6{color:rgb(49,49,49);}
.fc4{color:rgb(34,34,34);}
.fc3{color:rgb(22,22,22);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:41.760000px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fs7{font-size:59.760000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fs6{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs2{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y44{bottom:2.526000px;}
.y43{bottom:40.800110px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y21{bottom:139.264499px;}
.y18{bottom:196.933500px;}
.y20{bottom:209.518500px;}
.y17{bottom:209.533503px;}
.y1f{bottom:222.118502px;}
.y16{bottom:222.133505px;}
.y1e{bottom:234.718504px;}
.y15{bottom:234.733496px;}
.y1d{bottom:259.918497px;}
.y14{bottom:259.933500px;}
.y42{bottom:259.950000px;}
.y69{bottom:260.670000px;}
.y93{bottom:263.730000px;}
.y1c{bottom:272.518500px;}
.y13{bottom:272.533503px;}
.y41{bottom:278.850000px;}
.y68{bottom:279.750000px;}
.y92{bottom:282.810000px;}
.y1b{bottom:285.118502px;}
.y12{bottom:285.133499px;}
.y40{bottom:297.930000px;}
.y67{bottom:298.650000px;}
.y1a{bottom:310.318501px;}
.y11{bottom:310.333501px;}
.y91{bottom:310.710000px;}
.y3f{bottom:316.830000px;}
.y73{bottom:317.190000px;}
.y66{bottom:317.550000px;}
.y19{bottom:322.918500px;}
.y10{bottom:322.933500px;}
.y90{bottom:329.250000px;}
.y3e{bottom:335.910000px;}
.y65{bottom:336.675000px;}
.y8f{bottom:346.575000px;}
.yf{bottom:348.133500px;}
.y3d{bottom:354.855000px;}
.y64{bottom:355.575000px;}
.y8e{bottom:363.855000px;}
.y3c{bottom:373.755000px;}
.y6e{bottom:374.655000px;}
.y8d{bottom:381.135000px;}
.ye{bottom:386.785499px;}
.y3b{bottom:392.835000px;}
.y63{bottom:393.195000px;}
.y6d{bottom:393.555000px;}
.y8c{bottom:398.235000px;}
.yd{bottom:408.044999px;}
.y3a{bottom:411.735000px;}
.y6c{bottom:412.455000px;}
.y8b{bottom:415.515000px;}
.y39{bottom:430.815000px;}
.y6b{bottom:431.535000px;}
.y8a{bottom:432.795000px;}
.y38{bottom:449.715000px;}
.y89{bottom:450.075000px;}
.y62{bottom:450.435000px;}
.y88{bottom:467.355000px;}
.y37{bottom:468.795000px;}
.y61{bottom:469.515000px;}
.y87{bottom:484.635000px;}
.y36{bottom:487.695000px;}
.y60{bottom:488.415000px;}
.y86{bottom:501.735000px;}
.yc{bottom:502.864502px;}
.y35{bottom:506.595000px;}
.y5f{bottom:507.315000px;}
.y85{bottom:519.015000px;}
.yb{bottom:520.864502px;}
.y34{bottom:525.675000px;}
.y5e{bottom:526.395000px;}
.y84{bottom:536.295000px;}
.ya{bottom:538.864499px;}
.y33{bottom:544.575000px;}
.y5d{bottom:545.295000px;}
.y83{bottom:553.575000px;}
.y9{bottom:556.864499px;}
.y5c{bottom:564.375000px;}
.y82{bottom:570.855000px;}
.y32{bottom:582.195000px;}
.y5b{bottom:583.275000px;}
.y81{bottom:587.955000px;}
.y5a{bottom:602.355000px;}
.y80{bottom:605.265000px;}
.y59{bottom:621.285000px;}
.y7f{bottom:622.545000px;}
.y31{bottom:639.105000px;}
.y7e{bottom:639.825000px;}
.y58{bottom:640.185000px;}
.y8{bottom:645.510000px;}
.y30{bottom:656.385000px;}
.y7d{bottom:657.105000px;}
.y57{bottom:659.265000px;}
.y7{bottom:666.771000px;}
.y2f{bottom:673.485000px;}
.y7c{bottom:674.385000px;}
.y56{bottom:678.165000px;}
.y2e{bottom:690.765000px;}
.y7b{bottom:691.485000px;}
.y55{bottom:697.245000px;}
.y2d{bottom:708.045000px;}
.y7a{bottom:708.765000px;}
.y54{bottom:716.145000px;}
.y2c{bottom:725.325000px;}
.y79{bottom:726.045000px;}
.y6{bottom:726.298500px;}
.y53{bottom:735.045000px;}
.y2b{bottom:742.605000px;}
.y78{bottom:743.325000px;}
.y3{bottom:752.599495px;}
.y52{bottom:754.125000px;}
.y2a{bottom:759.885000px;}
.y77{bottom:760.605000px;}
.y70{bottom:772.665000px;}
.y51{bottom:773.025000px;}
.y29{bottom:776.985000px;}
.y76{bottom:777.885000px;}
.y6f{bottom:791.745000px;}
.y50{bottom:792.105000px;}
.y28{bottom:794.265000px;}
.y75{bottom:794.985000px;}
.y4f{bottom:811.005000px;}
.y27{bottom:811.545000px;}
.y74{bottom:812.265000px;}
.y26{bottom:828.825000px;}
.y4e{bottom:829.905000px;}
.y4d{bottom:848.985000px;}
.y4c{bottom:867.885000px;}
.y2{bottom:879.369000px;}
.y4b{bottom:887.010000px;}
.y4a{bottom:905.910000px;}
.y25{bottom:922.470000px;}
.y49{bottom:924.810000px;}
.y48{bottom:943.890000px;}
.y24{bottom:960.270000px;}
.y47{bottom:962.790000px;}
.y1{bottom:966.726000px;}
.y23{bottom:980.970000px;}
.y72{bottom:981.510000px;}
.y46{bottom:981.870000px;}
.y71{bottom:1000.410000px;}
.y45{bottom:1000.770000px;}
.y6a{bottom:1019.850000px;}
.y22{bottom:1038.030000px;}
.h12{height:13.200074px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h7{height:45.960000px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h13{height:49.898438px;}
.hb{height:52.971680px;}
.h14{height:52.998047px;}
.h2{height:55.152000px;}
.h11{height:58.121719px;}
.hf{height:58.651172px;}
.he{height:60.226875px;}
.h16{height:64.978594px;}
.hd{height:65.010937px;}
.h10{height:66.757500px;}
.h15{height:68.956875px;}
.hc{height:72.562500px;}
.h5{height:78.132000px;}
.h4{height:119.055004px;}
.h0{height:1262.833500px;}
.ha{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:226.155000px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x9{left:164.370000px;}
.x5{left:170.130000px;}
.x6{left:176.250000px;}
.xf{left:180.750000px;}
.xa{left:191.370000px;}
.xd{left:197.130000px;}
.xc{left:199.830000px;}
.x4{left:203.484001px;}
.xe{left:212.790000px;}
.x7{left:271.290000px;}
.xb{left:333.412491px;}
.x8{left:392.295000px;}
.x3{left:454.959000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.ls3{letter-spacing:-1.045333pt;}
.ls6{letter-spacing:-0.912000pt;}
.ls4{letter-spacing:-0.640000pt;}
.ls8{letter-spacing:-0.544000pt;}
.ls13{letter-spacing:-0.406933pt;}
.lsb{letter-spacing:-0.271467pt;}
.lsc{letter-spacing:-0.233067pt;}
.lsf{letter-spacing:-0.135467pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls0{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.135467pt;}
.ls5{letter-spacing:0.233067pt;}
.ls11{letter-spacing:0.271467pt;}
.ls12{letter-spacing:0.280533pt;}
.ls1{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.368533pt;}
.ls10{letter-spacing:0.640000pt;}
.ls2{letter-spacing:3.946667pt;}
.ls9{letter-spacing:14.991360pt;}
.ws10{word-spacing:-15.360000pt;}
.wsd{word-spacing:-15.088533pt;}
.ws11{word-spacing:-14.991467pt;}
.ws6{word-spacing:-14.953067pt;}
.wse{word-spacing:-14.855467pt;}
.ws9{word-spacing:-14.817067pt;}
.ws4{word-spacing:-14.720000pt;}
.wsa{word-spacing:-14.622933pt;}
.wsf{word-spacing:-14.584533pt;}
.wsc{word-spacing:-14.486933pt;}
.wsb{word-spacing:-14.448533pt;}
.ws8{word-spacing:-14.080000pt;}
.ws7{word-spacing:-13.808000pt;}
.ws5{word-spacing:-13.674667pt;}
.ws1{word-spacing:-13.280000pt;}
.ws3{word-spacing:-12.320000pt;}
.ws12{word-spacing:-9.560533pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:37.120000pt;}
._3{margin-left:-8.080000pt;}
._1c{margin-left:-5.012512pt;}
._18{margin-left:-4.099300pt;}
._12{margin-left:-3.134232pt;}
._c{margin-left:-2.200534pt;}
._2{margin-left:-0.933333pt;}
._0{width:0.896000pt;}
._4{width:1.890348pt;}
._b{width:2.943785pt;}
._13{width:4.003722pt;}
._9{width:5.033704pt;}
._7{width:6.214934pt;}
._8{width:7.263039pt;}
._15{width:8.154598pt;}
._16{width:9.110528pt;}
._a{width:10.304000pt;}
._e{width:11.952522pt;}
._f{width:13.483756pt;}
._1b{width:16.006496pt;}
._5{width:16.998400pt;}
._6{width:18.333334pt;}
._20{width:19.520721pt;}
._d{width:20.666703pt;}
._1a{width:22.080118pt;}
._1f{width:23.185898pt;}
._1d{width:24.493844pt;}
._1e{width:25.627351pt;}
._21{width:26.731873pt;}
._22{width:28.239719pt;}
._24{width:34.972859pt;}
._23{width:35.959253pt;}
._10{width:40.863014pt;}
._11{width:41.845186pt;}
._1{width:47.904000pt;}
._17{width:51.840000pt;}
._27{width:98.581819pt;}
._26{width:100.179627pt;}
._25{width:140.841137pt;}
._19{width:884.522667pt;}
._14{width:1037.226667pt;}
.fs9{font-size:37.120000pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fs7{font-size:53.120000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fs6{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs2{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:2.245333pt;}
.y43{bottom:36.266764pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y21{bottom:123.790666pt;}
.y18{bottom:175.052000pt;}
.y20{bottom:186.238666pt;}
.y17{bottom:186.252002pt;}
.y1f{bottom:197.438668pt;}
.y16{bottom:197.452004pt;}
.y1e{bottom:208.638670pt;}
.y15{bottom:208.651996pt;}
.y1d{bottom:231.038664pt;}
.y14{bottom:231.052000pt;}
.y42{bottom:231.066667pt;}
.y69{bottom:231.706667pt;}
.y93{bottom:234.426667pt;}
.y1c{bottom:242.238666pt;}
.y13{bottom:242.252002pt;}
.y41{bottom:247.866667pt;}
.y68{bottom:248.666667pt;}
.y92{bottom:251.386667pt;}
.y1b{bottom:253.438668pt;}
.y12{bottom:253.451999pt;}
.y40{bottom:264.826667pt;}
.y67{bottom:265.466667pt;}
.y1a{bottom:275.838667pt;}
.y11{bottom:275.852001pt;}
.y91{bottom:276.186667pt;}
.y3f{bottom:281.626667pt;}
.y73{bottom:281.946667pt;}
.y66{bottom:282.266667pt;}
.y19{bottom:287.038667pt;}
.y10{bottom:287.052000pt;}
.y90{bottom:292.666667pt;}
.y3e{bottom:298.586667pt;}
.y65{bottom:299.266667pt;}
.y8f{bottom:308.066667pt;}
.yf{bottom:309.452000pt;}
.y3d{bottom:315.426667pt;}
.y64{bottom:316.066667pt;}
.y8e{bottom:323.426667pt;}
.y3c{bottom:332.226667pt;}
.y6e{bottom:333.026667pt;}
.y8d{bottom:338.786667pt;}
.ye{bottom:343.809333pt;}
.y3b{bottom:349.186667pt;}
.y63{bottom:349.506667pt;}
.y6d{bottom:349.826667pt;}
.y8c{bottom:353.986667pt;}
.yd{bottom:362.706666pt;}
.y3a{bottom:365.986667pt;}
.y6c{bottom:366.626667pt;}
.y8b{bottom:369.346667pt;}
.y39{bottom:382.946667pt;}
.y6b{bottom:383.586667pt;}
.y8a{bottom:384.706667pt;}
.y38{bottom:399.746667pt;}
.y89{bottom:400.066667pt;}
.y62{bottom:400.386667pt;}
.y88{bottom:415.426667pt;}
.y37{bottom:416.706667pt;}
.y61{bottom:417.346667pt;}
.y87{bottom:430.786667pt;}
.y36{bottom:433.506667pt;}
.y60{bottom:434.146667pt;}
.y86{bottom:445.986667pt;}
.yc{bottom:446.990669pt;}
.y35{bottom:450.306667pt;}
.y5f{bottom:450.946667pt;}
.y85{bottom:461.346667pt;}
.yb{bottom:462.990669pt;}
.y34{bottom:467.266667pt;}
.y5e{bottom:467.906667pt;}
.y84{bottom:476.706667pt;}
.ya{bottom:478.990666pt;}
.y33{bottom:484.066667pt;}
.y5d{bottom:484.706667pt;}
.y83{bottom:492.066667pt;}
.y9{bottom:494.990666pt;}
.y5c{bottom:501.666667pt;}
.y82{bottom:507.426667pt;}
.y32{bottom:517.506667pt;}
.y5b{bottom:518.466667pt;}
.y81{bottom:522.626667pt;}
.y5a{bottom:535.426667pt;}
.y80{bottom:538.013333pt;}
.y59{bottom:552.253333pt;}
.y7f{bottom:553.373333pt;}
.y31{bottom:568.093333pt;}
.y7e{bottom:568.733333pt;}
.y58{bottom:569.053333pt;}
.y8{bottom:573.786667pt;}
.y30{bottom:583.453333pt;}
.y7d{bottom:584.093333pt;}
.y57{bottom:586.013333pt;}
.y7{bottom:592.685334pt;}
.y2f{bottom:598.653333pt;}
.y7c{bottom:599.453333pt;}
.y56{bottom:602.813333pt;}
.y2e{bottom:614.013333pt;}
.y7b{bottom:614.653333pt;}
.y55{bottom:619.773333pt;}
.y2d{bottom:629.373333pt;}
.y7a{bottom:630.013333pt;}
.y54{bottom:636.573333pt;}
.y2c{bottom:644.733333pt;}
.y79{bottom:645.373333pt;}
.y6{bottom:645.598667pt;}
.y53{bottom:653.373333pt;}
.y2b{bottom:660.093333pt;}
.y78{bottom:660.733333pt;}
.y3{bottom:668.977329pt;}
.y52{bottom:670.333333pt;}
.y2a{bottom:675.453333pt;}
.y77{bottom:676.093333pt;}
.y70{bottom:686.813333pt;}
.y51{bottom:687.133333pt;}
.y29{bottom:690.653333pt;}
.y76{bottom:691.453333pt;}
.y6f{bottom:703.773333pt;}
.y50{bottom:704.093333pt;}
.y28{bottom:706.013333pt;}
.y75{bottom:706.653333pt;}
.y4f{bottom:720.893333pt;}
.y27{bottom:721.373333pt;}
.y74{bottom:722.013333pt;}
.y26{bottom:736.733333pt;}
.y4e{bottom:737.693333pt;}
.y4d{bottom:754.653333pt;}
.y4c{bottom:771.453333pt;}
.y2{bottom:781.661334pt;}
.y4b{bottom:788.453333pt;}
.y4a{bottom:805.253333pt;}
.y25{bottom:819.973333pt;}
.y49{bottom:822.053333pt;}
.y48{bottom:839.013333pt;}
.y24{bottom:853.573333pt;}
.y47{bottom:855.813333pt;}
.y1{bottom:859.312000pt;}
.y23{bottom:871.973333pt;}
.y72{bottom:872.453333pt;}
.y46{bottom:872.773333pt;}
.y71{bottom:889.253333pt;}
.y45{bottom:889.573333pt;}
.y6a{bottom:906.533333pt;}
.y22{bottom:922.693333pt;}
.h12{height:11.733399pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h7{height:40.853333pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h13{height:44.354167pt;}
.hb{height:47.085938pt;}
.h14{height:47.109375pt;}
.h2{height:49.024000pt;}
.h11{height:51.663750pt;}
.hf{height:52.134375pt;}
.he{height:53.535000pt;}
.h16{height:57.758750pt;}
.hd{height:57.787500pt;}
.h10{height:59.340000pt;}
.h15{height:61.295000pt;}
.hc{height:64.500000pt;}
.h5{height:69.450667pt;}
.h4{height:105.826671pt;}
.h0{height:1122.518667pt;}
.ha{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:201.026667pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x9{left:146.106667pt;}
.x5{left:151.226667pt;}
.x6{left:156.666667pt;}
.xf{left:160.666667pt;}
.xa{left:170.106667pt;}
.xd{left:175.226667pt;}
.xc{left:177.626667pt;}
.x4{left:180.874667pt;}
.xe{left:189.146667pt;}
.x7{left:241.146667pt;}
.xb{left:296.366659pt;}
.x8{left:348.706667pt;}
.x3{left:404.408000pt;}
}




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