
    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_614f775e7db2e83f9420766a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.936000;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_614f775e7db2e83f9420766a.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.936000;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_7fba9fc2a6a54dcea53bd57d.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.140000;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_614f775e7db2e83f9420766a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.936000;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_7fba9fc2a6a54dcea53bd57d.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.140000;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_56f7b74cdfedb3b7cc2ea1cd.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.984000;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_fd136420c835995841b4d580.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.133000;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_614f775e7db2e83f9420766a.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.936000;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_7fba9fc2a6a54dcea53bd57d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.140000;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_1a7ad25933ad28f0b66824f9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.901000;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_78dd8a7c31e0d62f2425c134.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.876000;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_76e33f581e3aa8cd615fb1ba.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.058000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249996,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-23.409000px;}
.v1{vertical-align:-18.420318px;}
.v0{vertical-align:0.000000px;}
.ls18{letter-spacing:-9.832800px;}
.ls15{letter-spacing:-2.602235px;}
.ls1{letter-spacing:-1.200000px;}
.ls13{letter-spacing:-1.023351px;}
.ls2{letter-spacing:-0.960000px;}
.ls19{letter-spacing:-0.916800px;}
.ls12{letter-spacing:-0.847919px;}
.lsd{letter-spacing:-0.730965px;}
.lse{letter-spacing:-0.701726px;}
.ls8{letter-spacing:-0.686999px;}
.lsb{letter-spacing:-0.672488px;}
.ls16{letter-spacing:-0.555533px;}
.lsf{letter-spacing:-0.526295px;}
.lsa{letter-spacing:-0.497056px;}
.ls7{letter-spacing:-0.457999px;}
.ls14{letter-spacing:-0.350863px;}
.ls10{letter-spacing:-0.263147px;}
.ls5{letter-spacing:-0.232443px;}
.ls6{letter-spacing:-0.229000px;}
.ls9{letter-spacing:-0.114500px;}
.ls11{letter-spacing:-0.058477px;}
.lsc{letter-spacing:-0.029239px;}
.ls0{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.058477px;}
.ls4{letter-spacing:0.087716px;}
.ls3{letter-spacing:0.146193px;}
.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;}
}
.ws1a{word-spacing:-9.832800px;}
.ws3{word-spacing:-8.587485px;}
.ws6{word-spacing:-8.472985px;}
.ws2{word-spacing:-8.358485px;}
.ws4{word-spacing:-8.129486px;}
.ws5{word-spacing:-7.900486px;}
.wsb{word-spacing:-6.724878px;}
.ws9{word-spacing:-6.578685px;}
.ws11{word-spacing:-6.227822px;}
.ws7{word-spacing:-6.081629px;}
.wse{word-spacing:-6.052390px;}
.ws8{word-spacing:-5.906197px;}
.wsd{word-spacing:-5.876959px;}
.wsc{word-spacing:-5.847720px;}
.wsf{word-spacing:-5.730766px;}
.ws10{word-spacing:-5.555334px;}
.ws1{word-spacing:-5.191227px;}
.ws12{word-spacing:-3.976450px;}
.ws19{word-spacing:-0.058477px;}
.ws0{word-spacing:0.000000px;}
.ws15{word-spacing:0.029239px;}
.ws17{word-spacing:0.058477px;}
.ws14{word-spacing:0.114500px;}
.ws16{word-spacing:0.263147px;}
.ws18{word-spacing:0.555533px;}
.wsa{word-spacing:464.425922px;}
.ws13{word-spacing:1609.325933px;}
._9{margin-left:-14.552544px;}
._a{margin-left:-10.754458px;}
._0{margin-left:-9.394200px;}
._7{margin-left:-7.797600px;}
._c{margin-left:-6.784320px;}
._6{margin-left:-5.521800px;}
._1{margin-left:-4.441800px;}
._2{margin-left:-3.301200px;}
._4{margin-left:-1.728000px;}
._3{width:1.198200px;}
._5{width:2.602235px;}
._b{width:8.930808px;}
._8{width:10.734792px;}
.fc5{color:transparent;}
.fc4{color:rgb(7,7,10);}
.fc3{color:rgb(39,55,93);}
.fc2{color:rgb(175,170,174);}
.fc1{color:rgb(32,35,41);}
.fc6{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:25.827000px;}
.fs6{font-size:29.238600px;}
.fs4{font-size:34.436400px;}
.fs5{font-size:38.166600px;}
.fs2{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fsa{font-size:91.680000px;}
.fs0{font-size:102.000000px;}
.fs9{font-size:196.656000px;}
.fs8{font-size:217.501800px;}
.fs7{font-size:226.800000px;}
.y9{bottom:-6.575850px;}
.yc{bottom:-6.559950px;}
.y2a{bottom:-2.501700px;}
.y1d{bottom:-2.032800px;}
.y2c{bottom:-1.781700px;}
.y19{bottom:-1.222650px;}
.yb{bottom:-0.404400px;}
.ye{bottom:-0.000750px;}
.y1b{bottom:-0.000300px;}
.y12{bottom:-0.000150px;}
.y0{bottom:0.000000px;}
.y26{bottom:0.000300px;}
.y22{bottom:0.000450px;}
.y6{bottom:0.086400px;}
.y8{bottom:0.086550px;}
.y1f{bottom:0.113700px;}
.y17{bottom:0.113850px;}
.y24{bottom:0.114450px;}
.y28{bottom:0.115800px;}
.y10{bottom:2.309250px;}
.y15{bottom:2.309850px;}
.y3{bottom:52.260000px;}
.y65{bottom:75.785100px;}
.y64{bottom:98.705100px;}
.y63{bottom:121.625100px;}
.y2{bottom:138.660000px;}
.y58{bottom:143.160000px;}
.y5a{bottom:254.285250px;}
.y4{bottom:296.738400px;}
.y42{bottom:386.276490px;}
.y45{bottom:411.575189px;}
.y46{bottom:412.861687px;}
.y44{bottom:418.760575px;}
.y41{bottom:431.457437px;}
.y48{bottom:442.253790px;}
.y3f{bottom:452.487300px;}
.y4a{bottom:458.890553px;}
.y47{bottom:467.844875px;}
.y43{bottom:488.545803px;}
.y49{bottom:489.123266px;}
.y40{bottom:494.305808px;}
.y3c{bottom:527.014296px;}
.y36{bottom:535.124699px;}
.y3b{bottom:536.555946px;}
.y3a{bottom:541.927895px;}
.y35{bottom:544.666349px;}
.y39{bottom:551.469545px;}
.y1{bottom:555.897150px;}
.y5{bottom:564.516000px;}
.y7{bottom:577.842000px;}
.yf{bottom:580.179000px;}
.yd{bottom:582.489000px;}
.ya{bottom:584.488500px;}
.y34{bottom:584.521821px;}
.y2f{bottom:601.887624px;}
.y2e{bottom:611.429274px;}
.y1e{bottom:681.283500px;}
.y20{bottom:681.397200px;}
.y1a{bottom:681.397500px;}
.y1c{bottom:683.430000px;}
.y38{bottom:683.430565px;}
.y14{bottom:688.629000px;}
.y16{bottom:690.825000px;}
.y13{bottom:690.938850px;}
.y11{bottom:690.939000px;}
.y18{bottom:692.161500px;}
.y37{bottom:692.972215px;}
.y62{bottom:696.702600px;}
.y31{bottom:703.487113px;}
.y30{bottom:713.028763px;}
.y27{bottom:725.469000px;}
.y25{bottom:725.584500px;}
.y2b{bottom:727.366500px;}
.y3e{bottom:727.617946px;}
.y29{bottom:728.086500px;}
.y23{bottom:735.012000px;}
.y21{bottom:735.126000px;}
.y3d{bottom:737.159596px;}
.y61{bottom:739.721250px;}
.y2d{bottom:749.038950px;}
.y33{bottom:749.620991px;}
.y32{bottom:759.162641px;}
.y53{bottom:771.837300px;}
.y57{bottom:777.023145px;}
.y60{bottom:782.739600px;}
.y4d{bottom:800.843100px;}
.y51{bottom:804.700500px;}
.y4b{bottom:818.210400px;}
.y52{bottom:818.498400px;}
.y56{bottom:819.938100px;}
.y5f{bottom:825.758100px;}
.y54{bottom:843.907350px;}
.y4e{bottom:854.625150px;}
.y50{bottom:856.016550px;}
.y5e{bottom:868.776600px;}
.y4c{bottom:872.742750px;}
.y55{bottom:882.494550px;}
.y4f{bottom:883.863600px;}
.y5d{bottom:911.795250px;}
.y5c{bottom:954.813750px;}
.y59{bottom:974.724150px;}
.y5b{bottom:997.832100px;}
.h8{height:0.328500px;}
.ha{height:0.345000px;}
.h12{height:0.777000px;}
.h19{height:2.287500px;}
.h18{height:2.902500px;}
.h16{height:2.922000px;}
.h1a{height:3.007500px;}
.h1b{height:3.009000px;}
.h13{height:4.570500px;}
.h10{height:4.903500px;}
.h11{height:4.905000px;}
.he{height:6.601500px;}
.hb{height:6.603000px;}
.h7{height:6.646500px;}
.h14{height:6.937500px;}
.h15{height:7.012500px;}
.hf{height:7.099500px;}
.h17{height:7.195500px;}
.hd{height:9.388500px;}
.h5{height:13.654500px;}
.h4{height:19.163634px;}
.h6{height:25.551809px;}
.h1c{height:26.051593px;}
.hc{height:34.006441px;}
.h3{height:43.200000px;}
.h21{height:53.520000px;}
.h2{height:54.000000px;}
.h20{height:82.695360px;}
.h1{height:90.984000px;}
.h9{height:120.567000px;}
.h1e{height:147.901224px;}
.h1f{height:176.990400px;}
.h1d{height:201.625200px;}
.h0{height:1122.000000px;}
.wc{width:0.030000px;}
.wb{width:0.031500px;}
.w1c{width:0.324000px;}
.w1b{width:0.325500px;}
.w2{width:0.397500px;}
.w18{width:0.534000px;}
.w15{width:0.543000px;}
.w14{width:0.544500px;}
.w4{width:1.351500px;}
.w1a{width:1.380000px;}
.we{width:2.901000px;}
.w19{width:3.291000px;}
.w9{width:3.618000px;}
.wd{width:3.850500px;}
.w1{width:4.218000px;}
.wa{width:4.515000px;}
.w10{width:5.371500px;}
.w5{width:6.241500px;}
.w16{width:6.363000px;}
.w7{width:6.498000px;}
.w3{width:8.472000px;}
.w12{width:9.055500px;}
.wf{width:12.682500px;}
.w11{width:16.300500px;}
.w13{width:17.289000px;}
.w17{width:19.074000px;}
.w8{width:19.104000px;}
.w6{width:26.094000px;}
.w0{width:1536.000000px;}
.x20{left:-9.351150px;}
.x22{left:-6.505650px;}
.x13{left:-4.578450px;}
.x15{left:-2.608350px;}
.xd{left:-1.054800px;}
.x0{left:0.000000px;}
.x9{left:1.373100px;}
.x5{left:4.218600px;}
.x7{left:6.387600px;}
.x10{left:7.767900px;}
.x1d{left:10.610400px;}
.x2{left:54.000000px;}
.x48{left:96.840000px;}
.x47{left:324.682650px;}
.x46{left:435.146250px;}
.x29{left:503.200432px;}
.xb{left:505.596000px;}
.xc{left:511.860000px;}
.x2e{left:521.129193px;}
.x1e{left:523.456500px;}
.x21{left:529.668000px;}
.x1f{left:532.513500px;}
.x1{left:539.878950px;}
.x23{left:549.420000px;}
.x24{left:552.711000px;}
.x42{left:556.294800px;}
.x37{left:558.151931px;}
.x36{left:599.144449px;}
.x43{left:611.380500px;}
.x41{left:617.218800px;}
.x39{left:619.655327px;}
.x2a{left:626.316342px;}
.x44{left:644.663550px;}
.x3a{left:656.576369px;}
.x27{left:673.299427px;}
.x3{left:683.821950px;}
.x45{left:688.367947px;}
.x30{left:689.623296px;}
.x35{left:716.230422px;}
.x3c{left:725.512050px;}
.x25{left:750.634500px;}
.x31{left:781.249759px;}
.x33{left:793.303372px;}
.x3d{left:799.161150px;}
.x3e{left:800.234550px;}
.x2d{left:804.497114px;}
.x32{left:828.455479px;}
.x3f{left:846.708600px;}
.x26{left:848.722662px;}
.xa{left:852.849300px;}
.x3b{left:859.800750px;}
.x2f{left:866.648400px;}
.x40{left:890.412900px;}
.x34{left:896.025883px;}
.x28{left:908.596516px;}
.x2c{left:925.323028px;}
.x38{left:963.303902px;}
.x2b{left:988.546001px;}
.xe{left:990.360000px;}
.x16{left:992.106000px;}
.x14{left:993.189000px;}
.xf{left:996.362850px;}
.x17{left:997.765500px;}
.x18{left:1002.479250px;}
.x19{left:1009.969950px;}
.x1a{left:1012.497000px;}
.x11{left:1017.039000px;}
.x1b{left:1018.528500px;}
.x12{left:1020.625500px;}
.x1c{left:1023.241800px;}
.x6{left:1042.941000px;}
.x4{left:1045.110000px;}
.x8{left:1047.955500px;}
@media print{
.v2{vertical-align:-20.808000pt;}
.v1{vertical-align:-16.373616pt;}
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-8.740267pt;}
.ls15{letter-spacing:-2.313098pt;}
.ls1{letter-spacing:-1.066667pt;}
.ls13{letter-spacing:-0.909645pt;}
.ls2{letter-spacing:-0.853333pt;}
.ls19{letter-spacing:-0.814933pt;}
.ls12{letter-spacing:-0.753706pt;}
.lsd{letter-spacing:-0.649747pt;}
.lse{letter-spacing:-0.623757pt;}
.ls8{letter-spacing:-0.610666pt;}
.lsb{letter-spacing:-0.597767pt;}
.ls16{letter-spacing:-0.493807pt;}
.lsf{letter-spacing:-0.467818pt;}
.lsa{letter-spacing:-0.441828pt;}
.ls7{letter-spacing:-0.407110pt;}
.ls14{letter-spacing:-0.311878pt;}
.ls10{letter-spacing:-0.233909pt;}
.ls5{letter-spacing:-0.206616pt;}
.ls6{letter-spacing:-0.203555pt;}
.ls9{letter-spacing:-0.101778pt;}
.ls11{letter-spacing:-0.051980pt;}
.lsc{letter-spacing:-0.025990pt;}
.ls0{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.051980pt;}
.ls4{letter-spacing:0.077970pt;}
.ls3{letter-spacing:0.129949pt;}
.ws1a{word-spacing:-8.740267pt;}
.ws3{word-spacing:-7.633320pt;}
.ws6{word-spacing:-7.531542pt;}
.ws2{word-spacing:-7.429765pt;}
.ws4{word-spacing:-7.226210pt;}
.ws5{word-spacing:-7.022654pt;}
.wsb{word-spacing:-5.977669pt;}
.ws9{word-spacing:-5.847720pt;}
.ws11{word-spacing:-5.535842pt;}
.ws7{word-spacing:-5.405892pt;}
.wse{word-spacing:-5.379902pt;}
.ws8{word-spacing:-5.249953pt;}
.wsd{word-spacing:-5.223963pt;}
.wsc{word-spacing:-5.197973pt;}
.wsf{word-spacing:-5.094014pt;}
.ws10{word-spacing:-4.938075pt;}
.ws1{word-spacing:-4.614424pt;}
.ws12{word-spacing:-3.534622pt;}
.ws19{word-spacing:-0.051980pt;}
.ws0{word-spacing:0.000000pt;}
.ws15{word-spacing:0.025990pt;}
.ws17{word-spacing:0.051980pt;}
.ws14{word-spacing:0.101778pt;}
.ws16{word-spacing:0.233909pt;}
.ws18{word-spacing:0.493807pt;}
.wsa{word-spacing:412.823042pt;}
.ws13{word-spacing:1430.511940pt;}
._9{margin-left:-12.935595pt;}
._a{margin-left:-9.559518pt;}
._0{margin-left:-8.350400pt;}
._7{margin-left:-6.931200pt;}
._c{margin-left:-6.030507pt;}
._6{margin-left:-4.908267pt;}
._1{margin-left:-3.948267pt;}
._2{margin-left:-2.934400pt;}
._4{margin-left:-1.536000pt;}
._3{width:1.065067pt;}
._5{width:2.313098pt;}
._b{width:7.938496pt;}
._8{width:9.542037pt;}
.fs3{font-size:22.957333pt;}
.fs6{font-size:25.989867pt;}
.fs4{font-size:30.610133pt;}
.fs5{font-size:33.925867pt;}
.fs2{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fsa{font-size:81.493333pt;}
.fs0{font-size:90.666667pt;}
.fs9{font-size:174.805333pt;}
.fs8{font-size:193.334933pt;}
.fs7{font-size:201.600000pt;}
.y9{bottom:-5.845200pt;}
.yc{bottom:-5.831067pt;}
.y2a{bottom:-2.223733pt;}
.y1d{bottom:-1.806933pt;}
.y2c{bottom:-1.583733pt;}
.y19{bottom:-1.086800pt;}
.yb{bottom:-0.359467pt;}
.ye{bottom:-0.000667pt;}
.y1b{bottom:-0.000267pt;}
.y12{bottom:-0.000133pt;}
.y0{bottom:0.000000pt;}
.y26{bottom:0.000267pt;}
.y22{bottom:0.000400pt;}
.y6{bottom:0.076800pt;}
.y8{bottom:0.076933pt;}
.y1f{bottom:0.101067pt;}
.y17{bottom:0.101200pt;}
.y24{bottom:0.101733pt;}
.y28{bottom:0.102933pt;}
.y10{bottom:2.052667pt;}
.y15{bottom:2.053200pt;}
.y3{bottom:46.453333pt;}
.y65{bottom:67.364533pt;}
.y64{bottom:87.737867pt;}
.y63{bottom:108.111200pt;}
.y2{bottom:123.253333pt;}
.y58{bottom:127.253333pt;}
.y5a{bottom:226.031333pt;}
.y4{bottom:263.767467pt;}
.y42{bottom:343.356880pt;}
.y45{bottom:365.844612pt;}
.y46{bottom:366.988167pt;}
.y44{bottom:372.231622pt;}
.y41{bottom:383.517722pt;}
.y48{bottom:393.114480pt;}
.y3f{bottom:402.210933pt;}
.y4a{bottom:407.902714pt;}
.y47{bottom:415.862111pt;}
.y43{bottom:434.262936pt;}
.y49{bottom:434.776236pt;}
.y40{bottom:439.382940pt;}
.y3c{bottom:468.457152pt;}
.y36{bottom:475.666399pt;}
.y3b{bottom:476.938619pt;}
.y3a{bottom:481.713685pt;}
.y35{bottom:484.147865pt;}
.y39{bottom:490.195151pt;}
.y1{bottom:494.130800pt;}
.y5{bottom:501.792000pt;}
.y7{bottom:513.637333pt;}
.yf{bottom:515.714667pt;}
.yd{bottom:517.768000pt;}
.ya{bottom:519.545333pt;}
.y34{bottom:519.574952pt;}
.y2f{bottom:535.011221pt;}
.y2e{bottom:543.492688pt;}
.y1e{bottom:605.585333pt;}
.y20{bottom:605.686400pt;}
.y1a{bottom:605.686667pt;}
.y1c{bottom:607.493333pt;}
.y38{bottom:607.493835pt;}
.y14{bottom:612.114667pt;}
.y16{bottom:614.066667pt;}
.y13{bottom:614.167867pt;}
.y11{bottom:614.168000pt;}
.y18{bottom:615.254667pt;}
.y37{bottom:615.975302pt;}
.y62{bottom:619.291200pt;}
.y31{bottom:625.321878pt;}
.y30{bottom:633.803345pt;}
.y27{bottom:644.861333pt;}
.y25{bottom:644.964000pt;}
.y2b{bottom:646.548000pt;}
.y3e{bottom:646.771507pt;}
.y29{bottom:647.188000pt;}
.y23{bottom:653.344000pt;}
.y21{bottom:653.445333pt;}
.y3d{bottom:655.252974pt;}
.y61{bottom:657.530000pt;}
.y2d{bottom:665.812400pt;}
.y33{bottom:666.329769pt;}
.y32{bottom:674.811236pt;}
.y53{bottom:686.077600pt;}
.y57{bottom:690.687240pt;}
.y60{bottom:695.768533pt;}
.y4d{bottom:711.860533pt;}
.y51{bottom:715.289333pt;}
.y4b{bottom:727.298133pt;}
.y52{bottom:727.554133pt;}
.y56{bottom:728.833867pt;}
.y5f{bottom:734.007200pt;}
.y54{bottom:750.139867pt;}
.y4e{bottom:759.666800pt;}
.y50{bottom:760.903600pt;}
.y5e{bottom:772.245867pt;}
.y4c{bottom:775.771333pt;}
.y55{bottom:784.439600pt;}
.y4f{bottom:785.656533pt;}
.y5d{bottom:810.484667pt;}
.y5c{bottom:848.723333pt;}
.y59{bottom:866.421467pt;}
.y5b{bottom:886.961867pt;}
.h8{height:0.292000pt;}
.ha{height:0.306667pt;}
.h12{height:0.690667pt;}
.h19{height:2.033333pt;}
.h18{height:2.580000pt;}
.h16{height:2.597333pt;}
.h1a{height:2.673333pt;}
.h1b{height:2.674667pt;}
.h13{height:4.062667pt;}
.h10{height:4.358667pt;}
.h11{height:4.360000pt;}
.he{height:5.868000pt;}
.hb{height:5.869333pt;}
.h7{height:5.908000pt;}
.h14{height:6.166667pt;}
.h15{height:6.233333pt;}
.hf{height:6.310667pt;}
.h17{height:6.396000pt;}
.hd{height:8.345333pt;}
.h5{height:12.137333pt;}
.h4{height:17.034341pt;}
.h6{height:22.712719pt;}
.h1c{height:23.156971pt;}
.hc{height:30.227947pt;}
.h3{height:38.400000pt;}
.h21{height:47.573333pt;}
.h2{height:48.000000pt;}
.h20{height:73.506987pt;}
.h1{height:80.874667pt;}
.h9{height:107.170667pt;}
.h1e{height:131.467755pt;}
.h1f{height:157.324800pt;}
.h1d{height:179.222400pt;}
.h0{height:997.333333pt;}
.wc{width:0.026667pt;}
.wb{width:0.028000pt;}
.w1c{width:0.288000pt;}
.w1b{width:0.289333pt;}
.w2{width:0.353333pt;}
.w18{width:0.474667pt;}
.w15{width:0.482667pt;}
.w14{width:0.484000pt;}
.w4{width:1.201333pt;}
.w1a{width:1.226667pt;}
.we{width:2.578667pt;}
.w19{width:2.925333pt;}
.w9{width:3.216000pt;}
.wd{width:3.422667pt;}
.w1{width:3.749333pt;}
.wa{width:4.013333pt;}
.w10{width:4.774667pt;}
.w5{width:5.548000pt;}
.w16{width:5.656000pt;}
.w7{width:5.776000pt;}
.w3{width:7.530667pt;}
.w12{width:8.049333pt;}
.wf{width:11.273333pt;}
.w11{width:14.489333pt;}
.w13{width:15.368000pt;}
.w17{width:16.954667pt;}
.w8{width:16.981333pt;}
.w6{width:23.194667pt;}
.w0{width:1365.333333pt;}
.x20{left:-8.312133pt;}
.x22{left:-5.782800pt;}
.x13{left:-4.069733pt;}
.x15{left:-2.318533pt;}
.xd{left:-0.937600pt;}
.x0{left:0.000000pt;}
.x9{left:1.220533pt;}
.x5{left:3.749867pt;}
.x7{left:5.677867pt;}
.x10{left:6.904800pt;}
.x1d{left:9.431467pt;}
.x2{left:48.000000pt;}
.x48{left:86.080000pt;}
.x47{left:288.606800pt;}
.x46{left:386.796667pt;}
.x29{left:447.289273pt;}
.xb{left:449.418667pt;}
.xc{left:454.986667pt;}
.x2e{left:463.225949pt;}
.x1e{left:465.294667pt;}
.x21{left:470.816000pt;}
.x1f{left:473.345333pt;}
.x1{left:479.892400pt;}
.x23{left:488.373333pt;}
.x24{left:491.298667pt;}
.x42{left:494.484267pt;}
.x37{left:496.135050pt;}
.x36{left:532.572843pt;}
.x43{left:543.449333pt;}
.x41{left:548.638933pt;}
.x39{left:550.804735pt;}
.x2a{left:556.725637pt;}
.x44{left:573.034267pt;}
.x3a{left:583.623439pt;}
.x27{left:598.488379pt;}
.x3{left:607.841733pt;}
.x45{left:611.882620pt;}
.x30{left:612.998486pt;}
.x35{left:636.649264pt;}
.x3c{left:644.899600pt;}
.x25{left:667.230667pt;}
.x31{left:694.444230pt;}
.x33{left:705.158553pt;}
.x3d{left:710.365467pt;}
.x3e{left:711.319600pt;}
.x2d{left:715.108546pt;}
.x32{left:736.404870pt;}
.x3f{left:752.629867pt;}
.x26{left:754.420144pt;}
.xa{left:758.088267pt;}
.x3b{left:764.267333pt;}
.x2f{left:770.354133pt;}
.x40{left:791.478133pt;}
.x34{left:796.467452pt;}
.x28{left:807.641347pt;}
.x2c{left:822.509358pt;}
.x38{left:856.270135pt;}
.x2b{left:878.707557pt;}
.xe{left:880.320000pt;}
.x16{left:881.872000pt;}
.x14{left:882.834667pt;}
.xf{left:885.655867pt;}
.x17{left:886.902667pt;}
.x18{left:891.092667pt;}
.x19{left:897.751067pt;}
.x1a{left:899.997333pt;}
.x11{left:904.034667pt;}
.x1b{left:905.358667pt;}
.x12{left:907.222667pt;}
.x1c{left:909.548267pt;}
.x6{left:927.058667pt;}
.x4{left:928.986667pt;}
.x8{left:931.516000pt;}
}




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