
    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_511e406f5e193492425ab166.woff')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_8f70c5aca8319b37c1f436be.woff')format("woff");}.ff2{font-family:ff2;line-height:1.139160;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_2a672fe74fe8eaa964c32d7f.woff')format("woff");}.ff3{font-family:ff3;line-height:0.917480;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_ed933cf322d96ca9d0759a6d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.919922;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_820f6927a4f60c9d1d45230d.woff')format("woff");}.ff5{font-family:ff5;line-height:0.686523;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_b2342b68c200d54e3b6eca49.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_0761e670879f56d9589d07ea.woff')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_d8c20e0914983d67c809495e.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_137d1a94d03e8ced3d817af1.woff')format("woff");}.ff9{font-family:ff9;line-height:0.856934;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_3df60652a0c4179ecc248e10.woff')format("woff");}.ffa{font-family:ffa;line-height:0.916016;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_e0de7378374387d3dd79eb54.woff')format("woff");}.ffb{font-family:ffb;line-height:0.861328;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_348fbf98b236937622ba3bcd.woff')format("woff");}.ffc{font-family:ffc;line-height:0.839844;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.249522,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249522,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-35.999986px;}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:35.279986px;}
.ls5{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005400px;}
.ls4{letter-spacing:0.062787px;}
.ls1{letter-spacing:0.093343px;}
.lsc{letter-spacing:0.106140px;}
.lsa{letter-spacing:0.160560px;}
.ls9{letter-spacing:0.195960px;}
.lsb{letter-spacing:0.238620px;}
.ls7{letter-spacing:0.448200px;}
.ls8{letter-spacing:0.458400px;}
.ls3{letter-spacing:74.848233px;}
.ls2{letter-spacing:152.787299px;}
.ls0{letter-spacing:1099.237480px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws3{word-spacing:-32.462774px;}
.ws7{word-spacing:-15.839994px;}
.ws2{word-spacing:-15.011994px;}
.ws6{word-spacing:-14.970234px;}
.ws0{word-spacing:-14.666137px;}
.ws1{word-spacing:-14.572794px;}
.ws4{word-spacing:-13.505755px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-3.051774px;}
._1{margin-left:-1.454762px;}
._0{width:1.152887px;}
._13{width:3.147539px;}
._12{width:4.220184px;}
._b{width:5.539814px;}
._a{width:6.552031px;}
._10{width:7.763291px;}
._f{width:9.509260px;}
._14{width:10.713100px;}
._4{width:12.289614px;}
._2{width:16.338326px;}
._11{width:18.349898px;}
._c{width:19.467153px;}
._15{width:20.667101px;}
._8{width:21.868884px;}
._9{width:23.085413px;}
._7{width:28.325244px;}
._6{width:29.924787px;}
._3{width:32.536227px;}
._d{width:34.107614px;}
._e{width:44.070065px;}
.fc9{color:rgb(0,0,255);}
.fc7{color:rgb(44,62,80);}
.fc6{color:rgb(0,32,96);}
.fc5{color:rgb(83,129,53);}
.fc4{color:rgb(0,112,192);}
.fc3{color:rgb(192,0,0);}
.fca{color:rgb(0,176,80);}
.fc8{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs3{font-size:71.999971px;}
.y5{bottom:-14.399994px;}
.y0{bottom:0.000000px;}
.yc{bottom:2.879989px;}
.ya{bottom:3.599980px;}
.yb{bottom:24.120000px;}
.y9{bottom:46.620000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.299979px;}
.y7a{bottom:188.999924px;}
.y57{bottom:195.839922px;}
.y79{bottom:211.139916px;}
.y56{bottom:218.159913px;}
.y35{bottom:218.879912px;}
.y96{bottom:223.199911px;}
.y78{bottom:233.459907px;}
.y55{bottom:240.299904px;}
.y95{bottom:245.339902px;}
.y34{bottom:248.759900px;}
.y77{bottom:255.599898px;}
.y94{bottom:267.659893px;}
.y76{bottom:277.919889px;}
.y54{bottom:278.459889px;}
.y39{bottom:281.879887px;}
.y93{bottom:289.799884px;}
.y75{bottom:300.239880px;}
.y38{bottom:302.759879px;}
.y92{bottom:312.119875px;}
.y53{bottom:316.979873px;}
.y74{bottom:322.379871px;}
.y37{bottom:323.819870px;}
.y91{bottom:334.439866px;}
.y1f{bottom:339.839864px;}
.y73{bottom:344.699862px;}
.y36{bottom:344.879862px;}
.y52{bottom:354.059858px;}
.y90{bottom:356.579857px;}
.y51{bottom:376.379849px;}
.y8f{bottom:378.899848px;}
.y72{bottom:382.679847px;}
.y33{bottom:382.859847px;}
.y50{bottom:398.699841px;}
.y8e{bottom:416.879833px;}
.y32{bottom:419.939832px;}
.y4f{bottom:420.839832px;}
.y71{bottom:422.279831px;}
.y31{bottom:442.259823px;}
.y4e{bottom:443.159823px;}
.y70{bottom:444.239822px;}
.y8d{bottom:455.399818px;}
.y30{bottom:464.399814px;}
.y6f{bottom:466.559813px;}
.y1e{bottom:477.719809px;}
.y4d{bottom:480.419808px;}
.y6e{bottom:488.879804px;}
.y8c{bottom:492.659803px;}
.y2f{bottom:501.659799px;}
.y6d{bottom:511.019796px;}
.y8b{bottom:514.799794px;}
.y4c{bottom:517.679793px;}
.y2e{bottom:523.979790px;}
.y6c{bottom:533.339787px;}
.y8a{bottom:537.119785px;}
.y4b{bottom:539.819784px;}
.y2d{bottom:546.299781px;}
.y6b{bottom:556.739777px;}
.y89{bottom:559.259776px;}
.y1d{bottom:566.279773px;}
.y2c{bottom:568.439773px;}
.y4a{bottom:577.079769px;}
.y6a{bottom:579.779768px;}
.y88{bottom:581.579767px;}
.y2b{bottom:590.759764px;}
.y49{bottom:599.399760px;}
.y69{bottom:601.919759px;}
.y1c{bottom:603.359759px;}
.y87{bottom:603.899758px;}
.y2a{bottom:612.899755px;}
.y1b{bottom:620.819752px;}
.y48{bottom:621.539751px;}
.y68{bottom:624.059750px;}
.y86{bottom:626.039750px;}
.y29{bottom:635.219746px;}
.y1a{bottom:638.459745px;}
.y47{bottom:643.859742px;}
.y67{bottom:646.379741px;}
.y19{bottom:654.839738px;}
.y28{bottom:657.359737px;}
.y85{bottom:664.019734px;}
.y46{bottom:665.999734px;}
.y66{bottom:668.699733px;}
.y27{bottom:679.679728px;}
.y45{bottom:688.319725px;}
.y18{bottom:690.659724px;}
.y65{bottom:690.839724px;}
.y26{bottom:701.999719px;}
.y84{bottom:702.539719px;}
.y64{bottom:713.159715px;}
.y25{bottom:724.139710px;}
.y44{bottom:725.579710px;}
.y17{bottom:726.659709px;}
.y63{bottom:735.299706px;}
.y83{bottom:740.879704px;}
.y24{bottom:746.459701px;}
.y62{bottom:757.619697px;}
.y16{bottom:762.479695px;}
.y43{bottom:763.559695px;}
.y82{bottom:764.099694px;}
.y23{bottom:768.599693px;}
.y61{bottom:779.759688px;}
.y15{bottom:780.299688px;}
.y81{bottom:786.239686px;}
.y22{bottom:790.919684px;}
.y42{bottom:802.079679px;}
.y9a{bottom:809.279676px;}
.y80{bottom:809.459676px;}
.y21{bottom:813.239675px;}
.y20{bottom:814.859674px;}
.y14{bottom:817.559673px;}
.y60{bottom:824.399670px;}
.y7f{bottom:831.599667px;}
.y41{bottom:839.339664px;}
.y12{bottom:851.399659px;}
.y13{bottom:851.579659px;}
.y7e{bottom:853.739659px;}
.y40{bottom:861.659655px;}
.y5f{bottom:862.379655px;}
.y7d{bottom:876.059650px;}
.y3f{bottom:883.799646px;}
.y11{bottom:897.839641px;}
.y99{bottom:898.379641px;}
.y5e{bottom:900.899640px;}
.y3e{bottom:906.119638px;}
.y7c{bottom:914.039634px;}
.y5d{bottom:923.039631px;}
.y3d{bottom:928.259629px;}
.y10{bottom:933.119627px;}
.y98{bottom:936.359625px;}
.y5c{bottom:945.359622px;}
.y3c{bottom:950.579620px;}
.y7b{bottom:952.559619px;}
.y5b{bottom:967.499613px;}
.yf{bottom:969.479612px;}
.y3b{bottom:972.719611px;}
.y97{bottom:974.879610px;}
.y5a{bottom:989.819604px;}
.y3a{bottom:995.039602px;}
.ye{bottom:1008.719597px;}
.y59{bottom:1012.139595px;}
.yd{bottom:1033.019587px;}
.y58{bottom:1034.279586px;}
.y4{bottom:1053.899578px;}
.y6{bottom:1082.519567px;}
.y3{bottom:1085.399566px;}
.y2{bottom:1102.679559px;}
.y1{bottom:1119.959552px;}
.h3{height:1.260000px;}
.h7{height:18.540000px;}
.h6{height:19.260000px;}
.he{height:36.624009px;}
.h4{height:37.757797px;}
.hd{height:39.313461px;}
.h1{height:41.522679px;}
.h9{height:41.902014px;}
.h10{height:44.090490px;}
.ha{height:44.149201px;}
.hc{height:44.424123px;}
.h5{height:49.728496px;}
.h8{height:50.484355px;}
.hf{height:55.032869px;}
.h2{height:61.000288px;}
.hb{height:81.725592px;}
.h0{height:1188.000000px;}
.w2{width:2.520000px;}
.w1{width:9.720000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x13{left:127.619949px;}
.x11{left:129.599948px;}
.x10{left:132.119947px;}
.x1{left:134.999946px;}
.xe{left:143.639943px;}
.xf{left:145.979854px;}
.xc{left:152.639939px;}
.x4{left:159.119936px;}
.x14{left:176.219930px;}
.x7{left:183.950926px;}
.x12{left:186.299925px;}
.xd{left:248.399901px;}
.x8{left:251.820520px;}
.x15{left:270.179957px;}
.x16{left:271.259891px;}
.x17{left:292.859883px;}
.x18{left:311.759875px;}
.x1b{left:318.059873px;}
.x1a{left:328.319869px;}
.x2{left:329.579868px;}
.xa{left:336.959865px;}
.x19{left:365.759479px;}
.x9{left:380.870848px;}
.xb{left:458.999719px;}
.x5{left:474.839810px;}
.x3{left:664.199734px;}
.x6{left:780.120000px;}
@media print{
.v3{vertical-align:-31.999987pt;}
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:31.359987pt;}
.ls5{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.004800pt;}
.ls4{letter-spacing:0.055811pt;}
.ls1{letter-spacing:0.082971pt;}
.lsc{letter-spacing:0.094347pt;}
.lsa{letter-spacing:0.142720pt;}
.ls9{letter-spacing:0.174187pt;}
.lsb{letter-spacing:0.212107pt;}
.ls7{letter-spacing:0.398400pt;}
.ls8{letter-spacing:0.407467pt;}
.ls3{letter-spacing:66.531762pt;}
.ls2{letter-spacing:135.810932pt;}
.ls0{letter-spacing:977.099982pt;}
.ws3{word-spacing:-28.855799pt;}
.ws7{word-spacing:-14.079994pt;}
.ws2{word-spacing:-13.343995pt;}
.ws6{word-spacing:-13.306875pt;}
.ws0{word-spacing:-13.036566pt;}
.ws1{word-spacing:-12.953595pt;}
.ws4{word-spacing:-12.005115pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-2.712688pt;}
._1{margin-left:-1.293122pt;}
._0{width:1.024788pt;}
._13{width:2.797812pt;}
._12{width:3.751275pt;}
._b{width:4.924279pt;}
._a{width:5.824027pt;}
._10{width:6.900704pt;}
._f{width:8.452676pt;}
._14{width:9.522755pt;}
._4{width:10.924101pt;}
._2{width:14.522956pt;}
._11{width:16.311021pt;}
._c{width:17.304136pt;}
._15{width:18.370757pt;}
._8{width:19.439008pt;}
._9{width:20.520367pt;}
._7{width:25.177995pt;}
._6{width:26.599811pt;}
._3{width:28.921091pt;}
._d{width:30.317879pt;}
._e{width:39.173391pt;}
.fs4{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs3{font-size:63.999974pt;}
.y5{bottom:-12.799995pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.559990pt;}
.ya{bottom:3.199982pt;}
.yb{bottom:21.440000pt;}
.y9{bottom:41.440000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:45.599982pt;}
.y7a{bottom:167.999933pt;}
.y57{bottom:174.079930pt;}
.y79{bottom:187.679925pt;}
.y56{bottom:193.919922pt;}
.y35{bottom:194.559922pt;}
.y96{bottom:198.399921pt;}
.y78{bottom:207.519917pt;}
.y55{bottom:213.599915pt;}
.y95{bottom:218.079913pt;}
.y34{bottom:221.119912pt;}
.y77{bottom:227.199909pt;}
.y94{bottom:237.919905pt;}
.y76{bottom:247.039901pt;}
.y54{bottom:247.519901pt;}
.y39{bottom:250.559900pt;}
.y93{bottom:257.599897pt;}
.y75{bottom:266.879893pt;}
.y38{bottom:269.119892pt;}
.y92{bottom:277.439889pt;}
.y53{bottom:281.759887pt;}
.y74{bottom:286.559885pt;}
.y37{bottom:287.839885pt;}
.y91{bottom:297.279881pt;}
.y1f{bottom:302.079879pt;}
.y73{bottom:306.399877pt;}
.y36{bottom:306.559877pt;}
.y52{bottom:314.719874pt;}
.y90{bottom:316.959873pt;}
.y51{bottom:334.559866pt;}
.y8f{bottom:336.799865pt;}
.y72{bottom:340.159864pt;}
.y33{bottom:340.319864pt;}
.y50{bottom:354.399858pt;}
.y8e{bottom:370.559852pt;}
.y32{bottom:373.279851pt;}
.y4f{bottom:374.079850pt;}
.y71{bottom:375.359850pt;}
.y31{bottom:393.119843pt;}
.y4e{bottom:393.919842pt;}
.y70{bottom:394.879842pt;}
.y8d{bottom:404.799838pt;}
.y30{bottom:412.799835pt;}
.y6f{bottom:414.719834pt;}
.y1e{bottom:424.639830pt;}
.y4d{bottom:427.039829pt;}
.y6e{bottom:434.559826pt;}
.y8c{bottom:437.919825pt;}
.y2f{bottom:445.919822pt;}
.y6d{bottom:454.239818pt;}
.y8b{bottom:457.599817pt;}
.y4c{bottom:460.159816pt;}
.y2e{bottom:465.759814pt;}
.y6c{bottom:474.079810pt;}
.y8a{bottom:477.439809pt;}
.y4b{bottom:479.839808pt;}
.y2d{bottom:485.599806pt;}
.y6b{bottom:494.879802pt;}
.y89{bottom:497.119801pt;}
.y1d{bottom:503.359799pt;}
.y2c{bottom:505.279798pt;}
.y4a{bottom:512.959795pt;}
.y6a{bottom:515.359794pt;}
.y88{bottom:516.959793pt;}
.y2b{bottom:525.119790pt;}
.y49{bottom:532.799787pt;}
.y69{bottom:535.039786pt;}
.y1c{bottom:536.319785pt;}
.y87{bottom:536.799785pt;}
.y2a{bottom:544.799782pt;}
.y1b{bottom:551.839779pt;}
.y48{bottom:552.479779pt;}
.y68{bottom:554.719778pt;}
.y86{bottom:556.479777pt;}
.y29{bottom:564.639774pt;}
.y1a{bottom:567.519773pt;}
.y47{bottom:572.319771pt;}
.y67{bottom:574.559770pt;}
.y19{bottom:582.079767pt;}
.y28{bottom:584.319766pt;}
.y85{bottom:590.239764pt;}
.y46{bottom:591.999763pt;}
.y66{bottom:594.399762pt;}
.y27{bottom:604.159758pt;}
.y45{bottom:611.839755pt;}
.y18{bottom:613.919754pt;}
.y65{bottom:614.079754pt;}
.y26{bottom:623.999750pt;}
.y84{bottom:624.479750pt;}
.y64{bottom:633.919746pt;}
.y25{bottom:643.679743pt;}
.y44{bottom:644.959742pt;}
.y17{bottom:645.919742pt;}
.y63{bottom:653.599739pt;}
.y83{bottom:658.559737pt;}
.y24{bottom:663.519735pt;}
.y62{bottom:673.439731pt;}
.y16{bottom:677.759729pt;}
.y43{bottom:678.719729pt;}
.y82{bottom:679.199728pt;}
.y23{bottom:683.199727pt;}
.y61{bottom:693.119723pt;}
.y15{bottom:693.599723pt;}
.y81{bottom:698.879720pt;}
.y22{bottom:703.039719pt;}
.y42{bottom:712.959715pt;}
.y9a{bottom:719.359712pt;}
.y80{bottom:719.519712pt;}
.y21{bottom:722.879711pt;}
.y20{bottom:724.319710pt;}
.y14{bottom:726.719709pt;}
.y60{bottom:732.799707pt;}
.y7f{bottom:739.199704pt;}
.y41{bottom:746.079702pt;}
.y12{bottom:756.799697pt;}
.y13{bottom:756.959697pt;}
.y7e{bottom:758.879696pt;}
.y40{bottom:765.919694pt;}
.y5f{bottom:766.559693pt;}
.y7d{bottom:778.719689pt;}
.y3f{bottom:785.599686pt;}
.y11{bottom:798.079681pt;}
.y99{bottom:798.559681pt;}
.y5e{bottom:800.799680pt;}
.y3e{bottom:805.439678pt;}
.y7c{bottom:812.479675pt;}
.y5d{bottom:820.479672pt;}
.y3d{bottom:825.119670pt;}
.y10{bottom:829.439668pt;}
.y98{bottom:832.319667pt;}
.y5c{bottom:840.319664pt;}
.y3c{bottom:844.959662pt;}
.y7b{bottom:846.719661pt;}
.y5b{bottom:859.999656pt;}
.yf{bottom:861.759655pt;}
.y3b{bottom:864.639654pt;}
.y97{bottom:866.559653pt;}
.y5a{bottom:879.839648pt;}
.y3a{bottom:884.479646pt;}
.ye{bottom:896.639641pt;}
.y59{bottom:899.679640pt;}
.yd{bottom:918.239633pt;}
.y58{bottom:919.359632pt;}
.y4{bottom:936.799625pt;}
.y6{bottom:962.239615pt;}
.y3{bottom:964.799614pt;}
.y2{bottom:980.159608pt;}
.y1{bottom:995.519602pt;}
.h3{height:1.120000pt;}
.h7{height:16.480000pt;}
.h6{height:17.120000pt;}
.he{height:32.554674pt;}
.h4{height:33.562487pt;}
.hd{height:34.945299pt;}
.h1{height:36.909048pt;}
.h9{height:37.246235pt;}
.h10{height:39.191547pt;}
.ha{height:39.243734pt;}
.hc{height:39.488109pt;}
.h5{height:44.203107pt;}
.h8{height:44.874982pt;}
.hf{height:48.918105pt;}
.h2{height:54.222478pt;}
.hb{height:72.644971pt;}
.h0{height:1056.000000pt;}
.w2{width:2.240000pt;}
.w1{width:8.640000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x13{left:113.439955pt;}
.x11{left:115.199954pt;}
.x10{left:117.439953pt;}
.x1{left:119.999952pt;}
.xe{left:127.679949pt;}
.xf{left:129.759870pt;}
.xc{left:135.679946pt;}
.x4{left:141.439943pt;}
.x14{left:156.639937pt;}
.x7{left:163.511935pt;}
.x12{left:165.599934pt;}
.xd{left:220.799912pt;}
.x8{left:223.840462pt;}
.x15{left:240.159962pt;}
.x16{left:241.119904pt;}
.x17{left:260.319896pt;}
.x18{left:277.119889pt;}
.x1b{left:282.719887pt;}
.x1a{left:291.839883pt;}
.x2{left:292.959883pt;}
.xa{left:299.519880pt;}
.x19{left:325.119537pt;}
.x9{left:338.551865pt;}
.xb{left:407.999750pt;}
.x5{left:422.079831pt;}
.x3{left:590.399764pt;}
.x6{left:693.440000pt;}
}




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