
    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_896fdce2552e3547dd1f3e3a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.969000;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_009873d83f58ef05f5faa5cc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.998000;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_3dce929d171f3801e8dde87f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.106000;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_5a22e4b5e472c16508bcd83f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.723500;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_09798d60a075b4d005a579df.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.908000;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_f4605bd11fbbf7bf36b5e9f4.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.758000;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;}
.ff7{font-family:sans-serif;visibility:hidden;}
@font-face{font-family:ff8;src:url('chunks/assets/font_bce08061079431864b2a71ce.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.919000;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_e443e00f83d248a1cf3f83c0.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.742000;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_a71b2bfb2e583bcf3cada0f3.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.234000;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.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.m2{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:-43.710000px;}
.v4{vertical-align:-21.690000px;}
.v7{vertical-align:-18.066000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:10.085808px;}
.v5{vertical-align:23.533552px;}
.v3{vertical-align:43.710000px;}
.v1{vertical-align:75.552000px;}
.ls22{letter-spacing:0.000000px;}
.ls1d{letter-spacing:0.000001px;}
.ls16{letter-spacing:0.001773px;}
.ls17{letter-spacing:0.003343px;}
.ls11{letter-spacing:0.005795px;}
.lsa{letter-spacing:1.690886px;}
.ls7{letter-spacing:2.985241px;}
.ls4{letter-spacing:2.986760px;}
.ls9{letter-spacing:2.988374px;}
.ls5{letter-spacing:2.988687px;}
.ls6{letter-spacing:2.990927px;}
.ls8{letter-spacing:2.991068px;}
.ls3{letter-spacing:2.991899px;}
.ls13{letter-spacing:5.189020px;}
.lsb{letter-spacing:13.667782px;}
.ls1b{letter-spacing:33.455343px;}
.lse{letter-spacing:34.353942px;}
.ls1a{letter-spacing:35.689100px;}
.ls21{letter-spacing:35.690069px;}
.ls18{letter-spacing:35.696069px;}
.ls1c{letter-spacing:37.029036px;}
.ls19{letter-spacing:38.714821px;}
.ls15{letter-spacing:40.160772px;}
.lsf{letter-spacing:42.249444px;}
.lsc{letter-spacing:46.309947px;}
.ls12{letter-spacing:53.611086px;}
.ls1f{letter-spacing:56.494671px;}
.ls1e{letter-spacing:56.500327px;}
.ls14{letter-spacing:57.180470px;}
.ls20{letter-spacing:60.134546px;}
.ls10{letter-spacing:63.662772px;}
.lsd{letter-spacing:77.154341px;}
.ls2{letter-spacing:257.203504px;}
.ls1{letter-spacing:258.660085px;}
.ls0{letter-spacing:264.281794px;}
.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;}
}
.ws0{word-spacing:-237.170007px;}
.wsc{word-spacing:-208.199280px;}
.ws18{word-spacing:-169.682413px;}
.ws2e{word-spacing:-164.685630px;}
.ws4{word-spacing:-162.187239px;}
.ws6{word-spacing:-161.562641px;}
.ws2{word-spacing:-160.729844px;}
.ws1{word-spacing:-160.106386px;}
.ws7{word-spacing:-160.106126px;}
.ws3e{word-spacing:-158.231453px;}
.ws8{word-spacing:-155.113197px;}
.ws26{word-spacing:-120.448260px;}
.wsd{word-spacing:-117.630838px;}
.ws44{word-spacing:-117.268800px;}
.ws14{word-spacing:-113.943051px;}
.ws11{word-spacing:-113.364660px;}
.ws2c{word-spacing:-110.906497px;}
.ws12{word-spacing:-110.328106px;}
.wsf{word-spacing:-109.605117px;}
.ws1b{word-spacing:-108.882128px;}
.ws15{word-spacing:-108.592933px;}
.ws28{word-spacing:-108.448335px;}
.ws1a{word-spacing:-107.436151px;}
.ws13{word-spacing:-107.002357px;}
.ws1c{word-spacing:-105.700977px;}
.ws17{word-spacing:-105.411782px;}
.ws27{word-spacing:-104.977988px;}
.ws37{word-spacing:-102.953619px;}
.ws10{word-spacing:-102.519826px;}
.ws43{word-spacing:-101.652239px;}
.ws19{word-spacing:-98.615686px;}
.ws2b{word-spacing:-96.446719px;}
.ws16{word-spacing:-96.302121px;}
.ws30{word-spacing:-94.133155px;}
.ws32{word-spacing:-93.988557px;}
.ws3f{word-spacing:-93.843959px;}
.wsb{word-spacing:-93.829195px;}
.ws33{word-spacing:-93.745354px;}
.ws9{word-spacing:-93.467850px;}
.ws2f{word-spacing:-92.687177px;}
.ws40{word-spacing:-91.096601px;}
.ws41{word-spacing:-91.089261px;}
.ws34{word-spacing:-90.952004px;}
.ws3d{word-spacing:-90.336195px;}
.wsa{word-spacing:-89.733954px;}
.ws2d{word-spacing:-87.927230px;}
.ws24{word-spacing:-87.806782px;}
.ws3a{word-spacing:-87.745038px;}
.ws45{word-spacing:-87.744752px;}
.wse{word-spacing:-85.459038px;}
.ws25{word-spacing:-80.881643px;}
.ws3b{word-spacing:-80.519501px;}
.ws3c{word-spacing:-76.842666px;}
.ws29{word-spacing:-74.757052px;}
.ws2a{word-spacing:-64.346012px;}
.ws1d{word-spacing:-0.144598px;}
.ws39{word-spacing:-0.120448px;}
.ws1e{word-spacing:-0.101218px;}
.ws38{word-spacing:-0.084313px;}
.ws23{word-spacing:0.000000px;}
.ws35{word-spacing:36.031793px;}
.ws36{word-spacing:39.908987px;}
.ws31{word-spacing:50.646355px;}
.ws21{word-spacing:51.538238px;}
.ws42{word-spacing:56.408982px;}
.ws22{word-spacing:111.494115px;}
.ws5{word-spacing:118.540939px;}
.ws3{word-spacing:118.543536px;}
.ws20{word-spacing:139.870622px;}
.ws1f{word-spacing:366.362900px;}
._27{margin-left:-22.901921px;}
._1a{margin-left:-17.607653px;}
._9{margin-left:-15.729074px;}
._12{margin-left:-13.485065px;}
._5{margin-left:-7.795727px;}
._a{margin-left:-6.157871px;}
._3{margin-left:-4.497535px;}
._0{margin-left:-3.298192px;}
._8{margin-left:-2.214695px;}
._6{margin-left:-1.199343px;}
._31{width:1.358227px;}
._1f{width:2.989076px;}
._e{width:24.418124px;}
._d{width:27.341755px;}
._11{width:28.439120px;}
._b{width:30.112065px;}
._14{width:31.892388px;}
._1b{width:33.246909px;}
._19{width:34.370994px;}
._13{width:35.662511px;}
._22{width:37.077764px;}
._29{width:38.412319px;}
._15{width:39.662352px;}
._1d{width:40.674537px;}
._2b{width:41.904544px;}
._16{width:43.135867px;}
._2a{width:44.568096px;}
._18{width:45.963822px;}
._1e{width:47.676679px;}
._28{width:49.392964px;}
._1c{width:50.483932px;}
._23{width:51.568266px;}
._7{width:53.090816px;}
._21{width:54.197507px;}
._17{width:61.454056px;}
._24{width:62.551005px;}
._1{width:63.864996px;}
._2{width:71.360887px;}
._30{width:72.762199px;}
._26{width:76.199862px;}
._25{width:77.839334px;}
._4{width:95.947411px;}
._20{width:120.316505px;}
._2f{width:265.016871px;}
._10{width:268.404377px;}
._c{width:269.408777px;}
._f{width:272.541236px;}
._2c{width:363.612116px;}
._2e{width:440.557150px;}
._2d{width:579.663355px;}
._32{width:2334.917816px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,0,255);}
.fc1{color:rgb(16,38,59);}
.fc2{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs8{font-size:43.032780px;}
.fs7{font-size:61.475400px;}
.fs3{font-size:84.313320px;}
.fs6{font-size:101.217960px;}
.fs4{font-size:120.448260px;}
.fs5{font-size:144.597780px;}
.fs2{font-size:145.738800px;}
.fs1{font-size:208.199280px;}
.fs0{font-size:299.835660px;}
.y0{bottom:0.000000px;}
.y1d{bottom:5.155531px;}
.y16{bottom:7.204254px;}
.y15{bottom:23.835545px;}
.y5a{bottom:30.247500px;}
.y1e{bottom:32.748106px;}
.y1f{bottom:65.655600px;}
.y2c{bottom:72.270550px;}
.y17{bottom:78.673227px;}
.y20{bottom:98.563095px;}
.y27{bottom:102.041617px;}
.y1c{bottom:108.220032px;}
.y2b{bottom:118.361625px;}
.y18{bottom:125.030074px;}
.y21{bottom:131.470590px;}
.y59{bottom:147.835500px;}
.y40{bottom:148.338000px;}
.y22{bottom:164.378084px;}
.y19{bottom:171.386921px;}
.y58{bottom:188.097000px;}
.y3f{bottom:188.283000px;}
.y23{bottom:197.285579px;}
.y1a{bottom:217.743769px;}
.y3e{bottom:228.228000px;}
.y57{bottom:228.360000px;}
.y24{bottom:230.193073px;}
.y2a{bottom:233.887772px;}
.y29{bottom:250.341519px;}
.y25{bottom:263.100568px;}
.y1b{bottom:264.100616px;}
.y56{bottom:268.623000px;}
.y26{bottom:296.008062px;}
.y28{bottom:303.164183px;}
.y55{bottom:308.884500px;}
.y54{bottom:389.673000px;}
.y53{bottom:519.234000px;}
.y52{bottom:559.179000px;}
.y51{bottom:599.124000px;}
.y3d{bottom:863.811000px;}
.y50{bottom:897.549000px;}
.y3c{bottom:915.315000px;}
.y4f{bottom:949.054500px;}
.y3b{bottom:966.820500px;}
.y4e{bottom:1000.558500px;}
.y3a{bottom:1018.324500px;}
.y4d{bottom:1052.064000px;}
.y39{bottom:1084.810500px;}
.y38{bottom:1136.316000px;}
.y4c{bottom:1153.630500px;}
.y37{bottom:1187.820000px;}
.y36{bottom:1239.325500px;}
.y4b{bottom:1273.155000px;}
.y35{bottom:1290.829500px;}
.y4a{bottom:1313.100000px;}
.y34{bottom:1342.335000px;}
.y49{bottom:1353.046500px;}
.y48{bottom:1392.991500px;}
.y33{bottom:1393.839000px;}
.y32{bottom:1445.344500px;}
.y31{bottom:1514.818500px;}
.y30{bottom:1566.324000px;}
.y2f{bottom:1657.771500px;}
.y2e{bottom:1697.716500px;}
.y2d{bottom:1737.661500px;}
.y14{bottom:1791.580500px;}
.y47{bottom:1857.613500px;}
.y46{bottom:1899.373500px;}
.y45{bottom:1957.030500px;}
.y13{bottom:2184.919500px;}
.y12{bottom:2236.423500px;}
.y44{bottom:2262.328500px;}
.y11{bottom:2287.929000px;}
.y43{bottom:2313.832500px;}
.y10{bottom:2339.434500px;}
.y42{bottom:2365.338000px;}
.y41{bottom:2432.739000px;}
.yf{bottom:2440.999500px;}
.ye{bottom:2553.987000px;}
.yd{bottom:2605.492500px;}
.yc{bottom:2656.996500px;}
.yb{bottom:2708.502000px;}
.ya{bottom:2760.007500px;}
.y9{bottom:2811.511500px;}
.y8{bottom:2863.017000px;}
.y7{bottom:2914.521000px;}
.y6{bottom:2966.026500px;}
.y5{bottom:3067.593000px;}
.y4{bottom:3250.002000px;}
.y3{bottom:3291.762000px;}
.y2{bottom:3349.714500px;}
.y1{bottom:3444.522000px;}
.ha{height:39.977453px;}
.h8{height:57.110647px;}
.h9{height:63.511004px;}
.h4{height:65.342823px;}
.hb{height:67.196454px;}
.hd{height:93.347402px;}
.hc{height:110.872623px;}
.h6{height:133.102256px;}
.h5{height:154.067467px;}
.h3{height:188.499570px;}
.h2{height:221.878388px;}
.h7{height:316.159200px;}
.h0{height:3575.905500px;}
.h1{height:3576.000000px;}
.w2{width:1106.557200px;}
.w0{width:2525.668500px;}
.w1{width:2526.000000px;}
.x0{left:0.000000px;}
.xc{left:12.995017px;}
.xb{left:17.948727px;}
.x9{left:35.684654px;}
.x3{left:80.034000px;}
.x6{left:84.193500px;}
.x1e{left:85.318500px;}
.x8{left:99.175500px;}
.x15{left:128.302500px;}
.x1{left:161.050500px;}
.x2{left:183.420000px;}
.xa{left:341.851515px;}
.x7{left:366.634500px;}
.x5{left:498.606000px;}
.x4{left:659.896500px;}
.x10{left:743.604391px;}
.xf{left:748.558100px;}
.x11{left:761.408929px;}
.xd{left:778.891384px;}
.x13{left:847.219238px;}
.xe{left:862.636213px;}
.x12{left:941.077758px;}
.x14{left:1005.234215px;}
.x17{left:1304.931000px;}
.x1d{left:1313.898000px;}
.x1b{left:1319.913000px;}
.x19{left:1324.719000px;}
.x18{left:1330.057500px;}
.x1a{left:1530.351000px;}
.x16{left:1649.440500px;}
.x1c{left:1732.512000px;}
@media print{
.v2{vertical-align:-38.853333pt;}
.v4{vertical-align:-19.280000pt;}
.v7{vertical-align:-16.058667pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:8.965163pt;}
.v5{vertical-align:20.918713pt;}
.v3{vertical-align:38.853333pt;}
.v1{vertical-align:67.157333pt;}
.ls22{letter-spacing:0.000000pt;}
.ls1d{letter-spacing:0.000001pt;}
.ls16{letter-spacing:0.001576pt;}
.ls17{letter-spacing:0.002972pt;}
.ls11{letter-spacing:0.005151pt;}
.lsa{letter-spacing:1.503009pt;}
.ls7{letter-spacing:2.653547pt;}
.ls4{letter-spacing:2.654898pt;}
.ls9{letter-spacing:2.656332pt;}
.ls5{letter-spacing:2.656611pt;}
.ls6{letter-spacing:2.658602pt;}
.ls8{letter-spacing:2.658727pt;}
.ls3{letter-spacing:2.659466pt;}
.ls13{letter-spacing:4.612462pt;}
.lsb{letter-spacing:12.149140pt;}
.ls1b{letter-spacing:29.738083pt;}
.lse{letter-spacing:30.536838pt;}
.ls1a{letter-spacing:31.723644pt;}
.ls21{letter-spacing:31.724506pt;}
.ls18{letter-spacing:31.729839pt;}
.ls1c{letter-spacing:32.914699pt;}
.ls19{letter-spacing:34.413174pt;}
.ls15{letter-spacing:35.698464pt;}
.lsf{letter-spacing:37.555061pt;}
.lsc{letter-spacing:41.164397pt;}
.ls12{letter-spacing:47.654299pt;}
.ls1f{letter-spacing:50.217485pt;}
.ls1e{letter-spacing:50.222513pt;}
.ls14{letter-spacing:50.827084pt;}
.ls20{letter-spacing:53.452930pt;}
.ls10{letter-spacing:56.589131pt;}
.lsd{letter-spacing:68.581636pt;}
.ls2{letter-spacing:228.625337pt;}
.ls1{letter-spacing:229.920076pt;}
.ls0{letter-spacing:234.917150pt;}
.ws0{word-spacing:-210.817784pt;}
.wsc{word-spacing:-185.066027pt;}
.ws18{word-spacing:-150.828812pt;}
.ws2e{word-spacing:-146.387227pt;}
.ws4{word-spacing:-144.166435pt;}
.ws6{word-spacing:-143.611237pt;}
.ws2{word-spacing:-142.870973pt;}
.ws1{word-spacing:-142.316787pt;}
.ws7{word-spacing:-142.316557pt;}
.ws3e{word-spacing:-140.650180pt;}
.ws8{word-spacing:-137.878397pt;}
.ws26{word-spacing:-107.065120pt;}
.wsd{word-spacing:-104.560745pt;}
.ws44{word-spacing:-104.238933pt;}
.ws14{word-spacing:-101.282712pt;}
.ws11{word-spacing:-100.768586pt;}
.ws2c{word-spacing:-98.583553pt;}
.ws12{word-spacing:-98.069428pt;}
.wsf{word-spacing:-97.426771pt;}
.ws1b{word-spacing:-96.784114pt;}
.ws15{word-spacing:-96.527051pt;}
.ws28{word-spacing:-96.398520pt;}
.ws1a{word-spacing:-95.498800pt;}
.ws13{word-spacing:-95.113206pt;}
.ws1c{word-spacing:-93.956424pt;}
.ws17{word-spacing:-93.699361pt;}
.ws27{word-spacing:-93.313767pt;}
.ws37{word-spacing:-91.514328pt;}
.ws10{word-spacing:-91.128734pt;}
.ws43{word-spacing:-90.357546pt;}
.ws19{word-spacing:-87.658388pt;}
.ws2b{word-spacing:-85.730417pt;}
.ws16{word-spacing:-85.601886pt;}
.ws30{word-spacing:-83.673915pt;}
.ws32{word-spacing:-83.545384pt;}
.ws3f{word-spacing:-83.416853pt;}
.wsb{word-spacing:-83.403728pt;}
.ws33{word-spacing:-83.329203pt;}
.ws9{word-spacing:-83.082533pt;}
.ws2f{word-spacing:-82.388602pt;}
.ws40{word-spacing:-80.974757pt;}
.ws41{word-spacing:-80.968232pt;}
.ws34{word-spacing:-80.846225pt;}
.ws3d{word-spacing:-80.298840pt;}
.wsa{word-spacing:-79.763514pt;}
.ws2d{word-spacing:-78.157538pt;}
.ws24{word-spacing:-78.050472pt;}
.ws3a{word-spacing:-77.995589pt;}
.ws45{word-spacing:-77.995335pt;}
.wse{word-spacing:-75.963589pt;}
.ws25{word-spacing:-71.894794pt;}
.ws3b{word-spacing:-71.572890pt;}
.ws3c{word-spacing:-68.304592pt;}
.ws29{word-spacing:-66.450713pt;}
.ws2a{word-spacing:-57.196455pt;}
.ws1d{word-spacing:-0.128531pt;}
.ws39{word-spacing:-0.107065pt;}
.ws1e{word-spacing:-0.089972pt;}
.ws38{word-spacing:-0.074945pt;}
.ws23{word-spacing:0.000000pt;}
.ws35{word-spacing:32.028261pt;}
.ws36{word-spacing:35.474655pt;}
.ws31{word-spacing:45.018982pt;}
.ws21{word-spacing:45.811767pt;}
.ws42{word-spacing:50.141317pt;}
.ws22{word-spacing:99.105880pt;}
.ws5{word-spacing:105.369724pt;}
.ws3{word-spacing:105.372032pt;}
.ws20{word-spacing:124.329442pt;}
.ws1f{word-spacing:325.655911pt;}
._27{margin-left:-20.357263pt;}
._1a{margin-left:-15.651247pt;}
._9{margin-left:-13.981399pt;}
._12{margin-left:-11.986725pt;}
._5{margin-left:-6.929535pt;}
._a{margin-left:-5.473663pt;}
._3{margin-left:-3.997809pt;}
._0{margin-left:-2.931726pt;}
._8{margin-left:-1.968618pt;}
._6{margin-left:-1.066082pt;}
._31{width:1.207312pt;}
._1f{width:2.656957pt;}
._e{width:21.704999pt;}
._d{width:24.303782pt;}
._11{width:25.279218pt;}
._b{width:26.766280pt;}
._14{width:28.348789pt;}
._1b{width:29.552808pt;}
._19{width:30.551995pt;}
._13{width:31.700009pt;}
._22{width:32.958012pt;}
._29{width:34.144284pt;}
._15{width:35.255424pt;}
._1d{width:36.155144pt;}
._2b{width:37.248484pt;}
._16{width:38.342993pt;}
._2a{width:39.616085pt;}
._18{width:40.856730pt;}
._1e{width:42.379271pt;}
._28{width:43.904857pt;}
._1c{width:44.874606pt;}
._23{width:45.838459pt;}
._7{width:47.191837pt;}
._21{width:48.175561pt;}
._17{width:54.625828pt;}
._24{width:55.600893pt;}
._1{width:56.768885pt;}
._2{width:63.431900pt;}
._30{width:64.677510pt;}
._26{width:67.733211pt;}
._25{width:69.190519pt;}
._4{width:85.286588pt;}
._20{width:106.948004pt;}
._2f{width:235.570552pt;}
._10{width:238.581668pt;}
._c{width:239.474468pt;}
._f{width:242.258877pt;}
._2c{width:323.210770pt;}
._2e{width:391.606355pt;}
._2d{width:515.256316pt;}
._32{width:2075.482503pt;}
.fs8{font-size:38.251360pt;}
.fs7{font-size:54.644800pt;}
.fs3{font-size:74.945173pt;}
.fs6{font-size:89.971520pt;}
.fs4{font-size:107.065120pt;}
.fs5{font-size:128.531360pt;}
.fs2{font-size:129.545600pt;}
.fs1{font-size:185.066027pt;}
.fs0{font-size:266.520587pt;}
.y0{bottom:0.000000pt;}
.y1d{bottom:4.582694pt;}
.y16{bottom:6.403781pt;}
.y15{bottom:21.187151pt;}
.y5a{bottom:26.886667pt;}
.y1e{bottom:29.109427pt;}
.y1f{bottom:58.360534pt;}
.y2c{bottom:64.240489pt;}
.y17{bottom:69.931757pt;}
.y20{bottom:87.611640pt;}
.y27{bottom:90.703659pt;}
.y1c{bottom:96.195584pt;}
.y2b{bottom:105.210334pt;}
.y18{bottom:111.137844pt;}
.y21{bottom:116.862746pt;}
.y59{bottom:131.409333pt;}
.y40{bottom:131.856000pt;}
.y22{bottom:146.113852pt;}
.y19{bottom:152.343930pt;}
.y58{bottom:167.197333pt;}
.y3f{bottom:167.362667pt;}
.y23{bottom:175.364959pt;}
.y1a{bottom:193.550017pt;}
.y3e{bottom:202.869333pt;}
.y57{bottom:202.986667pt;}
.y24{bottom:204.616065pt;}
.y2a{bottom:207.900242pt;}
.y29{bottom:222.525795pt;}
.y25{bottom:233.867171pt;}
.y1b{bottom:234.756103pt;}
.y56{bottom:238.776000pt;}
.y26{bottom:263.118278pt;}
.y28{bottom:269.479274pt;}
.y55{bottom:274.564000pt;}
.y54{bottom:346.376000pt;}
.y53{bottom:461.541333pt;}
.y52{bottom:497.048000pt;}
.y51{bottom:532.554667pt;}
.y3d{bottom:767.832000pt;}
.y50{bottom:797.821333pt;}
.y3c{bottom:813.613333pt;}
.y4f{bottom:843.604000pt;}
.y3b{bottom:859.396000pt;}
.y4e{bottom:889.385333pt;}
.y3a{bottom:905.177333pt;}
.y4d{bottom:935.168000pt;}
.y39{bottom:964.276000pt;}
.y38{bottom:1010.058667pt;}
.y4c{bottom:1025.449333pt;}
.y37{bottom:1055.840000pt;}
.y36{bottom:1101.622667pt;}
.y4b{bottom:1131.693333pt;}
.y35{bottom:1147.404000pt;}
.y4a{bottom:1167.200000pt;}
.y34{bottom:1193.186667pt;}
.y49{bottom:1202.708000pt;}
.y48{bottom:1238.214667pt;}
.y33{bottom:1238.968000pt;}
.y32{bottom:1284.750667pt;}
.y31{bottom:1346.505333pt;}
.y30{bottom:1392.288000pt;}
.y2f{bottom:1473.574667pt;}
.y2e{bottom:1509.081333pt;}
.y2d{bottom:1544.588000pt;}
.y14{bottom:1592.516000pt;}
.y47{bottom:1651.212000pt;}
.y46{bottom:1688.332000pt;}
.y45{bottom:1739.582667pt;}
.y13{bottom:1942.150667pt;}
.y12{bottom:1987.932000pt;}
.y44{bottom:2010.958667pt;}
.y11{bottom:2033.714667pt;}
.y43{bottom:2056.740000pt;}
.y10{bottom:2079.497333pt;}
.y42{bottom:2102.522667pt;}
.y41{bottom:2162.434667pt;}
.yf{bottom:2169.777333pt;}
.ye{bottom:2270.210667pt;}
.yd{bottom:2315.993333pt;}
.yc{bottom:2361.774667pt;}
.yb{bottom:2407.557333pt;}
.ya{bottom:2453.340000pt;}
.y9{bottom:2499.121333pt;}
.y8{bottom:2544.904000pt;}
.y7{bottom:2590.685333pt;}
.y6{bottom:2636.468000pt;}
.y5{bottom:2726.749333pt;}
.y4{bottom:2888.890667pt;}
.y3{bottom:2926.010667pt;}
.y2{bottom:2977.524000pt;}
.y1{bottom:3061.797333pt;}
.ha{height:35.535513pt;}
.h8{height:50.765019pt;}
.h9{height:56.454226pt;}
.h4{height:58.082509pt;}
.hb{height:59.730182pt;}
.hd{height:82.975468pt;}
.hc{height:98.553443pt;}
.h6{height:118.313117pt;}
.h5{height:136.948860pt;}
.h3{height:167.555173pt;}
.h2{height:197.225234pt;}
.h7{height:281.030400pt;}
.h0{height:3178.582667pt;}
.h1{height:3178.666667pt;}
.w2{width:983.606400pt;}
.w0{width:2245.038667pt;}
.w1{width:2245.333333pt;}
.x0{left:0.000000pt;}
.xc{left:11.551126pt;}
.xb{left:15.954424pt;}
.x9{left:31.719692pt;}
.x3{left:71.141333pt;}
.x6{left:74.838667pt;}
.x1e{left:75.838667pt;}
.x8{left:88.156000pt;}
.x15{left:114.046667pt;}
.x1{left:143.156000pt;}
.x2{left:163.040000pt;}
.xa{left:303.868014pt;}
.x7{left:325.897333pt;}
.x5{left:443.205333pt;}
.x4{left:586.574667pt;}
.x10{left:660.981681pt;}
.xf{left:665.384978pt;}
.x11{left:676.807937pt;}
.xd{left:692.347897pt;}
.x13{left:753.083767pt;}
.xe{left:766.787745pt;}
.x12{left:836.513563pt;}
.x14{left:893.541525pt;}
.x17{left:1159.938667pt;}
.x1d{left:1167.909333pt;}
.x1b{left:1173.256000pt;}
.x19{left:1177.528000pt;}
.x18{left:1182.273333pt;}
.x1a{left:1360.312000pt;}
.x16{left:1466.169333pt;}
.x1c{left:1540.010667pt;}
}




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