
    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_d3283d0305b7cad851f46509.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.861816;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_35c5f8631087732a154adb0e.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.861816;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_7f98df5333334167359bed59.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_9f6b3ce762d16e8081691b16.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_9d186374cd63ea2e48e4a449.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.009277;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_70130ac4ab55683d21f99bca.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.666504;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_d69979df9bd448139b4a661b.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.953613;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_dfe06e40ba130760cec255e1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.953613;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_597d6ca8124baa5c69f4bef2.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.953613;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_58ee11689aa08b851da084e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.860352;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_4435163bd654295506ea45f3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.932129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_1321346502ea5a3cba130741.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.933105;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_04928aacbd3ab26c3d0693bc.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.833496;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_ac688bd2f931d6d422e378c3.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.900879;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:fff;src:url('chunks/assets/font_5fcc7f9fd5256d2d72babe06.woff2')format("woff");}.fff{font-family:fff;line-height:0.684082;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);}
.v2{vertical-align:-72.000058px;}
.v3{vertical-align:-57.600046px;}
.v4{vertical-align:-47.520038px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:1.440001px;}
.v9{vertical-align:2.643752px;}
.v5{vertical-align:47.520038px;}
.v1{vertical-align:72.000058px;}
.v7{vertical-align:83.100066px;}
.v8{vertical-align:150.480120px;}
.ls12{letter-spacing:-0.612000px;}
.ls11{letter-spacing:-0.216000px;}
.lse{letter-spacing:-0.144000px;}
.ls13{letter-spacing:-0.067800px;}
.lsc{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.023040px;}
.ls6{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.108000px;}
.ls7{letter-spacing:0.131760px;}
.ls10{letter-spacing:0.144000px;}
.ls14{letter-spacing:0.205800px;}
.ls4{letter-spacing:0.216000px;}
.lsf{letter-spacing:0.288000px;}
.lsb{letter-spacing:0.300000px;}
.ls8{letter-spacing:0.360000px;}
.lsd{letter-spacing:1.026001px;}
.ls3{letter-spacing:73.440059px;}
.ls2{letter-spacing:81.756065px;}
.ls0{letter-spacing:396.372283px;}
.ls9{letter-spacing:652.844442px;}
.lsa{letter-spacing:673.964459px;}
.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;}
}
.wsb{word-spacing:-105.732085px;}
.ws9{word-spacing:-105.647845px;}
.wsc{word-spacing:-74.880060px;}
.wsa{word-spacing:-70.488056px;}
.ws5{word-spacing:-47.088038px;}
.ws2{word-spacing:-46.944038px;}
.ws3{word-spacing:-46.872037px;}
.ws1{word-spacing:-46.728037px;}
.ws0{word-spacing:-44.435556px;}
.wse{word-spacing:-42.016114px;}
.wsf{word-spacing:-41.921914px;}
.wsd{word-spacing:-41.716113px;}
.ws10{word-spacing:-39.601472px;}
.ws11{word-spacing:0.000000px;}
.ws8{word-spacing:134.712108px;}
.ws7{word-spacing:144.648116px;}
.ws6{word-spacing:149.400120px;}
.ws4{word-spacing:174.456140px;}
._9{margin-left:-396.350583px;}
._4{margin-left:-17.192818px;}
._f{margin-left:-13.608011px;}
._e{margin-left:-8.424007px;}
._6{margin-left:-6.003256px;}
._5{margin-left:-4.914846px;}
._0{margin-left:-3.275163px;}
._2{margin-left:-1.362657px;}
._1{width:1.091264px;}
._7{width:2.366017px;}
._8{width:4.368469px;}
._3{width:11.185333px;}
._10{width:30.960085px;}
._a{width:213.032796px;}
._12{width:324.214339px;}
._c{width:362.149707px;}
._13{width:363.876541px;}
._b{width:378.557388px;}
._11{width:764.373491px;}
._d{width:2746.304853px;}
.fc8{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(173,143,103);}
.fc3{color:rgb(41,41,52);}
.fc6{color:rgb(76,90,106);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(127,127,127);}
.fs8{font-size:128.160103px;}
.fs7{font-size:159.840128px;}
.fs9{font-size:192.240154px;}
.fsb{font-size:216.000173px;}
.fs6{font-size:239.760192px;}
.fs2{font-size:248.400199px;}
.fs1{font-size:272.880218px;}
.fs4{font-size:273.024218px;}
.fsc{font-size:300.240240px;}
.fsa{font-size:360.000288px;}
.fs3{font-size:364.320291px;}
.fs0{font-size:397.440318px;}
.fs5{font-size:491.760393px;}
.y0{bottom:0.000000px;}
.y5d{bottom:37.403430px;}
.y47{bottom:201.420161px;}
.y3a{bottom:220.350176px;}
.y39{bottom:285.150228px;}
.y46{bottom:287.280230px;}
.y38{bottom:349.950280px;}
.y45{bottom:352.080282px;}
.y37{bottom:414.750332px;}
.y44{bottom:416.880334px;}
.y36{bottom:491.430393px;}
.y43{bottom:502.560852px;}
.y35{bottom:556.230445px;}
.y42{bottom:567.390454px;}
.y34{bottom:621.030497px;}
.y41{bottom:632.190506px;}
.y33{bottom:697.890558px;}
.y40{bottom:718.050574px;}
.y32{bottom:762.735610px;}
.y3f{bottom:803.910643px;}
.y31{bottom:827.535662px;}
.y3e{bottom:868.710695px;}
.y30{bottom:904.395724px;}
.y3d{bottom:954.390764px;}
.y2f{bottom:969.195775px;}
.y3c{bottom:1019.190815px;}
.y2e{bottom:1045.875837px;}
.y3b{bottom:1083.990867px;}
.y2d{bottom:1110.675889px;}
.y26{bottom:1210.425968px;}
.y73{bottom:1359.751088px;}
.y1b{bottom:2290.575932px;}
.y1a{bottom:2372.655998px;}
.y19{bottom:2454.586964px;}
.y72{bottom:2522.312018px;}
.y18{bottom:2536.487029px;}
.y17{bottom:2618.567095px;}
.y60{bottom:2664.107131px;}
.y5c{bottom:2689.052151px;}
.y16{bottom:2700.467160px;}
.y6d{bottom:2775.092220px;}
.y5b{bottom:2778.152223px;}
.y6f{bottom:2806.817245px;}
.y15{bottom:2807.927246px;}
.y5a{bottom:2842.052274px;}
.y14{bottom:2889.827312px;}
.y6c{bottom:2900.988221px;}
.y71{bottom:2904.812324px;}
.y59{bottom:2905.772325px;}
.y58{bottom:2969.672376px;}
.y13{bottom:2971.727377px;}
.y70{bottom:2980.367384px;}
.y6b{bottom:3015.752413px;}
.y57{bottom:3033.617427px;}
.y12{bottom:3053.807443px;}
.y56{bottom:3097.337478px;}
.y64{bottom:3122.927498px;}
.y11{bottom:3135.707509px;}
.y6e{bottom:3146.552517px;}
.y55{bottom:3161.237529px;}
.y63{bottom:3180.572544px;}
.y10{bottom:3217.607574px;}
.y54{bottom:3225.137580px;}
.y6a{bottom:3267.752614px;}
.y68{bottom:3288.632631px;}
.y53{bottom:3288.857631px;}
.yf{bottom:3325.067660px;}
.y69{bottom:3325.352660px;}
.y52{bottom:3352.757682px;}
.ye{bottom:3406.967726px;}
.y61{bottom:3425.942741px;}
.y62{bottom:3427.772742px;}
.y51{bottom:3428.537743px;}
.yd{bottom:3489.047791px;}
.y50{bottom:3527.717822px;}
.y67{bottom:3554.282843px;}
.y4f{bottom:3586.037869px;}
.y65{bottom:3586.937870px;}
.yc{bottom:3596.552877px;}
.y66{bottom:3611.882890px;}
.y4e{bottom:3644.357915px;}
.yb{bottom:3678.452943px;}
.y4d{bottom:3714.737972px;}
.y2c{bottom:3738.527991px;}
.ya{bottom:3760.353008px;}
.y4c{bottom:3773.058018px;}
.y2b{bottom:3808.188047px;}
.y5f{bottom:3814.203051px;}
.y4b{bottom:3831.378065px;}
.y9{bottom:3842.433074px;}
.y2a{bottom:3877.848102px;}
.y5e{bottom:3883.683107px;}
.y4a{bottom:3901.577221px;}
.y8{bottom:3924.333139px;}
.y29{bottom:3948.948159px;}
.y49{bottom:3959.897268px;}
.y7{bottom:4006.233205px;}
.y28{bottom:4013.748211px;}
.y48{bottom:4018.248215px;}
.y6{bottom:4106.313285px;}
.y25{bottom:4115.628293px;}
.y27{bottom:4117.578294px;}
.y5{bottom:4219.893376px;}
.y22{bottom:4274.358419px;}
.y24{bottom:4280.733425px;}
.y4{bottom:4298.913439px;}
.y23{bottom:4338.333471px;}
.y21{bottom:4359.858488px;}
.y3{bottom:4380.993505px;}
.y20{bottom:4394.418516px;}
.y2{bottom:4462.893570px;}
.y1f{bottom:4493.268595px;}
.y1{bottom:4564.983652px;}
.y1e{bottom:4640.913713px;}
.y1d{bottom:4788.513831px;}
.y1c{bottom:4936.113949px;}
.hb{height:93.304059px;}
.h9{height:116.367984px;}
.h13{height:134.793389px;}
.h17{height:137.437141px;}
.h11{height:139.768354px;}
.h10{height:139.956089px;}
.he{height:145.494257px;}
.h14{height:146.934258px;}
.hf{height:151.453246px;}
.hd{height:163.476693px;}
.h4{height:169.804823px;}
.ha{height:174.551976px;}
.h3{height:186.539212px;}
.h6{height:186.637649px;}
.h8{height:188.368041px;}
.h12{height:227.232604px;}
.h15{height:229.014324px;}
.h5{height:249.047074px;}
.hc{height:262.090053px;}
.h2{height:271.687717px;}
.h16{height:295.974377px;}
.h7{height:358.015013px;}
.h0{height:5055.480000px;}
.h1{height:5055.750000px;}
.w0{width:3575.880000px;}
.w1{width:3576.000000px;}
.x0{left:0.000000px;}
.x14{left:53.351743px;}
.xe{left:100.151780px;}
.xf{left:137.410610px;}
.x12{left:152.355122px;}
.xb{left:169.770136px;}
.xa{left:177.150142px;}
.x23{left:184.860148px;}
.x24{left:214.710172px;}
.x6{left:414.210331px;}
.x7{left:436.710349px;}
.x5{left:461.955370px;}
.x3{left:616.213993px;}
.x13{left:691.485553px;}
.x4{left:1056.885846px;}
.x2{left:1787.911430px;}
.x10{left:1931.071545px;}
.x11{left:2018.911615px;}
.x8{left:2028.528123px;}
.xd{left:2093.611675px;}
.x1e{left:2132.851706px;}
.x9{left:2136.528209px;}
.x19{left:2143.291715px;}
.x18{left:2155.531724px;}
.xc{left:2160.286728px;}
.x1b{left:2161.336729px;}
.x1f{left:2223.211779px;}
.x1c{left:2257.096806px;}
.x16{left:2335.293368px;}
.x17{left:2640.812113px;}
.x15{left:2801.777241px;}
.x20{left:2901.092321px;}
.x21{left:2910.527328px;}
.x1a{left:2940.557352px;}
.x22{left:3026.012421px;}
.x1d{left:3227.192582px;}
.x1{left:3598.352879px;}
@media print{
.v2{vertical-align:-64.000051pt;}
.v3{vertical-align:-51.200041pt;}
.v4{vertical-align:-42.240034pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:1.280001pt;}
.v9{vertical-align:2.350002pt;}
.v5{vertical-align:42.240034pt;}
.v1{vertical-align:64.000051pt;}
.v7{vertical-align:73.866726pt;}
.v8{vertical-align:133.760107pt;}
.ls12{letter-spacing:-0.544000pt;}
.ls11{letter-spacing:-0.192000pt;}
.lse{letter-spacing:-0.128000pt;}
.ls13{letter-spacing:-0.060267pt;}
.lsc{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.020480pt;}
.ls6{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.096000pt;}
.ls7{letter-spacing:0.117120pt;}
.ls10{letter-spacing:0.128000pt;}
.ls14{letter-spacing:0.182933pt;}
.ls4{letter-spacing:0.192000pt;}
.lsf{letter-spacing:0.256000pt;}
.lsb{letter-spacing:0.266667pt;}
.ls8{letter-spacing:0.320000pt;}
.lsd{letter-spacing:0.912001pt;}
.ls3{letter-spacing:65.280052pt;}
.ls2{letter-spacing:72.672058pt;}
.ls0{letter-spacing:352.330919pt;}
.ls9{letter-spacing:580.306171pt;}
.lsa{letter-spacing:599.079519pt;}
.wsb{word-spacing:-93.984075pt;}
.ws9{word-spacing:-93.909195pt;}
.wsc{word-spacing:-66.560053pt;}
.wsa{word-spacing:-62.656050pt;}
.ws5{word-spacing:-41.856033pt;}
.ws2{word-spacing:-41.728033pt;}
.ws3{word-spacing:-41.664033pt;}
.ws1{word-spacing:-41.536033pt;}
.ws0{word-spacing:-39.498272pt;}
.wse{word-spacing:-37.347657pt;}
.wsf{word-spacing:-37.263923pt;}
.wsd{word-spacing:-37.080990pt;}
.ws10{word-spacing:-35.201308pt;}
.ws11{word-spacing:0.000000pt;}
.ws8{word-spacing:119.744096pt;}
.ws7{word-spacing:128.576103pt;}
.ws6{word-spacing:132.800106pt;}
.ws4{word-spacing:155.072124pt;}
._9{margin-left:-352.311629pt;}
._4{margin-left:-15.282505pt;}
._f{margin-left:-12.096010pt;}
._e{margin-left:-7.488006pt;}
._6{margin-left:-5.336227pt;}
._5{margin-left:-4.368752pt;}
._0{margin-left:-2.911256pt;}
._2{margin-left:-1.211251pt;}
._1{width:0.970013pt;}
._7{width:2.103126pt;}
._8{width:3.883084pt;}
._3{width:9.942518pt;}
._10{width:27.520075pt;}
._a{width:189.362485pt;}
._12{width:288.190524pt;}
._c{width:321.910851pt;}
._13{width:323.445814pt;}
._b{width:336.495456pt;}
._11{width:679.443104pt;}
._d{width:2441.159870pt;}
.fs8{font-size:113.920091pt;}
.fs7{font-size:142.080114pt;}
.fs9{font-size:170.880137pt;}
.fsb{font-size:192.000154pt;}
.fs6{font-size:213.120170pt;}
.fs2{font-size:220.800177pt;}
.fs1{font-size:242.560194pt;}
.fs4{font-size:242.688194pt;}
.fsc{font-size:266.880214pt;}
.fsa{font-size:320.000256pt;}
.fs3{font-size:323.840259pt;}
.fs0{font-size:353.280283pt;}
.fs5{font-size:437.120350pt;}
.y0{bottom:0.000000pt;}
.y5d{bottom:33.247493pt;}
.y47{bottom:179.040143pt;}
.y3a{bottom:195.866823pt;}
.y39{bottom:253.466869pt;}
.y46{bottom:255.360204pt;}
.y38{bottom:311.066916pt;}
.y45{bottom:312.960250pt;}
.y37{bottom:368.666962pt;}
.y44{bottom:370.560296pt;}
.y36{bottom:436.827016pt;}
.y43{bottom:446.720757pt;}
.y35{bottom:494.427062pt;}
.y42{bottom:504.347070pt;}
.y34{bottom:552.027108pt;}
.y41{bottom:561.947116pt;}
.y33{bottom:620.347163pt;}
.y40{bottom:638.267177pt;}
.y32{bottom:677.987209pt;}
.y3f{bottom:714.587238pt;}
.y31{bottom:735.587255pt;}
.y3e{bottom:772.187284pt;}
.y30{bottom:803.907310pt;}
.y3d{bottom:848.347345pt;}
.y2f{bottom:861.507356pt;}
.y3c{bottom:905.947391pt;}
.y2e{bottom:929.667410pt;}
.y3b{bottom:963.547438pt;}
.y2d{bottom:987.267456pt;}
.y26{bottom:1075.934194pt;}
.y73{bottom:1208.667634pt;}
.y1b{bottom:2036.067496pt;}
.y1a{bottom:2109.027554pt;}
.y19{bottom:2181.855079pt;}
.y72{bottom:2242.055127pt;}
.y18{bottom:2254.655137pt;}
.y17{bottom:2327.615195pt;}
.y60{bottom:2368.095228pt;}
.y5c{bottom:2390.268579pt;}
.y16{bottom:2400.415254pt;}
.y6d{bottom:2466.748640pt;}
.y5b{bottom:2469.468642pt;}
.y6f{bottom:2494.948663pt;}
.y15{bottom:2495.935330pt;}
.y5a{bottom:2526.268688pt;}
.y14{bottom:2568.735388pt;}
.y6c{bottom:2578.656196pt;}
.y71{bottom:2582.055399pt;}
.y59{bottom:2582.908733pt;}
.y58{bottom:2639.708778pt;}
.y13{bottom:2641.535447pt;}
.y70{bottom:2649.215453pt;}
.y6b{bottom:2680.668811pt;}
.y57{bottom:2696.548824pt;}
.y12{bottom:2714.495505pt;}
.y56{bottom:2753.188869pt;}
.y64{bottom:2775.935554pt;}
.y11{bottom:2787.295563pt;}
.y6e{bottom:2796.935571pt;}
.y55{bottom:2809.988915pt;}
.y63{bottom:2827.175595pt;}
.y10{bottom:2860.095621pt;}
.y54{bottom:2866.788960pt;}
.y6a{bottom:2904.668990pt;}
.y68{bottom:2923.229005pt;}
.y53{bottom:2923.429005pt;}
.yf{bottom:2955.615698pt;}
.y69{bottom:2955.869031pt;}
.y52{bottom:2980.229051pt;}
.ye{bottom:3028.415756pt;}
.y61{bottom:3045.282436pt;}
.y62{bottom:3046.909104pt;}
.y51{bottom:3047.589105pt;}
.yd{bottom:3101.375814pt;}
.y50{bottom:3135.749175pt;}
.y67{bottom:3159.362527pt;}
.y4f{bottom:3187.589217pt;}
.y65{bottom:3188.389217pt;}
.yc{bottom:3196.935891pt;}
.y66{bottom:3210.562568pt;}
.y4e{bottom:3239.429258pt;}
.yb{bottom:3269.735949pt;}
.y4d{bottom:3301.989308pt;}
.y2c{bottom:3323.135992pt;}
.ya{bottom:3342.536007pt;}
.y4c{bottom:3353.829350pt;}
.y2b{bottom:3385.056041pt;}
.y5f{bottom:3390.402712pt;}
.y4b{bottom:3405.669391pt;}
.y9{bottom:3415.496066pt;}
.y2a{bottom:3446.976091pt;}
.y5e{bottom:3452.162762pt;}
.y4a{bottom:3468.068641pt;}
.y8{bottom:3488.296124pt;}
.y29{bottom:3510.176141pt;}
.y49{bottom:3519.908683pt;}
.y7{bottom:3561.096182pt;}
.y28{bottom:3567.776188pt;}
.y48{bottom:3571.776191pt;}
.y6{bottom:3650.056253pt;}
.y25{bottom:3658.336260pt;}
.y27{bottom:3660.069595pt;}
.y5{bottom:3751.016334pt;}
.y22{bottom:3799.429706pt;}
.y24{bottom:3805.096377pt;}
.y4{bottom:3821.256390pt;}
.y23{bottom:3856.296418pt;}
.y21{bottom:3875.429767pt;}
.y3{bottom:3894.216449pt;}
.y20{bottom:3906.149792pt;}
.y2{bottom:3967.016507pt;}
.y1f{bottom:3994.016529pt;}
.y1{bottom:4057.763246pt;}
.y1e{bottom:4125.256634pt;}
.y1d{bottom:4256.456738pt;}
.y1c{bottom:4387.656843pt;}
.hb{height:82.936941pt;}
.h9{height:103.438208pt;}
.h13{height:119.816346pt;}
.h17{height:122.166348pt;}
.h11{height:124.238537pt;}
.h10{height:124.405412pt;}
.he{height:129.328228pt;}
.h14{height:130.608229pt;}
.hf{height:134.625108pt;}
.hd{height:145.312616pt;}
.h4{height:150.937621pt;}
.ha{height:155.157312pt;}
.h3{height:165.812633pt;}
.h6{height:165.900133pt;}
.h8{height:167.438259pt;}
.h12{height:201.984537pt;}
.h15{height:203.568288pt;}
.h5{height:221.375177pt;}
.hc{height:232.968936pt;}
.h2{height:241.500193pt;}
.h16{height:263.088335pt;}
.h7{height:318.235567pt;}
.h0{height:4493.760000pt;}
.h1{height:4494.000000pt;}
.w0{width:3178.560000pt;}
.w1{width:3178.666667pt;}
.x0{left:0.000000pt;}
.x14{left:47.423771pt;}
.xe{left:89.023805pt;}
.xf{left:122.142764pt;}
.x12{left:135.426775pt;}
.xb{left:150.906787pt;}
.xa{left:157.466793pt;}
.x23{left:164.320131pt;}
.x24{left:190.853486pt;}
.x6{left:368.186961pt;}
.x7{left:388.186977pt;}
.x5{left:410.626995pt;}
.x3{left:547.745772pt;}
.x13{left:614.653825pt;}
.x4{left:939.454085pt;}
.x2{left:1589.254605pt;}
.x10{left:1716.508040pt;}
.x11{left:1794.588102pt;}
.x8{left:1803.136109pt;}
.xd{left:1860.988155pt;}
.x1e{left:1895.868183pt;}
.x9{left:1899.136186pt;}
.x19{left:1905.148191pt;}
.x18{left:1916.028199pt;}
.xc{left:1920.254870pt;}
.x1b{left:1921.188204pt;}
.x1f{left:1976.188248pt;}
.x1c{left:2006.308272pt;}
.x16{left:2075.816327pt;}
.x17{left:2347.388545pt;}
.x15{left:2490.468659pt;}
.x20{left:2578.748730pt;}
.x21{left:2587.135403pt;}
.x1a{left:2613.828758pt;}
.x22{left:2689.788818pt;}
.x1d{left:2868.615628pt;}
.x1{left:3198.535892pt;}
}




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