
    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_e1c17fa747f5e5bb18d932a8.woff')format("woff");}.ff1{font-family:ff1;line-height:0.752441;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_1bdcc7aa079a8af433be4c00.woff')format("woff");}.ff2{font-family:ff2;line-height:0.856445;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_b28cf4f011f0db3be691dccc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.975098;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_4da38e4ab15a7b7078d8ce5d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.941895;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_f1cdca97b893cc3a06245fae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.092773;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_35fd7db6084392dc281e3cf0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.982910;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_3adfe8f93991da3353f94530.woff')format("woff");}.ff7{font-family:ff7;line-height:0.986816;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_ee61b3f1c842b8c2706feb2a.woff')format("woff");}.ff8{font-family:ff8;line-height:0.982910;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_2f7a381557e0902aa8d7934c.woff')format("woff");}.ff9{font-family:ff9;line-height:0.926270;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_4470c2f3f44299d171f20387.woff')format("woff");}.ffa{font-family:ffa;line-height:0.690918;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_b76c123d2c910e21081d5a90.woff')format("woff");}.ffb{font-family:ffb;line-height:0.734863;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_5c42ff6395cd97dd125368a8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.858887;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_1f2554e58718b811d288f83a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.857910;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:ffe;src:url('chunks/assets/font_e0f41bb368c2c858b367b40b.woff')format("woff");}.ffe{font-family:ffe;line-height:0.682617;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);}
.m2{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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;}
.sc1{text-shadow:-0.015em 0 rgb(255,255,255),0 0.015em rgb(255,255,255),0.015em 0 rgb(255,255,255),0 -0.015em  rgb(255,255,255);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(255,255,255);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-18.547200px;}
.ws1{word-spacing:-18.412800px;}
.wsf{word-spacing:-18.216000px;}
.ws3{word-spacing:-14.796000px;}
.ws2{word-spacing:-13.248000px;}
.wsd{word-spacing:-5.308800px;}
.ws6{word-spacing:-2.956800px;}
.ws16{word-spacing:-1.254000px;}
.ws11{word-spacing:-0.264000px;}
.ws4{word-spacing:0.000000px;}
.ws12{word-spacing:1.188000px;}
.ws17{word-spacing:2.442000px;}
.wse{word-spacing:2.808000px;}
.ws14{word-spacing:3.564000px;}
.ws10{word-spacing:6.996000px;}
.ws15{word-spacing:7.920000px;}
.ws8{word-spacing:9.072000px;}
.ws18{word-spacing:9.438000px;}
.wsc{word-spacing:11.760000px;}
.ws13{word-spacing:13.134000px;}
.ws7{word-spacing:14.112000px;}
.ws5{word-spacing:20.496000px;}
.wsa{word-spacing:23.788800px;}
.ws9{word-spacing:23.990400px;}
.wsb{word-spacing:38.841600px;}
._13{margin-left:-491.904000px;}
._1c{margin-left:-17.724234px;}
._12{margin-left:-11.060857px;}
._c{margin-left:-7.869120px;}
._4{margin-left:-6.744000px;}
._7{margin-left:-5.484374px;}
._18{margin-left:-4.470552px;}
._0{margin-left:-3.464291px;}
._6{margin-left:-2.337600px;}
._9{margin-left:-1.337280px;}
._1{width:1.565533px;}
._14{width:3.064691px;}
._d{width:4.648547px;}
._b{width:5.799360px;}
._17{width:7.451400px;}
._19{width:8.514000px;}
._1b{width:9.708600px;}
._16{width:10.949400px;}
._15{width:12.819000px;}
._a{width:14.246400px;}
._f{width:16.800000px;}
._8{width:19.488000px;}
._1a{width:20.565374px;}
._5{width:27.120000px;}
._e{width:28.844160px;}
._1d{width:31.812000px;}
._11{width:34.869171px;}
._10{width:35.985827px;}
._2{width:153.107843px;}
._3{width:182.777517px;}
.fc5{color:rgb(48,88,159);}
.fc4{color:rgb(101,98,99);}
.fc3{color:transparent;}
.fc2{color:rgb(54,108,190);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:39.000000px;}
.fs5{font-size:48.000000px;}
.fs1{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs4{font-size:60.000000px;}
.fs0{font-size:62.872800px;}
.fsb{font-size:66.000000px;}
.fs7{font-size:67.200000px;}
.fs9{font-size:69.000000px;}
.fs3{font-size:72.000000px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y30{bottom:39.069000px;}
.y2f{bottom:55.269000px;}
.y32{bottom:59.083800px;}
.y33{bottom:60.457650px;}
.y89{bottom:93.229650px;}
.y22{bottom:110.982300px;}
.y88{bottom:115.735650px;}
.y21{bottom:125.382300px;}
.y5f{bottom:131.487450px;}
.y87{bottom:146.706600px;}
.y5e{bottom:156.237450px;}
.y86{bottom:169.212600px;}
.y5d{bottom:180.987450px;}
.y85{bottom:200.216100px;}
.y84{bottom:231.219600px;}
.y83{bottom:253.725600px;}
.y4e{bottom:256.811400px;}
.y1f{bottom:263.449800px;}
.y4d{bottom:283.805400px;}
.y1e{bottom:283.902300px;}
.y82{bottom:284.729100px;}
.y4c{bottom:308.555400px;}
.y1d{bottom:313.989900px;}
.y81{bottom:315.732600px;}
.y80{bottom:346.736100px;}
.y1c{bottom:373.842900px;}
.ya2{bottom:389.388450px;}
.y1b{bottom:407.594100px;}
.y7f{bottom:408.743100px;}
.ya1{bottom:411.894450px;}
.y1a{bottom:428.594100px;}
.y7e{bottom:431.249100px;}
.y19{bottom:449.594100px;}
.y7d{bottom:453.755100px;}
.ya0{bottom:464.166450px;}
.y18{bottom:470.608200px;}
.y7c{bottom:476.261100px;}
.y9f{bottom:486.672450px;}
.y17{bottom:491.608200px;}
.y7b{bottom:498.767100px;}
.y9e{bottom:509.178450px;}
.y16{bottom:512.608200px;}
.y7a{bottom:521.124450px;}
.y9d{bottom:531.684450px;}
.y15{bottom:533.608200px;}
.y5c{bottom:537.206400px;}
.y14{bottom:554.608200px;}
.y5b{bottom:559.712400px;}
.y9c{bottom:562.687950px;}
.y13{bottom:575.608200px;}
.y5a{bottom:582.218400px;}
.y79{bottom:583.131450px;}
.y9b{bottom:585.193950px;}
.y4b{bottom:595.653450px;}
.y59{bottom:604.724400px;}
.y78{bottom:605.637450px;}
.y12{bottom:609.359400px;}
.y9a{bottom:616.197450px;}
.y4a{bottom:618.159450px;}
.y58{bottom:627.230400px;}
.y77{bottom:628.143450px;}
.y11{bottom:630.359400px;}
.y2e{bottom:635.202450px;}
.y99{bottom:638.703450px;}
.y49{bottom:640.665450px;}
.y2d{bottom:649.596600px;}
.y57{bottom:649.736400px;}
.y76{bottom:650.649450px;}
.y10{bottom:651.359400px;}
.y48{bottom:663.171450px;}
.y98{bottom:669.706950px;}
.y56{bottom:672.242400px;}
.yf{bottom:672.359400px;}
.y75{bottom:673.155450px;}
.y47{bottom:685.677450px;}
.y2c{bottom:690.501600px;}
.y97{bottom:692.212950px;}
.y55{bottom:694.748400px;}
.y74{bottom:695.661450px;}
.ye{bottom:706.110600px;}
.y2b{bottom:706.701600px;}
.y46{bottom:708.183450px;}
.y54{bottom:717.254400px;}
.y73{bottom:718.167450px;}
.y2a{bottom:722.901600px;}
.y96{bottom:723.216450px;}
.yd{bottom:727.110600px;}
.y45{bottom:730.689450px;}
.y29{bottom:739.101600px;}
.y53{bottom:739.760400px;}
.y72{bottom:740.673450px;}
.y95{bottom:745.722450px;}
.yc{bottom:748.110600px;}
.y28{bottom:755.301600px;}
.y44{bottom:761.692950px;}
.y52{bottom:762.266400px;}
.y71{bottom:763.179450px;}
.y94{bottom:776.725950px;}
.yb{bottom:781.861800px;}
.y70{bottom:785.685450px;}
.y27{bottom:788.511600px;}
.y51{bottom:796.766400px;}
.y93{bottom:799.231950px;}
.y6f{bottom:808.191450px;}
.y50{bottom:821.516400px;}
.y92{bottom:821.737950px;}
.y43{bottom:823.699950px;}
.y6e{bottom:830.697450px;}
.ya{bottom:831.170400px;}
.y26{bottom:837.921600px;}
.y42{bottom:846.205950px;}
.y4f{bottom:846.266400px;}
.y91{bottom:852.741450px;}
.y6d{bottom:853.203450px;}
.y25{bottom:854.121600px;}
.y24{bottom:870.321600px;}
.y90{bottom:875.247450px;}
.y6c{bottom:875.709450px;}
.y41{bottom:877.209450px;}
.y9{bottom:879.779850px;}
.y23{bottom:890.774100px;}
.y8{bottom:894.179850px;}
.y6b{bottom:898.215450px;}
.y40{bottom:899.715450px;}
.y8f{bottom:906.250950px;}
.y6a{bottom:920.721450px;}
.y7{bottom:921.435900px;}
.y3f{bottom:922.221450px;}
.y2{bottom:930.837000px;}
.y6{bottom:939.435900px;}
.y69{bottom:943.227450px;}
.y3e{bottom:944.727450px;}
.y68{bottom:965.733450px;}
.y3d{bottom:967.233450px;}
.y8e{bottom:968.257950px;}
.y4{bottom:971.181900px;}
.y67{bottom:988.239450px;}
.y3c{bottom:989.739450px;}
.y8d{bottom:999.261450px;}
.y3{bottom:1003.581900px;}
.y66{bottom:1010.745450px;}
.y3b{bottom:1012.245450px;}
.y8c{bottom:1030.264950px;}
.y65{bottom:1033.251450px;}
.y3a{bottom:1034.751450px;}
.y64{bottom:1055.757450px;}
.y39{bottom:1057.257450px;}
.y8b{bottom:1061.268450px;}
.y63{bottom:1078.263450px;}
.y38{bottom:1079.763450px;}
.y20{bottom:1086.281850px;}
.y8a{bottom:1092.271950px;}
.y62{bottom:1100.769450px;}
.y37{bottom:1102.269450px;}
.y61{bottom:1123.275450px;}
.y36{bottom:1124.775450px;}
.y5{bottom:1129.179750px;}
.y1{bottom:1131.415500px;}
.y60{bottom:1154.278950px;}
.y35{bottom:1155.778950px;}
.y34{bottom:1197.498900px;}
.y31{bottom:1197.501600px;}
.hb{height:27.916992px;}
.h7{height:35.906250px;}
.h12{height:36.755859px;}
.h3{height:39.972656px;}
.hf{height:40.394531px;}
.hc{height:40.605469px;}
.he{height:41.156250px;}
.h11{height:41.330566px;}
.h16{height:45.052734px;}
.h13{height:45.632812px;}
.h2{height:46.540608px;}
.h10{height:46.898438px;}
.h14{height:49.628906px;}
.ha{height:50.268750px;}
.h9{height:50.531250px;}
.h5{height:51.257812px;}
.h6{height:51.445312px;}
.h15{height:56.589844px;}
.hd{height:59.800781px;}
.h8{height:72.023438px;}
.h4{height:79.945312px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:19.937550px;}
.xd{left:30.332550px;}
.x11{left:32.600550px;}
.xe{left:33.653550px;}
.xf{left:34.936050px;}
.x2{left:37.758300px;}
.xa{left:45.681150px;}
.x12{left:50.717550px;}
.xc{left:60.779550px;}
.x16{left:63.779550px;}
.x15{left:66.614100px;}
.x13{left:68.699550px;}
.x9{left:72.843150px;}
.x8{left:83.566200px;}
.x19{left:90.774870px;}
.x14{left:93.593550px;}
.xb{left:94.881150px;}
.x3{left:211.181100px;}
.x5{left:212.774700px;}
.x7{left:232.786800px;}
.x6{left:242.046600px;}
.x1{left:308.436300px;}
.x18{left:518.587650px;}
.x4{left:679.675800px;}
.x17{left:811.499550px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-16.486400pt;}
.ws1{word-spacing:-16.366933pt;}
.wsf{word-spacing:-16.192000pt;}
.ws3{word-spacing:-13.152000pt;}
.ws2{word-spacing:-11.776000pt;}
.wsd{word-spacing:-4.718933pt;}
.ws6{word-spacing:-2.628267pt;}
.ws16{word-spacing:-1.114667pt;}
.ws11{word-spacing:-0.234667pt;}
.ws4{word-spacing:0.000000pt;}
.ws12{word-spacing:1.056000pt;}
.ws17{word-spacing:2.170667pt;}
.wse{word-spacing:2.496000pt;}
.ws14{word-spacing:3.168000pt;}
.ws10{word-spacing:6.218667pt;}
.ws15{word-spacing:7.040000pt;}
.ws8{word-spacing:8.064000pt;}
.ws18{word-spacing:8.389333pt;}
.wsc{word-spacing:10.453333pt;}
.ws13{word-spacing:11.674667pt;}
.ws7{word-spacing:12.544000pt;}
.ws5{word-spacing:18.218667pt;}
.wsa{word-spacing:21.145600pt;}
.ws9{word-spacing:21.324800pt;}
.wsb{word-spacing:34.525867pt;}
._13{margin-left:-437.248000pt;}
._1c{margin-left:-15.754875pt;}
._12{margin-left:-9.831873pt;}
._c{margin-left:-6.994773pt;}
._4{margin-left:-5.994667pt;}
._7{margin-left:-4.874999pt;}
._18{margin-left:-3.973824pt;}
._0{margin-left:-3.079370pt;}
._6{margin-left:-2.077867pt;}
._9{margin-left:-1.188693pt;}
._1{width:1.391585pt;}
._14{width:2.724170pt;}
._d{width:4.132042pt;}
._b{width:5.154987pt;}
._17{width:6.623467pt;}
._19{width:7.568000pt;}
._1b{width:8.629867pt;}
._16{width:9.732800pt;}
._15{width:11.394667pt;}
._a{width:12.663467pt;}
._f{width:14.933333pt;}
._8{width:17.322667pt;}
._1a{width:18.280333pt;}
._5{width:24.106667pt;}
._e{width:25.639253pt;}
._1d{width:28.277333pt;}
._11{width:30.994819pt;}
._10{width:31.987402pt;}
._2{width:136.095860pt;}
._3{width:162.468904pt;}
.fs8{font-size:34.666667pt;}
.fs5{font-size:42.666667pt;}
.fs1{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs4{font-size:53.333333pt;}
.fs0{font-size:55.886933pt;}
.fsb{font-size:58.666667pt;}
.fs7{font-size:59.733333pt;}
.fs9{font-size:61.333333pt;}
.fs3{font-size:64.000000pt;}
.fs6{font-size:74.666667pt;}
.fs2{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:34.728000pt;}
.y2f{bottom:49.128000pt;}
.y32{bottom:52.518933pt;}
.y33{bottom:53.740133pt;}
.y89{bottom:82.870800pt;}
.y22{bottom:98.650933pt;}
.y88{bottom:102.876133pt;}
.y21{bottom:111.450933pt;}
.y5f{bottom:116.877733pt;}
.y87{bottom:130.405867pt;}
.y5e{bottom:138.877733pt;}
.y86{bottom:150.411200pt;}
.y5d{bottom:160.877733pt;}
.y85{bottom:177.969867pt;}
.y84{bottom:205.528533pt;}
.y83{bottom:225.533867pt;}
.y4e{bottom:228.276800pt;}
.y1f{bottom:234.177600pt;}
.y4d{bottom:252.271467pt;}
.y1e{bottom:252.357600pt;}
.y82{bottom:253.092533pt;}
.y4c{bottom:274.271467pt;}
.y1d{bottom:279.102133pt;}
.y81{bottom:280.651200pt;}
.y80{bottom:308.209867pt;}
.y1c{bottom:332.304800pt;}
.ya2{bottom:346.123067pt;}
.y1b{bottom:362.305867pt;}
.y7f{bottom:363.327200pt;}
.ya1{bottom:366.128400pt;}
.y1a{bottom:380.972533pt;}
.y7e{bottom:383.332533pt;}
.y19{bottom:399.639200pt;}
.y7d{bottom:403.337867pt;}
.ya0{bottom:412.592400pt;}
.y18{bottom:418.318400pt;}
.y7c{bottom:423.343200pt;}
.y9f{bottom:432.597733pt;}
.y17{bottom:436.985067pt;}
.y7b{bottom:443.348533pt;}
.y9e{bottom:452.603067pt;}
.y16{bottom:455.651733pt;}
.y7a{bottom:463.221733pt;}
.y9d{bottom:472.608400pt;}
.y15{bottom:474.318400pt;}
.y5c{bottom:477.516800pt;}
.y14{bottom:492.985067pt;}
.y5b{bottom:497.522133pt;}
.y9c{bottom:500.167067pt;}
.y13{bottom:511.651733pt;}
.y5a{bottom:517.527467pt;}
.y79{bottom:518.339067pt;}
.y9b{bottom:520.172400pt;}
.y4b{bottom:529.469733pt;}
.y59{bottom:537.532800pt;}
.y78{bottom:538.344400pt;}
.y12{bottom:541.652800pt;}
.y9a{bottom:547.731067pt;}
.y4a{bottom:549.475067pt;}
.y58{bottom:557.538133pt;}
.y77{bottom:558.349733pt;}
.y11{bottom:560.319467pt;}
.y2e{bottom:564.624400pt;}
.y99{bottom:567.736400pt;}
.y49{bottom:569.480400pt;}
.y2d{bottom:577.419200pt;}
.y57{bottom:577.543467pt;}
.y76{bottom:578.355067pt;}
.y10{bottom:578.986133pt;}
.y48{bottom:589.485733pt;}
.y98{bottom:595.295067pt;}
.y56{bottom:597.548800pt;}
.yf{bottom:597.652800pt;}
.y75{bottom:598.360400pt;}
.y47{bottom:609.491067pt;}
.y2c{bottom:613.779200pt;}
.y97{bottom:615.300400pt;}
.y55{bottom:617.554133pt;}
.y74{bottom:618.365733pt;}
.ye{bottom:627.653867pt;}
.y2b{bottom:628.179200pt;}
.y46{bottom:629.496400pt;}
.y54{bottom:637.559467pt;}
.y73{bottom:638.371067pt;}
.y2a{bottom:642.579200pt;}
.y96{bottom:642.859067pt;}
.yd{bottom:646.320533pt;}
.y45{bottom:649.501733pt;}
.y29{bottom:656.979200pt;}
.y53{bottom:657.564800pt;}
.y72{bottom:658.376400pt;}
.y95{bottom:662.864400pt;}
.yc{bottom:664.987200pt;}
.y28{bottom:671.379200pt;}
.y44{bottom:677.060400pt;}
.y52{bottom:677.570133pt;}
.y71{bottom:678.381733pt;}
.y94{bottom:690.423067pt;}
.yb{bottom:694.988267pt;}
.y70{bottom:698.387067pt;}
.y27{bottom:700.899200pt;}
.y51{bottom:708.236800pt;}
.y93{bottom:710.428400pt;}
.y6f{bottom:718.392400pt;}
.y50{bottom:730.236800pt;}
.y92{bottom:730.433733pt;}
.y43{bottom:732.177733pt;}
.y6e{bottom:738.397733pt;}
.ya{bottom:738.818133pt;}
.y26{bottom:744.819200pt;}
.y42{bottom:752.183067pt;}
.y4f{bottom:752.236800pt;}
.y91{bottom:757.992400pt;}
.y6d{bottom:758.403067pt;}
.y25{bottom:759.219200pt;}
.y24{bottom:773.619200pt;}
.y90{bottom:777.997733pt;}
.y6c{bottom:778.408400pt;}
.y41{bottom:779.741733pt;}
.y9{bottom:782.026533pt;}
.y23{bottom:791.799200pt;}
.y8{bottom:794.826533pt;}
.y6b{bottom:798.413733pt;}
.y40{bottom:799.747067pt;}
.y8f{bottom:805.556400pt;}
.y6a{bottom:818.419067pt;}
.y7{bottom:819.054133pt;}
.y3f{bottom:819.752400pt;}
.y2{bottom:827.410667pt;}
.y6{bottom:835.054133pt;}
.y69{bottom:838.424400pt;}
.y3e{bottom:839.757733pt;}
.y68{bottom:858.429733pt;}
.y3d{bottom:859.763067pt;}
.y8e{bottom:860.673733pt;}
.y4{bottom:863.272800pt;}
.y67{bottom:878.435067pt;}
.y3c{bottom:879.768400pt;}
.y8d{bottom:888.232400pt;}
.y3{bottom:892.072800pt;}
.y66{bottom:898.440400pt;}
.y3b{bottom:899.773733pt;}
.y8c{bottom:915.791067pt;}
.y65{bottom:918.445733pt;}
.y3a{bottom:919.779067pt;}
.y64{bottom:938.451067pt;}
.y39{bottom:939.784400pt;}
.y8b{bottom:943.349733pt;}
.y63{bottom:958.456400pt;}
.y38{bottom:959.789733pt;}
.y20{bottom:965.583867pt;}
.y8a{bottom:970.908400pt;}
.y62{bottom:978.461733pt;}
.y37{bottom:979.795067pt;}
.y61{bottom:998.467067pt;}
.y36{bottom:999.800400pt;}
.y5{bottom:1003.715333pt;}
.y1{bottom:1005.702667pt;}
.y60{bottom:1026.025733pt;}
.y35{bottom:1027.359067pt;}
.y34{bottom:1064.443467pt;}
.y31{bottom:1064.445867pt;}
.hb{height:24.815104pt;}
.h7{height:31.916667pt;}
.h12{height:32.671875pt;}
.h3{height:35.531250pt;}
.hf{height:35.906250pt;}
.hc{height:36.093750pt;}
.he{height:36.583333pt;}
.h11{height:36.738281pt;}
.h16{height:40.046875pt;}
.h13{height:40.562500pt;}
.h2{height:41.369429pt;}
.h10{height:41.687500pt;}
.h14{height:44.114583pt;}
.ha{height:44.683333pt;}
.h9{height:44.916667pt;}
.h5{height:45.562500pt;}
.h6{height:45.729167pt;}
.h15{height:50.302083pt;}
.hd{height:53.156250pt;}
.h8{height:64.020833pt;}
.h4{height:71.062500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:17.722267pt;}
.xd{left:26.962267pt;}
.x11{left:28.978267pt;}
.xe{left:29.914267pt;}
.xf{left:31.054267pt;}
.x2{left:33.562933pt;}
.xa{left:40.605467pt;}
.x12{left:45.082267pt;}
.xc{left:54.026267pt;}
.x16{left:56.692933pt;}
.x15{left:59.212533pt;}
.x13{left:61.066267pt;}
.x9{left:64.749467pt;}
.x8{left:74.281067pt;}
.x19{left:80.688773pt;}
.x14{left:83.194267pt;}
.xb{left:84.338800pt;}
.x3{left:187.716533pt;}
.x5{left:189.133067pt;}
.x7{left:206.921600pt;}
.x6{left:215.152533pt;}
.x1{left:274.165600pt;}
.x18{left:460.966800pt;}
.x4{left:604.156267pt;}
.x17{left:721.332933pt;}
}




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