
    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_124f7c816fe051c4b27df641.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_3a10af43fb8e727ae205e84b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.939453;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_c5053c21f7ada5de0f669460.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_6ce01c1018392db7b4379263.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_df7415b2ba2d2173844dba37.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1dbce6b0aa2d668f5b0fafa8.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_a17ffa09a0d13b99bda73446.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3c32eb1bba4715c58d3401d7.woff2')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_8cc1a691cf821e37a292d144.woff2')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_082b34cfbcdb11bf137091a8.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.895996;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_0128ac39fca4cc6f702fb901.woff2')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_6ff03a3de0aa80f39512c1b2.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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);}
.m5{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);}
.m6{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);}
.m4{transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249525,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-5.759998px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.062743px;}
.ls4{letter-spacing:0.068906px;}
.ls3{letter-spacing:15.904734px;}
.ls0{letter-spacing:1400.539180px;}
.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;}
}
.ws4{word-spacing:-32.462730px;}
.ws0{word-spacing:-18.414713px;}
.ws8{word-spacing:-17.999993px;}
.ws2{word-spacing:-16.613273px;}
.ws3{word-spacing:-15.011994px;}
.ws6{word-spacing:-14.970234px;}
.ws5{word-spacing:-14.939994px;}
.ws1{word-spacing:-14.374074px;}
.ws7{word-spacing:0.000000px;}
._19{margin-left:-4.131894px;}
._2{margin-left:-2.498961px;}
._1{margin-left:-1.281816px;}
._0{width:1.152887px;}
._b{width:2.188446px;}
._4{width:3.757137px;}
._3{width:5.387214px;}
._11{width:7.069125px;}
._f{width:8.479156px;}
._8{width:9.544473px;}
._6{width:10.616255px;}
._7{width:11.835281px;}
._5{width:13.796645px;}
._10{width:15.117925px;}
._9{width:16.118516px;}
._d{width:19.940204px;}
._e{width:21.205819px;}
._c{width:22.253752px;}
._16{width:23.480433px;}
._15{width:24.705021px;}
._a{width:25.913656px;}
._14{width:27.168953px;}
._12{width:28.663861px;}
._13{width:29.785352px;}
._1a{width:31.219004px;}
._17{width:35.832179px;}
._18{width:37.148508px;}
._1c{width:42.767930px;}
._1d{width:44.129175px;}
._1b{width:55.752765px;}
.fcd{color:rgb(0,101,204);}
.fc1{color:rgb(64,64,64);}
.fc2{color:rgb(255,255,255);}
.fcc{color:rgb(0,176,80);}
.fc3{color:rgb(31,73,124);}
.fc0{color:rgb(0,0,0);}
.fc9{color:rgb(44,62,80);}
.fc4{color:rgb(192,0,0);}
.fc6{color:rgb(0,112,192);}
.fca{color:rgb(51,51,51);}
.fc5{color:rgb(115,27,71);}
.fc7{color:rgb(83,129,53);}
.fce{color:transparent;}
.fc8{color:rgb(0,32,96);}
.fcb{color:rgb(0,0,255);}
.fs3{font-size:48.239981px;}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs5{font-size:71.999971px;}
.fs6{font-size:84.239966px;}
.fs4{font-size:107.999957px;}
.y5{bottom:-14.219994px;}
.y0{bottom:0.000000px;}
.ya{bottom:3.599980px;}
.y1b{bottom:3.779700px;}
.y18{bottom:4.319700px;}
.y49{bottom:4.499852px;}
.y16{bottom:4.679700px;}
.yb{bottom:28.439989px;}
.y9{bottom:46.620000px;}
.y7{bottom:50.219980px;}
.y8{bottom:51.659979px;}
.y9a{bottom:129.779948px;}
.y75{bottom:147.239941px;}
.y42{bottom:150.659940px;}
.y99{bottom:153.539939px;}
.y74{bottom:167.939933px;}
.y41{bottom:174.419930px;}
.y98{bottom:177.299929px;}
.y73{bottom:188.639925px;}
.y40{bottom:200.519920px;}
.y97{bottom:201.059920px;}
.y72{bottom:209.339916px;}
.y3f{bottom:223.199911px;}
.y96{bottom:224.999910px;}
.y71{bottom:230.039908px;}
.y28{bottom:232.739907px;}
.y3e{bottom:241.559903px;}
.y95{bottom:248.759900px;}
.y70{bottom:250.739900px;}
.y3d{bottom:267.839893px;}
.y6f{bottom:271.439891px;}
.y94{bottom:272.519891px;}
.y6e{bottom:292.139883px;}
.y93{bottom:296.279881px;}
.y4c{bottom:299.699880px;}
.y6d{bottom:312.839875px;}
.y92{bottom:320.039872px;}
.y4b{bottom:322.919871px;}
.y6c{bottom:333.539867px;}
.y91{bottom:343.979862px;}
.y4a{bottom:345.959862px;}
.y6b{bottom:354.239858px;}
.y48{bottom:364.680000px;}
.y90{bottom:367.739853px;}
.y6a{bottom:374.939850px;}
.y27{bottom:380.159848px;}
.y8f{bottom:391.499843px;}
.y69{bottom:395.639842px;}
.y3c{bottom:412.919835px;}
.y8e{bottom:415.259834px;}
.y68{bottom:416.339833px;}
.y3b{bottom:430.199828px;}
.y67{bottom:437.039825px;}
.y8d{bottom:439.199824px;}
.y3a{bottom:447.479821px;}
.y66{bottom:457.739817px;}
.y8c{bottom:462.959815px;}
.y39{bottom:464.759814px;}
.y26{bottom:478.439809px;}
.y38{bottom:481.859807px;}
.y8b{bottom:486.719805px;}
.y37{bottom:499.139800px;}
.y8a{bottom:510.479796px;}
.y25{bottom:515.519794px;}
.y36{bottom:516.419793px;}
.y65{bottom:519.839792px;}
.y24{bottom:533.159787px;}
.y35{bottom:533.699787px;}
.y89{bottom:534.419786px;}
.y64{bottom:540.539784px;}
.y23{bottom:550.619780px;}
.y34{bottom:550.979780px;}
.y88{bottom:558.179777px;}
.y63{bottom:561.239776px;}
.y22{bottom:567.179773px;}
.y33{bottom:568.079773px;}
.y62{bottom:581.939767px;}
.y32{bottom:585.359766px;}
.y31{bottom:602.639759px;}
.y21{bottom:602.999759px;}
.y87{bottom:605.699758px;}
.y30{bottom:619.919752px;}
.y61{bottom:623.339751px;}
.y86{bottom:629.639748px;}
.y2f{bottom:637.199745px;}
.y20{bottom:638.819744px;}
.y60{bottom:644.039742px;}
.y85{bottom:653.399739px;}
.y2e{bottom:654.479738px;}
.y5f{bottom:664.739734px;}
.y2d{bottom:671.579731px;}
.y1f{bottom:674.639730px;}
.y84{bottom:677.159729px;}
.y5e{bottom:685.439726px;}
.y2c{bottom:688.859724px;}
.y1e{bottom:692.459723px;}
.y83{bottom:700.919720px;}
.y2b{bottom:706.139718px;}
.y29{bottom:721.979711px;}
.y2a{bottom:723.419711px;}
.y1d{bottom:724.859710px;}
.y5d{bottom:726.839709px;}
.y15{bottom:746.280000px;}
.y17{bottom:746.460000px;}
.y1a{bottom:747.360000px;}
.y5c{bottom:747.539701px;}
.y82{bottom:748.619701px;}
.y19{bottom:750.959700px;}
.y1c{bottom:752.579699px;}
.y5b{bottom:768.239693px;}
.y81{bottom:772.379691px;}
.y14{bottom:774.539690px;}
.y5a{bottom:788.939684px;}
.y80{bottom:796.139682px;}
.y13{bottom:798.299681px;}
.y59{bottom:809.639676px;}
.y7f{bottom:819.899672px;}
.y12{bottom:822.059671px;}
.y11{bottom:828.899668px;}
.y58{bottom:830.339668px;}
.y7e{bottom:843.839662px;}
.yf{bottom:845.819662px;}
.y57{bottom:851.039660px;}
.y10{bottom:851.759659px;}
.y7d{bottom:867.599653px;}
.ye{bottom:869.759652px;}
.y56{bottom:871.739651px;}
.y7c{bottom:891.359643px;}
.y55{bottom:892.439643px;}
.yd{bottom:896.939641px;}
.y54{bottom:913.139635px;}
.y7b{bottom:915.119634px;}
.yc{bottom:932.579627px;}
.y53{bottom:933.839626px;}
.y7a{bottom:939.059624px;}
.y52{bottom:954.539618px;}
.y79{bottom:962.819615px;}
.y46{bottom:975.059610px;}
.y51{bottom:975.239610px;}
.y78{bottom:986.579605px;}
.y50{bottom:995.939602px;}
.y45{bottom:996.839601px;}
.y77{bottom:1010.339596px;}
.y4f{bottom:1016.639593px;}
.y44{bottom:1020.599592px;}
.y76{bottom:1034.279586px;}
.y4e{bottom:1037.339585px;}
.y43{bottom:1048.319581px;}
.y47{bottom:1052.459579px;}
.y4d{bottom:1058.039577px;}
.y4{bottom:1078.199569px;}
.y6{bottom:1108.079557px;}
.y3{bottom:1109.699556px;}
.y2{bottom:1126.979549px;}
.y1{bottom:1144.259542px;}
.h3{height:0.720000px;}
.h6{height:18.540000px;}
.h12{height:19.260000px;}
.hf{height:20.160000px;}
.hd{height:20.340000px;}
.ha{height:32.693893px;}
.hb{height:33.518307px;}
.h5{height:35.167134px;}
.h15{height:36.624009px;}
.h4{height:39.313461px;}
.h11{height:39.366195px;}
.h7{height:39.830258px;}
.h1{height:41.522679px;}
.h14{height:43.565256px;}
.h10{height:44.149201px;}
.h18{height:45.022482px;}
.h17{height:46.025138px;}
.h19{height:47.545293px;}
.h13{height:48.224512px;}
.h2{height:48.289199px;}
.h9{height:48.796855px;}
.hc{height:50.027324px;}
.h16{height:57.092321px;}
.he{height:61.411264px;}
.h8{height:73.195283px;}
.h0{height:1188.000000px;}
.w5{width:3.600000px;}
.w2{width:3.780000px;}
.w1{width:8.820000px;}
.w7{width:15.300000px;}
.w3{width:23.400000px;}
.w6{width:33.660000px;}
.w4{width:58.500000px;}
.w8{width:111.780000px;}
.w9{width:421.200000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1d{left:98.819960px;}
.x1b{left:104.939958px;}
.x1{left:107.999957px;}
.x18{left:109.619956px;}
.xf{left:112.499701px;}
.x10{left:116.280000px;}
.x1f{left:119.879952px;}
.xd{left:121.139952px;}
.x19{left:122.579951px;}
.x1a{left:124.020004px;}
.xe{left:127.259949px;}
.x4{left:133.199947px;}
.x11{left:139.680000px;}
.x7{left:149.939940px;}
.x1e{left:159.659936px;}
.x1c{left:161.639935px;}
.x12{left:198.180000px;}
.x13{left:201.780000px;}
.x22{left:228.239909px;}
.x14{left:235.439906px;}
.x15{left:239.039904px;}
.x24{left:242.639903px;}
.x20{left:245.879870px;}
.x16{left:270.540000px;}
.x21{left:291.599883px;}
.x17{left:293.759882px;}
.x8{left:296.639921px;}
.x2{left:302.579879px;}
.xb{left:389.699844px;}
.x25{left:404.280527px;}
.x27{left:408.060000px;}
.x23{left:410.399976px;}
.x5{left:424.259830px;}
.xa{left:458.999816px;}
.xc{left:522.179791px;}
.x9{left:621.359751px;}
.x3{left:691.199724px;}
.x26{left:724.680399px;}
.x6{left:805.860000px;}
@media print{
.v1{vertical-align:-5.119998pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.055772pt;}
.ls4{letter-spacing:0.061250pt;}
.ls3{letter-spacing:14.137541pt;}
.ls0{letter-spacing:1244.923715pt;}
.ws4{word-spacing:-28.855760pt;}
.ws0{word-spacing:-16.368633pt;}
.ws8{word-spacing:-15.999994pt;}
.ws2{word-spacing:-14.767354pt;}
.ws3{word-spacing:-13.343995pt;}
.ws6{word-spacing:-13.306875pt;}
.ws5{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.776955pt;}
.ws7{word-spacing:0.000000pt;}
._19{margin-left:-3.672795pt;}
._2{margin-left:-2.221298pt;}
._1{margin-left:-1.139392pt;}
._0{width:1.024788pt;}
._b{width:1.945285pt;}
._4{width:3.339677pt;}
._3{width:4.788635pt;}
._11{width:6.283666pt;}
._f{width:7.537028pt;}
._8{width:8.483976pt;}
._6{width:9.436671pt;}
._7{width:10.520250pt;}
._5{width:12.263685pt;}
._10{width:13.438156pt;}
._9{width:14.327569pt;}
._d{width:17.724626pt;}
._e{width:18.849617pt;}
._c{width:19.781113pt;}
._16{width:20.871496pt;}
._15{width:21.960019pt;}
._a{width:23.034361pt;}
._14{width:24.150180pt;}
._12{width:25.478988pt;}
._13{width:26.475869pt;}
._1a{width:27.750226pt;}
._17{width:31.850826pt;}
._18{width:33.020896pt;}
._1c{width:38.015938pt;}
._1d{width:39.225933pt;}
._1b{width:49.558013pt;}
.fs3{font-size:42.879983pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs5{font-size:63.999974pt;}
.fs6{font-size:74.879970pt;}
.fs4{font-size:95.999962pt;}
.y5{bottom:-12.639995pt;}
.y0{bottom:0.000000pt;}
.ya{bottom:3.199982pt;}
.y1b{bottom:3.359733pt;}
.y18{bottom:3.839733pt;}
.y49{bottom:3.999869pt;}
.y16{bottom:4.159733pt;}
.yb{bottom:25.279990pt;}
.y9{bottom:41.440000pt;}
.y7{bottom:44.639982pt;}
.y8{bottom:45.919982pt;}
.y9a{bottom:115.359954pt;}
.y75{bottom:130.879948pt;}
.y42{bottom:133.919946pt;}
.y99{bottom:136.479945pt;}
.y74{bottom:149.279940pt;}
.y41{bottom:155.039938pt;}
.y98{bottom:157.599937pt;}
.y73{bottom:167.679933pt;}
.y40{bottom:178.239929pt;}
.y97{bottom:178.719929pt;}
.y72{bottom:186.079926pt;}
.y3f{bottom:198.399921pt;}
.y96{bottom:199.999920pt;}
.y71{bottom:204.479918pt;}
.y28{bottom:206.879917pt;}
.y3e{bottom:214.719914pt;}
.y95{bottom:221.119912pt;}
.y70{bottom:222.879911pt;}
.y3d{bottom:238.079905pt;}
.y6f{bottom:241.279903pt;}
.y94{bottom:242.239903pt;}
.y6e{bottom:259.679896pt;}
.y93{bottom:263.359895pt;}
.y4c{bottom:266.399893pt;}
.y6d{bottom:278.079889pt;}
.y92{bottom:284.479886pt;}
.y4b{bottom:287.039885pt;}
.y6c{bottom:296.479881pt;}
.y91{bottom:305.759878pt;}
.y4a{bottom:307.519877pt;}
.y6b{bottom:314.879874pt;}
.y48{bottom:324.160000pt;}
.y90{bottom:326.879869pt;}
.y6a{bottom:333.279867pt;}
.y27{bottom:337.919865pt;}
.y8f{bottom:347.999861pt;}
.y69{bottom:351.679859pt;}
.y3c{bottom:367.039853pt;}
.y8e{bottom:369.119852pt;}
.y68{bottom:370.079852pt;}
.y3b{bottom:382.399847pt;}
.y67{bottom:388.479845pt;}
.y8d{bottom:390.399844pt;}
.y3a{bottom:397.759841pt;}
.y66{bottom:406.879837pt;}
.y8c{bottom:411.519835pt;}
.y39{bottom:413.119835pt;}
.y26{bottom:425.279830pt;}
.y38{bottom:428.319829pt;}
.y8b{bottom:432.639827pt;}
.y37{bottom:443.679823pt;}
.y8a{bottom:453.759818pt;}
.y25{bottom:458.239817pt;}
.y36{bottom:459.039816pt;}
.y65{bottom:462.079815pt;}
.y24{bottom:473.919810pt;}
.y35{bottom:474.399810pt;}
.y89{bottom:475.039810pt;}
.y64{bottom:480.479808pt;}
.y23{bottom:489.439804pt;}
.y34{bottom:489.759804pt;}
.y88{bottom:496.159802pt;}
.y63{bottom:498.879800pt;}
.y22{bottom:504.159798pt;}
.y33{bottom:504.959798pt;}
.y62{bottom:517.279793pt;}
.y32{bottom:520.319792pt;}
.y31{bottom:535.679786pt;}
.y21{bottom:535.999786pt;}
.y87{bottom:538.399785pt;}
.y30{bottom:551.039780pt;}
.y61{bottom:554.079778pt;}
.y86{bottom:559.679776pt;}
.y2f{bottom:566.399773pt;}
.y20{bottom:567.839773pt;}
.y60{bottom:572.479771pt;}
.y85{bottom:580.799768pt;}
.y2e{bottom:581.759767pt;}
.y5f{bottom:590.879764pt;}
.y2d{bottom:596.959761pt;}
.y1f{bottom:599.679760pt;}
.y84{bottom:601.919759pt;}
.y5e{bottom:609.279756pt;}
.y2c{bottom:612.319755pt;}
.y1e{bottom:615.519754pt;}
.y83{bottom:623.039751pt;}
.y2b{bottom:627.679749pt;}
.y29{bottom:641.759743pt;}
.y2a{bottom:643.039743pt;}
.y1d{bottom:644.319742pt;}
.y5d{bottom:646.079742pt;}
.y15{bottom:663.360000pt;}
.y17{bottom:663.520000pt;}
.y1a{bottom:664.320000pt;}
.y5c{bottom:664.479734pt;}
.y82{bottom:665.439734pt;}
.y19{bottom:667.519733pt;}
.y1c{bottom:668.959732pt;}
.y5b{bottom:682.879727pt;}
.y81{bottom:686.559725pt;}
.y14{bottom:688.479725pt;}
.y5a{bottom:701.279719pt;}
.y80{bottom:707.679717pt;}
.y13{bottom:709.599716pt;}
.y59{bottom:719.679712pt;}
.y7f{bottom:728.799708pt;}
.y12{bottom:730.719708pt;}
.y11{bottom:736.799705pt;}
.y58{bottom:738.079705pt;}
.y7e{bottom:750.079700pt;}
.yf{bottom:751.839699pt;}
.y57{bottom:756.479697pt;}
.y10{bottom:757.119697pt;}
.y7d{bottom:771.199692pt;}
.ye{bottom:773.119691pt;}
.y56{bottom:774.879690pt;}
.y7c{bottom:792.319683pt;}
.y55{bottom:793.279683pt;}
.yd{bottom:797.279681pt;}
.y54{bottom:811.679675pt;}
.y7b{bottom:813.439675pt;}
.yc{bottom:828.959668pt;}
.y53{bottom:830.079668pt;}
.y7a{bottom:834.719666pt;}
.y52{bottom:848.479661pt;}
.y79{bottom:855.839658pt;}
.y46{bottom:866.719653pt;}
.y51{bottom:866.879653pt;}
.y78{bottom:876.959649pt;}
.y50{bottom:885.279646pt;}
.y45{bottom:886.079646pt;}
.y77{bottom:898.079641pt;}
.y4f{bottom:903.679639pt;}
.y44{bottom:907.199637pt;}
.y76{bottom:919.359632pt;}
.y4e{bottom:922.079631pt;}
.y43{bottom:931.839627pt;}
.y47{bottom:935.519626pt;}
.y4d{bottom:940.479624pt;}
.y4{bottom:958.399617pt;}
.y6{bottom:984.959606pt;}
.y3{bottom:986.399605pt;}
.y2{bottom:1001.759599pt;}
.y1{bottom:1017.119593pt;}
.h3{height:0.640000pt;}
.h6{height:16.480000pt;}
.h12{height:17.120000pt;}
.hf{height:17.920000pt;}
.hd{height:18.080000pt;}
.ha{height:29.061238pt;}
.hb{height:29.794051pt;}
.h5{height:31.259675pt;}
.h15{height:32.554674pt;}
.h4{height:34.945299pt;}
.h11{height:34.992174pt;}
.h7{height:35.404673pt;}
.h1{height:36.909048pt;}
.h14{height:38.724672pt;}
.h10{height:39.243734pt;}
.h18{height:40.019984pt;}
.h17{height:40.911234pt;}
.h19{height:42.262483pt;}
.h13{height:42.866233pt;}
.h2{height:42.923733pt;}
.h9{height:43.374983pt;}
.hc{height:44.468732pt;}
.h16{height:50.748730pt;}
.he{height:54.587791pt;}
.h8{height:65.062474pt;}
.h0{height:1056.000000pt;}
.w5{width:3.200000pt;}
.w2{width:3.360000pt;}
.w1{width:7.840000pt;}
.w7{width:13.600000pt;}
.w3{width:20.800000pt;}
.w6{width:29.920000pt;}
.w4{width:52.000000pt;}
.w8{width:99.360000pt;}
.w9{width:374.400000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1d{left:87.839965pt;}
.x1b{left:93.279963pt;}
.x1{left:95.999962pt;}
.x18{left:97.439961pt;}
.xf{left:99.999734pt;}
.x10{left:103.360000pt;}
.x1f{left:106.559957pt;}
.xd{left:107.679957pt;}
.x19{left:108.959956pt;}
.x1a{left:110.240004pt;}
.xe{left:113.119955pt;}
.x4{left:118.399953pt;}
.x11{left:124.160000pt;}
.x7{left:133.279947pt;}
.x1e{left:141.919943pt;}
.x1c{left:143.679943pt;}
.x12{left:176.160000pt;}
.x13{left:179.360000pt;}
.x22{left:202.879919pt;}
.x14{left:209.279916pt;}
.x15{left:212.479915pt;}
.x24{left:215.679914pt;}
.x20{left:218.559885pt;}
.x16{left:240.480000pt;}
.x21{left:259.199896pt;}
.x17{left:261.119896pt;}
.x8{left:263.679929pt;}
.x2{left:268.959892pt;}
.xb{left:346.399861pt;}
.x25{left:359.360468pt;}
.x27{left:362.720000pt;}
.x23{left:364.799978pt;}
.x5{left:377.119849pt;}
.xa{left:407.999837pt;}
.xc{left:464.159814pt;}
.x9{left:552.319779pt;}
.x3{left:614.399754pt;}
.x26{left:644.160355pt;}
.x6{left:716.320000pt;}
}




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