
    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_5ac556d30a3a61e0deef925c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.959000;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_a0c37b0e0fdc9b49c64808f2.woff')format("woff");}.ff2{font-family:ff2;line-height:0.707000;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_ad7f6749868318583a321b6a.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;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_a14a61bf9c8b546533db8304.woff')format("woff");}.ff4{font-family:ff4;line-height:0.719069;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_36d3347711a2d683f726bc0f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932129;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_703764d4727053b76fac060d.woff')format("woff");}.ff6{font-family:ff6;line-height:0.554000;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_d44c6872048404399773dd89.woff')format("woff");}.ff7{font-family:ff7;line-height:0.729000;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_d1973641d82a9a63f561da26.woff')format("woff");}.ff8{font-family:ff8;line-height:0.806000;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_86d05ec7657042d8603032c7.woff')format("woff");}.ff9{font-family:ff9;line-height:0.931641;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_48aeb2ba0f7d0e31a7cd2171.woff')format("woff");}.ffa{font-family:ffa;line-height:0.687988;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:ffb;src:url('chunks/assets/font_ac12d8e825f099ca7153cfa8.woff')format("woff");}.ffb{font-family:ffb;line-height:0.905762;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:ffc;src:url('chunks/assets/font_eb8979f4df63123c60ccd195.woff')format("woff");}.ffc{font-family:ffc;line-height:0.905762;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:ffd;src:url('chunks/assets/font_84bd4fb21cbbcf111290be59.woff')format("woff");}.ffd{font-family:ffd;line-height:0.901000;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;}
.m3{transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);-ms-transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);-webkit-transform:matrix(-0.005672,-0.249936,0.249936,-0.005672,0,0);}
.m2{transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.232782,0.000000,0.000000,0.250000,0,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);}
.v2{vertical-align:-13.257288px;}
.v1{vertical-align:-7.470000px;}
.v3{vertical-align:-3.150966px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.629810px;}
.v5{vertical-align:4.020198px;}
.ls0{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.003242px;}
.ls4{letter-spacing:0.031863px;}
.ls5{letter-spacing:0.033198px;}
.ls7{letter-spacing:0.054578px;}
.ls6{letter-spacing:0.073880px;}
.ls8{letter-spacing:32.724178px;}
.ls3{letter-spacing:32.724476px;}
.lsf{letter-spacing:32.726131px;}
.lsd{letter-spacing:32.727227px;}
.ls2{letter-spacing:32.727236px;}
.ls1{letter-spacing:32.727777px;}
.lse{letter-spacing:32.728326px;}
.ls10{letter-spacing:32.728858px;}
.lsc{letter-spacing:32.730476px;}
.ls9{letter-spacing:117.512682px;}
.lsb{letter-spacing:117.518682px;}
.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:-18.196379px;}
.ws16{word-spacing:-16.617617px;}
.ws4{word-spacing:-0.597756px;}
.ws1{word-spacing:-0.122200px;}
.ws6{word-spacing:-0.056125px;}
.wsf{word-spacing:-0.047565px;}
.ws2{word-spacing:-0.044801px;}
.ws12{word-spacing:-0.043462px;}
.ws10{word-spacing:-0.040174px;}
.ws7{word-spacing:-0.039299px;}
.ws0{word-spacing:0.000000px;}
.ws8{word-spacing:4.320004px;}
.ws5{word-spacing:14.530921px;}
.ws17{word-spacing:23.843384px;}
.wsa{word-spacing:57.732367px;}
.wsb{word-spacing:79.244594px;}
.wsd{word-spacing:83.185933px;}
.wsc{word-spacing:88.615397px;}
.wse{word-spacing:90.450854px;}
.ws14{word-spacing:92.290708px;}
.ws13{word-spacing:102.938800px;}
.ws9{word-spacing:103.251718px;}
.ws11{word-spacing:137.295194px;}
.ws15{word-spacing:140.272314px;}
._15{margin-left:-10.329264px;}
._3{margin-left:-8.607744px;}
._5{margin-left:-6.694875px;}
._a{margin-left:-5.379840px;}
._0{margin-left:-3.586560px;}
._1{margin-left:-2.151936px;}
._9{margin-left:-1.075968px;}
._2{width:1.793280px;}
._8{width:3.133755px;}
._4{width:5.156711px;}
._b{width:12.696422px;}
._6{width:19.666172px;}
._13{width:21.220352px;}
._7{width:22.516382px;}
._c{width:29.610557px;}
._e{width:101.382427px;}
._10{width:119.574427px;}
._11{width:125.012533px;}
._12{width:126.841991px;}
._f{width:137.772427px;}
._14{width:150.442328px;}
._d{width:181.460048px;}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(255,128,0);}
.fc2{color:transparent;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(0,51,255);}
.fsd{font-size:23.300688px;}
.fs5{font-size:35.865600px;}
.fs9{font-size:39.298579px;}
.fsc{font-size:40.173600px;}
.fse{font-size:43.461600px;}
.fs4{font-size:44.800560px;}
.fsb{font-size:47.564993px;}
.fs2{font-size:47.820600px;}
.fs8{font-size:56.124590px;}
.fs7{font-size:59.775600px;}
.fsa{font-size:60.218400px;}
.fs1{font-size:65.454600px;}
.fs0{font-size:71.731200px;}
.fs6{font-size:86.077200px;}
.fs3{font-size:122.200320px;}
.y0{bottom:0.000000px;}
.y24{bottom:7.776294px;}
.y7{bottom:11.774976px;}
.y4f{bottom:14.987045px;}
.y9{bottom:33.529797px;}
.y53{bottom:42.211580px;}
.y5b{bottom:44.313000px;}
.y2a{bottom:53.208000px;}
.yb{bottom:55.657500px;}
.y29{bottom:56.883000px;}
.y65{bottom:58.839000px;}
.y4e{bottom:59.509500px;}
.y41{bottom:64.129500px;}
.y69{bottom:64.486149px;}
.y20{bottom:73.307721px;}
.y4d{bottom:77.442000px;}
.y35{bottom:78.018000px;}
.y25{bottom:78.956032px;}
.y28{bottom:81.690000px;}
.y5c{bottom:82.933376px;}
.y40{bottom:85.051500px;}
.y66{bottom:89.938349px;}
.y73{bottom:93.127500px;}
.y8{bottom:93.923711px;}
.y21{bottom:96.179154px;}
.y86{bottom:96.870000px;}
.y34{bottom:98.343000px;}
.y4c{bottom:98.362500px;}
.y16{bottom:101.466000px;}
.y3f{bottom:105.972000px;}
.y27{bottom:106.497000px;}
.y64{bottom:108.870000px;}
.y74{bottom:108.952799px;}
.y72{bottom:113.452500px;}
.y7d{bottom:114.501000px;}
.y85{bottom:117.193500px;}
.y22{bottom:119.269140px;}
.y15{bottom:119.398500px;}
.y4b{bottom:120.778500px;}
.y33{bottom:123.150000px;}
.y3e{bottom:126.894000px;}
.y63{bottom:129.195000px;}
.y26{bottom:131.304000px;}
.y71{bottom:133.776000px;}
.y14{bottom:137.331000px;}
.y84{bottom:137.518500px;}
.y7c{bottom:139.308000px;}
.y52{bottom:139.608779px;}
.y4a{bottom:141.103500px;}
.y23{bottom:143.403471px;}
.y32{bottom:143.473500px;}
.y6{bottom:144.468000px;}
.y3d{bottom:147.816000px;}
.y62{bottom:149.518500px;}
.y13{bottom:155.263500px;}
.y83{bottom:157.842000px;}
.y5{bottom:158.665500px;}
.y7b{bottom:159.631500px;}
.ya{bottom:165.003574px;}
.y49{bottom:165.910500px;}
.y70{bottom:167.548500px;}
.y31{bottom:168.280500px;}
.y3c{bottom:168.736500px;}
.y61{bottom:169.842000px;}
.y1e{bottom:170.863500px;}
.y4{bottom:172.861500px;}
.y1f{bottom:173.687323px;}
.y12{bottom:176.185500px;}
.y82{bottom:182.649000px;}
.y48{bottom:183.843000px;}
.y7a{bottom:184.438500px;}
.y6f{bottom:185.482500px;}
.y30{bottom:188.604000px;}
.y3b{bottom:189.658500px;}
.y11{bottom:194.118000px;}
.y1d{bottom:195.670500px;}
.y5a{bottom:198.018000px;}
.y68{bottom:200.412303px;}
.y47{bottom:201.775500px;}
.y79{bottom:202.371000px;}
.y81{bottom:202.972500px;}
.y6e{bottom:203.415000px;}
.y60{bottom:203.614500px;}
.y3a{bottom:209.982000px;}
.y3{bottom:210.700500px;}
.y2f{bottom:213.411000px;}
.y59{bottom:215.950500px;}
.y1c{bottom:215.994000px;}
.y10{bottom:216.534000px;}
.y46{bottom:219.708000px;}
.y6d{bottom:221.347500px;}
.y78{bottom:223.293000px;}
.y5f{bottom:225.807000px;}
.y80{bottom:227.779500px;}
.y2{bottom:231.024000px;}
.y58{bottom:233.883000px;}
.yf{bottom:236.857500px;}
.y2e{bottom:238.218000px;}
.y45{bottom:240.630000px;}
.y1b{bottom:240.801000px;}
.y77{bottom:241.225500px;}
.y51{bottom:243.906907px;}
.y6c{bottom:244.137000px;}
.y5e{bottom:248.746500px;}
.y7f{bottom:252.586500px;}
.y57{bottom:256.672500px;}
.y39{bottom:257.490000px;}
.y67{bottom:258.080414px;}
.y1a{bottom:261.124500px;}
.ye{bottom:261.664500px;}
.y2d{bottom:263.025000px;}
.y44{bottom:263.046000px;}
.y76{bottom:263.641500px;}
.y6b{bottom:264.685500px;}
.y5d{bottom:270.937500px;}
.y56{bottom:277.221000px;}
.y19{bottom:281.448000px;}
.y38{bottom:282.297000px;}
.y43{bottom:283.369500px;}
.y75{bottom:283.965000px;}
.yd{bottom:286.471500px;}
.y6a{bottom:286.876500px;}
.y2c{bottom:287.832000px;}
.y1{bottom:288.880500px;}
.y55{bottom:299.413500px;}
.y42{bottom:303.693000px;}
.y37{bottom:305.236500px;}
.y18{bottom:306.255000px;}
.y2b{bottom:308.155500px;}
.y7e{bottom:317.742000px;}
.y54{bottom:324.220500px;}
.y36{bottom:327.427500px;}
.y50{bottom:329.428174px;}
.y17{bottom:331.062000px;}
.yc{bottom:378.105000px;}
.ha{height:26.576410px;}
.h16{height:27.638966px;}
.hf{height:28.476119px;}
.h18{height:30.346723px;}
.h9{height:32.462906px;}
.h19{height:34.366921px;}
.h13{height:34.466040px;}
.h5{height:35.435065px;}
.he{height:40.668404px;}
.h14{height:41.025859px;}
.h10{height:41.031859px;}
.hc{height:44.293720px;}
.h4{height:48.501859px;}
.h11{height:49.090950px;}
.h1b{height:49.479859px;}
.h3{height:49.485859px;}
.h2{height:53.152819px;}
.h1a{height:58.790728px;}
.hb{height:63.783205px;}
.h7{height:85.295823px;}
.h15{height:139.904562px;}
.hd{height:163.152389px;}
.h8{height:262.973687px;}
.h17{height:281.604005px;}
.h12{height:354.707010px;}
.h1{height:408.000000px;}
.h6{height:408.162264px;}
.h0{height:408.189000px;}
.w5{width:151.530480px;}
.w7{width:229.585902px;}
.w4{width:229.588542px;}
.w3{width:367.355570px;}
.w6{width:459.159140px;}
.w2{width:544.223700px;}
.w0{width:544.252500px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.x20{left:3.641921px;}
.x21{left:5.169254px;}
.xc{left:12.756000px;}
.x28{left:25.230000px;}
.x26{left:27.258000px;}
.x11{left:28.347000px;}
.x12{left:31.080000px;}
.x2b{left:34.959425px;}
.x2a{left:36.480581px;}
.xd{left:40.537500px;}
.xb{left:42.519000px;}
.x27{left:45.766500px;}
.x31{left:51.700500px;}
.x30{left:53.467500px;}
.x6{left:55.387500px;}
.x18{left:56.739000px;}
.x2e{left:57.892500px;}
.xe{left:61.074000px;}
.x5{left:64.497000px;}
.x2{left:65.521500px;}
.x22{left:68.818633px;}
.x1{left:71.932500px;}
.xf{left:73.201500px;}
.x14{left:74.759703px;}
.x2f{left:78.493500px;}
.x23{left:87.373500px;}
.x9{left:88.440000px;}
.x10{left:93.801000px;}
.x17{left:99.729301px;}
.x24{left:107.974500px;}
.x8{left:115.529550px;}
.x15{left:121.874568px;}
.x3{left:128.209500px;}
.x1c{left:142.078500px;}
.x1b{left:143.437500px;}
.x1e{left:146.628000px;}
.x1d{left:147.985500px;}
.x19{left:157.084500px;}
.x7{left:171.877500px;}
.x2c{left:174.036545px;}
.x2d{left:176.399769px;}
.x16{left:183.080569px;}
.x4{left:215.287500px;}
.x1a{left:230.644500px;}
.x25{left:270.242786px;}
.x13{left:286.299000px;}
.x32{left:289.378500px;}
.x29{left:301.608000px;}
.xa{left:322.528876px;}
.x1f{left:378.141000px;}
@media print{
.v2{vertical-align:-11.784256pt;}
.v1{vertical-align:-6.640000pt;}
.v3{vertical-align:-2.800859pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.448720pt;}
.v5{vertical-align:3.573509pt;}
.ls0{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.002882pt;}
.ls4{letter-spacing:0.028322pt;}
.ls5{letter-spacing:0.029509pt;}
.ls7{letter-spacing:0.048514pt;}
.ls6{letter-spacing:0.065672pt;}
.ls8{letter-spacing:29.088158pt;}
.ls3{letter-spacing:29.088423pt;}
.lsf{letter-spacing:29.089894pt;}
.lsd{letter-spacing:29.090869pt;}
.ls2{letter-spacing:29.090876pt;}
.ls1{letter-spacing:29.091357pt;}
.lse{letter-spacing:29.091845pt;}
.ls10{letter-spacing:29.092318pt;}
.lsc{letter-spacing:29.093757pt;}
.ls9{letter-spacing:104.455717pt;}
.lsb{letter-spacing:104.461051pt;}
.ws3{word-spacing:-16.174559pt;}
.ws16{word-spacing:-14.771215pt;}
.ws4{word-spacing:-0.531339pt;}
.ws1{word-spacing:-0.108623pt;}
.ws6{word-spacing:-0.049889pt;}
.wsf{word-spacing:-0.042280pt;}
.ws2{word-spacing:-0.039823pt;}
.ws12{word-spacing:-0.038633pt;}
.ws10{word-spacing:-0.035710pt;}
.ws7{word-spacing:-0.034932pt;}
.ws0{word-spacing:0.000000pt;}
.ws8{word-spacing:3.840003pt;}
.ws5{word-spacing:12.916374pt;}
.ws17{word-spacing:21.194119pt;}
.wsa{word-spacing:51.317659pt;}
.wsb{word-spacing:70.439639pt;}
.wsd{word-spacing:73.943052pt;}
.wsc{word-spacing:78.769242pt;}
.wse{word-spacing:80.400759pt;}
.ws14{word-spacing:82.036185pt;}
.ws13{word-spacing:91.501155pt;}
.ws9{word-spacing:91.779305pt;}
.ws11{word-spacing:122.040173pt;}
.ws15{word-spacing:124.686501pt;}
._15{margin-left:-9.181568pt;}
._3{margin-left:-7.651328pt;}
._5{margin-left:-5.951000pt;}
._a{margin-left:-4.782080pt;}
._0{margin-left:-3.188053pt;}
._1{margin-left:-1.912832pt;}
._9{margin-left:-0.956416pt;}
._2{width:1.594027pt;}
._8{width:2.785560pt;}
._4{width:4.583743pt;}
._b{width:11.285709pt;}
._6{width:17.481042pt;}
._13{width:18.862535pt;}
._7{width:20.014562pt;}
._c{width:26.320495pt;}
._e{width:90.117713pt;}
._10{width:106.288380pt;}
._11{width:111.122252pt;}
._12{width:112.748436pt;}
._f{width:122.464380pt;}
._14{width:133.726514pt;}
._d{width:161.297821pt;}
.fsd{font-size:20.711723pt;}
.fs5{font-size:31.880533pt;}
.fs9{font-size:34.932071pt;}
.fsc{font-size:35.709867pt;}
.fse{font-size:38.632533pt;}
.fs4{font-size:39.822720pt;}
.fsb{font-size:42.279994pt;}
.fs2{font-size:42.507200pt;}
.fs8{font-size:49.888525pt;}
.fs7{font-size:53.133867pt;}
.fsa{font-size:53.527467pt;}
.fs1{font-size:58.181867pt;}
.fs0{font-size:63.761067pt;}
.fs6{font-size:76.513067pt;}
.fs3{font-size:108.622507pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:6.912262pt;}
.y7{bottom:10.466645pt;}
.y4f{bottom:13.321818pt;}
.y9{bottom:29.804264pt;}
.y53{bottom:37.521404pt;}
.y5b{bottom:39.389333pt;}
.y2a{bottom:47.296000pt;}
.yb{bottom:49.473333pt;}
.y29{bottom:50.562667pt;}
.y65{bottom:52.301333pt;}
.y4e{bottom:52.897333pt;}
.y41{bottom:57.004000pt;}
.y69{bottom:57.321021pt;}
.y20{bottom:65.162419pt;}
.y4d{bottom:68.837333pt;}
.y35{bottom:69.349333pt;}
.y25{bottom:70.183140pt;}
.y28{bottom:72.613333pt;}
.y5c{bottom:73.718556pt;}
.y40{bottom:75.601333pt;}
.y66{bottom:79.945199pt;}
.y73{bottom:82.780000pt;}
.y8{bottom:83.487743pt;}
.y21{bottom:85.492582pt;}
.y86{bottom:86.106667pt;}
.y34{bottom:87.416000pt;}
.y4c{bottom:87.433333pt;}
.y16{bottom:90.192000pt;}
.y3f{bottom:94.197333pt;}
.y27{bottom:94.664000pt;}
.y64{bottom:96.773333pt;}
.y74{bottom:96.846932pt;}
.y72{bottom:100.846667pt;}
.y7d{bottom:101.778667pt;}
.y85{bottom:104.172000pt;}
.y22{bottom:106.017013pt;}
.y15{bottom:106.132000pt;}
.y4b{bottom:107.358667pt;}
.y33{bottom:109.466667pt;}
.y3e{bottom:112.794667pt;}
.y63{bottom:114.840000pt;}
.y26{bottom:116.714667pt;}
.y71{bottom:118.912000pt;}
.y14{bottom:122.072000pt;}
.y84{bottom:122.238667pt;}
.y7c{bottom:123.829333pt;}
.y52{bottom:124.096693pt;}
.y4a{bottom:125.425333pt;}
.y23{bottom:127.469752pt;}
.y32{bottom:127.532000pt;}
.y6{bottom:128.416000pt;}
.y3d{bottom:131.392000pt;}
.y62{bottom:132.905333pt;}
.y13{bottom:138.012000pt;}
.y83{bottom:140.304000pt;}
.y5{bottom:141.036000pt;}
.y7b{bottom:141.894667pt;}
.ya{bottom:146.669843pt;}
.y49{bottom:147.476000pt;}
.y70{bottom:148.932000pt;}
.y31{bottom:149.582667pt;}
.y3c{bottom:149.988000pt;}
.y61{bottom:150.970667pt;}
.y1e{bottom:151.878667pt;}
.y4{bottom:153.654667pt;}
.y1f{bottom:154.388731pt;}
.y12{bottom:156.609333pt;}
.y82{bottom:162.354667pt;}
.y48{bottom:163.416000pt;}
.y7a{bottom:163.945333pt;}
.y6f{bottom:164.873333pt;}
.y30{bottom:167.648000pt;}
.y3b{bottom:168.585333pt;}
.y11{bottom:172.549333pt;}
.y1d{bottom:173.929333pt;}
.y5a{bottom:176.016000pt;}
.y68{bottom:178.144269pt;}
.y47{bottom:179.356000pt;}
.y79{bottom:179.885333pt;}
.y81{bottom:180.420000pt;}
.y6e{bottom:180.813333pt;}
.y60{bottom:180.990667pt;}
.y3a{bottom:186.650667pt;}
.y3{bottom:187.289333pt;}
.y2f{bottom:189.698667pt;}
.y59{bottom:191.956000pt;}
.y1c{bottom:191.994667pt;}
.y10{bottom:192.474667pt;}
.y46{bottom:195.296000pt;}
.y6d{bottom:196.753333pt;}
.y78{bottom:198.482667pt;}
.y5f{bottom:200.717333pt;}
.y80{bottom:202.470667pt;}
.y2{bottom:205.354667pt;}
.y58{bottom:207.896000pt;}
.yf{bottom:210.540000pt;}
.y2e{bottom:211.749333pt;}
.y45{bottom:213.893333pt;}
.y1b{bottom:214.045333pt;}
.y77{bottom:214.422667pt;}
.y51{bottom:216.806139pt;}
.y6c{bottom:217.010667pt;}
.y5e{bottom:221.108000pt;}
.y7f{bottom:224.521333pt;}
.y57{bottom:228.153333pt;}
.y39{bottom:228.880000pt;}
.y67{bottom:229.404812pt;}
.y1a{bottom:232.110667pt;}
.ye{bottom:232.590667pt;}
.y2d{bottom:233.800000pt;}
.y44{bottom:233.818667pt;}
.y76{bottom:234.348000pt;}
.y6b{bottom:235.276000pt;}
.y5d{bottom:240.833333pt;}
.y56{bottom:246.418667pt;}
.y19{bottom:250.176000pt;}
.y38{bottom:250.930667pt;}
.y43{bottom:251.884000pt;}
.y75{bottom:252.413333pt;}
.yd{bottom:254.641333pt;}
.y6a{bottom:255.001333pt;}
.y2c{bottom:255.850667pt;}
.y1{bottom:256.782667pt;}
.y55{bottom:266.145333pt;}
.y42{bottom:269.949333pt;}
.y37{bottom:271.321333pt;}
.y18{bottom:272.226667pt;}
.y2b{bottom:273.916000pt;}
.y7e{bottom:282.437333pt;}
.y54{bottom:288.196000pt;}
.y36{bottom:291.046667pt;}
.y50{bottom:292.825044pt;}
.y17{bottom:294.277333pt;}
.yc{bottom:336.093333pt;}
.ha{height:23.623475pt;}
.h16{height:24.567970pt;}
.hf{height:25.312106pt;}
.h18{height:26.974865pt;}
.h9{height:28.855916pt;}
.h19{height:30.548374pt;}
.h13{height:30.636480pt;}
.h5{height:31.497835pt;}
.he{height:36.149693pt;}
.h14{height:36.467430pt;}
.h10{height:36.472763pt;}
.hc{height:39.372195pt;}
.h4{height:43.112763pt;}
.h11{height:43.636400pt;}
.h1b{height:43.982097pt;}
.h3{height:43.987430pt;}
.h2{height:47.246950pt;}
.h1a{height:52.258425pt;}
.hb{height:56.696182pt;}
.h7{height:75.818510pt;}
.h15{height:124.359611pt;}
.hd{height:145.024346pt;}
.h8{height:233.754389pt;}
.h17{height:250.314671pt;}
.h12{height:315.295120pt;}
.h1{height:362.666667pt;}
.h6{height:362.810901pt;}
.h0{height:362.834667pt;}
.w5{width:134.693760pt;}
.w7{width:204.076357pt;}
.w4{width:204.078704pt;}
.w3{width:326.538284pt;}
.w6{width:408.141457pt;}
.w2{width:483.754400pt;}
.w0{width:483.780000pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.x20{left:3.237263pt;}
.x21{left:4.594892pt;}
.xc{left:11.338667pt;}
.x28{left:22.426667pt;}
.x26{left:24.229333pt;}
.x11{left:25.197333pt;}
.x12{left:27.626667pt;}
.x2b{left:31.075044pt;}
.x2a{left:32.427183pt;}
.xd{left:36.033333pt;}
.xb{left:37.794667pt;}
.x27{left:40.681333pt;}
.x31{left:45.956000pt;}
.x30{left:47.526667pt;}
.x6{left:49.233333pt;}
.x18{left:50.434667pt;}
.x2e{left:51.460000pt;}
.xe{left:54.288000pt;}
.x5{left:57.330667pt;}
.x2{left:58.241333pt;}
.x22{left:61.172118pt;}
.x1{left:63.940000pt;}
.xf{left:65.068000pt;}
.x14{left:66.453069pt;}
.x2f{left:69.772000pt;}
.x23{left:77.665333pt;}
.x9{left:78.613333pt;}
.x10{left:83.378667pt;}
.x17{left:88.648268pt;}
.x24{left:95.977333pt;}
.x8{left:102.692933pt;}
.x15{left:108.332950pt;}
.x3{left:113.964000pt;}
.x1c{left:126.292000pt;}
.x1b{left:127.500000pt;}
.x1e{left:130.336000pt;}
.x1d{left:131.542667pt;}
.x19{left:139.630667pt;}
.x7{left:152.780000pt;}
.x2c{left:154.699151pt;}
.x2d{left:156.799795pt;}
.x16{left:162.738284pt;}
.x4{left:191.366667pt;}
.x1a{left:205.017333pt;}
.x25{left:240.215809pt;}
.x13{left:254.488000pt;}
.x32{left:257.225333pt;}
.x29{left:268.096000pt;}
.xa{left:286.692334pt;}
.x1f{left:336.125333pt;}
}




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