
    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_223f25e8baf8ea711d6c4cb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893066;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_90eba8bf9e3fdd4a5de6bc72.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.104004;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_174a968f645305d438736bf2.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_5c305ecd596ebdbb1750cb99.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.095703;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_f630888dd48b2e19f33c0ba4.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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);}
.v2{vertical-align:-17.982000px;}
.v3{vertical-align:-4.962000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.978000px;}
.lse{letter-spacing:-2.318400px;}
.ls6{letter-spacing:-0.660000px;}
.lsb{letter-spacing:-0.059400px;}
.lsa{letter-spacing:-0.052800px;}
.ls11{letter-spacing:-0.046200px;}
.lsc{letter-spacing:-0.039600px;}
.ls18{letter-spacing:-0.036000px;}
.ls8{letter-spacing:-0.033000px;}
.ls19{letter-spacing:-0.030000px;}
.ls9{letter-spacing:-0.026400px;}
.ls7{letter-spacing:-0.019800px;}
.ls1a{letter-spacing:-0.018000px;}
.lsf{letter-spacing:-0.013200px;}
.ls1{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.006000px;}
.ls0{letter-spacing:0.006600px;}
.ls4{letter-spacing:0.019800px;}
.lsd{letter-spacing:0.026400px;}
.ls16{letter-spacing:0.033000px;}
.ls3{letter-spacing:0.039600px;}
.ls14{letter-spacing:0.046200px;}
.ls13{letter-spacing:0.052800px;}
.ls15{letter-spacing:1.650000px;}
.ls5{letter-spacing:1.854600px;}
.ls17{letter-spacing:2.112000px;}
.ls2{letter-spacing:3.709200px;}
.ls12{letter-spacing:4.699200px;}
.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:-16.500000px;}
.wsd{word-spacing:-15.840000px;}
.wsb{word-spacing:-15.000000px;}
.ws0{word-spacing:-13.500000px;}
.ws2{word-spacing:-7.870500px;}
.ws11{word-spacing:-2.988000px;}
.ws8{word-spacing:-2.336400px;}
.ws9{word-spacing:-1.511400px;}
.ws6{word-spacing:-1.353000px;}
.wse{word-spacing:-0.877800px;}
.ws10{word-spacing:-0.774000px;}
.ws7{word-spacing:-0.066000px;}
.ws3{word-spacing:0.000000px;}
.wsc{word-spacing:0.640200px;}
.ws5{word-spacing:2.019600px;}
.wsf{word-spacing:4.699200px;}
.ws15{word-spacing:4.878000px;}
.wsa{word-spacing:6.699000px;}
.ws14{word-spacing:8.916000px;}
.ws12{word-spacing:15.708000px;}
.ws13{word-spacing:24.120000px;}
.ws16{word-spacing:30.612000px;}
.ws4{word-spacing:629.655600px;}
._b{margin-left:-18.348000px;}
._1b{margin-left:-16.902000px;}
._e{margin-left:-15.664800px;}
._1{margin-left:-7.123200px;}
._0{margin-left:-5.299200px;}
._13{margin-left:-4.251000px;}
._8{margin-left:-3.247200px;}
._2{margin-left:-1.920000px;}
._d{width:1.003200px;}
._7{width:2.059200px;}
._4{width:3.168000px;}
._9{width:4.184400px;}
._a{width:5.524200px;}
._6{width:6.560400px;}
._3{width:8.269800px;}
._11{width:9.279600px;}
._5{width:10.355400px;}
._c{width:11.371800px;}
._f{width:13.549800px;}
._15{width:14.751000px;}
._16{width:16.555200px;}
._1a{width:17.815200px;}
._10{width:18.862800px;}
._19{width:20.533200px;}
._14{width:21.588600px;}
._17{width:24.120000px;}
._12{width:25.852200px;}
._18{width:30.618000px;}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:31.482000px;}
.fs3{font-size:38.478000px;}
.fs6{font-size:42.000000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y91{bottom:50.044800px;}
.y6f{bottom:72.244200px;}
.y45{bottom:72.260400px;}
.y1{bottom:84.691800px;}
.y90{bottom:89.643150px;}
.y6e{bottom:92.044200px;}
.y44{bottom:92.060400px;}
.y8f{bottom:109.443150px;}
.y6d{bottom:111.844200px;}
.y43{bottom:111.860400px;}
.y1b{bottom:116.884800px;}
.y8e{bottom:129.244800px;}
.y6c{bottom:131.644200px;}
.y42{bottom:131.660400px;}
.y8d{bottom:149.044800px;}
.y6b{bottom:151.444200px;}
.y41{bottom:151.460400px;}
.y1a{bottom:162.367800px;}
.y8c{bottom:168.844800px;}
.y6a{bottom:171.244200px;}
.y40{bottom:171.260400px;}
.y19{bottom:182.167800px;}
.y8b{bottom:188.644800px;}
.y69{bottom:191.044200px;}
.y3f{bottom:191.060400px;}
.y18{bottom:201.967800px;}
.y8a{bottom:208.444800px;}
.y68{bottom:210.844200px;}
.y3e{bottom:210.860400px;}
.y17{bottom:221.767800px;}
.y89{bottom:228.244800px;}
.y67{bottom:230.644200px;}
.y3d{bottom:230.660400px;}
.y16{bottom:241.567800px;}
.y88{bottom:248.044800px;}
.y66{bottom:250.444200px;}
.y3c{bottom:250.460400px;}
.y15{bottom:261.367800px;}
.y87{bottom:267.844800px;}
.y65{bottom:270.244200px;}
.y3b{bottom:270.260400px;}
.y14{bottom:281.167800px;}
.y86{bottom:287.644800px;}
.y64{bottom:290.044200px;}
.y3a{bottom:290.060400px;}
.y13{bottom:300.967800px;}
.y85{bottom:307.444800px;}
.y63{bottom:309.844200px;}
.y39{bottom:309.860400px;}
.y12{bottom:320.767800px;}
.y84{bottom:327.244800px;}
.y62{bottom:329.644200px;}
.y38{bottom:329.660400px;}
.ya7{bottom:330.906300px;}
.y11{bottom:340.567800px;}
.y83{bottom:347.044800px;}
.ybe{bottom:347.800800px;}
.y61{bottom:349.444200px;}
.y37{bottom:349.460400px;}
.ya6{bottom:353.406300px;}
.y10{bottom:360.367800px;}
.y82{bottom:366.844800px;}
.y60{bottom:369.244200px;}
.y36{bottom:369.260400px;}
.ya5{bottom:373.206300px;}
.yf{bottom:380.167800px;}
.y81{bottom:386.644800px;}
.ybd{bottom:387.400800px;}
.y5f{bottom:389.044200px;}
.y35{bottom:389.060400px;}
.ye{bottom:399.967800px;}
.ya4{bottom:401.511300px;}
.y80{bottom:406.444800px;}
.ybc{bottom:407.200800px;}
.y5e{bottom:408.844200px;}
.y34{bottom:408.860400px;}
.yd{bottom:419.767800px;}
.ya3{bottom:421.311300px;}
.y7f{bottom:426.244800px;}
.ybb{bottom:427.000800px;}
.y5d{bottom:428.644200px;}
.y33{bottom:428.660400px;}
.yc{bottom:439.567800px;}
.ya2{bottom:441.111300px;}
.y7e{bottom:446.044800px;}
.yba{bottom:446.800800px;}
.y5c{bottom:448.444200px;}
.y32{bottom:448.460400px;}
.yb{bottom:459.367800px;}
.y7d{bottom:465.844800px;}
.yb9{bottom:466.600800px;}
.y5b{bottom:468.244200px;}
.y31{bottom:468.260400px;}
.ya1{bottom:469.414800px;}
.ya{bottom:479.167800px;}
.y7c{bottom:485.644800px;}
.yb8{bottom:486.400800px;}
.y5a{bottom:488.044200px;}
.y30{bottom:488.060400px;}
.ya0{bottom:489.214800px;}
.y9{bottom:498.967800px;}
.y7b{bottom:505.444800px;}
.yb7{bottom:506.200800px;}
.y59{bottom:507.844200px;}
.y2f{bottom:507.860400px;}
.y9f{bottom:509.014800px;}
.y8{bottom:518.767800px;}
.y7a{bottom:525.244800px;}
.yb6{bottom:526.000800px;}
.y58{bottom:527.644200px;}
.y2e{bottom:527.660400px;}
.y9e{bottom:537.318300px;}
.y7{bottom:538.567800px;}
.y79{bottom:545.044800px;}
.yb5{bottom:545.800800px;}
.y57{bottom:547.444200px;}
.y2d{bottom:547.460400px;}
.y9d{bottom:557.118300px;}
.y78{bottom:564.844800px;}
.yb4{bottom:565.600800px;}
.y56{bottom:567.244200px;}
.y2c{bottom:567.260400px;}
.y77{bottom:584.644800px;}
.y9c{bottom:585.421800px;}
.y55{bottom:587.044200px;}
.y2b{bottom:587.060400px;}
.y9b{bottom:605.221800px;}
.y54{bottom:606.844200px;}
.y2a{bottom:606.860400px;}
.y76{bottom:623.944800px;}
.yb3{bottom:625.000800px;}
.y53{bottom:626.644200px;}
.y29{bottom:626.660400px;}
.y9a{bottom:633.526800px;}
.y75{bottom:643.744800px;}
.y52{bottom:646.444200px;}
.y28{bottom:646.460400px;}
.y99{bottom:653.326800px;}
.y6{bottom:654.667800px;}
.y74{bottom:661.744800px;}
.yb2{bottom:664.600800px;}
.y51{bottom:666.244200px;}
.y27{bottom:666.260400px;}
.y5{bottom:672.667800px;}
.y98{bottom:673.126800px;}
.y73{bottom:679.744800px;}
.yb1{bottom:684.400800px;}
.y50{bottom:686.044200px;}
.y26{bottom:686.060400px;}
.y72{bottom:697.744800px;}
.y97{bottom:701.430300px;}
.yb0{bottom:704.200800px;}
.y4f{bottom:705.844200px;}
.y25{bottom:705.860400px;}
.y71{bottom:715.744800px;}
.y96{bottom:721.230300px;}
.yaf{bottom:724.000800px;}
.y4e{bottom:725.644200px;}
.y24{bottom:725.660400px;}
.y70{bottom:733.744800px;}
.y95{bottom:741.030300px;}
.yae{bottom:743.800800px;}
.y4d{bottom:745.444200px;}
.y23{bottom:745.460400px;}
.y4{bottom:750.067800px;}
.yad{bottom:763.600800px;}
.y4c{bottom:765.244200px;}
.y22{bottom:765.260400px;}
.y94{bottom:769.333800px;}
.y3{bottom:772.867800px;}
.yac{bottom:783.400800px;}
.y4b{bottom:785.044200px;}
.y21{bottom:785.060400px;}
.y2{bottom:795.667800px;}
.y93{bottom:797.638800px;}
.yab{bottom:803.200800px;}
.y4a{bottom:804.844200px;}
.y20{bottom:804.860400px;}
.yaa{bottom:823.000800px;}
.y49{bottom:824.644200px;}
.y1f{bottom:824.660400px;}
.ya9{bottom:842.800800px;}
.y48{bottom:844.444200px;}
.y1e{bottom:844.460400px;}
.y92{bottom:845.742300px;}
.y47{bottom:864.244200px;}
.y1d{bottom:864.260400px;}
.y46{bottom:926.758650px;}
.ya8{bottom:926.758800px;}
.y1c{bottom:927.999150px;}
.h8{height:29.399836px;}
.ha{height:37.303711px;}
.h2{height:47.961914px;}
.h9{height:48.329016px;}
.h5{height:52.646484px;}
.hc{height:52.792969px;}
.hb{height:53.291016px;}
.h4{height:56.153528px;}
.h7{height:57.911133px;}
.h6{height:58.072266px;}
.h3{height:85.265625px;}
.h0{height:979.179300px;}
.h1{height:979.500000px;}
.w1{width:681.000000px;}
.w0{width:681.026550px;}
.x0{left:0.000000px;}
.x1{left:94.974150px;}
.xa{left:99.226050px;}
.x3{left:110.231550px;}
.x7{left:128.990550px;}
.xb{left:133.240800px;}
.xd{left:143.648700px;}
.xc{left:150.250050px;}
.x6{left:160.369050px;}
.x2{left:196.967550px;}
.x4{left:228.796350px;}
.x9{left:266.209050px;}
.xf{left:303.007050px;}
.xe{left:310.795050px;}
.x5{left:427.595550px;}
.x8{left:576.652050px;}
@media print{
.v2{vertical-align:-15.984000pt;}
.v3{vertical-align:-4.410667pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.536000pt;}
.lse{letter-spacing:-2.060800pt;}
.ls6{letter-spacing:-0.586667pt;}
.lsb{letter-spacing:-0.052800pt;}
.lsa{letter-spacing:-0.046933pt;}
.ls11{letter-spacing:-0.041067pt;}
.lsc{letter-spacing:-0.035200pt;}
.ls18{letter-spacing:-0.032000pt;}
.ls8{letter-spacing:-0.029333pt;}
.ls19{letter-spacing:-0.026667pt;}
.ls9{letter-spacing:-0.023467pt;}
.ls7{letter-spacing:-0.017600pt;}
.ls1a{letter-spacing:-0.016000pt;}
.lsf{letter-spacing:-0.011733pt;}
.ls1{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.005333pt;}
.ls0{letter-spacing:0.005867pt;}
.ls4{letter-spacing:0.017600pt;}
.lsd{letter-spacing:0.023467pt;}
.ls16{letter-spacing:0.029333pt;}
.ls3{letter-spacing:0.035200pt;}
.ls14{letter-spacing:0.041067pt;}
.ls13{letter-spacing:0.046933pt;}
.ls15{letter-spacing:1.466667pt;}
.ls5{letter-spacing:1.648533pt;}
.ls17{letter-spacing:1.877333pt;}
.ls2{letter-spacing:3.297067pt;}
.ls12{letter-spacing:4.177067pt;}
.ws1{word-spacing:-14.666667pt;}
.wsd{word-spacing:-14.080000pt;}
.wsb{word-spacing:-13.333333pt;}
.ws0{word-spacing:-12.000000pt;}
.ws2{word-spacing:-6.996000pt;}
.ws11{word-spacing:-2.656000pt;}
.ws8{word-spacing:-2.076800pt;}
.ws9{word-spacing:-1.343467pt;}
.ws6{word-spacing:-1.202667pt;}
.wse{word-spacing:-0.780267pt;}
.ws10{word-spacing:-0.688000pt;}
.ws7{word-spacing:-0.058667pt;}
.ws3{word-spacing:0.000000pt;}
.wsc{word-spacing:0.569067pt;}
.ws5{word-spacing:1.795200pt;}
.wsf{word-spacing:4.177067pt;}
.ws15{word-spacing:4.336000pt;}
.wsa{word-spacing:5.954667pt;}
.ws14{word-spacing:7.925333pt;}
.ws12{word-spacing:13.962667pt;}
.ws13{word-spacing:21.440000pt;}
.ws16{word-spacing:27.210667pt;}
.ws4{word-spacing:559.693867pt;}
._b{margin-left:-16.309333pt;}
._1b{margin-left:-15.024000pt;}
._e{margin-left:-13.924267pt;}
._1{margin-left:-6.331733pt;}
._0{margin-left:-4.710400pt;}
._13{margin-left:-3.778667pt;}
._8{margin-left:-2.886400pt;}
._2{margin-left:-1.706667pt;}
._d{width:0.891733pt;}
._7{width:1.830400pt;}
._4{width:2.816000pt;}
._9{width:3.719467pt;}
._a{width:4.910400pt;}
._6{width:5.831467pt;}
._3{width:7.350933pt;}
._11{width:8.248533pt;}
._5{width:9.204800pt;}
._c{width:10.108267pt;}
._f{width:12.044267pt;}
._15{width:13.112000pt;}
._16{width:14.715733pt;}
._1a{width:15.835733pt;}
._10{width:16.766933pt;}
._19{width:18.251733pt;}
._14{width:19.189867pt;}
._17{width:21.440000pt;}
._12{width:22.979733pt;}
._18{width:27.216000pt;}
.fs5{font-size:27.984000pt;}
.fs3{font-size:34.202667pt;}
.fs6{font-size:37.333333pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y91{bottom:44.484267pt;}
.y6f{bottom:64.217067pt;}
.y45{bottom:64.231467pt;}
.y1{bottom:75.281600pt;}
.y90{bottom:79.682800pt;}
.y6e{bottom:81.817067pt;}
.y44{bottom:81.831467pt;}
.y8f{bottom:97.282800pt;}
.y6d{bottom:99.417067pt;}
.y43{bottom:99.431467pt;}
.y1b{bottom:103.897600pt;}
.y8e{bottom:114.884267pt;}
.y6c{bottom:117.017067pt;}
.y42{bottom:117.031467pt;}
.y8d{bottom:132.484267pt;}
.y6b{bottom:134.617067pt;}
.y41{bottom:134.631467pt;}
.y1a{bottom:144.326933pt;}
.y8c{bottom:150.084267pt;}
.y6a{bottom:152.217067pt;}
.y40{bottom:152.231467pt;}
.y19{bottom:161.926933pt;}
.y8b{bottom:167.684267pt;}
.y69{bottom:169.817067pt;}
.y3f{bottom:169.831467pt;}
.y18{bottom:179.526933pt;}
.y8a{bottom:185.284267pt;}
.y68{bottom:187.417067pt;}
.y3e{bottom:187.431467pt;}
.y17{bottom:197.126933pt;}
.y89{bottom:202.884267pt;}
.y67{bottom:205.017067pt;}
.y3d{bottom:205.031467pt;}
.y16{bottom:214.726933pt;}
.y88{bottom:220.484267pt;}
.y66{bottom:222.617067pt;}
.y3c{bottom:222.631467pt;}
.y15{bottom:232.326933pt;}
.y87{bottom:238.084267pt;}
.y65{bottom:240.217067pt;}
.y3b{bottom:240.231467pt;}
.y14{bottom:249.926933pt;}
.y86{bottom:255.684267pt;}
.y64{bottom:257.817067pt;}
.y3a{bottom:257.831467pt;}
.y13{bottom:267.526933pt;}
.y85{bottom:273.284267pt;}
.y63{bottom:275.417067pt;}
.y39{bottom:275.431467pt;}
.y12{bottom:285.126933pt;}
.y84{bottom:290.884267pt;}
.y62{bottom:293.017067pt;}
.y38{bottom:293.031467pt;}
.ya7{bottom:294.138933pt;}
.y11{bottom:302.726933pt;}
.y83{bottom:308.484267pt;}
.ybe{bottom:309.156267pt;}
.y61{bottom:310.617067pt;}
.y37{bottom:310.631467pt;}
.ya6{bottom:314.138933pt;}
.y10{bottom:320.326933pt;}
.y82{bottom:326.084267pt;}
.y60{bottom:328.217067pt;}
.y36{bottom:328.231467pt;}
.ya5{bottom:331.738933pt;}
.yf{bottom:337.926933pt;}
.y81{bottom:343.684267pt;}
.ybd{bottom:344.356267pt;}
.y5f{bottom:345.817067pt;}
.y35{bottom:345.831467pt;}
.ye{bottom:355.526933pt;}
.ya4{bottom:356.898933pt;}
.y80{bottom:361.284267pt;}
.ybc{bottom:361.956267pt;}
.y5e{bottom:363.417067pt;}
.y34{bottom:363.431467pt;}
.yd{bottom:373.126933pt;}
.ya3{bottom:374.498933pt;}
.y7f{bottom:378.884267pt;}
.ybb{bottom:379.556267pt;}
.y5d{bottom:381.017067pt;}
.y33{bottom:381.031467pt;}
.yc{bottom:390.726933pt;}
.ya2{bottom:392.098933pt;}
.y7e{bottom:396.484267pt;}
.yba{bottom:397.156267pt;}
.y5c{bottom:398.617067pt;}
.y32{bottom:398.631467pt;}
.yb{bottom:408.326933pt;}
.y7d{bottom:414.084267pt;}
.yb9{bottom:414.756267pt;}
.y5b{bottom:416.217067pt;}
.y31{bottom:416.231467pt;}
.ya1{bottom:417.257600pt;}
.ya{bottom:425.926933pt;}
.y7c{bottom:431.684267pt;}
.yb8{bottom:432.356267pt;}
.y5a{bottom:433.817067pt;}
.y30{bottom:433.831467pt;}
.ya0{bottom:434.857600pt;}
.y9{bottom:443.526933pt;}
.y7b{bottom:449.284267pt;}
.yb7{bottom:449.956267pt;}
.y59{bottom:451.417067pt;}
.y2f{bottom:451.431467pt;}
.y9f{bottom:452.457600pt;}
.y8{bottom:461.126933pt;}
.y7a{bottom:466.884267pt;}
.yb6{bottom:467.556267pt;}
.y58{bottom:469.017067pt;}
.y2e{bottom:469.031467pt;}
.y9e{bottom:477.616267pt;}
.y7{bottom:478.726933pt;}
.y79{bottom:484.484267pt;}
.yb5{bottom:485.156267pt;}
.y57{bottom:486.617067pt;}
.y2d{bottom:486.631467pt;}
.y9d{bottom:495.216267pt;}
.y78{bottom:502.084267pt;}
.yb4{bottom:502.756267pt;}
.y56{bottom:504.217067pt;}
.y2c{bottom:504.231467pt;}
.y77{bottom:519.684267pt;}
.y9c{bottom:520.374933pt;}
.y55{bottom:521.817067pt;}
.y2b{bottom:521.831467pt;}
.y9b{bottom:537.974933pt;}
.y54{bottom:539.417067pt;}
.y2a{bottom:539.431467pt;}
.y76{bottom:554.617600pt;}
.yb3{bottom:555.556267pt;}
.y53{bottom:557.017067pt;}
.y29{bottom:557.031467pt;}
.y9a{bottom:563.134933pt;}
.y75{bottom:572.217600pt;}
.y52{bottom:574.617067pt;}
.y28{bottom:574.631467pt;}
.y99{bottom:580.734933pt;}
.y6{bottom:581.926933pt;}
.y74{bottom:588.217600pt;}
.yb2{bottom:590.756267pt;}
.y51{bottom:592.217067pt;}
.y27{bottom:592.231467pt;}
.y5{bottom:597.926933pt;}
.y98{bottom:598.334933pt;}
.y73{bottom:604.217600pt;}
.yb1{bottom:608.356267pt;}
.y50{bottom:609.817067pt;}
.y26{bottom:609.831467pt;}
.y72{bottom:620.217600pt;}
.y97{bottom:623.493600pt;}
.yb0{bottom:625.956267pt;}
.y4f{bottom:627.417067pt;}
.y25{bottom:627.431467pt;}
.y71{bottom:636.217600pt;}
.y96{bottom:641.093600pt;}
.yaf{bottom:643.556267pt;}
.y4e{bottom:645.017067pt;}
.y24{bottom:645.031467pt;}
.y70{bottom:652.217600pt;}
.y95{bottom:658.693600pt;}
.yae{bottom:661.156267pt;}
.y4d{bottom:662.617067pt;}
.y23{bottom:662.631467pt;}
.y4{bottom:666.726933pt;}
.yad{bottom:678.756267pt;}
.y4c{bottom:680.217067pt;}
.y22{bottom:680.231467pt;}
.y94{bottom:683.852267pt;}
.y3{bottom:686.993600pt;}
.yac{bottom:696.356267pt;}
.y4b{bottom:697.817067pt;}
.y21{bottom:697.831467pt;}
.y2{bottom:707.260267pt;}
.y93{bottom:709.012267pt;}
.yab{bottom:713.956267pt;}
.y4a{bottom:715.417067pt;}
.y20{bottom:715.431467pt;}
.yaa{bottom:731.556267pt;}
.y49{bottom:733.017067pt;}
.y1f{bottom:733.031467pt;}
.ya9{bottom:749.156267pt;}
.y48{bottom:750.617067pt;}
.y1e{bottom:750.631467pt;}
.y92{bottom:751.770933pt;}
.y47{bottom:768.217067pt;}
.y1d{bottom:768.231467pt;}
.y46{bottom:823.785467pt;}
.ya8{bottom:823.785600pt;}
.y1c{bottom:824.888133pt;}
.h8{height:26.133188pt;}
.ha{height:33.158854pt;}
.h2{height:42.632812pt;}
.h9{height:42.959125pt;}
.h5{height:46.796875pt;}
.hc{height:46.927083pt;}
.hb{height:47.369792pt;}
.h4{height:49.914247pt;}
.h7{height:51.476562pt;}
.h6{height:51.619792pt;}
.h3{height:75.791667pt;}
.h0{height:870.381600pt;}
.h1{height:870.666667pt;}
.w1{width:605.333333pt;}
.w0{width:605.356933pt;}
.x0{left:0.000000pt;}
.x1{left:84.421467pt;}
.xa{left:88.200933pt;}
.x3{left:97.983600pt;}
.x7{left:114.658267pt;}
.xb{left:118.436267pt;}
.xd{left:127.687733pt;}
.xc{left:133.555600pt;}
.x6{left:142.550267pt;}
.x2{left:175.082267pt;}
.x4{left:203.374533pt;}
.x9{left:236.630267pt;}
.xf{left:269.339600pt;}
.xe{left:276.262267pt;}
.x5{left:380.084933pt;}
.x8{left:512.579600pt;}
}




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