
    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_0f399d475521800101e8b1db.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.026000;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_9992a333946c8b82bf6b1a03.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.041000;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_f50444297ed75a40175a27a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.942000;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_0cb2af01b1b7361ded49b773.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.700000;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_79faa8c4cba674cba1ce5f0d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.025000;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.217500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.220000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:6.000000px;}
.v2{vertical-align:32.994000px;}
.ls2{letter-spacing:-0.756000px;}
.ls3{letter-spacing:-0.648000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:3.717000px;}
.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;}
}
.ws6{word-spacing:-15.264000px;}
.ws1{word-spacing:-13.797000px;}
.ws3{word-spacing:-13.041000px;}
.ws7{word-spacing:-11.178000px;}
.ws0{word-spacing:-10.512000px;}
.ws2{word-spacing:-0.096000px;}
.ws4{word-spacing:0.000000px;}
.ws9{word-spacing:0.648000px;}
.ws5{word-spacing:0.756000px;}
.ws8{word-spacing:63.925200px;}
._14{margin-left:-13.797000px;}
._16{margin-left:-11.826000px;}
._c{margin-left:-5.087100px;}
._0{margin-left:-2.976000px;}
._1{margin-left:-1.344000px;}
._9{width:1.136100px;}
._3{width:2.459400px;}
._5{width:3.761100px;}
._4{width:4.936800px;}
._b{width:6.123900px;}
._8{width:7.156800px;}
._11{width:8.212500px;}
._2{width:9.809100px;}
._f{width:10.817100px;}
._a{width:11.936400px;}
._7{width:15.756300px;}
._10{width:16.825200px;}
._6{width:17.892000px;}
._e{width:19.095300px;}
._12{width:20.399400px;}
._13{width:22.606500px;}
._15{width:26.812800px;}
._d{width:34.044000px;}
.fc1{color:rgb(175,47,95);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs0{font-size:60.000000px;}
.fs4{font-size:63.000000px;}
.fs6{font-size:72.000000px;}
.fs5{font-size:78.000000px;}
.fs1{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.647600px;}
.yaa{bottom:58.696200px;}
.y5f{bottom:61.520700px;}
.yd0{bottom:62.671350px;}
.y37{bottom:63.213150px;}
.ycd{bottom:69.732900px;}
.ya9{bottom:74.450700px;}
.y60{bottom:76.960650px;}
.ycf{bottom:79.168350px;}
.y36{bottom:83.908650px;}
.ycc{bottom:86.229900px;}
.ya8{bottom:90.205200px;}
.yce{bottom:95.665350px;}
.y35{bottom:104.903400px;}
.ya7{bottom:116.585100px;}
.ycb{bottom:116.671350px;}
.yc8{bottom:123.732900px;}
.y34{bottom:125.898150px;}
.yca{bottom:133.168350px;}
.yc7{bottom:140.229900px;}
.y33{bottom:146.892900px;}
.yc9{bottom:149.665350px;}
.ya6{bottom:157.179600px;}
.y32{bottom:167.887650px;}
.yc6{bottom:170.671350px;}
.yc3{bottom:177.729900px;}
.ya5{bottom:178.174350px;}
.yc5{bottom:187.168350px;}
.y31{bottom:188.882400px;}
.yc2{bottom:194.229900px;}
.ya4{bottom:199.169100px;}
.yc4{bottom:203.665350px;}
.y30{bottom:209.877150px;}
.ya3{bottom:220.163850px;}
.yc1{bottom:224.671350px;}
.y2f{bottom:230.871900px;}
.ybe{bottom:239.979900px;}
.ya2{bottom:241.158600px;}
.yc0{bottom:241.168350px;}
.y2e{bottom:251.866650px;}
.ybf{bottom:257.665350px;}
.ya1{bottom:262.153350px;}
.y2d{bottom:272.861400px;}
.ybd{bottom:278.671350px;}
.ya0{bottom:283.148100px;}
.y5e{bottom:290.835900px;}
.y2c{bottom:293.856150px;}
.yba{bottom:293.979900px;}
.ybc{bottom:295.168350px;}
.y9f{bottom:304.142850px;}
.ybb{bottom:311.665350px;}
.y5d{bottom:311.830650px;}
.y2b{bottom:314.850900px;}
.y9e{bottom:325.137600px;}
.yb9{bottom:332.671350px;}
.y5c{bottom:332.825400px;}
.y2a{bottom:335.845650px;}
.y9d{bottom:346.132350px;}
.yb6{bottom:347.979900px;}
.yb8{bottom:349.168350px;}
.y5b{bottom:353.820150px;}
.y29{bottom:356.840400px;}
.yb7{bottom:365.665350px;}
.y9c{bottom:367.127100px;}
.y5a{bottom:374.814900px;}
.y28{bottom:377.835150px;}
.yb5{bottom:386.671350px;}
.y9b{bottom:388.121850px;}
.y59{bottom:395.809650px;}
.y27{bottom:398.829900px;}
.yb2{bottom:401.979900px;}
.yb4{bottom:403.168350px;}
.y9a{bottom:409.116600px;}
.y58{bottom:416.804400px;}
.yb3{bottom:419.665350px;}
.y26{bottom:419.824650px;}
.y99{bottom:430.111350px;}
.y57{bottom:437.799150px;}
.yb1{bottom:438.669300px;}
.y25{bottom:440.819400px;}
.yac{bottom:446.919300px;}
.yae{bottom:446.922300px;}
.y98{bottom:451.106100px;}
.yb0{bottom:455.169300px;}
.y56{bottom:458.793900px;}
.y24{bottom:461.514900px;}
.yad{bottom:463.416300px;}
.yab{bottom:463.419300px;}
.yaf{bottom:471.667800px;}
.y97{bottom:472.100850px;}
.y55{bottom:479.788650px;}
.y23{bottom:480.710400px;}
.y96{bottom:493.095600px;}
.yd6{bottom:496.041600px;}
.y54{bottom:500.783400px;}
.y22{bottom:502.919400px;}
.yd5{bottom:511.040100px;}
.y95{bottom:514.090350px;}
.y53{bottom:521.778150px;}
.y21{bottom:523.614900px;}
.yd4{bottom:526.038600px;}
.y94{bottom:535.085100px;}
.yd3{bottom:541.037100px;}
.y52{bottom:542.772900px;}
.y20{bottom:542.810400px;}
.yd2{bottom:556.035600px;}
.y51{bottom:563.767650px;}
.y1f{bottom:565.019400px;}
.y93{bottom:566.715000px;}
.yd1{bottom:571.034100px;}
.y50{bottom:584.762400px;}
.y1e{bottom:585.714900px;}
.y7b{bottom:600.280650px;}
.y1d{bottom:604.910400px;}
.y4f{bottom:605.757150px;}
.y92{bottom:607.241250px;}
.y7a{bottom:621.275400px;}
.y4e{bottom:626.751900px;}
.y1c{bottom:627.531150px;}
.y91{bottom:628.236000px;}
.y79{bottom:642.270150px;}
.y4d{bottom:647.746650px;}
.y1b{bottom:648.525900px;}
.y90{bottom:649.230750px;}
.y78{bottom:663.264900px;}
.y4c{bottom:668.741400px;}
.y1a{bottom:669.520650px;}
.y8f{bottom:670.225500px;}
.y77{bottom:684.259650px;}
.y4b{bottom:689.736150px;}
.y19{bottom:690.515400px;}
.y8e{bottom:691.220250px;}
.y76{bottom:705.254400px;}
.y4a{bottom:710.730900px;}
.y18{bottom:711.510150px;}
.y8d{bottom:712.215000px;}
.y75{bottom:726.249150px;}
.y49{bottom:731.725650px;}
.y17{bottom:732.504900px;}
.y8c{bottom:741.718950px;}
.y74{bottom:747.243900px;}
.y48{bottom:752.720400px;}
.y16{bottom:753.499650px;}
.y73{bottom:768.238650px;}
.y47{bottom:773.715150px;}
.y15{bottom:774.494400px;}
.y8b{bottom:782.234700px;}
.y72{bottom:789.233400px;}
.y14{bottom:795.489150px;}
.y46{bottom:803.219100px;}
.y8a{bottom:803.229450px;}
.y71{bottom:810.228150px;}
.y13{bottom:816.483900px;}
.y89{bottom:824.224200px;}
.y70{bottom:831.222900px;}
.y12{bottom:837.478650px;}
.y88{bottom:845.218950px;}
.y45{bottom:845.245350px;}
.y11{bottom:858.473400px;}
.y6f{bottom:860.726850px;}
.y44{bottom:866.240100px;}
.y87{bottom:874.722900px;}
.y10{bottom:879.468150px;}
.y43{bottom:887.234850px;}
.yf{bottom:900.462900px;}
.y6e{bottom:901.289850px;}
.y42{bottom:908.229600px;}
.y86{bottom:915.233400px;}
.ye{bottom:921.457650px;}
.y6d{bottom:922.284600px;}
.y41{bottom:929.224350px;}
.y85{bottom:936.228150px;}
.yd{bottom:942.452400px;}
.y6c{bottom:943.279350px;}
.y40{bottom:950.219100px;}
.y84{bottom:957.222900px;}
.yc{bottom:963.447150px;}
.y6b{bottom:964.274100px;}
.y3f{bottom:979.721400px;}
.yb{bottom:984.441900px;}
.y6a{bottom:985.268850px;}
.y83{bottom:986.726850px;}
.y3e{bottom:1000.722900px;}
.ya{bottom:1005.436650px;}
.y69{bottom:1006.263600px;}
.y9{bottom:1026.431400px;}
.y68{bottom:1027.258350px;}
.y82{bottom:1027.310400px;}
.y8{bottom:1047.426150px;}
.y67{bottom:1048.253100px;}
.y81{bottom:1048.305150px;}
.y3d{bottom:1049.856150px;}
.y7{bottom:1068.420900px;}
.y66{bottom:1069.247850px;}
.y80{bottom:1069.299900px;}
.y3c{bottom:1070.551650px;}
.y6{bottom:1089.415650px;}
.y65{bottom:1090.242600px;}
.y7f{bottom:1090.294650px;}
.y3b{bottom:1091.247150px;}
.y5{bottom:1110.410400px;}
.y64{bottom:1111.237350px;}
.y7e{bottom:1111.289400px;}
.y3a{bottom:1111.942650px;}
.y63{bottom:1132.232100px;}
.y7d{bottom:1132.284150px;}
.y39{bottom:1132.638150px;}
.y4{bottom:1139.914350px;}
.y62{bottom:1153.226850px;}
.y7c{bottom:1153.278900px;}
.y38{bottom:1153.333650px;}
.y3{bottom:1154.914350px;}
.y2{bottom:1193.811000px;}
.y61{bottom:1200.561000px;}
.h5{height:38.640000px;}
.h4{height:38.934000px;}
.ha{height:43.470000px;}
.hd{height:43.476000px;}
.h2{height:48.300000px;}
.hb{height:49.200000px;}
.h6{height:50.715000px;}
.h9{height:59.040000px;}
.h8{height:63.960000px;}
.h7{height:67.200000px;}
.hc{height:76.464000px;}
.h3{height:78.720000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:54.000000px;}
.x7{left:59.527500px;}
.x25{left:64.388280px;}
.x2{left:66.756450px;}
.x27{left:68.269350px;}
.xa{left:76.923600px;}
.x24{left:78.276000px;}
.x15{left:79.561500px;}
.x1e{left:81.766500px;}
.x26{left:86.421450px;}
.x18{left:134.186670px;}
.x17{left:138.403125px;}
.x16{left:145.273950px;}
.xc{left:147.405750px;}
.xb{left:149.908650px;}
.xd{left:206.600550px;}
.x23{left:210.512100px;}
.x19{left:213.565800px;}
.x1f{left:216.618150px;}
.xe{left:248.700300px;}
.xf{left:253.523850px;}
.x1a{left:258.709800px;}
.x20{left:261.762150px;}
.x1b{left:290.230200px;}
.x10{left:334.139850px;}
.x11{left:343.262475px;}
.x21{left:345.612150px;}
.x1c{left:348.665850px;}
.x13{left:387.069300px;}
.x14{left:393.627150px;}
.x1d{left:395.938800px;}
.x22{left:397.155825px;}
.x12{left:398.835900px;}
.x3{left:452.694450px;}
.x8{left:458.223000px;}
.x9{left:492.240450px;}
.x6{left:649.510200px;}
.x5{left:831.593550px;}
.x4{left:845.574750px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:5.333333pt;}
.v2{vertical-align:29.328000pt;}
.ls2{letter-spacing:-0.672000pt;}
.ls3{letter-spacing:-0.576000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:3.304000pt;}
.ws6{word-spacing:-13.568000pt;}
.ws1{word-spacing:-12.264000pt;}
.ws3{word-spacing:-11.592000pt;}
.ws7{word-spacing:-9.936000pt;}
.ws0{word-spacing:-9.344000pt;}
.ws2{word-spacing:-0.085333pt;}
.ws4{word-spacing:0.000000pt;}
.ws9{word-spacing:0.576000pt;}
.ws5{word-spacing:0.672000pt;}
.ws8{word-spacing:56.822400pt;}
._14{margin-left:-12.264000pt;}
._16{margin-left:-10.512000pt;}
._c{margin-left:-4.521867pt;}
._0{margin-left:-2.645333pt;}
._1{margin-left:-1.194667pt;}
._9{width:1.009867pt;}
._3{width:2.186133pt;}
._5{width:3.343200pt;}
._4{width:4.388267pt;}
._b{width:5.443467pt;}
._8{width:6.361600pt;}
._11{width:7.300000pt;}
._2{width:8.719200pt;}
._f{width:9.615200pt;}
._a{width:10.610133pt;}
._7{width:14.005600pt;}
._10{width:14.955733pt;}
._6{width:15.904000pt;}
._e{width:16.973600pt;}
._12{width:18.132800pt;}
._13{width:20.094667pt;}
._15{width:23.833600pt;}
._d{width:30.261333pt;}
.fs3{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs0{font-size:53.333333pt;}
.fs4{font-size:56.000000pt;}
.fs6{font-size:64.000000pt;}
.fs5{font-size:69.333333pt;}
.fs1{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.464533pt;}
.yaa{bottom:52.174400pt;}
.y5f{bottom:54.685067pt;}
.yd0{bottom:55.707867pt;}
.y37{bottom:56.189467pt;}
.ycd{bottom:61.984800pt;}
.ya9{bottom:66.178400pt;}
.y60{bottom:68.409467pt;}
.ycf{bottom:70.371867pt;}
.y36{bottom:74.585467pt;}
.ycc{bottom:76.648800pt;}
.ya8{bottom:80.182400pt;}
.yce{bottom:85.035867pt;}
.y35{bottom:93.247467pt;}
.ya7{bottom:103.631200pt;}
.ycb{bottom:103.707867pt;}
.yc8{bottom:109.984800pt;}
.y34{bottom:111.909467pt;}
.yca{bottom:118.371867pt;}
.yc7{bottom:124.648800pt;}
.y33{bottom:130.571467pt;}
.yc9{bottom:133.035867pt;}
.ya6{bottom:139.715200pt;}
.y32{bottom:149.233467pt;}
.yc6{bottom:151.707867pt;}
.yc3{bottom:157.982133pt;}
.ya5{bottom:158.377200pt;}
.yc5{bottom:166.371867pt;}
.y31{bottom:167.895467pt;}
.yc2{bottom:172.648800pt;}
.ya4{bottom:177.039200pt;}
.yc4{bottom:181.035867pt;}
.y30{bottom:186.557467pt;}
.ya3{bottom:195.701200pt;}
.yc1{bottom:199.707867pt;}
.y2f{bottom:205.219467pt;}
.ybe{bottom:213.315467pt;}
.ya2{bottom:214.363200pt;}
.yc0{bottom:214.371867pt;}
.y2e{bottom:223.881467pt;}
.ybf{bottom:229.035867pt;}
.ya1{bottom:233.025200pt;}
.y2d{bottom:242.543467pt;}
.ybd{bottom:247.707867pt;}
.ya0{bottom:251.687200pt;}
.y5e{bottom:258.520800pt;}
.y2c{bottom:261.205467pt;}
.yba{bottom:261.315467pt;}
.ybc{bottom:262.371867pt;}
.y9f{bottom:270.349200pt;}
.ybb{bottom:277.035867pt;}
.y5d{bottom:277.182800pt;}
.y2b{bottom:279.867467pt;}
.y9e{bottom:289.011200pt;}
.yb9{bottom:295.707867pt;}
.y5c{bottom:295.844800pt;}
.y2a{bottom:298.529467pt;}
.y9d{bottom:307.673200pt;}
.yb6{bottom:309.315467pt;}
.yb8{bottom:310.371867pt;}
.y5b{bottom:314.506800pt;}
.y29{bottom:317.191467pt;}
.yb7{bottom:325.035867pt;}
.y9c{bottom:326.335200pt;}
.y5a{bottom:333.168800pt;}
.y28{bottom:335.853467pt;}
.yb5{bottom:343.707867pt;}
.y9b{bottom:344.997200pt;}
.y59{bottom:351.830800pt;}
.y27{bottom:354.515467pt;}
.yb2{bottom:357.315467pt;}
.yb4{bottom:358.371867pt;}
.y9a{bottom:363.659200pt;}
.y58{bottom:370.492800pt;}
.yb3{bottom:373.035867pt;}
.y26{bottom:373.177467pt;}
.y99{bottom:382.321200pt;}
.y57{bottom:389.154800pt;}
.yb1{bottom:389.928267pt;}
.y25{bottom:391.839467pt;}
.yac{bottom:397.261600pt;}
.yae{bottom:397.264267pt;}
.y98{bottom:400.983200pt;}
.yb0{bottom:404.594933pt;}
.y56{bottom:407.816800pt;}
.y24{bottom:410.235467pt;}
.yad{bottom:411.925600pt;}
.yab{bottom:411.928267pt;}
.yaf{bottom:419.260267pt;}
.y97{bottom:419.645200pt;}
.y55{bottom:426.478800pt;}
.y23{bottom:427.298133pt;}
.y96{bottom:438.307200pt;}
.yd6{bottom:440.925867pt;}
.y54{bottom:445.140800pt;}
.y22{bottom:447.039467pt;}
.yd5{bottom:454.257867pt;}
.y95{bottom:456.969200pt;}
.y53{bottom:463.802800pt;}
.y21{bottom:465.435467pt;}
.yd4{bottom:467.589867pt;}
.y94{bottom:475.631200pt;}
.yd3{bottom:480.921867pt;}
.y52{bottom:482.464800pt;}
.y20{bottom:482.498133pt;}
.yd2{bottom:494.253867pt;}
.y51{bottom:501.126800pt;}
.y1f{bottom:502.239467pt;}
.y93{bottom:503.746667pt;}
.yd1{bottom:507.585867pt;}
.y50{bottom:519.788800pt;}
.y1e{bottom:520.635467pt;}
.y7b{bottom:533.582800pt;}
.y1d{bottom:537.698133pt;}
.y4f{bottom:538.450800pt;}
.y92{bottom:539.770000pt;}
.y7a{bottom:552.244800pt;}
.y4e{bottom:557.112800pt;}
.y1c{bottom:557.805467pt;}
.y91{bottom:558.432000pt;}
.y79{bottom:570.906800pt;}
.y4d{bottom:575.774800pt;}
.y1b{bottom:576.467467pt;}
.y90{bottom:577.094000pt;}
.y78{bottom:589.568800pt;}
.y4c{bottom:594.436800pt;}
.y1a{bottom:595.129467pt;}
.y8f{bottom:595.756000pt;}
.y77{bottom:608.230800pt;}
.y4b{bottom:613.098800pt;}
.y19{bottom:613.791467pt;}
.y8e{bottom:614.418000pt;}
.y76{bottom:626.892800pt;}
.y4a{bottom:631.760800pt;}
.y18{bottom:632.453467pt;}
.y8d{bottom:633.080000pt;}
.y75{bottom:645.554800pt;}
.y49{bottom:650.422800pt;}
.y17{bottom:651.115467pt;}
.y8c{bottom:659.305733pt;}
.y74{bottom:664.216800pt;}
.y48{bottom:669.084800pt;}
.y16{bottom:669.777467pt;}
.y73{bottom:682.878800pt;}
.y47{bottom:687.746800pt;}
.y15{bottom:688.439467pt;}
.y8b{bottom:695.319733pt;}
.y72{bottom:701.540800pt;}
.y14{bottom:707.101467pt;}
.y46{bottom:713.972533pt;}
.y8a{bottom:713.981733pt;}
.y71{bottom:720.202800pt;}
.y13{bottom:725.763467pt;}
.y89{bottom:732.643733pt;}
.y70{bottom:738.864800pt;}
.y12{bottom:744.425467pt;}
.y88{bottom:751.305733pt;}
.y45{bottom:751.329200pt;}
.y11{bottom:763.087467pt;}
.y6f{bottom:765.090533pt;}
.y44{bottom:769.991200pt;}
.y87{bottom:777.531467pt;}
.y10{bottom:781.749467pt;}
.y43{bottom:788.653200pt;}
.yf{bottom:800.411467pt;}
.y6e{bottom:801.146533pt;}
.y42{bottom:807.315200pt;}
.y86{bottom:813.540800pt;}
.ye{bottom:819.073467pt;}
.y6d{bottom:819.808533pt;}
.y41{bottom:825.977200pt;}
.y85{bottom:832.202800pt;}
.yd{bottom:837.735467pt;}
.y6c{bottom:838.470533pt;}
.y40{bottom:844.639200pt;}
.y84{bottom:850.864800pt;}
.yc{bottom:856.397467pt;}
.y6b{bottom:857.132533pt;}
.y3f{bottom:870.863467pt;}
.yb{bottom:875.059467pt;}
.y6a{bottom:875.794533pt;}
.y83{bottom:877.090533pt;}
.y3e{bottom:889.531467pt;}
.ya{bottom:893.721467pt;}
.y69{bottom:894.456533pt;}
.y9{bottom:912.383467pt;}
.y68{bottom:913.118533pt;}
.y82{bottom:913.164800pt;}
.y8{bottom:931.045467pt;}
.y67{bottom:931.780533pt;}
.y81{bottom:931.826800pt;}
.y3d{bottom:933.205467pt;}
.y7{bottom:949.707467pt;}
.y66{bottom:950.442533pt;}
.y80{bottom:950.488800pt;}
.y3c{bottom:951.601467pt;}
.y6{bottom:968.369467pt;}
.y65{bottom:969.104533pt;}
.y7f{bottom:969.150800pt;}
.y3b{bottom:969.997467pt;}
.y5{bottom:987.031467pt;}
.y64{bottom:987.766533pt;}
.y7e{bottom:987.812800pt;}
.y3a{bottom:988.393467pt;}
.y63{bottom:1006.428533pt;}
.y7d{bottom:1006.474800pt;}
.y39{bottom:1006.789467pt;}
.y4{bottom:1013.257200pt;}
.y62{bottom:1025.090533pt;}
.y7c{bottom:1025.136800pt;}
.y38{bottom:1025.185467pt;}
.y3{bottom:1026.590533pt;}
.y2{bottom:1061.165333pt;}
.y61{bottom:1067.165333pt;}
.h5{height:34.346667pt;}
.h4{height:34.608000pt;}
.ha{height:38.640000pt;}
.hd{height:38.645333pt;}
.h2{height:42.933333pt;}
.hb{height:43.733333pt;}
.h6{height:45.080000pt;}
.h9{height:52.480000pt;}
.h8{height:56.853333pt;}
.h7{height:59.733333pt;}
.hc{height:67.968000pt;}
.h3{height:69.973333pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:48.000000pt;}
.x7{left:52.913333pt;}
.x25{left:57.234027pt;}
.x2{left:59.339067pt;}
.x27{left:60.683867pt;}
.xa{left:68.376533pt;}
.x24{left:69.578667pt;}
.x15{left:70.721333pt;}
.x1e{left:72.681333pt;}
.x26{left:76.819067pt;}
.x18{left:119.277040pt;}
.x17{left:123.025000pt;}
.x16{left:129.132400pt;}
.xc{left:131.027333pt;}
.xb{left:133.252133pt;}
.xd{left:183.644933pt;}
.x23{left:187.121867pt;}
.x19{left:189.836267pt;}
.x1f{left:192.549467pt;}
.xe{left:221.066933pt;}
.xf{left:225.354533pt;}
.x1a{left:229.964267pt;}
.x20{left:232.677467pt;}
.x1b{left:257.982400pt;}
.x10{left:297.013200pt;}
.x11{left:305.122200pt;}
.x21{left:307.210800pt;}
.x1c{left:309.925200pt;}
.x13{left:344.061600pt;}
.x14{left:349.890800pt;}
.x1d{left:351.945600pt;}
.x22{left:353.027400pt;}
.x12{left:354.520800pt;}
.x3{left:402.395067pt;}
.x8{left:407.309333pt;}
.x9{left:437.547067pt;}
.x6{left:577.342400pt;}
.x5{left:739.194267pt;}
.x4{left:751.622000pt;}
}




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