
    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_458f1a9f598dc93066101150.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919500;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_b85e9f81bb5995daad433a76.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.919500;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_468c8841e388a94e2b5ff01e.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.948500;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_852e7b436e02a35fdf63c048.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936500;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_94c270b724274d74f3984fa2.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.946500;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_0b36ca5db2cdd38291a010ed.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.751000;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_b13576487dc475c66097f109.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.958000;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_63f309c1780ff4d53844197c.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.097000;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_137d66f7a7118611ae007f28.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.948500;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_be7f4b13f7411588c9cbfc78.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.096000;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;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws8{word-spacing:-21.330000px;}
.ws1c{word-spacing:-12.738000px;}
.ws9{word-spacing:-9.264000px;}
.wsc{word-spacing:-2.376000px;}
.ws25{word-spacing:-2.244000px;}
.ws5{word-spacing:-2.178000px;}
.ws6{word-spacing:-1.980000px;}
.ws32{word-spacing:-1.860000px;}
.ws27{word-spacing:-1.188000px;}
.ws2a{word-spacing:-0.396000px;}
.ws1f{word-spacing:-0.198000px;}
.ws26{word-spacing:-0.066000px;}
.ws0{word-spacing:0.000000px;}
.ws23{word-spacing:0.066000px;}
.ws18{word-spacing:0.330000px;}
.ws30{word-spacing:0.528000px;}
.ws19{word-spacing:0.660000px;}
.ws31{word-spacing:0.720000px;}
.ws2d{word-spacing:1.188000px;}
.ws22{word-spacing:1.254000px;}
.wsa{word-spacing:1.320000px;}
.ws1b{word-spacing:1.518000px;}
.ws13{word-spacing:1.584000px;}
.ws4{word-spacing:1.650000px;}
.wsd{word-spacing:2.310000px;}
.ws14{word-spacing:2.376000px;}
.ws2e{word-spacing:2.574000px;}
.ws1d{word-spacing:2.772000px;}
.ws24{word-spacing:3.036000px;}
.ws1{word-spacing:3.366000px;}
.ws28{word-spacing:3.828000px;}
.wsf{word-spacing:3.960000px;}
.ws2f{word-spacing:4.092000px;}
.ws17{word-spacing:4.620000px;}
.ws3{word-spacing:5.808000px;}
.ws7{word-spacing:6.468000px;}
.ws29{word-spacing:7.524000px;}
.ws2c{word-spacing:7.986000px;}
.ws2b{word-spacing:8.250000px;}
.ws1e{word-spacing:8.316000px;}
.wse{word-spacing:8.712000px;}
.ws2{word-spacing:9.504000px;}
.ws1a{word-spacing:9.768000px;}
.ws16{word-spacing:11.220000px;}
.ws11{word-spacing:11.682000px;}
.ws12{word-spacing:11.880000px;}
.ws21{word-spacing:12.738000px;}
.ws10{word-spacing:16.236000px;}
.ws20{word-spacing:17.490000px;}
.wsb{word-spacing:18.348000px;}
.ws15{word-spacing:19.272000px;}
._12{margin-left:-2923.654200px;}
._11{margin-left:-10.845000px;}
._10{margin-left:-9.420600px;}
._a{margin-left:-7.530600px;}
._2{margin-left:-5.598000px;}
._1{margin-left:-4.158000px;}
._3{margin-left:-2.841600px;}
._0{margin-left:-1.800000px;}
._6{width:1.293600px;}
._c{width:2.349600px;}
._7{width:3.399000px;}
._4{width:5.002800px;}
._5{width:6.897000px;}
._f{width:8.065200px;}
._b{width:9.398400px;}
._8{width:10.692000px;}
._13{width:13.767600px;}
._e{width:18.816600px;}
._d{width:21.964800px;}
._9{width:56.958000px;}
.fc4{color:rgb(2,52,82);}
.fc3{color:rgb(39,91,155);}
.fc5{color:rgb(255,255,255);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(244,125,32);}
.fc0{color:rgb(54,92,117);}
.fs4{font-size:48.000000px;}
.fs6{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs5{font-size:78.000000px;}
.fs3{font-size:90.000000px;}
.fs1{font-size:96.000000px;}
.fs0{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.y5e{bottom:39.637350px;}
.y85{bottom:61.492350px;}
.ycd{bottom:80.946000px;}
.y84{bottom:83.998350px;}
.ye5{bottom:100.485150px;}
.y3c{bottom:100.768200px;}
.ycc{bottom:103.452000px;}
.y83{bottom:116.998350px;}
.ycb{bottom:125.958000px;}
.y82{bottom:139.504350px;}
.ye4{bottom:142.485150px;}
.yca{bottom:158.958000px;}
.y81{bottom:162.010350px;}
.ye3{bottom:163.485150px;}
.ya7{bottom:179.144850px;}
.yc9{bottom:181.464000px;}
.ye2{bottom:184.485150px;}
.y80{bottom:184.516350px;}
.y3b{bottom:199.768200px;}
.y58{bottom:200.798700px;}
.yc8{bottom:203.970000px;}
.y7f{bottom:207.022350px;}
.ya6{bottom:207.652350px;}
.y3a{bottom:222.274200px;}
.y57{bottom:223.304700px;}
.yc7{bottom:226.476000px;}
.y7e{bottom:240.022350px;}
.y39{bottom:244.780200px;}
.y56{bottom:245.810700px;}
.yc6{bottom:248.982000px;}
.ya5{bottom:256.354200px;}
.y7d{bottom:263.422350px;}
.y38{bottom:267.286200px;}
.y55{bottom:268.316700px;}
.yc5{bottom:271.488000px;}
.ya4{bottom:278.860200px;}
.y37{bottom:289.792200px;}
.y54{bottom:301.316700px;}
.ya3{bottom:301.366200px;}
.yc4{bottom:304.488000px;}
.y36{bottom:312.298200px;}
.y7c{bottom:320.560350px;}
.y53{bottom:323.822700px;}
.ya2{bottom:323.872200px;}
.yc3{bottom:326.994000px;}
.y35{bottom:334.804200px;}
.y7b{bottom:343.066350px;}
.y52{bottom:346.328700px;}
.ya1{bottom:346.378200px;}
.yc2{bottom:349.500000px;}
.y34{bottom:357.310200px;}
.y7a{bottom:365.572350px;}
.y51{bottom:368.834700px;}
.ya0{bottom:379.378200px;}
.y33{bottom:379.816200px;}
.yc1{bottom:382.500000px;}
.y18{bottom:390.717000px;}
.y50{bottom:391.340700px;}
.y9f{bottom:401.884200px;}
.y32{bottom:402.322200px;}
.y17{bottom:413.223000px;}
.y79{bottom:418.792350px;}
.y9e{bottom:424.390200px;}
.y31{bottom:424.828200px;}
.y16{bottom:435.729000px;}
.y4f{bottom:444.553200px;}
.y9d{bottom:446.896200px;}
.y78{bottom:447.299850px;}
.y30{bottom:447.334200px;}
.y15{bottom:468.729000px;}
.y9c{bottom:469.402200px;}
.y4e{bottom:473.060700px;}
.y77{bottom:475.807350px;}
.y2f{bottom:480.334200px;}
.y14{bottom:491.235000px;}
.yc0{bottom:494.045250px;}
.y4d{bottom:501.568200px;}
.y9b{bottom:502.402200px;}
.y2e{bottom:502.840200px;}
.y76{bottom:504.314850px;}
.y13{bottom:513.741000px;}
.ybf{bottom:516.551250px;}
.y2d{bottom:525.346200px;}
.y4c{bottom:530.075700px;}
.y75{bottom:532.822350px;}
.y12{bottom:536.247000px;}
.ybe{bottom:539.057250px;}
.y2c{bottom:547.852200px;}
.y4b{bottom:558.583200px;}
.y11{bottom:558.753000px;}
.y2b{bottom:570.358200px;}
.ybd{bottom:572.057250px;}
.y9a{bottom:579.787350px;}
.y10{bottom:581.259000px;}
.y74{bottom:581.530350px;}
.y4a{bottom:587.090700px;}
.y2a{bottom:592.864200px;}
.ybc{bottom:594.563250px;}
.yf{bottom:603.765000px;}
.y73{bottom:604.036350px;}
.y99{bottom:608.294850px;}
.y29{bottom:615.370200px;}
.ybb{bottom:617.069250px;}
.ye1{bottom:625.222350px;}
.y72{bottom:626.542350px;}
.y49{bottom:635.798700px;}
.ye{bottom:636.765000px;}
.y98{bottom:636.802350px;}
.yba{bottom:639.575250px;}
.y28{bottom:648.370200px;}
.y71{bottom:649.048350px;}
.y48{bottom:658.304700px;}
.yd{bottom:659.271000px;}
.y27{bottom:670.876200px;}
.y70{bottom:671.554350px;}
.yb9{bottom:672.575250px;}
.y47{bottom:680.810700px;}
.yc{bottom:681.777000px;}
.y97{bottom:685.498350px;}
.y26{bottom:693.382200px;}
.y6f{bottom:694.060350px;}
.y46{bottom:703.316700px;}
.yb{bottom:704.283000px;}
.y96{bottom:708.004350px;}
.y25{bottom:715.888200px;}
.y6e{bottom:716.566350px;}
.yb8{bottom:729.695250px;}
.ye0{bottom:730.222350px;}
.y95{bottom:730.510350px;}
.y45{bottom:736.316700px;}
.ya{bottom:737.283000px;}
.y24{bottom:738.394200px;}
.y6d{bottom:739.072350px;}
.ydf{bottom:751.222350px;}
.yb7{bottom:752.201250px;}
.y94{bottom:753.016350px;}
.y44{bottom:758.822700px;}
.y9{bottom:759.789000px;}
.y23{bottom:760.900200px;}
.y6c{bottom:772.072200px;}
.yde{bottom:772.222350px;}
.yb6{bottom:774.707250px;}
.y43{bottom:781.328700px;}
.y8{bottom:782.295000px;}
.y22{bottom:783.406200px;}
.y93{bottom:786.016350px;}
.ydd{bottom:793.222350px;}
.yb5{bottom:797.213250px;}
.y42{bottom:803.834700px;}
.y21{bottom:805.912200px;}
.y92{bottom:808.522350px;}
.ydc{bottom:814.222350px;}
.y41{bottom:826.340700px;}
.y6b{bottom:829.168350px;}
.yb4{bottom:830.213250px;}
.y91{bottom:831.028350px;}
.y20{bottom:838.912200px;}
.yb3{bottom:852.719250px;}
.ydb{bottom:856.222350px;}
.y1f{bottom:861.418200px;}
.y6a{bottom:862.168350px;}
.y90{bottom:864.028350px;}
.y6{bottom:868.588950px;}
.yb2{bottom:875.225250px;}
.yda{bottom:877.222350px;}
.y40{bottom:879.568200px;}
.y1e{bottom:883.924200px;}
.y69{bottom:884.674350px;}
.y8f{bottom:886.534350px;}
.yd9{bottom:898.222350px;}
.y5{bottom:898.588950px;}
.y1d{bottom:906.430200px;}
.y3f{bottom:908.075700px;}
.yb1{bottom:908.225250px;}
.y8e{bottom:909.040350px;}
.y68{bottom:917.674350px;}
.yd8{bottom:919.222350px;}
.y4{bottom:928.588950px;}
.y1c{bottom:928.936200px;}
.y8d{bottom:931.546350px;}
.yb0{bottom:931.625250px;}
.y3e{bottom:936.583200px;}
.y67{bottom:940.180350px;}
.yd7{bottom:940.222350px;}
.y1b{bottom:951.442200px;}
.y8c{bottom:954.052350px;}
.yd6{bottom:961.222350px;}
.y66{bottom:962.686350px;}
.y3d{bottom:965.090700px;}
.y1a{bottom:973.948200px;}
.y3{bottom:978.879450px;}
.yd5{bottom:982.222350px;}
.y65{bottom:985.192350px;}
.yaf{bottom:988.745250px;}
.yd4{bottom:1003.222350px;}
.y8b{bottom:1007.287350px;}
.y64{bottom:1007.698350px;}
.yae{bottom:1011.251250px;}
.y5d{bottom:1023.010200px;}
.yd3{bottom:1024.222350px;}
.y2{bottom:1032.879450px;}
.yad{bottom:1033.757250px;}
.y8a{bottom:1035.794850px;}
.y63{bottom:1040.698350px;}
.yd2{bottom:1045.222350px;}
.y5c{bottom:1045.516200px;}
.yac{bottom:1056.263250px;}
.y62{bottom:1063.204350px;}
.y89{bottom:1064.302350px;}
.yd1{bottom:1066.222350px;}
.y5b{bottom:1068.022200px;}
.y61{bottom:1085.710350px;}
.y1{bottom:1086.879450px;}
.yd0{bottom:1087.222350px;}
.yab{bottom:1089.263250px;}
.y5a{bottom:1090.528200px;}
.y60{bottom:1108.216350px;}
.ycf{bottom:1108.222350px;}
.yaa{bottom:1111.769250px;}
.y59{bottom:1113.034200px;}
.y88{bottom:1113.046350px;}
.yce{bottom:1129.222350px;}
.y5f{bottom:1130.722350px;}
.ya9{bottom:1134.275250px;}
.y87{bottom:1135.552350px;}
.y7{bottom:1145.844300px;}
.y19{bottom:1163.722350px;}
.ya8{bottom:1167.275250px;}
.y86{bottom:1168.552350px;}
.ha{height:36.624000px;}
.hf{height:45.780000px;}
.h10{height:45.960000px;}
.h5{height:49.764000px;}
.h4{height:50.358000px;}
.h6{height:50.556000px;}
.h7{height:51.183000px;}
.hc{height:58.812000px;}
.hb{height:60.489000px;}
.he{height:66.870000px;}
.h8{height:68.940000px;}
.h3{height:70.800000px;}
.hd{height:74.340000px;}
.h9{height:74.430000px;}
.h2{height:132.750000px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:81.000000px;}
.x2{left:82.465950px;}
.x3{left:94.497000px;}
.x4{left:121.491000px;}
.x7{left:342.360000px;}
.x8{left:355.857000px;}
.x9{left:382.851000px;}
.x5{left:459.956700px;}
.xa{left:557.280000px;}
.x6{left:804.953550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws8{word-spacing:-18.960000pt;}
.ws1c{word-spacing:-11.322667pt;}
.ws9{word-spacing:-8.234667pt;}
.wsc{word-spacing:-2.112000pt;}
.ws25{word-spacing:-1.994667pt;}
.ws5{word-spacing:-1.936000pt;}
.ws6{word-spacing:-1.760000pt;}
.ws32{word-spacing:-1.653333pt;}
.ws27{word-spacing:-1.056000pt;}
.ws2a{word-spacing:-0.352000pt;}
.ws1f{word-spacing:-0.176000pt;}
.ws26{word-spacing:-0.058667pt;}
.ws0{word-spacing:0.000000pt;}
.ws23{word-spacing:0.058667pt;}
.ws18{word-spacing:0.293333pt;}
.ws30{word-spacing:0.469333pt;}
.ws19{word-spacing:0.586667pt;}
.ws31{word-spacing:0.640000pt;}
.ws2d{word-spacing:1.056000pt;}
.ws22{word-spacing:1.114667pt;}
.wsa{word-spacing:1.173333pt;}
.ws1b{word-spacing:1.349333pt;}
.ws13{word-spacing:1.408000pt;}
.ws4{word-spacing:1.466667pt;}
.wsd{word-spacing:2.053333pt;}
.ws14{word-spacing:2.112000pt;}
.ws2e{word-spacing:2.288000pt;}
.ws1d{word-spacing:2.464000pt;}
.ws24{word-spacing:2.698667pt;}
.ws1{word-spacing:2.992000pt;}
.ws28{word-spacing:3.402667pt;}
.wsf{word-spacing:3.520000pt;}
.ws2f{word-spacing:3.637333pt;}
.ws17{word-spacing:4.106667pt;}
.ws3{word-spacing:5.162667pt;}
.ws7{word-spacing:5.749333pt;}
.ws29{word-spacing:6.688000pt;}
.ws2c{word-spacing:7.098667pt;}
.ws2b{word-spacing:7.333333pt;}
.ws1e{word-spacing:7.392000pt;}
.wse{word-spacing:7.744000pt;}
.ws2{word-spacing:8.448000pt;}
.ws1a{word-spacing:8.682667pt;}
.ws16{word-spacing:9.973333pt;}
.ws11{word-spacing:10.384000pt;}
.ws12{word-spacing:10.560000pt;}
.ws21{word-spacing:11.322667pt;}
.ws10{word-spacing:14.432000pt;}
.ws20{word-spacing:15.546667pt;}
.wsb{word-spacing:16.309333pt;}
.ws15{word-spacing:17.130667pt;}
._12{margin-left:-2598.803733pt;}
._11{margin-left:-9.640000pt;}
._10{margin-left:-8.373867pt;}
._a{margin-left:-6.693867pt;}
._2{margin-left:-4.976000pt;}
._1{margin-left:-3.696000pt;}
._3{margin-left:-2.525867pt;}
._0{margin-left:-1.600000pt;}
._6{width:1.149867pt;}
._c{width:2.088533pt;}
._7{width:3.021333pt;}
._4{width:4.446933pt;}
._5{width:6.130667pt;}
._f{width:7.169067pt;}
._b{width:8.354133pt;}
._8{width:9.504000pt;}
._13{width:12.237867pt;}
._e{width:16.725867pt;}
._d{width:19.524267pt;}
._9{width:50.629333pt;}
.fs4{font-size:42.666667pt;}
.fs6{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs5{font-size:69.333333pt;}
.fs3{font-size:80.000000pt;}
.fs1{font-size:85.333333pt;}
.fs0{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.y5e{bottom:35.233200pt;}
.y85{bottom:54.659867pt;}
.ycd{bottom:71.952000pt;}
.y84{bottom:74.665200pt;}
.ye5{bottom:89.320133pt;}
.y3c{bottom:89.571733pt;}
.ycc{bottom:91.957333pt;}
.y83{bottom:103.998533pt;}
.ycb{bottom:111.962667pt;}
.y82{bottom:124.003867pt;}
.ye4{bottom:126.653467pt;}
.yca{bottom:141.296000pt;}
.y81{bottom:144.009200pt;}
.ye3{bottom:145.320133pt;}
.ya7{bottom:159.239867pt;}
.yc9{bottom:161.301333pt;}
.ye2{bottom:163.986800pt;}
.y80{bottom:164.014533pt;}
.y3b{bottom:177.571733pt;}
.y58{bottom:178.487733pt;}
.yc8{bottom:181.306667pt;}
.y7f{bottom:184.019867pt;}
.ya6{bottom:184.579867pt;}
.y3a{bottom:197.577067pt;}
.y57{bottom:198.493067pt;}
.yc7{bottom:201.312000pt;}
.y7e{bottom:213.353200pt;}
.y39{bottom:217.582400pt;}
.y56{bottom:218.498400pt;}
.yc6{bottom:221.317333pt;}
.ya5{bottom:227.870400pt;}
.y7d{bottom:234.153200pt;}
.y38{bottom:237.587733pt;}
.y55{bottom:238.503733pt;}
.yc5{bottom:241.322667pt;}
.ya4{bottom:247.875733pt;}
.y37{bottom:257.593067pt;}
.y54{bottom:267.837067pt;}
.ya3{bottom:267.881067pt;}
.yc4{bottom:270.656000pt;}
.y36{bottom:277.598400pt;}
.y7c{bottom:284.942533pt;}
.y53{bottom:287.842400pt;}
.ya2{bottom:287.886400pt;}
.yc3{bottom:290.661333pt;}
.y35{bottom:297.603733pt;}
.y7b{bottom:304.947867pt;}
.y52{bottom:307.847733pt;}
.ya1{bottom:307.891733pt;}
.yc2{bottom:310.666667pt;}
.y34{bottom:317.609067pt;}
.y7a{bottom:324.953200pt;}
.y51{bottom:327.853067pt;}
.ya0{bottom:337.225067pt;}
.y33{bottom:337.614400pt;}
.yc1{bottom:340.000000pt;}
.y18{bottom:347.304000pt;}
.y50{bottom:347.858400pt;}
.y9f{bottom:357.230400pt;}
.y32{bottom:357.619733pt;}
.y17{bottom:367.309333pt;}
.y79{bottom:372.259867pt;}
.y9e{bottom:377.235733pt;}
.y31{bottom:377.625067pt;}
.y16{bottom:387.314667pt;}
.y4f{bottom:395.158400pt;}
.y9d{bottom:397.241067pt;}
.y78{bottom:397.599867pt;}
.y30{bottom:397.630400pt;}
.y15{bottom:416.648000pt;}
.y9c{bottom:417.246400pt;}
.y4e{bottom:420.498400pt;}
.y77{bottom:422.939867pt;}
.y2f{bottom:426.963733pt;}
.y14{bottom:436.653333pt;}
.yc0{bottom:439.151333pt;}
.y4d{bottom:445.838400pt;}
.y9b{bottom:446.579733pt;}
.y2e{bottom:446.969067pt;}
.y76{bottom:448.279867pt;}
.y13{bottom:456.658667pt;}
.ybf{bottom:459.156667pt;}
.y2d{bottom:466.974400pt;}
.y4c{bottom:471.178400pt;}
.y75{bottom:473.619867pt;}
.y12{bottom:476.664000pt;}
.ybe{bottom:479.162000pt;}
.y2c{bottom:486.979733pt;}
.y4b{bottom:496.518400pt;}
.y11{bottom:496.669333pt;}
.y2b{bottom:506.985067pt;}
.ybd{bottom:508.495333pt;}
.y9a{bottom:515.366533pt;}
.y10{bottom:516.674667pt;}
.y74{bottom:516.915867pt;}
.y4a{bottom:521.858400pt;}
.y2a{bottom:526.990400pt;}
.ybc{bottom:528.500667pt;}
.yf{bottom:536.680000pt;}
.y73{bottom:536.921200pt;}
.y99{bottom:540.706533pt;}
.y29{bottom:546.995733pt;}
.ybb{bottom:548.506000pt;}
.ye1{bottom:555.753200pt;}
.y72{bottom:556.926533pt;}
.y49{bottom:565.154400pt;}
.ye{bottom:566.013333pt;}
.y98{bottom:566.046533pt;}
.yba{bottom:568.511333pt;}
.y28{bottom:576.329067pt;}
.y71{bottom:576.931867pt;}
.y48{bottom:585.159733pt;}
.yd{bottom:586.018667pt;}
.y27{bottom:596.334400pt;}
.y70{bottom:596.937200pt;}
.yb9{bottom:597.844667pt;}
.y47{bottom:605.165067pt;}
.yc{bottom:606.024000pt;}
.y97{bottom:609.331867pt;}
.y26{bottom:616.339733pt;}
.y6f{bottom:616.942533pt;}
.y46{bottom:625.170400pt;}
.yb{bottom:626.029333pt;}
.y96{bottom:629.337200pt;}
.y25{bottom:636.345067pt;}
.y6e{bottom:636.947867pt;}
.yb8{bottom:648.618000pt;}
.ye0{bottom:649.086533pt;}
.y95{bottom:649.342533pt;}
.y45{bottom:654.503733pt;}
.ya{bottom:655.362667pt;}
.y24{bottom:656.350400pt;}
.y6d{bottom:656.953200pt;}
.ydf{bottom:667.753200pt;}
.yb7{bottom:668.623333pt;}
.y94{bottom:669.347867pt;}
.y44{bottom:674.509067pt;}
.y9{bottom:675.368000pt;}
.y23{bottom:676.355733pt;}
.y6c{bottom:686.286400pt;}
.yde{bottom:686.419867pt;}
.yb6{bottom:688.628667pt;}
.y43{bottom:694.514400pt;}
.y8{bottom:695.373333pt;}
.y22{bottom:696.361067pt;}
.y93{bottom:698.681200pt;}
.ydd{bottom:705.086533pt;}
.yb5{bottom:708.634000pt;}
.y42{bottom:714.519733pt;}
.y21{bottom:716.366400pt;}
.y92{bottom:718.686533pt;}
.ydc{bottom:723.753200pt;}
.y41{bottom:734.525067pt;}
.y6b{bottom:737.038533pt;}
.yb4{bottom:737.967333pt;}
.y91{bottom:738.691867pt;}
.y20{bottom:745.699733pt;}
.yb3{bottom:757.972667pt;}
.ydb{bottom:761.086533pt;}
.y1f{bottom:765.705067pt;}
.y6a{bottom:766.371867pt;}
.y90{bottom:768.025200pt;}
.y6{bottom:772.079067pt;}
.yb2{bottom:777.978000pt;}
.yda{bottom:779.753200pt;}
.y40{bottom:781.838400pt;}
.y1e{bottom:785.710400pt;}
.y69{bottom:786.377200pt;}
.y8f{bottom:788.030533pt;}
.yd9{bottom:798.419867pt;}
.y5{bottom:798.745733pt;}
.y1d{bottom:805.715733pt;}
.y3f{bottom:807.178400pt;}
.yb1{bottom:807.311333pt;}
.y8e{bottom:808.035867pt;}
.y68{bottom:815.710533pt;}
.yd8{bottom:817.086533pt;}
.y4{bottom:825.412400pt;}
.y1c{bottom:825.721067pt;}
.y8d{bottom:828.041200pt;}
.yb0{bottom:828.111333pt;}
.y3e{bottom:832.518400pt;}
.y67{bottom:835.715867pt;}
.yd7{bottom:835.753200pt;}
.y1b{bottom:845.726400pt;}
.y8c{bottom:848.046533pt;}
.yd6{bottom:854.419867pt;}
.y66{bottom:855.721200pt;}
.y3d{bottom:857.858400pt;}
.y1a{bottom:865.731733pt;}
.y3{bottom:870.115067pt;}
.yd5{bottom:873.086533pt;}
.y65{bottom:875.726533pt;}
.yaf{bottom:878.884667pt;}
.yd4{bottom:891.753200pt;}
.y8b{bottom:895.366533pt;}
.y64{bottom:895.731867pt;}
.yae{bottom:898.890000pt;}
.y5d{bottom:909.342400pt;}
.yd3{bottom:910.419867pt;}
.y2{bottom:918.115067pt;}
.yad{bottom:918.895333pt;}
.y8a{bottom:920.706533pt;}
.y63{bottom:925.065200pt;}
.yd2{bottom:929.086533pt;}
.y5c{bottom:929.347733pt;}
.yac{bottom:938.900667pt;}
.y62{bottom:945.070533pt;}
.y89{bottom:946.046533pt;}
.yd1{bottom:947.753200pt;}
.y5b{bottom:949.353067pt;}
.y61{bottom:965.075867pt;}
.y1{bottom:966.115067pt;}
.yd0{bottom:966.419867pt;}
.yab{bottom:968.234000pt;}
.y5a{bottom:969.358400pt;}
.y60{bottom:985.081200pt;}
.ycf{bottom:985.086533pt;}
.yaa{bottom:988.239333pt;}
.y59{bottom:989.363733pt;}
.y88{bottom:989.374533pt;}
.yce{bottom:1003.753200pt;}
.y5f{bottom:1005.086533pt;}
.ya9{bottom:1008.244667pt;}
.y87{bottom:1009.379867pt;}
.y7{bottom:1018.528267pt;}
.y19{bottom:1034.419867pt;}
.ya8{bottom:1037.578000pt;}
.y86{bottom:1038.713200pt;}
.ha{height:32.554667pt;}
.hf{height:40.693333pt;}
.h10{height:40.853333pt;}
.h5{height:44.234667pt;}
.h4{height:44.762667pt;}
.h6{height:44.938667pt;}
.h7{height:45.496000pt;}
.hc{height:52.277333pt;}
.hb{height:53.768000pt;}
.he{height:59.440000pt;}
.h8{height:61.280000pt;}
.h3{height:62.933333pt;}
.hd{height:66.080000pt;}
.h9{height:66.160000pt;}
.h2{height:118.000000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:72.000000pt;}
.x2{left:73.303067pt;}
.x3{left:83.997333pt;}
.x4{left:107.992000pt;}
.x7{left:304.320000pt;}
.x8{left:316.317333pt;}
.x9{left:340.312000pt;}
.x5{left:408.850400pt;}
.xa{left:495.360000pt;}
.x6{left:715.514267pt;}
}




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