
    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_9eaf8dbd02ed9a101aa8e89f.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.903000;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_19895bf58585a490eb4085a8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.890000;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_772d22602d8827f423f54633.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.906000;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_61c478b222514b0705fa979a.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.898000;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_11002bade1d894915252077a.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.000000;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_8a0ddeef574844cea0a3e2bc.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.890000;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_3a1fbc47c37fecb2a08842ac.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.891000;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_6feab4e72c9c5188edeac85b.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.686000;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_708738a380fd4fa750e72e52.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.698000;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_87adf0c08ec9a82774fc1001.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.921875;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;}
.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);}
.v3{vertical-align:-18.900000px;}
.v2{vertical-align:-15.300000px;}
.v5{vertical-align:-12.600000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:15.300000px;}
.v1{vertical-align:19.800000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.630000px;}
.ls3{letter-spacing:4.504200px;}
.ls2{letter-spacing:7.408200px;}
.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;}
}
.ws8{word-spacing:-63.000000px;}
.ws3{word-spacing:-20.130000px;}
.ws9{word-spacing:-16.380000px;}
.ws6{word-spacing:-15.750000px;}
.ws4{word-spacing:-14.091000px;}
.ws0{word-spacing:-12.750000px;}
.ws7{word-spacing:-10.237500px;}
.ws2{word-spacing:-8.925000px;}
.ws1{word-spacing:-8.287500px;}
.ws5{word-spacing:0.000000px;}
._27{margin-left:-7.060800px;}
._f{margin-left:-5.161200px;}
._6{margin-left:-3.900900px;}
._4{margin-left:-2.550000px;}
._0{margin-left:-1.530000px;}
._1{width:1.683000px;}
._2{width:3.009000px;}
._3{width:4.794000px;}
._5{width:6.727200px;}
._e{width:7.845600px;}
._a{width:8.883000px;}
._7{width:10.521000px;}
._b{width:12.411000px;}
._8{width:14.301000px;}
._29{width:15.765600px;}
._c{width:17.486400px;}
._9{width:19.467000px;}
._10{width:20.727000px;}
._d{width:21.924000px;}
._28{width:23.121000px;}
._1f{width:25.143000px;}
._1e{width:26.622000px;}
._11{width:27.657000px;}
._12{width:31.248000px;}
._20{width:36.006000px;}
._23{width:42.024000px;}
._24{width:48.705000px;}
._1d{width:51.765000px;}
._16{width:61.506000px;}
._17{width:74.205000px;}
._22{width:87.006000px;}
._1a{width:98.226000px;}
._18{width:104.346000px;}
._1b{width:122.298000px;}
._26{width:124.899000px;}
._19{width:135.660000px;}
._25{width:149.226000px;}
._21{width:215.832000px;}
._1c{width:224.349000px;}
._14{width:313.191000px;}
._15{width:326.349000px;}
._13{width:525.147000px;}
.fc2{color:rgb(51,102,153);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(35,31,32);}
.fs3{font-size:33.150000px;}
.fs5{font-size:35.700000px;}
.fs8{font-size:40.950000px;}
.fs2{font-size:42.900000px;}
.fs6{font-size:46.200000px;}
.fs4{font-size:51.000000px;}
.fs7{font-size:63.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:82.357800px;}
.y2e{bottom:82.357950px;}
.y6b{bottom:82.358100px;}
.yca{bottom:127.240050px;}
.y2b{bottom:127.240200px;}
.y67{bottom:127.444800px;}
.y7f{bottom:127.781550px;}
.y6a{bottom:127.857150px;}
.ye0{bottom:130.990050px;}
.y66{bottom:140.194800px;}
.y7e{bottom:140.531550px;}
.y69{bottom:140.607150px;}
.yc9{bottom:143.740050px;}
.y2a{bottom:143.740200px;}
.y7d{bottom:153.281550px;}
.ydf{bottom:156.490050px;}
.yc8{bottom:160.240050px;}
.y2c{bottom:160.240200px;}
.yde{bottom:169.240050px;}
.yc7{bottom:176.740050px;}
.y29{bottom:176.740200px;}
.ydd{bottom:181.990050px;}
.yc6{bottom:193.240050px;}
.y65{bottom:193.240200px;}
.ydc{bottom:194.740050px;}
.ydb{bottom:207.490050px;}
.yc5{bottom:209.740050px;}
.y64{bottom:209.740200px;}
.yda{bottom:220.240050px;}
.yc4{bottom:226.240050px;}
.y63{bottom:226.240200px;}
.y24{bottom:228.666150px;}
.yd9{bottom:232.990050px;}
.yc3{bottom:242.740050px;}
.y62{bottom:242.740200px;}
.y85{bottom:242.740350px;}
.yd8{bottom:245.740050px;}
.y23{bottom:254.166150px;}
.yd7{bottom:258.490050px;}
.yc2{bottom:259.240050px;}
.y61{bottom:259.240200px;}
.y71{bottom:259.240350px;}
.y22{bottom:266.916150px;}
.yd6{bottom:271.240050px;}
.yc1{bottom:275.740050px;}
.y60{bottom:275.740200px;}
.y84{bottom:275.740350px;}
.y21{bottom:279.666150px;}
.yd5{bottom:283.990050px;}
.yc0{bottom:292.240050px;}
.y5f{bottom:292.240200px;}
.y70{bottom:292.240350px;}
.y20{bottom:292.416150px;}
.yd4{bottom:296.740050px;}
.y1f{bottom:305.166150px;}
.ybf{bottom:308.740050px;}
.y5e{bottom:308.740200px;}
.y6f{bottom:308.740350px;}
.yd3{bottom:309.490050px;}
.y1e{bottom:317.916150px;}
.yd2{bottom:322.240050px;}
.ybe{bottom:325.240050px;}
.y5d{bottom:325.240200px;}
.y6e{bottom:325.240350px;}
.y1d{bottom:330.666150px;}
.yd1{bottom:334.990050px;}
.ybd{bottom:341.740050px;}
.y5c{bottom:341.740200px;}
.y6d{bottom:341.740350px;}
.y1c{bottom:343.416150px;}
.yd0{bottom:347.740050px;}
.y1b{bottom:356.166150px;}
.ybc{bottom:358.240050px;}
.y5b{bottom:358.240200px;}
.y6c{bottom:358.240350px;}
.ycf{bottom:360.490050px;}
.y1a{bottom:368.916150px;}
.yce{bottom:373.240050px;}
.ybb{bottom:374.740050px;}
.y5a{bottom:374.740200px;}
.y83{bottom:374.740350px;}
.y19{bottom:381.666150px;}
.ycd{bottom:385.990050px;}
.yba{bottom:391.240050px;}
.y59{bottom:391.240200px;}
.y18{bottom:394.416150px;}
.ycc{bottom:398.740050px;}
.y17{bottom:407.166150px;}
.yb9{bottom:407.740050px;}
.y58{bottom:407.740200px;}
.ycb{bottom:411.490050px;}
.yb8{bottom:424.240050px;}
.y57{bottom:424.240200px;}
.y16{bottom:432.666150px;}
.yb7{bottom:440.740050px;}
.y56{bottom:440.740200px;}
.yb6{bottom:457.240050px;}
.y55{bottom:457.240200px;}
.y15{bottom:458.166150px;}
.y14{bottom:470.916150px;}
.yb5{bottom:473.740050px;}
.y54{bottom:473.740200px;}
.y13{bottom:483.666150px;}
.yb4{bottom:490.240050px;}
.y53{bottom:490.240200px;}
.y12{bottom:496.416150px;}
.yb3{bottom:506.740050px;}
.y52{bottom:506.740200px;}
.y11{bottom:509.166150px;}
.y10e{bottom:517.539300px;}
.y10{bottom:521.916150px;}
.yb2{bottom:523.240050px;}
.y51{bottom:523.240200px;}
.y10d{bottom:530.289300px;}
.yf{bottom:534.666150px;}
.yb1{bottom:539.740050px;}
.y50{bottom:539.740200px;}
.y10c{bottom:543.039300px;}
.ye{bottom:547.416150px;}
.y10b{bottom:555.789300px;}
.yb0{bottom:556.240050px;}
.y4f{bottom:556.240200px;}
.yd{bottom:560.166150px;}
.y10a{bottom:568.539300px;}
.yaf{bottom:572.740050px;}
.y4e{bottom:572.740200px;}
.yc{bottom:572.916150px;}
.y8b{bottom:575.849400px;}
.y109{bottom:581.289300px;}
.y8a{bottom:588.599400px;}
.yae{bottom:589.240050px;}
.y4d{bottom:589.240200px;}
.y108{bottom:594.039300px;}
.y89{bottom:601.349400px;}
.y8d{bottom:603.925350px;}
.yad{bottom:605.740050px;}
.y4c{bottom:605.740200px;}
.y107{bottom:606.789300px;}
.y88{bottom:614.099400px;}
.y8c{bottom:616.675350px;}
.y106{bottom:619.539300px;}
.yac{bottom:622.240050px;}
.y4b{bottom:622.240200px;}
.y87{bottom:626.849400px;}
.y105{bottom:632.289300px;}
.yab{bottom:638.740050px;}
.y4a{bottom:638.740200px;}
.y86{bottom:639.599400px;}
.y104{bottom:645.039300px;}
.yaa{bottom:655.240050px;}
.y49{bottom:655.240200px;}
.y103{bottom:657.789300px;}
.y7c{bottom:666.269700px;}
.y102{bottom:670.539300px;}
.ya9{bottom:671.740050px;}
.y48{bottom:671.740200px;}
.y7b{bottom:679.019700px;}
.y101{bottom:683.289300px;}
.ya8{bottom:688.240050px;}
.y47{bottom:688.240200px;}
.y7a{bottom:691.769700px;}
.y100{bottom:696.039300px;}
.y79{bottom:704.519700px;}
.ya7{bottom:704.740050px;}
.y46{bottom:704.740200px;}
.yff{bottom:708.789300px;}
.yb{bottom:717.050100px;}
.ya6{bottom:721.240050px;}
.y45{bottom:721.240200px;}
.yfe{bottom:721.539300px;}
.ya{bottom:725.975100px;}
.y78{bottom:730.019700px;}
.yfd{bottom:734.289300px;}
.ya5{bottom:737.740050px;}
.y44{bottom:737.740200px;}
.y9{bottom:738.725100px;}
.y8{bottom:742.550100px;}
.y77{bottom:742.769700px;}
.yfc{bottom:747.039300px;}
.y7{bottom:751.475100px;}
.ya4{bottom:754.240050px;}
.y43{bottom:754.240200px;}
.yfb{bottom:759.789300px;}
.y6{bottom:768.050100px;}
.y76{bottom:768.269700px;}
.ya3{bottom:770.740050px;}
.y42{bottom:770.740200px;}
.yfa{bottom:772.539300px;}
.y5{bottom:780.800100px;}
.y75{bottom:781.019700px;}
.yf9{bottom:785.289300px;}
.ya2{bottom:787.240050px;}
.y41{bottom:787.240200px;}
.y74{bottom:793.769700px;}
.yf8{bottom:798.039300px;}
.y4{bottom:802.480950px;}
.ya1{bottom:803.740050px;}
.y40{bottom:803.740200px;}
.yf7{bottom:810.789300px;}
.ya0{bottom:820.240050px;}
.y3f{bottom:820.240200px;}
.yf6{bottom:823.539300px;}
.y73{bottom:827.825850px;}
.y81{bottom:830.224500px;}
.yf5{bottom:836.289300px;}
.y9f{bottom:836.740050px;}
.y3e{bottom:836.740200px;}
.y72{bottom:840.575850px;}
.y80{bottom:842.974500px;}
.yf4{bottom:849.039300px;}
.y9e{bottom:853.240050px;}
.y3d{bottom:853.240200px;}
.y3{bottom:855.696750px;}
.yf3{bottom:861.789300px;}
.y9d{bottom:869.740050px;}
.y3c{bottom:869.740200px;}
.yf2{bottom:874.539300px;}
.y2{bottom:883.334250px;}
.y9c{bottom:886.240050px;}
.y3b{bottom:886.240200px;}
.yf1{bottom:887.289300px;}
.yf0{bottom:900.039300px;}
.y9b{bottom:902.740050px;}
.y3a{bottom:902.740200px;}
.y1{bottom:910.971750px;}
.yef{bottom:912.789300px;}
.y9a{bottom:919.240050px;}
.y39{bottom:919.240200px;}
.yee{bottom:925.539300px;}
.y99{bottom:935.740050px;}
.y38{bottom:935.740200px;}
.yed{bottom:938.289300px;}
.yec{bottom:951.039300px;}
.y98{bottom:952.240050px;}
.y37{bottom:952.240200px;}
.yeb{bottom:963.789300px;}
.y97{bottom:968.740050px;}
.y36{bottom:968.740200px;}
.yea{bottom:976.539300px;}
.y96{bottom:985.240050px;}
.y35{bottom:985.240200px;}
.ye9{bottom:989.289300px;}
.y95{bottom:1001.740050px;}
.y34{bottom:1001.740200px;}
.ye8{bottom:1002.039300px;}
.ye7{bottom:1014.789300px;}
.y94{bottom:1018.240050px;}
.y33{bottom:1018.240200px;}
.ye6{bottom:1027.539300px;}
.y93{bottom:1034.740050px;}
.y32{bottom:1034.740200px;}
.ye5{bottom:1040.289300px;}
.y92{bottom:1051.240050px;}
.y31{bottom:1051.240200px;}
.ye4{bottom:1053.039300px;}
.ye3{bottom:1065.789300px;}
.y91{bottom:1067.740050px;}
.y30{bottom:1067.740200px;}
.y28{bottom:1072.166700px;}
.ye2{bottom:1078.539300px;}
.y90{bottom:1084.240050px;}
.y2f{bottom:1084.240200px;}
.ye1{bottom:1091.289300px;}
.y27{bottom:1091.366700px;}
.y26{bottom:1110.566850px;}
.y25{bottom:1129.766850px;}
.y68{bottom:1132.860150px;}
.y82{bottom:1132.860300px;}
.y8e{bottom:1132.872900px;}
.y2d{bottom:1132.873050px;}
.h6{height:22.807200px;}
.h4{height:22.939800px;}
.h5{height:35.088000px;}
.ha{height:35.292000px;}
.h7{height:36.414000px;}
.hd{height:38.107200px;}
.h9{height:43.344000px;}
.hb{height:43.596000px;}
.h8{height:45.408000px;}
.hc{height:47.073600px;}
.h3{height:49.315200px;}
.h2{height:69.666000px;}
.h1{height:1215.750000px;}
.h0{height:1216.063500px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xf{left:76.535400px;}
.x1d{left:78.974700px;}
.x10{left:97.795200px;}
.x1b{left:98.858250px;}
.x18{left:116.026950px;}
.x12{left:119.055150px;}
.xa{left:120.624300px;}
.x1{left:123.112050px;}
.x19{left:172.347300px;}
.x2{left:179.084700px;}
.x9{left:196.678950px;}
.x5{left:213.343950px;}
.x1a{left:233.714100px;}
.x6{left:242.785650px;}
.x1c{left:248.346600px;}
.x3{left:267.989850px;}
.x8{left:271.319700px;}
.x7{left:274.090200px;}
.x4{left:285.200850px;}
.x17{left:330.472500px;}
.x11{left:450.708600px;}
.x13{left:471.968550px;}
.x14{left:493.228350px;}
.x16{left:495.088650px;}
.xc{left:548.594250px;}
.x1e{left:551.214750px;}
.xe{left:564.118800px;}
.x15{left:598.133250px;}
.xb{left:642.586500px;}
.xd{left:679.156650px;}
@media print{
.v3{vertical-align:-16.800000pt;}
.v2{vertical-align:-13.600000pt;}
.v5{vertical-align:-11.200000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:13.600000pt;}
.v1{vertical-align:17.600000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.560000pt;}
.ls3{letter-spacing:4.003733pt;}
.ls2{letter-spacing:6.585067pt;}
.ws8{word-spacing:-56.000000pt;}
.ws3{word-spacing:-17.893333pt;}
.ws9{word-spacing:-14.560000pt;}
.ws6{word-spacing:-14.000000pt;}
.ws4{word-spacing:-12.525333pt;}
.ws0{word-spacing:-11.333333pt;}
.ws7{word-spacing:-9.100000pt;}
.ws2{word-spacing:-7.933333pt;}
.ws1{word-spacing:-7.366667pt;}
.ws5{word-spacing:0.000000pt;}
._27{margin-left:-6.276267pt;}
._f{margin-left:-4.587733pt;}
._6{margin-left:-3.467467pt;}
._4{margin-left:-2.266667pt;}
._0{margin-left:-1.360000pt;}
._1{width:1.496000pt;}
._2{width:2.674667pt;}
._3{width:4.261333pt;}
._5{width:5.979733pt;}
._e{width:6.973867pt;}
._a{width:7.896000pt;}
._7{width:9.352000pt;}
._b{width:11.032000pt;}
._8{width:12.712000pt;}
._29{width:14.013867pt;}
._c{width:15.543467pt;}
._9{width:17.304000pt;}
._10{width:18.424000pt;}
._d{width:19.488000pt;}
._28{width:20.552000pt;}
._1f{width:22.349333pt;}
._1e{width:23.664000pt;}
._11{width:24.584000pt;}
._12{width:27.776000pt;}
._20{width:32.005333pt;}
._23{width:37.354667pt;}
._24{width:43.293333pt;}
._1d{width:46.013333pt;}
._16{width:54.672000pt;}
._17{width:65.960000pt;}
._22{width:77.338667pt;}
._1a{width:87.312000pt;}
._18{width:92.752000pt;}
._1b{width:108.709333pt;}
._26{width:111.021333pt;}
._19{width:120.586667pt;}
._25{width:132.645333pt;}
._21{width:191.850667pt;}
._1c{width:199.421333pt;}
._14{width:278.392000pt;}
._15{width:290.088000pt;}
._13{width:466.797333pt;}
.fs3{font-size:29.466667pt;}
.fs5{font-size:31.733333pt;}
.fs8{font-size:36.400000pt;}
.fs2{font-size:38.133333pt;}
.fs6{font-size:41.066667pt;}
.fs4{font-size:45.333333pt;}
.fs7{font-size:56.000000pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:73.206933pt;}
.y2e{bottom:73.207067pt;}
.y6b{bottom:73.207200pt;}
.yca{bottom:113.102267pt;}
.y2b{bottom:113.102400pt;}
.y67{bottom:113.284267pt;}
.y7f{bottom:113.583600pt;}
.y6a{bottom:113.650800pt;}
.ye0{bottom:116.435600pt;}
.y66{bottom:124.617600pt;}
.y7e{bottom:124.916933pt;}
.y69{bottom:124.984133pt;}
.yc9{bottom:127.768933pt;}
.y2a{bottom:127.769067pt;}
.y7d{bottom:136.250267pt;}
.ydf{bottom:139.102267pt;}
.yc8{bottom:142.435600pt;}
.y2c{bottom:142.435733pt;}
.yde{bottom:150.435600pt;}
.yc7{bottom:157.102267pt;}
.y29{bottom:157.102400pt;}
.ydd{bottom:161.768933pt;}
.yc6{bottom:171.768933pt;}
.y65{bottom:171.769067pt;}
.ydc{bottom:173.102267pt;}
.ydb{bottom:184.435600pt;}
.yc5{bottom:186.435600pt;}
.y64{bottom:186.435733pt;}
.yda{bottom:195.768933pt;}
.yc4{bottom:201.102267pt;}
.y63{bottom:201.102400pt;}
.y24{bottom:203.258800pt;}
.yd9{bottom:207.102267pt;}
.yc3{bottom:215.768933pt;}
.y62{bottom:215.769067pt;}
.y85{bottom:215.769200pt;}
.yd8{bottom:218.435600pt;}
.y23{bottom:225.925467pt;}
.yd7{bottom:229.768933pt;}
.yc2{bottom:230.435600pt;}
.y61{bottom:230.435733pt;}
.y71{bottom:230.435867pt;}
.y22{bottom:237.258800pt;}
.yd6{bottom:241.102267pt;}
.yc1{bottom:245.102267pt;}
.y60{bottom:245.102400pt;}
.y84{bottom:245.102533pt;}
.y21{bottom:248.592133pt;}
.yd5{bottom:252.435600pt;}
.yc0{bottom:259.768933pt;}
.y5f{bottom:259.769067pt;}
.y70{bottom:259.769200pt;}
.y20{bottom:259.925467pt;}
.yd4{bottom:263.768933pt;}
.y1f{bottom:271.258800pt;}
.ybf{bottom:274.435600pt;}
.y5e{bottom:274.435733pt;}
.y6f{bottom:274.435867pt;}
.yd3{bottom:275.102267pt;}
.y1e{bottom:282.592133pt;}
.yd2{bottom:286.435600pt;}
.ybe{bottom:289.102267pt;}
.y5d{bottom:289.102400pt;}
.y6e{bottom:289.102533pt;}
.y1d{bottom:293.925467pt;}
.yd1{bottom:297.768933pt;}
.ybd{bottom:303.768933pt;}
.y5c{bottom:303.769067pt;}
.y6d{bottom:303.769200pt;}
.y1c{bottom:305.258800pt;}
.yd0{bottom:309.102267pt;}
.y1b{bottom:316.592133pt;}
.ybc{bottom:318.435600pt;}
.y5b{bottom:318.435733pt;}
.y6c{bottom:318.435867pt;}
.ycf{bottom:320.435600pt;}
.y1a{bottom:327.925467pt;}
.yce{bottom:331.768933pt;}
.ybb{bottom:333.102267pt;}
.y5a{bottom:333.102400pt;}
.y83{bottom:333.102533pt;}
.y19{bottom:339.258800pt;}
.ycd{bottom:343.102267pt;}
.yba{bottom:347.768933pt;}
.y59{bottom:347.769067pt;}
.y18{bottom:350.592133pt;}
.ycc{bottom:354.435600pt;}
.y17{bottom:361.925467pt;}
.yb9{bottom:362.435600pt;}
.y58{bottom:362.435733pt;}
.ycb{bottom:365.768933pt;}
.yb8{bottom:377.102267pt;}
.y57{bottom:377.102400pt;}
.y16{bottom:384.592133pt;}
.yb7{bottom:391.768933pt;}
.y56{bottom:391.769067pt;}
.yb6{bottom:406.435600pt;}
.y55{bottom:406.435733pt;}
.y15{bottom:407.258800pt;}
.y14{bottom:418.592133pt;}
.yb5{bottom:421.102267pt;}
.y54{bottom:421.102400pt;}
.y13{bottom:429.925467pt;}
.yb4{bottom:435.768933pt;}
.y53{bottom:435.769067pt;}
.y12{bottom:441.258800pt;}
.yb3{bottom:450.435600pt;}
.y52{bottom:450.435733pt;}
.y11{bottom:452.592133pt;}
.y10e{bottom:460.034933pt;}
.y10{bottom:463.925467pt;}
.yb2{bottom:465.102267pt;}
.y51{bottom:465.102400pt;}
.y10d{bottom:471.368267pt;}
.yf{bottom:475.258800pt;}
.yb1{bottom:479.768933pt;}
.y50{bottom:479.769067pt;}
.y10c{bottom:482.701600pt;}
.ye{bottom:486.592133pt;}
.y10b{bottom:494.034933pt;}
.yb0{bottom:494.435600pt;}
.y4f{bottom:494.435733pt;}
.yd{bottom:497.925467pt;}
.y10a{bottom:505.368267pt;}
.yaf{bottom:509.102267pt;}
.y4e{bottom:509.102400pt;}
.yc{bottom:509.258800pt;}
.y8b{bottom:511.866133pt;}
.y109{bottom:516.701600pt;}
.y8a{bottom:523.199467pt;}
.yae{bottom:523.768933pt;}
.y4d{bottom:523.769067pt;}
.y108{bottom:528.034933pt;}
.y89{bottom:534.532800pt;}
.y8d{bottom:536.822533pt;}
.yad{bottom:538.435600pt;}
.y4c{bottom:538.435733pt;}
.y107{bottom:539.368267pt;}
.y88{bottom:545.866133pt;}
.y8c{bottom:548.155867pt;}
.y106{bottom:550.701600pt;}
.yac{bottom:553.102267pt;}
.y4b{bottom:553.102400pt;}
.y87{bottom:557.199467pt;}
.y105{bottom:562.034933pt;}
.yab{bottom:567.768933pt;}
.y4a{bottom:567.769067pt;}
.y86{bottom:568.532800pt;}
.y104{bottom:573.368267pt;}
.yaa{bottom:582.435600pt;}
.y49{bottom:582.435733pt;}
.y103{bottom:584.701600pt;}
.y7c{bottom:592.239733pt;}
.y102{bottom:596.034933pt;}
.ya9{bottom:597.102267pt;}
.y48{bottom:597.102400pt;}
.y7b{bottom:603.573067pt;}
.y101{bottom:607.368267pt;}
.ya8{bottom:611.768933pt;}
.y47{bottom:611.769067pt;}
.y7a{bottom:614.906400pt;}
.y100{bottom:618.701600pt;}
.y79{bottom:626.239733pt;}
.ya7{bottom:626.435600pt;}
.y46{bottom:626.435733pt;}
.yff{bottom:630.034933pt;}
.yb{bottom:637.377867pt;}
.ya6{bottom:641.102267pt;}
.y45{bottom:641.102400pt;}
.yfe{bottom:641.368267pt;}
.ya{bottom:645.311200pt;}
.y78{bottom:648.906400pt;}
.yfd{bottom:652.701600pt;}
.ya5{bottom:655.768933pt;}
.y44{bottom:655.769067pt;}
.y9{bottom:656.644533pt;}
.y8{bottom:660.044533pt;}
.y77{bottom:660.239733pt;}
.yfc{bottom:664.034933pt;}
.y7{bottom:667.977867pt;}
.ya4{bottom:670.435600pt;}
.y43{bottom:670.435733pt;}
.yfb{bottom:675.368267pt;}
.y6{bottom:682.711200pt;}
.y76{bottom:682.906400pt;}
.ya3{bottom:685.102267pt;}
.y42{bottom:685.102400pt;}
.yfa{bottom:686.701600pt;}
.y5{bottom:694.044533pt;}
.y75{bottom:694.239733pt;}
.yf9{bottom:698.034933pt;}
.ya2{bottom:699.768933pt;}
.y41{bottom:699.769067pt;}
.y74{bottom:705.573067pt;}
.yf8{bottom:709.368267pt;}
.y4{bottom:713.316400pt;}
.ya1{bottom:714.435600pt;}
.y40{bottom:714.435733pt;}
.yf7{bottom:720.701600pt;}
.ya0{bottom:729.102267pt;}
.y3f{bottom:729.102400pt;}
.yf6{bottom:732.034933pt;}
.y73{bottom:735.845200pt;}
.y81{bottom:737.977333pt;}
.yf5{bottom:743.368267pt;}
.y9f{bottom:743.768933pt;}
.y3e{bottom:743.769067pt;}
.y72{bottom:747.178533pt;}
.y80{bottom:749.310667pt;}
.yf4{bottom:754.701600pt;}
.y9e{bottom:758.435600pt;}
.y3d{bottom:758.435733pt;}
.y3{bottom:760.619333pt;}
.yf3{bottom:766.034933pt;}
.y9d{bottom:773.102267pt;}
.y3c{bottom:773.102400pt;}
.yf2{bottom:777.368267pt;}
.y2{bottom:785.186000pt;}
.y9c{bottom:787.768933pt;}
.y3b{bottom:787.769067pt;}
.yf1{bottom:788.701600pt;}
.yf0{bottom:800.034933pt;}
.y9b{bottom:802.435600pt;}
.y3a{bottom:802.435733pt;}
.y1{bottom:809.752667pt;}
.yef{bottom:811.368267pt;}
.y9a{bottom:817.102267pt;}
.y39{bottom:817.102400pt;}
.yee{bottom:822.701600pt;}
.y99{bottom:831.768933pt;}
.y38{bottom:831.769067pt;}
.yed{bottom:834.034933pt;}
.yec{bottom:845.368267pt;}
.y98{bottom:846.435600pt;}
.y37{bottom:846.435733pt;}
.yeb{bottom:856.701600pt;}
.y97{bottom:861.102267pt;}
.y36{bottom:861.102400pt;}
.yea{bottom:868.034933pt;}
.y96{bottom:875.768933pt;}
.y35{bottom:875.769067pt;}
.ye9{bottom:879.368267pt;}
.y95{bottom:890.435600pt;}
.y34{bottom:890.435733pt;}
.ye8{bottom:890.701600pt;}
.ye7{bottom:902.034933pt;}
.y94{bottom:905.102267pt;}
.y33{bottom:905.102400pt;}
.ye6{bottom:913.368267pt;}
.y93{bottom:919.768933pt;}
.y32{bottom:919.769067pt;}
.ye5{bottom:924.701600pt;}
.y92{bottom:934.435600pt;}
.y31{bottom:934.435733pt;}
.ye4{bottom:936.034933pt;}
.ye3{bottom:947.368267pt;}
.y91{bottom:949.102267pt;}
.y30{bottom:949.102400pt;}
.y28{bottom:953.037067pt;}
.ye2{bottom:958.701600pt;}
.y90{bottom:963.768933pt;}
.y2f{bottom:963.769067pt;}
.ye1{bottom:970.034933pt;}
.y27{bottom:970.103733pt;}
.y26{bottom:987.170533pt;}
.y25{bottom:1004.237200pt;}
.y68{bottom:1006.986800pt;}
.y82{bottom:1006.986933pt;}
.y8e{bottom:1006.998133pt;}
.y2d{bottom:1006.998267pt;}
.h6{height:20.273067pt;}
.h4{height:20.390933pt;}
.h5{height:31.189333pt;}
.ha{height:31.370667pt;}
.h7{height:32.368000pt;}
.hd{height:33.873067pt;}
.h9{height:38.528000pt;}
.hb{height:38.752000pt;}
.h8{height:40.362667pt;}
.hc{height:41.843200pt;}
.h3{height:43.835733pt;}
.h2{height:61.925333pt;}
.h1{height:1080.666667pt;}
.h0{height:1080.945333pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xf{left:68.031467pt;}
.x1d{left:70.199733pt;}
.x10{left:86.929067pt;}
.x1b{left:87.874000pt;}
.x18{left:103.135067pt;}
.x12{left:105.826800pt;}
.xa{left:107.221600pt;}
.x1{left:109.432933pt;}
.x19{left:153.197600pt;}
.x2{left:159.186400pt;}
.x9{left:174.825733pt;}
.x5{left:189.639067pt;}
.x1a{left:207.745867pt;}
.x6{left:215.809467pt;}
.x1c{left:220.752533pt;}
.x3{left:238.213200pt;}
.x8{left:241.173067pt;}
.x7{left:243.635733pt;}
.x4{left:253.511867pt;}
.x17{left:293.753333pt;}
.x11{left:400.629867pt;}
.x13{left:419.527600pt;}
.x14{left:438.425200pt;}
.x16{left:440.078800pt;}
.xc{left:487.639333pt;}
.x1e{left:489.968667pt;}
.xe{left:501.438933pt;}
.x15{left:531.674000pt;}
.xb{left:571.188000pt;}
.xd{left:603.694800pt;}
}




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