
    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_893a97638790eaa1202b0491.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;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_5fd98b8a894c2b2fc7fad9bc.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.284180;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_6190d7e68adc298a0b3582e8.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.311035;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_5e9d5e58a0a7cd68bdaa5775.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284180;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_d08c5d4e1c6f9e81ef503391.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.239258;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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.432129;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.249846,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249846,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249849,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249851,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249852,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249854,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249857,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-20.879992px;}
.v4{vertical-align:-13.679995px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:14.399994px;}
.v2{vertical-align:20.879992px;}
.ls2{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.011165px;}
.ls3{letter-spacing:0.019560px;}
.ls0{letter-spacing:0.027204px;}
.ls6{letter-spacing:13.155295px;}
.ls4{letter-spacing:827.256778px;}
.ls5{letter-spacing:1198.284441px;}
.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:-14.939994px;}
.ws2{word-spacing:-13.499995px;}
.ws1{word-spacing:0.000000px;}
._6{margin-left:-1.036385px;}
._0{width:1.136852px;}
._1{width:2.273624px;}
._4{width:4.220089px;}
._5{width:5.496402px;}
._7{width:6.597345px;}
._8{width:7.619677px;}
._b{width:8.639619px;}
._c{width:9.708374px;}
._e{width:11.138834px;}
._d{width:12.536673px;}
._3{width:13.914268px;}
._2{width:16.537626px;}
._a{width:19.232601px;}
._9{width:20.385731px;}
._f{width:79.613308px;}
._11{width:259.927011px;}
._10{width:308.196629px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:38.879984px;}
.fs0{font-size:48.239981px;}
.fs7{font-size:51.119980px;}
.fs1{font-size:53.999978px;}
.fs2{font-size:59.759976px;}
.fs5{font-size:66.239974px;}
.fs6{font-size:71.999971px;}
.fs3{font-size:77.759969px;}
.y0{bottom:0.000000px;}
.y5{bottom:149.700240px;}
.y29{bottom:154.199938px;}
.y96{bottom:229.439908px;}
.y6a{bottom:235.919906px;}
.y26{bottom:244.739902px;}
.y4d{bottom:246.179902px;}
.yba{bottom:246.539901px;}
.ye4{bottom:248.519901px;}
.y8d{bottom:249.239900px;}
.yc8{bottom:250.139900px;}
.yd7{bottom:255.359898px;}
.y69{bottom:256.619897px;}
.yf8{bottom:257.339897px;}
.y25{bottom:265.439894px;}
.y4c{bottom:266.879893px;}
.yb9{bottom:267.239893px;}
.ya7{bottom:269.579892px;}
.y8c{bottom:273.899890px;}
.y68{bottom:277.319889px;}
.yf7{bottom:278.039889px;}
.ye3{bottom:278.219889px;}
.yc7{bottom:279.839888px;}
.yd6{bottom:285.059886px;}
.y24{bottom:286.499885px;}
.y4b{bottom:287.579885px;}
.yb8{bottom:287.759885px;}
.y67{bottom:298.019881px;}
.y8b{bottom:298.739881px;}
.yf6{bottom:307.739877px;}
.ye2{bottom:307.919877px;}
.y4a{bottom:308.279877px;}
.yb7{bottom:308.459877px;}
.yc6{bottom:309.539876px;}
.yd5{bottom:314.759874px;}
.y66{bottom:318.719873px;}
.y23{bottom:320.159872px;}
.y8a{bottom:323.579871px;}
.yf5{bottom:328.439869px;}
.ye1{bottom:328.619869px;}
.y49{bottom:328.979868px;}
.yb6{bottom:329.159868px;}
.yd4{bottom:335.459866px;}
.yc5{bottom:339.239864px;}
.y65{bottom:339.419864px;}
.y22{bottom:340.859864px;}
.y89{bottom:348.419861px;}
.yf4{bottom:349.139860px;}
.ye0{bottom:349.319860px;}
.y48{bottom:349.679860px;}
.yd3{bottom:356.159858px;}
.yb5{bottom:358.859856px;}
.yc4{bottom:359.939856px;}
.y64{bottom:360.119856px;}
.yf3{bottom:369.839852px;}
.ydf{bottom:370.019852px;}
.y47{bottom:370.379852px;}
.y21{bottom:370.559852px;}
.y88{bottom:373.079851px;}
.yd2{bottom:376.859849px;}
.yb4{bottom:379.559848px;}
.yc3{bottom:380.639848px;}
.y63{bottom:380.819848px;}
.yf2{bottom:390.539844px;}
.y46{bottom:391.079844px;}
.y20{bottom:391.259843px;}
.yde{bottom:396.119842px;}
.y87{bottom:397.919841px;}
.yb3{bottom:400.259840px;}
.yd1{bottom:406.559837px;}
.yc2{bottom:410.159836px;}
.y62{bottom:410.519836px;}
.yf1{bottom:411.239836px;}
.y45{bottom:411.779835px;}
.y1f{bottom:411.959835px;}
.yb2{bottom:420.959832px;}
.y86{bottom:422.759831px;}
.yd0{bottom:427.259829px;}
.y61{bottom:431.219828px;}
.yf0{bottom:431.939827px;}
.y1e{bottom:432.659827px;}
.y44{bottom:441.659823px;}
.y85{bottom:443.459823px;}
.ycf{bottom:447.959821px;}
.y60{bottom:451.919819px;}
.yef{bottom:452.639819px;}
.y1d{bottom:453.359819px;}
.yb1{bottom:462.359815px;}
.y5f{bottom:472.619811px;}
.y84{bottom:473.159811px;}
.y43{bottom:473.519811px;}
.yce{bottom:477.839809px;}
.yee{bottom:482.339807px;}
.y1c{bottom:483.059807px;}
.y83{bottom:493.859802px;}
.y5e{bottom:502.319799px;}
.yed{bottom:503.039799px;}
.y1b{bottom:503.759798px;}
.y42{bottom:505.019798px;}
.y95{bottom:508.439797px;}
.ycd{bottom:509.339796px;}
.yb0{bottom:512.759795px;}
.y82{bottom:514.559794px;}
.y5d{bottom:523.019791px;}
.yec{bottom:523.739791px;}
.y1a{bottom:524.459790px;}
.y41{bottom:525.719790px;}
.yaf{bottom:533.459787px;}
.y81{bottom:535.259786px;}
.ycc{bottom:535.439786px;}
.ya6{bottom:541.919783px;}
.y5c{bottom:543.719783px;}
.yeb{bottom:544.439782px;}
.y19{bottom:545.159782px;}
.yae{bottom:554.159778px;}
.y94{bottom:554.699778px;}
.y40{bottom:555.419778px;}
.y80{bottom:555.959778px;}
.y10a{bottom:557.399777px;}
.y5b{bottom:564.419774px;}
.yea{bottom:565.139774px;}
.y18{bottom:565.859774px;}
.yad{bottom:574.859770px;}
.y109{bottom:575.399770px;}
.y3f{bottom:576.119770px;}
.ya5{bottom:578.819768px;}
.y5a{bottom:585.119766px;}
.y93{bottom:585.299766px;}
.y7f{bottom:585.659766px;}
.ye9{bottom:585.839766px;}
.y17{bottom:586.559765px;}
.yac{bottom:595.559762px;}
.y3e{bottom:596.819761px;}
.ya4{bottom:599.519760px;}
.y108{bottom:602.399759px;}
.y59{bottom:605.819758px;}
.y7e{bottom:606.359757px;}
.ye8{bottom:606.539757px;}
.y92{bottom:615.719754px;}
.y16{bottom:616.259753px;}
.y3d{bottom:617.519753px;}
.ya3{bottom:620.219752px;}
.yab{bottom:625.619750px;}
.y58{bottom:626.519749px;}
.y7d{bottom:627.059749px;}
.ye7{bottom:627.239749px;}
.y107{bottom:629.399748px;}
.yc1{bottom:631.379747px;}
.y15{bottom:636.959745px;}
.y3c{bottom:638.219745px;}
.ya2{bottom:640.739744px;}
.ydd{bottom:644.879742px;}
.y91{bottom:646.139742px;}
.y57{bottom:647.219741px;}
.y106{bottom:647.399741px;}
.y7c{bottom:647.759741px;}
.ye6{bottom:657.119737px;}
.yaa{bottom:657.299737px;}
.y14{bottom:657.659737px;}
.y3b{bottom:658.739737px;}
.y105{bottom:665.399734px;}
.y56{bottom:667.739733px;}
.yc0{bottom:668.279733px;}
.y7b{bottom:668.459733px;}
.ya1{bottom:670.439732px;}
.y90{bottom:676.559729px;}
.y13{bottom:678.359729px;}
.ydc{bottom:681.779727px;}
.ye5{bottom:685.019726px;}
.ya9{bottom:685.199726px;}
.y3a{bottom:688.439725px;}
.ybf{bottom:688.979724px;}
.ya0{bottom:691.139724px;}
.y104{bottom:692.399723px;}
.y7a{bottom:698.159721px;}
.y12{bottom:699.059720px;}
.ydb{bottom:702.479719px;}
.y8f{bottom:706.079718px;}
.y39{bottom:709.139716px;}
.ybe{bottom:709.679716px;}
.y9f{bottom:711.839715px;}
.y79{bottom:718.859712px;}
.y103{bottom:719.399712px;}
.y11{bottom:720.119712px;}
.yda{bottom:723.179711px;}
.y38{bottom:729.839708px;}
.ybd{bottom:730.379708px;}
.y55{bottom:738.839704px;}
.y78{bottom:739.559704px;}
.y9e{bottom:741.539703px;}
.yd9{bottom:743.879702px;}
.y102{bottom:746.399701px;}
.y37{bottom:750.539700px;}
.ybc{bottom:756.479697px;}
.y54{bottom:759.539696px;}
.y77{bottom:760.259696px;}
.y9d{bottom:762.239695px;}
.y10{bottom:762.779695px;}
.yd8{bottom:769.979692px;}
.y36{bottom:771.239692px;}
.y101{bottom:773.399691px;}
.y53{bottom:780.239688px;}
.y76{bottom:780.959688px;}
.y9c{bottom:782.939687px;}
.yf{bottom:783.479687px;}
.y100{bottom:791.399683px;}
.y35{bottom:791.939683px;}
.y52{bottom:800.939680px;}
.y9b{bottom:803.639679px;}
.ye{bottom:809.399676px;}
.ycb{bottom:810.119676px;}
.y75{bottom:810.659676px;}
.y34{bottom:812.639675px;}
.yff{bottom:818.399673px;}
.y51{bottom:821.639671px;}
.yc{bottom:824.519670px;}
.yd{bottom:829.739668px;}
.y74{bottom:831.359667px;}
.y33{bottom:833.339667px;}
.yfe{bottom:836.399665px;}
.y50{bottom:842.339663px;}
.ya{bottom:845.219662px;}
.yca{bottom:847.019661px;}
.yb{bottom:850.439660px;}
.y73{bottom:852.059659px;}
.y32{bottom:854.039658px;}
.y4f{bottom:863.039655px;}
.yfd{bottom:863.399655px;}
.y8{bottom:865.919654px;}
.y9{bottom:871.139652px;}
.y72{bottom:872.759651px;}
.yc9{bottom:873.119651px;}
.y31{bottom:874.739650px;}
.y4e{bottom:883.739647px;}
.y71{bottom:893.459643px;}
.yfc{bottom:894.359642px;}
.y9a{bottom:895.439642px;}
.y7{bottom:897.419641px;}
.y30{bottom:904.439638px;}
.y8e{bottom:908.939636px;}
.y70{bottom:914.159634px;}
.y99{bottom:916.139634px;}
.y6{bottom:924.419630px;}
.y2f{bottom:925.139630px;}
.yfb{bottom:925.859630px;}
.ya8{bottom:929.639628px;}
.y6f{bottom:934.859626px;}
.y98{bottom:936.839625px;}
.y4{bottom:945.479622px;}
.y2e{bottom:945.839622px;}
.yfa{bottom:946.559621px;}
.y6e{bottom:955.559618px;}
.y97{bottom:957.539617px;}
.y3{bottom:959.339616px;}
.y2d{bottom:966.539613px;}
.y2{bottom:973.199611px;}
.y6d{bottom:976.259609px;}
.yf9{bottom:976.439609px;}
.y1{bottom:983.999606px;}
.y2c{bottom:987.239605px;}
.y6c{bottom:996.959601px;}
.y2b{bottom:1007.939597px;}
.y6b{bottom:1026.839589px;}
.y2a{bottom:1028.639589px;}
.ybb{bottom:1030.439588px;}
.y28{bottom:1060.859576px;}
.y27{bottom:1076.339569px;}
.h7{height:38.158578px;}
.h6{height:39.183734px;}
.h1{height:47.344903px;}
.he{height:51.519354px;}
.hb{height:52.971658px;}
.h2{height:52.998026px;}
.ha{height:58.621969px;}
.h3{height:58.651148px;}
.h8{height:59.038570px;}
.h5{height:60.226851px;}
.h9{height:64.978568px;}
.hc{height:66.757473px;}
.hf{height:73.051143px;}
.hd{height:75.093720px;}
.h4{height:78.367469px;}
.h0{height:1263.000000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x12{left:161.639935px;}
.x3{left:178.559929px;}
.x31{left:182.881848px;}
.x15{left:204.119935px;}
.x18{left:214.739914px;}
.x11{left:221.039912px;}
.x1c{left:233.459719px;}
.x20{left:235.979906px;}
.x9{left:238.499905px;}
.x19{left:242.099903px;}
.xa{left:243.359903px;}
.x25{left:259.199896px;}
.xf{left:271.979891px;}
.x10{left:276.119890px;}
.x1a{left:291.959883px;}
.x23{left:293.939882px;}
.x22{left:304.559878px;}
.x1e{left:308.879876px;}
.x13{left:313.559875px;}
.x2f{left:325.079870px;}
.x2c{left:329.759868px;}
.x2a{left:332.999867px;}
.x28{left:340.919864px;}
.x1d{left:346.679861px;}
.x16{left:352.799859px;}
.x5{left:362.159855px;}
.x6{left:367.019853px;}
.x17{left:375.120553px;}
.xb{left:397.799841px;}
.xc{left:402.659839px;}
.x21{left:430.199828px;}
.x26{left:432.899827px;}
.x30{left:574.739770px;}
.x7{left:605.699758px;}
.x8{left:610.559756px;}
.xd{left:614.159754px;}
.xe{left:619.379752px;}
.x24{left:620.819752px;}
.x1f{left:632.339747px;}
.x2d{left:650.699740px;}
.x1b{left:688.319725px;}
.x2b{left:695.519722px;}
.x14{left:714.419714px;}
.x2e{left:716.399713px;}
.x4{left:723.779710px;}
.x29{left:726.839709px;}
.x2{left:731.339702px;}
.x1{left:736.739705px;}
.x27{left:776.879689px;}
@media print{
.v1{vertical-align:-18.559993pt;}
.v4{vertical-align:-12.159995pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:12.799995pt;}
.v2{vertical-align:18.559993pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.009924pt;}
.ls3{letter-spacing:0.017387pt;}
.ls0{letter-spacing:0.024182pt;}
.ls6{letter-spacing:11.693595pt;}
.ls4{letter-spacing:735.339358pt;}
.ls5{letter-spacing:1065.141725pt;}
.ws0{word-spacing:-13.279995pt;}
.ws2{word-spacing:-11.999995pt;}
.ws1{word-spacing:0.000000pt;}
._6{margin-left:-0.921231pt;}
._0{width:1.010535pt;}
._1{width:2.020999pt;}
._4{width:3.751190pt;}
._5{width:4.885691pt;}
._7{width:5.864307pt;}
._8{width:6.773046pt;}
._b{width:7.679661pt;}
._c{width:8.629666pt;}
._e{width:9.901185pt;}
._d{width:11.143709pt;}
._3{width:12.368238pt;}
._2{width:14.700112pt;}
._a{width:17.095645pt;}
._9{width:18.120650pt;}
._f{width:70.767385pt;}
._11{width:231.046232pt;}
._10{width:273.952559pt;}
.fs4{font-size:34.559986pt;}
.fs0{font-size:42.879983pt;}
.fs7{font-size:45.439982pt;}
.fs1{font-size:47.999981pt;}
.fs2{font-size:53.119979pt;}
.fs5{font-size:58.879976pt;}
.fs6{font-size:63.999974pt;}
.fs3{font-size:69.119972pt;}
.y0{bottom:0.000000pt;}
.y5{bottom:133.066880pt;}
.y29{bottom:137.066612pt;}
.y96{bottom:203.946585pt;}
.y6a{bottom:209.706583pt;}
.y26{bottom:217.546580pt;}
.y4d{bottom:218.826579pt;}
.yba{bottom:219.146579pt;}
.ye4{bottom:220.906578pt;}
.y8d{bottom:221.546578pt;}
.yc8{bottom:222.346578pt;}
.yd7{bottom:226.986576pt;}
.y69{bottom:228.106575pt;}
.yf8{bottom:228.746575pt;}
.y25{bottom:235.946572pt;}
.y4c{bottom:237.226572pt;}
.yb9{bottom:237.546572pt;}
.ya7{bottom:239.626571pt;}
.y8c{bottom:243.466569pt;}
.y68{bottom:246.506568pt;}
.yf7{bottom:247.146568pt;}
.ye3{bottom:247.306568pt;}
.yc7{bottom:248.746567pt;}
.yd6{bottom:253.386565pt;}
.y24{bottom:254.666565pt;}
.y4b{bottom:255.626564pt;}
.yb8{bottom:255.786564pt;}
.y67{bottom:264.906561pt;}
.y8b{bottom:265.546560pt;}
.yf6{bottom:273.546557pt;}
.ye2{bottom:273.706557pt;}
.y4a{bottom:274.026557pt;}
.yb7{bottom:274.186557pt;}
.yc6{bottom:275.146557pt;}
.yd5{bottom:279.786555pt;}
.y66{bottom:283.306553pt;}
.y23{bottom:284.586553pt;}
.y8a{bottom:287.626552pt;}
.yf5{bottom:291.946550pt;}
.ye1{bottom:292.106550pt;}
.y49{bottom:292.426550pt;}
.yb6{bottom:292.586550pt;}
.yd4{bottom:298.186547pt;}
.yc5{bottom:301.546546pt;}
.y65{bottom:301.706546pt;}
.y22{bottom:302.986545pt;}
.y89{bottom:309.706543pt;}
.yf4{bottom:310.346543pt;}
.ye0{bottom:310.506542pt;}
.y48{bottom:310.826542pt;}
.yd3{bottom:316.586540pt;}
.yb5{bottom:318.986539pt;}
.yc4{bottom:319.946539pt;}
.y64{bottom:320.106539pt;}
.yf3{bottom:328.746535pt;}
.ydf{bottom:328.906535pt;}
.y47{bottom:329.226535pt;}
.y21{bottom:329.386535pt;}
.y88{bottom:331.626534pt;}
.yd2{bottom:334.986533pt;}
.yb4{bottom:337.386532pt;}
.yc3{bottom:338.346531pt;}
.y63{bottom:338.506531pt;}
.yf2{bottom:347.146528pt;}
.y46{bottom:347.626528pt;}
.y20{bottom:347.786528pt;}
.yde{bottom:352.106526pt;}
.y87{bottom:353.706525pt;}
.yb3{bottom:355.786524pt;}
.yd1{bottom:361.386522pt;}
.yc2{bottom:364.586521pt;}
.y62{bottom:364.906521pt;}
.yf1{bottom:365.546520pt;}
.y45{bottom:366.026520pt;}
.y1f{bottom:366.186520pt;}
.yb2{bottom:374.186517pt;}
.y86{bottom:375.786516pt;}
.yd0{bottom:379.786515pt;}
.y61{bottom:383.306513pt;}
.yf0{bottom:383.946513pt;}
.y1e{bottom:384.586513pt;}
.y44{bottom:392.586510pt;}
.y85{bottom:394.186509pt;}
.ycf{bottom:398.186507pt;}
.y60{bottom:401.706506pt;}
.yef{bottom:402.346506pt;}
.y1d{bottom:402.986505pt;}
.yb1{bottom:410.986502pt;}
.y5f{bottom:420.106499pt;}
.y84{bottom:420.586498pt;}
.y43{bottom:420.906498pt;}
.yce{bottom:424.746497pt;}
.yee{bottom:428.746495pt;}
.y1c{bottom:429.386495pt;}
.y83{bottom:438.986491pt;}
.y5e{bottom:446.506488pt;}
.yed{bottom:447.146488pt;}
.y1b{bottom:447.786488pt;}
.y42{bottom:448.906487pt;}
.y95{bottom:451.946486pt;}
.ycd{bottom:452.746486pt;}
.yb0{bottom:455.786484pt;}
.y82{bottom:457.386484pt;}
.y5d{bottom:464.906481pt;}
.yec{bottom:465.546480pt;}
.y1a{bottom:466.186480pt;}
.y41{bottom:467.306480pt;}
.yaf{bottom:474.186477pt;}
.y81{bottom:475.786476pt;}
.ycc{bottom:475.946476pt;}
.ya6{bottom:481.706474pt;}
.y5c{bottom:483.306473pt;}
.yeb{bottom:483.946473pt;}
.y19{bottom:484.586473pt;}
.yae{bottom:492.586470pt;}
.y94{bottom:493.066469pt;}
.y40{bottom:493.706469pt;}
.y80{bottom:494.186469pt;}
.y10a{bottom:495.466468pt;}
.y5b{bottom:501.706466pt;}
.yea{bottom:502.346466pt;}
.y18{bottom:502.986465pt;}
.yad{bottom:510.986462pt;}
.y109{bottom:511.466462pt;}
.y3f{bottom:512.106462pt;}
.ya5{bottom:514.506461pt;}
.y5a{bottom:520.106459pt;}
.y93{bottom:520.266459pt;}
.y7f{bottom:520.586458pt;}
.ye9{bottom:520.746458pt;}
.y17{bottom:521.386458pt;}
.yac{bottom:529.386455pt;}
.y3e{bottom:530.506454pt;}
.ya4{bottom:532.906454pt;}
.y108{bottom:535.466452pt;}
.y59{bottom:538.506451pt;}
.y7e{bottom:538.986451pt;}
.ye8{bottom:539.146451pt;}
.y92{bottom:547.306448pt;}
.y16{bottom:547.786448pt;}
.y3d{bottom:548.906447pt;}
.ya3{bottom:551.306446pt;}
.yab{bottom:556.106444pt;}
.y58{bottom:556.906444pt;}
.y7d{bottom:557.386444pt;}
.ye7{bottom:557.546444pt;}
.y107{bottom:559.466443pt;}
.yc1{bottom:561.226442pt;}
.y15{bottom:566.186440pt;}
.y3c{bottom:567.306440pt;}
.ya2{bottom:569.546439pt;}
.ydd{bottom:573.226437pt;}
.y91{bottom:574.346437pt;}
.y57{bottom:575.306437pt;}
.y106{bottom:575.466436pt;}
.y7c{bottom:575.786436pt;}
.ye6{bottom:584.106433pt;}
.yaa{bottom:584.266433pt;}
.y14{bottom:584.586433pt;}
.y3b{bottom:585.546432pt;}
.y105{bottom:591.466430pt;}
.y56{bottom:593.546429pt;}
.yc0{bottom:594.026429pt;}
.y7b{bottom:594.186429pt;}
.ya1{bottom:595.946428pt;}
.y90{bottom:601.386426pt;}
.y13{bottom:602.986425pt;}
.ydc{bottom:606.026424pt;}
.ye5{bottom:608.906423pt;}
.ya9{bottom:609.066423pt;}
.y3a{bottom:611.946422pt;}
.ybf{bottom:612.426422pt;}
.ya0{bottom:614.346421pt;}
.y104{bottom:615.466420pt;}
.y7a{bottom:620.586418pt;}
.y12{bottom:621.386418pt;}
.ydb{bottom:624.426417pt;}
.y8f{bottom:627.626416pt;}
.y39{bottom:630.346415pt;}
.ybe{bottom:630.826414pt;}
.y9f{bottom:632.746414pt;}
.y79{bottom:638.986411pt;}
.y103{bottom:639.466411pt;}
.y11{bottom:640.106411pt;}
.yda{bottom:642.826410pt;}
.y38{bottom:648.746407pt;}
.ybd{bottom:649.226407pt;}
.y55{bottom:656.746404pt;}
.y78{bottom:657.386404pt;}
.y9e{bottom:659.146403pt;}
.yd9{bottom:661.226402pt;}
.y102{bottom:663.466401pt;}
.y37{bottom:667.146400pt;}
.ybc{bottom:672.426398pt;}
.y54{bottom:675.146397pt;}
.y77{bottom:675.786396pt;}
.y9d{bottom:677.546396pt;}
.y10{bottom:678.026395pt;}
.yd8{bottom:684.426393pt;}
.y36{bottom:685.546392pt;}
.y101{bottom:687.466392pt;}
.y53{bottom:693.546389pt;}
.y76{bottom:694.186389pt;}
.y9c{bottom:695.946388pt;}
.yf{bottom:696.426388pt;}
.y100{bottom:703.466385pt;}
.y35{bottom:703.946385pt;}
.y52{bottom:711.946382pt;}
.y9b{bottom:714.346381pt;}
.ye{bottom:719.466379pt;}
.ycb{bottom:720.106379pt;}
.y75{bottom:720.586378pt;}
.y34{bottom:722.346378pt;}
.yff{bottom:727.466376pt;}
.y51{bottom:730.346375pt;}
.yc{bottom:732.906374pt;}
.yd{bottom:737.546372pt;}
.y74{bottom:738.986371pt;}
.y33{bottom:740.746370pt;}
.yfe{bottom:743.466369pt;}
.y50{bottom:748.746367pt;}
.ya{bottom:751.306366pt;}
.yca{bottom:752.906366pt;}
.yb{bottom:755.946364pt;}
.y73{bottom:757.386364pt;}
.y32{bottom:759.146363pt;}
.y4f{bottom:767.146360pt;}
.yfd{bottom:767.466360pt;}
.y8{bottom:769.706359pt;}
.y9{bottom:774.346357pt;}
.y72{bottom:775.786356pt;}
.yc9{bottom:776.106356pt;}
.y31{bottom:777.546356pt;}
.y4e{bottom:785.546352pt;}
.y71{bottom:794.186349pt;}
.yfc{bottom:794.986349pt;}
.y9a{bottom:795.946348pt;}
.y7{bottom:797.706348pt;}
.y30{bottom:803.946345pt;}
.y8e{bottom:807.946343pt;}
.y70{bottom:812.586342pt;}
.y99{bottom:814.346341pt;}
.y6{bottom:821.706338pt;}
.y2f{bottom:822.346338pt;}
.yfb{bottom:822.986337pt;}
.ya8{bottom:826.346336pt;}
.y6f{bottom:830.986334pt;}
.y98{bottom:832.746334pt;}
.y4{bottom:840.426330pt;}
.y2e{bottom:840.746330pt;}
.yfa{bottom:841.386330pt;}
.y6e{bottom:849.386327pt;}
.y97{bottom:851.146326pt;}
.y3{bottom:852.746326pt;}
.y2d{bottom:859.146323pt;}
.y2{bottom:865.066321pt;}
.y6d{bottom:867.786320pt;}
.yf9{bottom:867.946319pt;}
.y1{bottom:874.666317pt;}
.y2c{bottom:877.546316pt;}
.y6c{bottom:886.186312pt;}
.y2b{bottom:895.946308pt;}
.y6b{bottom:912.746302pt;}
.y2a{bottom:914.346301pt;}
.ybb{bottom:915.946300pt;}
.y28{bottom:942.986289pt;}
.y27{bottom:956.746284pt;}
.h7{height:33.918736pt;}
.h6{height:34.829986pt;}
.h1{height:42.084358pt;}
.he{height:45.794982pt;}
.hb{height:47.085919pt;}
.h2{height:47.109356pt;}
.ha{height:52.108417pt;}
.h3{height:52.134354pt;}
.h8{height:52.478729pt;}
.h5{height:53.534979pt;}
.h9{height:57.758727pt;}
.hc{height:59.339976pt;}
.hf{height:64.934349pt;}
.hd{height:66.749973pt;}
.h4{height:69.659972pt;}
.h0{height:1122.666667pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x12{left:143.679943pt;}
.x3{left:158.719937pt;}
.x31{left:162.561643pt;}
.x15{left:181.439942pt;}
.x18{left:190.879924pt;}
.x11{left:196.479921pt;}
.x1c{left:207.519750pt;}
.x20{left:209.759916pt;}
.x9{left:211.999915pt;}
.x19{left:215.199914pt;}
.xa{left:216.319913pt;}
.x25{left:230.399908pt;}
.xf{left:241.759903pt;}
.x10{left:245.439902pt;}
.x1a{left:259.519896pt;}
.x23{left:261.279895pt;}
.x22{left:270.719892pt;}
.x1e{left:274.559890pt;}
.x13{left:278.719889pt;}
.x2f{left:288.959884pt;}
.x2c{left:293.119883pt;}
.x2a{left:295.999882pt;}
.x28{left:303.039879pt;}
.x1d{left:308.159877pt;}
.x16{left:313.599875pt;}
.x5{left:321.919871pt;}
.x6{left:326.239870pt;}
.x17{left:333.440491pt;}
.xb{left:353.599859pt;}
.xc{left:357.919857pt;}
.x21{left:382.399847pt;}
.x26{left:384.799846pt;}
.x30{left:510.879796pt;}
.x7{left:538.399785pt;}
.x8{left:542.719783pt;}
.xd{left:545.919782pt;}
.xe{left:550.559780pt;}
.x24{left:551.839779pt;}
.x1f{left:562.079775pt;}
.x2d{left:578.399769pt;}
.x1b{left:611.839755pt;}
.x2b{left:618.239753pt;}
.x14{left:635.039746pt;}
.x2e{left:636.799745pt;}
.x4{left:643.359743pt;}
.x29{left:646.079742pt;}
.x2{left:650.079735pt;}
.x1{left:654.879738pt;}
.x27{left:690.559724pt;}
}




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