
    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_e1cfb58cbee8aa8d69d66d28.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;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_8526edc4c5adac254224b870.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_e070ec28e84ec2538d895292.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.669434;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_2eb1643ba864f90650770ca5.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.893555;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_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6638b41e120afb44bc817a69.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938965;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_7cdd1b878c6f354f0cfa1950.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.866699;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_283843fd56f3a53a2f469d8c.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.774414;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_b6b0682cf00b8383f9eb7086.woff2')format("woff");}.ff9{font-family:ff9;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;}
.m2{transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249517,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249518,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249519,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249523,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249524,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255460,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-7.919997px;}
.v0{vertical-align:0.000000px;}
.ls7{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.034440px;}
.ls6{letter-spacing:0.034446px;}
.ls8{letter-spacing:0.068906px;}
.ls1{letter-spacing:0.069038px;}
.ls4{letter-spacing:0.274574px;}
.ls3{letter-spacing:53.416384px;}
.ls2{letter-spacing:66.401180px;}
.ls0{letter-spacing:1561.095449px;}
.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;}
}
.ws4{word-spacing:-32.399987px;}
.ws5{word-spacing:-19.727992px;}
.ws1{word-spacing:-18.069031px;}
.ws2{word-spacing:-17.999993px;}
.ws6{word-spacing:-16.613273px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.939994px;}
.ws8{word-spacing:-12.059995px;}
.ws7{word-spacing:0.000000px;}
._c{margin-left:-99.599173px;}
._b{margin-left:-98.484354px;}
._17{margin-left:-5.033992px;}
._e{margin-left:-3.524203px;}
._1{margin-left:-1.750117px;}
._0{width:1.152887px;}
._4{width:2.274464px;}
._3{width:3.301054px;}
._2{width:4.448282px;}
._5{width:5.484675px;}
._6{width:7.012641px;}
._8{width:8.089882px;}
._d{width:9.188301px;}
._f{width:11.220333px;}
._10{width:12.473411px;}
._7{width:13.631317px;}
._13{width:15.056701px;}
._16{width:16.612630px;}
._14{width:19.068309px;}
._a{width:20.083825px;}
._9{width:21.099507px;}
._15{width:31.809864px;}
._11{width:50.476816px;}
._12{width:51.820514px;}
.fc11{color:rgb(0,101,204);}
.fce{color:rgb(153,142,164);}
.fcd{color:rgb(225,216,236);}
.fc0{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fc9{color:rgb(51,51,51);}
.fc10{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc4{color:rgb(192,0,0);}
.fc5{color:rgb(79,129,189);}
.fcf{color:rgb(243,238,248);}
.fc1{color:rgb(0,0,0);}
.fc8{color:rgb(44,62,80);}
.fcb{color:rgb(180,172,188);}
.fc6{color:rgb(83,129,53);}
.fc12{color:transparent;}
.fc7{color:rgb(0,32,96);}
.fca{color:rgb(0,0,255);}
.fcc{color:rgb(205,196,214);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:71.999971px;}
.fs4{font-size:84.239966px;}
.y4{bottom:-15.839994px;}
.y46{bottom:-9.360157px;}
.y0{bottom:0.000000px;}
.y2c{bottom:3.599781px;}
.y3f{bottom:4.319578px;}
.y9{bottom:4.319980px;}
.ya{bottom:27.899989px;}
.y8{bottom:45.180000px;}
.y6{bottom:49.499980px;}
.y7{bottom:51.479979px;}
.y9e{bottom:133.919946px;}
.y86{bottom:134.279946px;}
.y87{bottom:141.119944px;}
.y39{bottom:146.879941px;}
.y96{bottom:153.719939px;}
.y8f{bottom:154.079938px;}
.y9c{bottom:154.619938px;}
.y85{bottom:154.979938px;}
.y75{bottom:158.759936px;}
.y90{bottom:160.919936px;}
.y9d{bottom:161.459935px;}
.y95{bottom:163.619935px;}
.y38{bottom:167.579933px;}
.y8e{bottom:170.819932px;}
.y9b{bottom:171.359931px;}
.y84{bottom:171.719931px;}
.y73{bottom:179.459928px;}
.y74{bottom:186.299925px;}
.y36{bottom:188.099925px;}
.y37{bottom:194.939922px;}
.y72{bottom:200.159920px;}
.y35{bottom:208.799916px;}
.y71{bottom:220.859912px;}
.y34{bottom:229.499908px;}
.y70{bottom:241.559903px;}
.y33{bottom:250.199900px;}
.y6f{bottom:263.159895px;}
.y32{bottom:270.899892px;}
.y6e{bottom:284.219886px;}
.y31{bottom:292.139883px;}
.y6d{bottom:304.919878px;}
.y30{bottom:315.539874px;}
.y6c{bottom:325.619870px;}
.y2f{bottom:336.239866px;}
.y6b{bottom:346.319861px;}
.y2e{bottom:356.759857px;}
.y6a{bottom:367.019853px;}
.y1c{bottom:380.159848px;}
.y69{bottom:387.719845px;}
.y45{bottom:402.300000px;}
.y68{bottom:408.419837px;}
.y44{bottom:410.219836px;}
.y43{bottom:427.499829px;}
.y67{bottom:429.119828px;}
.y42{bottom:444.779822px;}
.y66{bottom:449.819820px;}
.y41{bottom:461.879815px;}
.y64{bottom:470.519812px;}
.y65{bottom:477.359809px;}
.y40{bottom:479.159808px;}
.y1b{bottom:486.719805px;}
.y63{bottom:491.219804px;}
.y62{bottom:511.919795px;}
.y2d{bottom:529.199788px;}
.y61{bottom:532.619787px;}
.y2b{bottom:542.880000px;}
.y2a{bottom:546.479781px;}
.y60{bottom:553.319779px;}
.y8d{bottom:561.779775px;}
.y94{bottom:563.579775px;}
.y29{bottom:563.759774px;}
.yb6{bottom:568.079773px;}
.y1a{bottom:568.259773px;}
.y5f{bottom:574.019770px;}
.y28{bottom:580.859768px;}
.y8b{bottom:582.479767px;}
.y92{bottom:584.279766px;}
.yb5{bottom:588.779764px;}
.y8c{bottom:589.319764px;}
.y93{bottom:591.119764px;}
.y5e{bottom:594.539762px;}
.y27{bottom:598.139761px;}
.y8a{bottom:599.219760px;}
.y91{bottom:601.019760px;}
.y19{bottom:602.999759px;}
.yb4{bottom:609.479756px;}
.y5d{bottom:615.239754px;}
.y26{bottom:615.419754px;}
.y18{bottom:618.299753px;}
.yb3{bottom:630.179748px;}
.y25{bottom:632.699747px;}
.y17{bottom:633.599747px;}
.y83{bottom:634.679746px;}
.y5c{bottom:635.939746px;}
.y9a{bottom:639.719744px;}
.y16{bottom:647.639741px;}
.y24{bottom:649.979740px;}
.yb2{bottom:650.879740px;}
.y81{bottom:655.379738px;}
.y5b{bottom:656.639737px;}
.y98{bottom:660.779736px;}
.y82{bottom:662.219735px;}
.y23{bottom:667.079733px;}
.y99{bottom:667.619733px;}
.yb1{bottom:671.579731px;}
.y80{bottom:676.079730px;}
.y5a{bottom:677.339729px;}
.y97{bottom:677.519729px;}
.y15{bottom:681.299727px;}
.y22{bottom:684.359726px;}
.yb0{bottom:692.279723px;}
.y7f{bottom:696.779721px;}
.y59{bottom:698.039721px;}
.y21{bottom:701.639719px;}
.yaf{bottom:712.979715px;}
.y14{bottom:714.779714px;}
.y7e{bottom:717.479713px;}
.y58{bottom:718.739713px;}
.y20{bottom:718.919712px;}
.y13{bottom:730.259708px;}
.yae{bottom:733.679707px;}
.y1f{bottom:736.199706px;}
.y7d{bottom:738.179705px;}
.y57{bottom:739.439704px;}
.y1d{bottom:750.599700px;}
.y1e{bottom:753.479699px;}
.yad{bottom:754.379698px;}
.y12{bottom:754.739698px;}
.y7c{bottom:758.879696px;}
.y55{bottom:760.139696px;}
.y56{bottom:766.979693px;}
.y11{bottom:775.079690px;}
.yac{bottom:775.979690px;}
.y7b{bottom:779.579688px;}
.y54{bottom:780.839688px;}
.y10{bottom:796.499681px;}
.yab{bottom:797.039681px;}
.y7a{bottom:800.279680px;}
.y53{bottom:801.539679px;}
.yaa{bottom:817.739673px;}
.y79{bottom:820.979672px;}
.y52{bottom:822.239671px;}
.yf{bottom:825.479670px;}
.ya9{bottom:838.439665px;}
.y78{bottom:841.679663px;}
.ye{bottom:842.759663px;}
.y51{bottom:842.939663px;}
.ya8{bottom:859.139656px;}
.y77{bottom:863.279655px;}
.y50{bottom:863.639655px;}
.yd{bottom:869.759652px;}
.ya7{bottom:879.839648px;}
.y4f{bottom:884.339646px;}
.ya6{bottom:900.539640px;}
.y4e{bottom:905.039638px;}
.yc{bottom:908.999636px;}
.ya5{bottom:921.239632px;}
.y4d{bottom:925.739630px;}
.y76{bottom:932.579627px;}
.yb{bottom:933.119627px;}
.ya4{bottom:941.939623px;}
.y4c{bottom:946.439621px;}
.ya3{bottom:962.639615px;}
.y4b{bottom:967.139613px;}
.ya2{bottom:983.339607px;}
.y4a{bottom:987.839605px;}
.y3d{bottom:989.459604px;}
.y89{bottom:994.679602px;}
.ya1{bottom:1004.039598px;}
.y3c{bottom:1006.739597px;}
.y49{bottom:1008.539597px;}
.y88{bottom:1015.379594px;}
.ya0{bottom:1024.739590px;}
.y48{bottom:1029.239588px;}
.y3b{bottom:1033.559587px;}
.y47{bottom:1049.939580px;}
.y3e{bottom:1049.940000px;}
.y9f{bottom:1050.119580px;}
.y3a{bottom:1054.259578px;}
.y5{bottom:1106.099558px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:0.360000px;}
.h12{height:3.960000px;}
.he{height:16.920000px;}
.h6{height:20.520000px;}
.h5{height:33.518307px;}
.h4{height:36.597642px;}
.hd{height:36.624009px;}
.hb{height:37.520493px;}
.hc{height:39.339828px;}
.h7{height:39.830258px;}
.ha{height:40.501390px;}
.h1{height:41.522679px;}
.h11{height:43.506897px;}
.h10{height:43.536076px;}
.h13{height:47.988262px;}
.h9{height:48.796855px;}
.h2{height:50.027324px;}
.hf{height:53.261697px;}
.h8{height:57.092321px;}
.h0{height:1188.000000px;}
.w3{width:4.320000px;}
.w2{width:4.500000px;}
.w4{width:6.840000px;}
.w1{width:8.100000px;}
.w0{width:918.000000px;}
.x28{left:-4.680254px;}
.x0{left:0.000000px;}
.x6{left:90.359964px;}
.x17{left:105.839958px;}
.x1{left:107.999957px;}
.x10{left:113.759954px;}
.x7{left:115.559954px;}
.x13{left:117.719953px;}
.xf{left:118.799952px;}
.x14{left:121.859951px;}
.x19{left:122.939951px;}
.x15{left:128.159890px;}
.x2{left:138.779944px;}
.x3{left:143.279943px;}
.xa{left:146.339941px;}
.xd{left:148.139941px;}
.x18{left:154.439938px;}
.x16{left:164.519934px;}
.x2f{left:167.039933px;}
.x30{left:178.919928px;}
.x2d{left:185.219926px;}
.x2e{left:192.959923px;}
.x24{left:221.759911px;}
.x36{left:224.999797px;}
.x22{left:232.559907px;}
.x11{left:243.899902px;}
.x12{left:247.319901px;}
.x1a{left:248.579966px;}
.x1b{left:249.659900px;}
.x33{left:260.099896px;}
.x1c{left:268.379893px;}
.x34{left:272.519891px;}
.x1d{left:286.199886px;}
.x29{left:289.619884px;}
.x48{left:290.879957px;}
.x3a{left:295.020099px;}
.xb{left:301.139768px;}
.x4{left:307.079877px;}
.x44{left:325.258562px;}
.x3d{left:337.681027px;}
.x1f{left:340.199864px;}
.x23{left:345.599842px;}
.x25{left:369.899852px;}
.x8{left:382.679847px;}
.xc{left:401.759839px;}
.xe{left:415.980240px;}
.x2a{left:459.000123px;}
.x26{left:471.959811px;}
.x3e{left:576.179770px;}
.x3f{left:580.139768px;}
.x45{left:588.779764px;}
.x46{left:592.559763px;}
.x3b{left:619.019752px;}
.x49{left:622.979751px;}
.x4b{left:624.599750px;}
.x4a{left:626.939749px;}
.x41{left:628.739749px;}
.x42{left:635.759746px;}
.x27{left:639.180000px;}
.x40{left:668.159733px;}
.x3c{left:672.660358px;}
.x43{left:673.739051px;}
.x47{left:674.999730px;}
.x39{left:676.079730px;}
.x2b{left:677.159729px;}
.x2c{left:680.939728px;}
.x5{left:682.199727px;}
.x37{left:692.999723px;}
.x35{left:706.500228px;}
.x38{left:712.439715px;}
.x31{left:738.899704px;}
.x32{left:750.779700px;}
.x20{left:755.279698px;}
.x21{left:759.059696px;}
.x1e{left:792.000000px;}
.x9{left:803.700000px;}
@media print{
.v1{vertical-align:-7.039997pt;}
.v0{vertical-align:0.000000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.030613pt;}
.ls6{letter-spacing:0.030618pt;}
.ls8{letter-spacing:0.061250pt;}
.ls1{letter-spacing:0.061367pt;}
.ls4{letter-spacing:0.244066pt;}
.ls3{letter-spacing:47.481230pt;}
.ls2{letter-spacing:59.023271pt;}
.ls0{letter-spacing:1387.640399pt;}
.ws4{word-spacing:-28.799988pt;}
.ws5{word-spacing:-17.535993pt;}
.ws1{word-spacing:-16.061361pt;}
.ws2{word-spacing:-15.999994pt;}
.ws6{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.279995pt;}
.ws8{word-spacing:-10.719996pt;}
.ws7{word-spacing:0.000000pt;}
._c{margin-left:-88.532598pt;}
._b{margin-left:-87.541648pt;}
._17{margin-left:-4.474660pt;}
._e{margin-left:-3.132625pt;}
._1{margin-left:-1.555660pt;}
._0{width:1.024788pt;}
._4{width:2.021746pt;}
._3{width:2.934270pt;}
._2{width:3.954028pt;}
._5{width:4.875267pt;}
._6{width:6.233459pt;}
._8{width:7.191006pt;}
._d{width:8.167379pt;}
._f{width:9.973629pt;}
._10{width:11.087477pt;}
._7{width:12.116726pt;}
._13{width:13.383735pt;}
._16{width:14.766782pt;}
._14{width:16.949608pt;}
._a{width:17.852289pt;}
._9{width:18.755117pt;}
._15{width:28.275435pt;}
._11{width:44.868281pt;}
._12{width:46.062679pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:63.999974pt;}
.fs4{font-size:74.879970pt;}
.y4{bottom:-14.079994pt;}
.y46{bottom:-8.320140pt;}
.y0{bottom:0.000000pt;}
.y2c{bottom:3.199806pt;}
.y3f{bottom:3.839625pt;}
.y9{bottom:3.839982pt;}
.ya{bottom:24.799990pt;}
.y8{bottom:40.160000pt;}
.y6{bottom:43.999982pt;}
.y7{bottom:45.759982pt;}
.y9e{bottom:119.039952pt;}
.y86{bottom:119.359952pt;}
.y87{bottom:125.439950pt;}
.y39{bottom:130.559948pt;}
.y96{bottom:136.639945pt;}
.y8f{bottom:136.959945pt;}
.y9c{bottom:137.439945pt;}
.y85{bottom:137.759945pt;}
.y75{bottom:141.119944pt;}
.y90{bottom:143.039943pt;}
.y9d{bottom:143.519943pt;}
.y95{bottom:145.439942pt;}
.y38{bottom:148.959940pt;}
.y8e{bottom:151.839939pt;}
.y9b{bottom:152.319939pt;}
.y84{bottom:152.639939pt;}
.y73{bottom:159.519936pt;}
.y74{bottom:165.599934pt;}
.y36{bottom:167.199933pt;}
.y37{bottom:173.279931pt;}
.y72{bottom:177.919929pt;}
.y35{bottom:185.599926pt;}
.y71{bottom:196.319921pt;}
.y34{bottom:203.999918pt;}
.y70{bottom:214.719914pt;}
.y33{bottom:222.399911pt;}
.y6f{bottom:233.919906pt;}
.y32{bottom:240.799904pt;}
.y6e{bottom:252.639899pt;}
.y31{bottom:259.679896pt;}
.y6d{bottom:271.039892pt;}
.y30{bottom:280.479888pt;}
.y6c{bottom:289.439884pt;}
.y2f{bottom:298.879880pt;}
.y6b{bottom:307.839877pt;}
.y2e{bottom:317.119873pt;}
.y6a{bottom:326.239870pt;}
.y1c{bottom:337.919865pt;}
.y69{bottom:344.639862pt;}
.y45{bottom:357.600000pt;}
.y68{bottom:363.039855pt;}
.y44{bottom:364.639854pt;}
.y43{bottom:379.999848pt;}
.y67{bottom:381.439847pt;}
.y42{bottom:395.359842pt;}
.y66{bottom:399.839840pt;}
.y41{bottom:410.559836pt;}
.y64{bottom:418.239833pt;}
.y65{bottom:424.319830pt;}
.y40{bottom:425.919830pt;}
.y1b{bottom:432.639827pt;}
.y63{bottom:436.639825pt;}
.y62{bottom:455.039818pt;}
.y2d{bottom:470.399812pt;}
.y61{bottom:473.439811pt;}
.y2b{bottom:482.560000pt;}
.y2a{bottom:485.759806pt;}
.y60{bottom:491.839803pt;}
.y8d{bottom:499.359800pt;}
.y94{bottom:500.959800pt;}
.y29{bottom:501.119800pt;}
.yb6{bottom:504.959798pt;}
.y1a{bottom:505.119798pt;}
.y5f{bottom:510.239796pt;}
.y28{bottom:516.319793pt;}
.y8b{bottom:517.759793pt;}
.y92{bottom:519.359792pt;}
.yb5{bottom:523.359791pt;}
.y8c{bottom:523.839790pt;}
.y93{bottom:525.439790pt;}
.y5e{bottom:528.479789pt;}
.y27{bottom:531.679787pt;}
.y8a{bottom:532.639787pt;}
.y91{bottom:534.239786pt;}
.y19{bottom:535.999786pt;}
.yb4{bottom:541.759783pt;}
.y5d{bottom:546.879781pt;}
.y26{bottom:547.039781pt;}
.y18{bottom:549.599780pt;}
.yb3{bottom:560.159776pt;}
.y25{bottom:562.399775pt;}
.y17{bottom:563.199775pt;}
.y83{bottom:564.159774pt;}
.y5c{bottom:565.279774pt;}
.y9a{bottom:568.639773pt;}
.y16{bottom:575.679770pt;}
.y24{bottom:577.759769pt;}
.yb2{bottom:578.559769pt;}
.y81{bottom:582.559767pt;}
.y5b{bottom:583.679767pt;}
.y98{bottom:587.359765pt;}
.y82{bottom:588.639765pt;}
.y23{bottom:592.959763pt;}
.y99{bottom:593.439763pt;}
.yb1{bottom:596.959761pt;}
.y80{bottom:600.959760pt;}
.y5a{bottom:602.079759pt;}
.y97{bottom:602.239759pt;}
.y15{bottom:605.599758pt;}
.y22{bottom:608.319757pt;}
.yb0{bottom:615.359754pt;}
.y7f{bottom:619.359752pt;}
.y59{bottom:620.479752pt;}
.y21{bottom:623.679751pt;}
.yaf{bottom:633.759746pt;}
.y14{bottom:635.359746pt;}
.y7e{bottom:637.759745pt;}
.y58{bottom:638.879744pt;}
.y20{bottom:639.039744pt;}
.y13{bottom:649.119740pt;}
.yae{bottom:652.159739pt;}
.y1f{bottom:654.399738pt;}
.y7d{bottom:656.159738pt;}
.y57{bottom:657.279737pt;}
.y1d{bottom:667.199733pt;}
.y1e{bottom:669.759732pt;}
.yad{bottom:670.559732pt;}
.y12{bottom:670.879732pt;}
.y7c{bottom:674.559730pt;}
.y55{bottom:675.679730pt;}
.y56{bottom:681.759727pt;}
.y11{bottom:688.959724pt;}
.yac{bottom:689.759724pt;}
.y7b{bottom:692.959723pt;}
.y54{bottom:694.079722pt;}
.y10{bottom:707.999717pt;}
.yab{bottom:708.479717pt;}
.y7a{bottom:711.359715pt;}
.y53{bottom:712.479715pt;}
.yaa{bottom:726.879709pt;}
.y79{bottom:729.759708pt;}
.y52{bottom:730.879708pt;}
.yf{bottom:733.759706pt;}
.ya9{bottom:745.279702pt;}
.y78{bottom:748.159701pt;}
.ye{bottom:749.119700pt;}
.y51{bottom:749.279700pt;}
.ya8{bottom:763.679695pt;}
.y77{bottom:767.359693pt;}
.y50{bottom:767.679693pt;}
.yd{bottom:773.119691pt;}
.ya7{bottom:782.079687pt;}
.y4f{bottom:786.079686pt;}
.ya6{bottom:800.479680pt;}
.y4e{bottom:804.479678pt;}
.yc{bottom:807.999677pt;}
.ya5{bottom:818.879672pt;}
.y4d{bottom:822.879671pt;}
.y76{bottom:828.959668pt;}
.yb{bottom:829.439668pt;}
.ya4{bottom:837.279665pt;}
.y4c{bottom:841.279663pt;}
.ya3{bottom:855.679658pt;}
.y4b{bottom:859.679656pt;}
.ya2{bottom:874.079650pt;}
.y4a{bottom:878.079649pt;}
.y3d{bottom:879.519648pt;}
.y89{bottom:884.159646pt;}
.ya1{bottom:892.479643pt;}
.y3c{bottom:894.879642pt;}
.y49{bottom:896.479641pt;}
.y88{bottom:902.559639pt;}
.ya0{bottom:910.879636pt;}
.y48{bottom:914.879634pt;}
.y3b{bottom:918.719633pt;}
.y47{bottom:933.279627pt;}
.y3e{bottom:933.280000pt;}
.y9f{bottom:933.439627pt;}
.y3a{bottom:937.119625pt;}
.y5{bottom:983.199607pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:0.320000pt;}
.h12{height:3.520000pt;}
.he{height:15.040000pt;}
.h6{height:18.240000pt;}
.h5{height:29.794051pt;}
.h4{height:32.531237pt;}
.hd{height:32.554674pt;}
.hb{height:33.351549pt;}
.hc{height:34.968736pt;}
.h7{height:35.404673pt;}
.ha{height:36.001236pt;}
.h1{height:36.909048pt;}
.h11{height:38.672797pt;}
.h10{height:38.698735pt;}
.h13{height:42.656233pt;}
.h9{height:43.374983pt;}
.h2{height:44.468732pt;}
.hf{height:47.343731pt;}
.h8{height:50.748730pt;}
.h0{height:1056.000000pt;}
.w3{width:3.840000pt;}
.w2{width:4.000000pt;}
.w4{width:6.080000pt;}
.w1{width:7.200000pt;}
.w0{width:816.000000pt;}
.x28{left:-4.160226pt;}
.x0{left:0.000000pt;}
.x6{left:80.319968pt;}
.x17{left:94.079962pt;}
.x1{left:95.999962pt;}
.x10{left:101.119960pt;}
.x7{left:102.719959pt;}
.x13{left:104.639958pt;}
.xf{left:105.599958pt;}
.x14{left:108.319957pt;}
.x19{left:109.279956pt;}
.x15{left:113.919902pt;}
.x2{left:123.359951pt;}
.x3{left:127.359949pt;}
.xa{left:130.079948pt;}
.xd{left:131.679947pt;}
.x18{left:137.279945pt;}
.x16{left:146.239942pt;}
.x2f{left:148.479941pt;}
.x30{left:159.039936pt;}
.x2d{left:164.639934pt;}
.x2e{left:171.519931pt;}
.x24{left:197.119921pt;}
.x36{left:199.999820pt;}
.x22{left:206.719917pt;}
.x11{left:216.799913pt;}
.x12{left:219.839912pt;}
.x1a{left:220.959970pt;}
.x1b{left:221.919911pt;}
.x33{left:231.199908pt;}
.x1c{left:238.559905pt;}
.x34{left:242.239903pt;}
.x1d{left:254.399898pt;}
.x29{left:257.439897pt;}
.x48{left:258.559962pt;}
.x3a{left:262.240088pt;}
.xb{left:267.679793pt;}
.x4{left:272.959891pt;}
.x44{left:289.118722pt;}
.x3d{left:300.160913pt;}
.x1f{left:302.399879pt;}
.x23{left:307.199860pt;}
.x25{left:328.799868pt;}
.x8{left:340.159864pt;}
.xc{left:357.119857pt;}
.xe{left:369.760213pt;}
.x2a{left:408.000109pt;}
.x26{left:419.519832pt;}
.x3e{left:512.159795pt;}
.x3f{left:515.679794pt;}
.x45{left:523.359791pt;}
.x46{left:526.719789pt;}
.x3b{left:550.239780pt;}
.x49{left:553.759778pt;}
.x4b{left:555.199778pt;}
.x4a{left:557.279777pt;}
.x41{left:558.879776pt;}
.x42{left:565.119774pt;}
.x27{left:568.160000pt;}
.x40{left:593.919762pt;}
.x3c{left:597.920318pt;}
.x43{left:598.879157pt;}
.x47{left:599.999760pt;}
.x39{left:600.959760pt;}
.x2b{left:601.919759pt;}
.x2c{left:605.279758pt;}
.x5{left:606.399757pt;}
.x37{left:615.999754pt;}
.x35{left:628.000203pt;}
.x38{left:633.279747pt;}
.x31{left:656.799737pt;}
.x32{left:667.359733pt;}
.x20{left:671.359731pt;}
.x21{left:674.719730pt;}
.x1e{left:704.000000pt;}
.x9{left:714.400000pt;}
}




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