
    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_86bd52a8cd0da340b4065488.woff')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_439c443afd66fb4431ec8879.woff')format("woff");}.ff2{font-family:ff2;line-height:0.665000;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_f9c264cc29170729bc120f28.woff')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_fd429e8f8ba5d763303fc0ef.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_07f5194e42cf04143fb03df9.woff')format("woff");}.ff5{font-family:ff5;line-height:0.713000;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_371a784bba66c129b2473aae.woff')format("woff");}.ff6{font-family:ff6;line-height:0.900000;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);}
.v2{vertical-align:-26.028000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:26.034000px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:2.984915px;}
.ls0{letter-spacing:20.918915px;}
.ls2{letter-spacing:27.503347px;}
.ls4{letter-spacing:35.148288px;}
.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;}
}
.ws62{word-spacing:-19.427100px;}
.wsb{word-spacing:-17.932800px;}
.ws6e{word-spacing:-8.117338px;}
.ws70{word-spacing:-8.061638px;}
.ws26{word-spacing:-4.160410px;}
.ws68{word-spacing:-3.730022px;}
.ws2b{word-spacing:-3.514829px;}
.ws67{word-spacing:-3.371366px;}
.ws55{word-spacing:-3.012710px;}
.ws44{word-spacing:-2.940979px;}
.ws4f{word-spacing:-2.725786px;}
.ws72{word-spacing:-2.223667px;}
.ws71{word-spacing:-2.151936px;}
.ws3c{word-spacing:-2.008474px;}
.ws29{word-spacing:-1.649818px;}
.ws36{word-spacing:-1.219430px;}
.ws9{word-spacing:-1.075968px;}
.ws40{word-spacing:-1.004237px;}
.ws34{word-spacing:-0.860774px;}
.ws3b{word-spacing:-0.789043px;}
.wsd{word-spacing:-0.717312px;}
.ws56{word-spacing:-0.286925px;}
.ws50{word-spacing:-0.215194px;}
.ws53{word-spacing:-0.071731px;}
.ws0{word-spacing:0.000000px;}
.ws41{word-spacing:0.143462px;}
.ws5c{word-spacing:0.502118px;}
.ws59{word-spacing:0.645581px;}
.ws43{word-spacing:0.717312px;}
.ws2a{word-spacing:0.789043px;}
.ws6b{word-spacing:0.932506px;}
.ws8{word-spacing:1.004237px;}
.ws35{word-spacing:1.147699px;}
.ws1e{word-spacing:1.578086px;}
.ws15{word-spacing:1.649818px;}
.ws6a{word-spacing:1.721549px;}
.ws51{word-spacing:1.793280px;}
.ws38{word-spacing:2.008474px;}
.ws74{word-spacing:2.080205px;}
.ws73{word-spacing:2.151936px;}
.ws64{word-spacing:2.223667px;}
.ws52{word-spacing:2.510592px;}
.ws54{word-spacing:2.654054px;}
.ws2e{word-spacing:2.725786px;}
.ws3f{word-spacing:2.797517px;}
.wse{word-spacing:2.869248px;}
.ws7{word-spacing:2.940979px;}
.ws3d{word-spacing:3.084442px;}
.ws11{word-spacing:3.371366px;}
.ws10{word-spacing:3.443098px;}
.ws2{word-spacing:3.514829px;}
.ws5a{word-spacing:3.586560px;}
.wsa{word-spacing:3.658291px;}
.ws4c{word-spacing:3.873485px;}
.ws27{word-spacing:3.945216px;}
.ws37{word-spacing:4.088678px;}
.ws3a{word-spacing:4.303872px;}
.ws1f{word-spacing:4.447334px;}
.ws5b{word-spacing:4.590797px;}
.ws24{word-spacing:4.662528px;}
.ws5d{word-spacing:4.734259px;}
.ws6{word-spacing:4.805990px;}
.ws42{word-spacing:4.877722px;}
.ws3e{word-spacing:5.021184px;}
.ws3{word-spacing:5.164646px;}
.ws61{word-spacing:5.236378px;}
.ws2f{word-spacing:5.523302px;}
.ws12{word-spacing:5.666765px;}
.ws2c{word-spacing:5.738496px;}
.ws14{word-spacing:6.097152px;}
.ws5{word-spacing:6.168883px;}
.wsf{word-spacing:6.384077px;}
.ws45{word-spacing:6.455808px;}
.ws4e{word-spacing:6.742733px;}
.ws66{word-spacing:6.814464px;}
.ws31{word-spacing:7.029658px;}
.ws13{word-spacing:7.101389px;}
.ws65{word-spacing:7.316582px;}
.ws32{word-spacing:7.460045px;}
.ws57{word-spacing:7.531776px;}
.ws58{word-spacing:7.603507px;}
.ws28{word-spacing:7.675238px;}
.ws63{word-spacing:7.890432px;}
.ws6d{word-spacing:8.033894px;}
.ws22{word-spacing:8.249088px;}
.ws4b{word-spacing:8.607744px;}
.ws33{word-spacing:8.751206px;}
.ws5f{word-spacing:8.966400px;}
.ws1d{word-spacing:9.109862px;}
.ws4{word-spacing:9.181594px;}
.ws5e{word-spacing:9.253325px;}
.ws23{word-spacing:9.325056px;}
.ws69{word-spacing:9.396787px;}
.ws46{word-spacing:9.611981px;}
.ws60{word-spacing:9.683712px;}
.ws30{word-spacing:10.185830px;}
.ws1b{word-spacing:10.616218px;}
.ws2d{word-spacing:10.759680px;}
.ws39{word-spacing:10.831411px;}
.ws6c{word-spacing:11.046605px;}
.ws25{word-spacing:12.337766px;}
.ws21{word-spacing:12.481229px;}
.ws17{word-spacing:12.552960px;}
.ws49{word-spacing:12.768154px;}
.ws1c{word-spacing:13.055078px;}
.ws20{word-spacing:14.920090px;}
.ws1a{word-spacing:15.207014px;}
.ws16{word-spacing:16.396472px;}
.ws6f{word-spacing:17.143757px;}
.ws4d{word-spacing:17.789338px;}
.ws19{word-spacing:18.219725px;}
.ws18{word-spacing:19.797811px;}
.ws4a{word-spacing:21.519360px;}
.ws1{word-spacing:35.004826px;}
.wsc{word-spacing:35.076557px;}
.ws48{word-spacing:35.148288px;}
.ws47{word-spacing:74.528717px;}
._11{margin-left:-28.692480px;}
._26{margin-left:-27.186103px;}
._0{margin-left:-8.798990px;}
._1f{margin-left:-7.603543px;}
._3{margin-left:-6.599270px;}
._5{margin-left:-5.021184px;}
._7{margin-left:-3.945223px;}
._c{margin-left:-2.725786px;}
._2{margin-left:-1.721542px;}
._12{width:3.945216px;}
._d{width:5.808698px;}
._4{width:7.989859px;}
._1b{width:15.278738px;}
._17{width:17.287226px;}
._15{width:18.578374px;}
._20{width:19.654342px;}
._1d{width:21.519360px;}
._6{width:22.667052px;}
._a{width:24.316862px;}
._9{width:25.608046px;}
._21{width:26.683992px;}
._f{width:27.901337px;}
._1{width:29.648772px;}
._b{width:31.561728px;}
._13{width:33.498470px;}
._22{width:34.717901px;}
._1c{width:35.823572px;}
._23{width:37.085030px;}
._10{width:39.452167px;}
._16{width:40.743307px;}
._e{width:42.034490px;}
._14{width:43.038720px;}
._24{width:45.766634px;}
._1a{width:47.631610px;}
._8{width:49.351066px;}
._1e{width:52.865880px;}
._19{width:54.157049px;}
._25{width:55.806874px;}
._18{width:67.499066px;}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:47.820600px;}
.fs3{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:77.708400px;}
.fs0{font-size:95.641200px;}
.y0{bottom:0.000000px;}
.y24{bottom:106.299000px;}
.y23{bottom:127.818000px;}
.y22{bottom:149.338500px;}
.y8b{bottom:159.054000px;}
.y21{bottom:170.857500px;}
.y8a{bottom:190.288500px;}
.y20{bottom:192.376500px;}
.y4c{bottom:201.343500px;}
.y70{bottom:202.198500px;}
.y89{bottom:211.807500px;}
.y1f{bottom:213.895500px;}
.y4b{bottom:222.862500px;}
.y88{bottom:233.326500px;}
.y1e{bottom:235.414500px;}
.y4a{bottom:244.381500px;}
.y6f{bottom:246.393000px;}
.y1d{bottom:256.935000px;}
.y87{bottom:264.561000px;}
.y49{bottom:265.900500px;}
.y6e{bottom:267.912000px;}
.y86{bottom:286.081500px;}
.y48{bottom:287.419500px;}
.y6d{bottom:289.431000px;}
.y1c{bottom:289.882500px;}
.y85{bottom:307.600500px;}
.y47{bottom:308.940000px;}
.y6c{bottom:325.257000px;}
.y46{bottom:330.459000px;}
.y84{bottom:338.835000px;}
.y6b{bottom:346.776000px;}
.y1b{bottom:351.595500px;}
.y45{bottom:351.978000px;}
.y83{bottom:360.354000px;}
.y6a{bottom:368.295000px;}
.y1a{bottom:373.114500px;}
.y82{bottom:381.873000px;}
.y44{bottom:382.464000px;}
.y69{bottom:390.028500px;}
.y19{bottom:394.635000px;}
.y81{bottom:403.393500px;}
.y43{bottom:403.983000px;}
.y68{bottom:411.547500px;}
.y18{bottom:416.154000px;}
.y42{bottom:425.502000px;}
.y67{bottom:433.068000px;}
.y80{bottom:434.628000px;}
.y17{bottom:437.673000px;}
.y41{bottom:447.021000px;}
.y66{bottom:454.801500px;}
.y7f{bottom:456.147000px;}
.y16{bottom:459.192000px;}
.y40{bottom:468.541500px;}
.y65{bottom:476.320500px;}
.y15{bottom:480.711000px;}
.y7e{bottom:487.381500px;}
.y3f{bottom:490.060500px;}
.y64{bottom:497.839500px;}
.y14{bottom:502.231500px;}
.y7d{bottom:508.902000px;}
.y3e{bottom:511.579500px;}
.y63{bottom:519.358500px;}
.y13{bottom:523.750500px;}
.y3d{bottom:533.098500px;}
.y7c{bottom:540.136500px;}
.y62{bottom:541.092000px;}
.y12{bottom:545.269500px;}
.y3c{bottom:554.617500px;}
.y7b{bottom:561.655500px;}
.y61{bottom:562.611000px;}
.y60{bottom:584.130000px;}
.y3b{bottom:585.103500px;}
.y11{bottom:592.284000px;}
.y7a{bottom:595.138500px;}
.y5f{bottom:605.650500px;}
.y3a{bottom:606.622500px;}
.y10{bottom:613.803000px;}
.y5e{bottom:627.169500px;}
.y39{bottom:628.141500px;}
.yf{bottom:635.322000px;}
.y79{bottom:641.472000px;}
.y38{bottom:649.662000px;}
.ye{bottom:656.841000px;}
.y78{bottom:662.991000px;}
.y5d{bottom:663.208500px;}
.y37{bottom:671.181000px;}
.yd{bottom:678.360000px;}
.y77{bottom:684.510000px;}
.y5c{bottom:684.727500px;}
.yc{bottom:699.880500px;}
.y36{bottom:700.569000px;}
.y76{bottom:706.030500px;}
.y5b{bottom:706.246500px;}
.yb{bottom:721.399500px;}
.y5a{bottom:727.767000px;}
.y75{bottom:739.512000px;}
.y35{bottom:742.807500px;}
.ya{bottom:742.918500px;}
.y59{bottom:759.108000px;}
.y34{bottom:764.328000px;}
.y9{bottom:764.437500px;}
.y33{bottom:785.847000px;}
.y8{bottom:785.956500px;}
.y58{bottom:799.417500px;}
.y32{bottom:807.366000px;}
.y57{bottom:820.936500px;}
.y31{bottom:828.885000px;}
.y56{bottom:842.455500px;}
.y30{bottom:850.404000px;}
.y7{bottom:861.177000px;}
.y55{bottom:863.974500px;}
.y2f{bottom:871.923000px;}
.y6{bottom:882.696000px;}
.y54{bottom:885.493500px;}
.y74{bottom:893.443500px;}
.y92{bottom:897.030000px;}
.y2e{bottom:902.409000px;}
.y73{bottom:914.962500px;}
.y53{bottom:916.836000px;}
.y91{bottom:918.549000px;}
.y5{bottom:918.915000px;}
.y2d{bottom:923.928000px;}
.y72{bottom:936.481500px;}
.y2c{bottom:945.448500px;}
.y90{bottom:949.035000px;}
.y52{bottom:957.144000px;}
.y71{bottom:958.000500px;}
.y2b{bottom:966.967500px;}
.y8f{bottom:970.554000px;}
.y51{bottom:978.664500px;}
.y4{bottom:981.013500px;}
.y2a{bottom:988.486500px;}
.y50{bottom:1000.183500px;}
.y8e{bottom:1001.040000px;}
.y29{bottom:1010.005500px;}
.y3{bottom:1015.804500px;}
.y4f{bottom:1021.702500px;}
.y8d{bottom:1022.559000px;}
.y28{bottom:1031.524500px;}
.y4e{bottom:1043.221500px;}
.y8c{bottom:1044.078000px;}
.y27{bottom:1053.045000px;}
.y2{bottom:1057.104000px;}
.y4d{bottom:1064.740500px;}
.y26{bottom:1074.564000px;}
.y1{bottom:1086.993000px;}
.y25{bottom:1096.083000px;}
.h4{height:31.800699px;}
.h5{height:37.299974px;}
.h9{height:48.992410px;}
.h7{height:49.351066px;}
.hb{height:49.711066px;}
.h8{height:50.140109px;}
.h6{height:51.144346px;}
.ha{height:55.406089px;}
.h3{height:57.834699px;}
.h2{height:68.192176px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:127.558500px;}
.x1{left:128.679000px;}
.x7{left:134.932500px;}
.x17{left:148.281000px;}
.x9{left:161.575500px;}
.x15{left:166.503000px;}
.xe{left:175.450500px;}
.x14{left:181.558500px;}
.x16{left:206.274000px;}
.x8{left:211.566000px;}
.x5{left:232.920000px;}
.x3{left:264.856500px;}
.x2{left:276.981000px;}
.xf{left:289.887000px;}
.xc{left:319.191000px;}
.x10{left:330.793500px;}
.x6{left:356.793000px;}
.x18{left:441.019500px;}
.xd{left:481.702500px;}
.x4{left:512.862000px;}
.x19{left:531.063000px;}
.x11{left:567.496500px;}
.x1a{left:599.247000px;}
.x1d{left:609.225000px;}
.xa{left:640.351500px;}
.x1b{left:645.870000px;}
.x12{left:649.998000px;}
.xb{left:703.435500px;}
.x1c{left:747.421500px;}
@media print{
.v2{vertical-align:-23.136000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:23.141333pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:2.653258pt;}
.ls0{letter-spacing:18.594591pt;}
.ls2{letter-spacing:24.447420pt;}
.ls4{letter-spacing:31.242923pt;}
.ws62{word-spacing:-17.268533pt;}
.wsb{word-spacing:-15.940267pt;}
.ws6e{word-spacing:-7.215411pt;}
.ws70{word-spacing:-7.165901pt;}
.ws26{word-spacing:-3.698142pt;}
.ws68{word-spacing:-3.315575pt;}
.ws2b{word-spacing:-3.124292pt;}
.ws67{word-spacing:-2.996770pt;}
.ws55{word-spacing:-2.677965pt;}
.ws44{word-spacing:-2.614204pt;}
.ws4f{word-spacing:-2.422921pt;}
.ws72{word-spacing:-1.976593pt;}
.ws71{word-spacing:-1.912832pt;}
.ws3c{word-spacing:-1.785310pt;}
.ws29{word-spacing:-1.466505pt;}
.ws36{word-spacing:-1.083938pt;}
.ws9{word-spacing:-0.956416pt;}
.ws40{word-spacing:-0.892655pt;}
.ws34{word-spacing:-0.765133pt;}
.ws3b{word-spacing:-0.701372pt;}
.wsd{word-spacing:-0.637611pt;}
.ws56{word-spacing:-0.255044pt;}
.ws50{word-spacing:-0.191283pt;}
.ws53{word-spacing:-0.063761pt;}
.ws0{word-spacing:0.000000pt;}
.ws41{word-spacing:0.127522pt;}
.ws5c{word-spacing:0.446327pt;}
.ws59{word-spacing:0.573850pt;}
.ws43{word-spacing:0.637611pt;}
.ws2a{word-spacing:0.701372pt;}
.ws6b{word-spacing:0.828894pt;}
.ws8{word-spacing:0.892655pt;}
.ws35{word-spacing:1.020177pt;}
.ws1e{word-spacing:1.402743pt;}
.ws15{word-spacing:1.466505pt;}
.ws6a{word-spacing:1.530266pt;}
.ws51{word-spacing:1.594027pt;}
.ws38{word-spacing:1.785310pt;}
.ws74{word-spacing:1.849071pt;}
.ws73{word-spacing:1.912832pt;}
.ws64{word-spacing:1.976593pt;}
.ws52{word-spacing:2.231637pt;}
.ws54{word-spacing:2.359159pt;}
.ws2e{word-spacing:2.422921pt;}
.ws3f{word-spacing:2.486682pt;}
.wse{word-spacing:2.550443pt;}
.ws7{word-spacing:2.614204pt;}
.ws3d{word-spacing:2.741726pt;}
.ws11{word-spacing:2.996770pt;}
.ws10{word-spacing:3.060531pt;}
.ws2{word-spacing:3.124292pt;}
.ws5a{word-spacing:3.188053pt;}
.wsa{word-spacing:3.251814pt;}
.ws4c{word-spacing:3.443098pt;}
.ws27{word-spacing:3.506859pt;}
.ws37{word-spacing:3.634381pt;}
.ws3a{word-spacing:3.825664pt;}
.ws1f{word-spacing:3.953186pt;}
.ws5b{word-spacing:4.080708pt;}
.ws24{word-spacing:4.144469pt;}
.ws5d{word-spacing:4.208230pt;}
.ws6{word-spacing:4.271991pt;}
.ws42{word-spacing:4.335753pt;}
.ws3e{word-spacing:4.463275pt;}
.ws3{word-spacing:4.590797pt;}
.ws61{word-spacing:4.654558pt;}
.ws2f{word-spacing:4.909602pt;}
.ws12{word-spacing:5.037124pt;}
.ws2c{word-spacing:5.100885pt;}
.ws14{word-spacing:5.419691pt;}
.ws5{word-spacing:5.483452pt;}
.wsf{word-spacing:5.674735pt;}
.ws45{word-spacing:5.738496pt;}
.ws4e{word-spacing:5.993540pt;}
.ws66{word-spacing:6.057301pt;}
.ws31{word-spacing:6.248585pt;}
.ws13{word-spacing:6.312346pt;}
.ws65{word-spacing:6.503629pt;}
.ws32{word-spacing:6.631151pt;}
.ws57{word-spacing:6.694912pt;}
.ws58{word-spacing:6.758673pt;}
.ws28{word-spacing:6.822434pt;}
.ws63{word-spacing:7.013717pt;}
.ws6d{word-spacing:7.141239pt;}
.ws22{word-spacing:7.332523pt;}
.ws4b{word-spacing:7.651328pt;}
.ws33{word-spacing:7.778850pt;}
.ws5f{word-spacing:7.970133pt;}
.ws1d{word-spacing:8.097655pt;}
.ws4{word-spacing:8.161417pt;}
.ws5e{word-spacing:8.225178pt;}
.ws23{word-spacing:8.288939pt;}
.ws69{word-spacing:8.352700pt;}
.ws46{word-spacing:8.543983pt;}
.ws60{word-spacing:8.607744pt;}
.ws30{word-spacing:9.054071pt;}
.ws1b{word-spacing:9.436638pt;}
.ws2d{word-spacing:9.564160pt;}
.ws39{word-spacing:9.627921pt;}
.ws6c{word-spacing:9.819204pt;}
.ws25{word-spacing:10.966903pt;}
.ws21{word-spacing:11.094426pt;}
.ws17{word-spacing:11.158187pt;}
.ws49{word-spacing:11.349470pt;}
.ws1c{word-spacing:11.604514pt;}
.ws20{word-spacing:13.262302pt;}
.ws1a{word-spacing:13.517346pt;}
.ws16{word-spacing:14.574642pt;}
.ws6f{word-spacing:15.238895pt;}
.ws4d{word-spacing:15.812745pt;}
.ws19{word-spacing:16.195311pt;}
.ws18{word-spacing:17.598054pt;}
.ws4a{word-spacing:19.128320pt;}
.ws1{word-spacing:31.115401pt;}
.wsc{word-spacing:31.179162pt;}
.ws48{word-spacing:31.242923pt;}
.ws47{word-spacing:66.247748pt;}
._11{margin-left:-25.504427pt;}
._26{margin-left:-24.165425pt;}
._0{margin-left:-7.821325pt;}
._1f{margin-left:-6.758705pt;}
._3{margin-left:-5.866018pt;}
._5{margin-left:-4.463275pt;}
._7{margin-left:-3.506865pt;}
._c{margin-left:-2.422921pt;}
._2{margin-left:-1.530259pt;}
._12{width:3.506859pt;}
._d{width:5.163287pt;}
._4{width:7.102097pt;}
._1b{width:13.581101pt;}
._17{width:15.366423pt;}
._15{width:16.514110pt;}
._20{width:17.470526pt;}
._1d{width:19.128320pt;}
._6{width:20.148491pt;}
._a{width:21.614989pt;}
._9{width:22.762707pt;}
._21{width:23.719104pt;}
._f{width:24.801188pt;}
._1{width:26.354464pt;}
._b{width:28.054869pt;}
._13{width:29.776418pt;}
._22{width:30.860356pt;}
._1c{width:31.843175pt;}
._23{width:32.964471pt;}
._10{width:35.068593pt;}
._16{width:36.216273pt;}
._e{width:37.363991pt;}
._14{width:38.256640pt;}
._24{width:40.681453pt;}
._1a{width:42.339209pt;}
._8{width:43.867614pt;}
._1e{width:46.991893pt;}
._19{width:48.139599pt;}
._25{width:49.606110pt;}
._18{width:59.999170pt;}
.fs2{font-size:42.507200pt;}
.fs3{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:69.074133pt;}
.fs0{font-size:85.014400pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:94.488000pt;}
.y23{bottom:113.616000pt;}
.y22{bottom:132.745333pt;}
.y8b{bottom:141.381333pt;}
.y21{bottom:151.873333pt;}
.y8a{bottom:169.145333pt;}
.y20{bottom:171.001333pt;}
.y4c{bottom:178.972000pt;}
.y70{bottom:179.732000pt;}
.y89{bottom:188.273333pt;}
.y1f{bottom:190.129333pt;}
.y4b{bottom:198.100000pt;}
.y88{bottom:207.401333pt;}
.y1e{bottom:209.257333pt;}
.y4a{bottom:217.228000pt;}
.y6f{bottom:219.016000pt;}
.y1d{bottom:228.386667pt;}
.y87{bottom:235.165333pt;}
.y49{bottom:236.356000pt;}
.y6e{bottom:238.144000pt;}
.y86{bottom:254.294667pt;}
.y48{bottom:255.484000pt;}
.y6d{bottom:257.272000pt;}
.y1c{bottom:257.673333pt;}
.y85{bottom:273.422667pt;}
.y47{bottom:274.613333pt;}
.y6c{bottom:289.117333pt;}
.y46{bottom:293.741333pt;}
.y84{bottom:301.186667pt;}
.y6b{bottom:308.245333pt;}
.y1b{bottom:312.529333pt;}
.y45{bottom:312.869333pt;}
.y83{bottom:320.314667pt;}
.y6a{bottom:327.373333pt;}
.y1a{bottom:331.657333pt;}
.y82{bottom:339.442667pt;}
.y44{bottom:339.968000pt;}
.y69{bottom:346.692000pt;}
.y19{bottom:350.786667pt;}
.y81{bottom:358.572000pt;}
.y43{bottom:359.096000pt;}
.y68{bottom:365.820000pt;}
.y18{bottom:369.914667pt;}
.y42{bottom:378.224000pt;}
.y67{bottom:384.949333pt;}
.y80{bottom:386.336000pt;}
.y17{bottom:389.042667pt;}
.y41{bottom:397.352000pt;}
.y66{bottom:404.268000pt;}
.y7f{bottom:405.464000pt;}
.y16{bottom:408.170667pt;}
.y40{bottom:416.481333pt;}
.y65{bottom:423.396000pt;}
.y15{bottom:427.298667pt;}
.y7e{bottom:433.228000pt;}
.y3f{bottom:435.609333pt;}
.y64{bottom:442.524000pt;}
.y14{bottom:446.428000pt;}
.y7d{bottom:452.357333pt;}
.y3e{bottom:454.737333pt;}
.y63{bottom:461.652000pt;}
.y13{bottom:465.556000pt;}
.y3d{bottom:473.865333pt;}
.y7c{bottom:480.121333pt;}
.y62{bottom:480.970667pt;}
.y12{bottom:484.684000pt;}
.y3c{bottom:492.993333pt;}
.y7b{bottom:499.249333pt;}
.y61{bottom:500.098667pt;}
.y60{bottom:519.226667pt;}
.y3b{bottom:520.092000pt;}
.y11{bottom:526.474667pt;}
.y7a{bottom:529.012000pt;}
.y5f{bottom:538.356000pt;}
.y3a{bottom:539.220000pt;}
.y10{bottom:545.602667pt;}
.y5e{bottom:557.484000pt;}
.y39{bottom:558.348000pt;}
.yf{bottom:564.730667pt;}
.y79{bottom:570.197333pt;}
.y38{bottom:577.477333pt;}
.ye{bottom:583.858667pt;}
.y78{bottom:589.325333pt;}
.y5d{bottom:589.518667pt;}
.y37{bottom:596.605333pt;}
.yd{bottom:602.986667pt;}
.y77{bottom:608.453333pt;}
.y5c{bottom:608.646667pt;}
.yc{bottom:622.116000pt;}
.y36{bottom:622.728000pt;}
.y76{bottom:627.582667pt;}
.y5b{bottom:627.774667pt;}
.yb{bottom:641.244000pt;}
.y5a{bottom:646.904000pt;}
.y75{bottom:657.344000pt;}
.y35{bottom:660.273333pt;}
.ya{bottom:660.372000pt;}
.y59{bottom:674.762667pt;}
.y34{bottom:679.402667pt;}
.y9{bottom:679.500000pt;}
.y33{bottom:698.530667pt;}
.y8{bottom:698.628000pt;}
.y58{bottom:710.593333pt;}
.y32{bottom:717.658667pt;}
.y57{bottom:729.721333pt;}
.y31{bottom:736.786667pt;}
.y56{bottom:748.849333pt;}
.y30{bottom:755.914667pt;}
.y7{bottom:765.490667pt;}
.y55{bottom:767.977333pt;}
.y2f{bottom:775.042667pt;}
.y6{bottom:784.618667pt;}
.y54{bottom:787.105333pt;}
.y74{bottom:794.172000pt;}
.y92{bottom:797.360000pt;}
.y2e{bottom:802.141333pt;}
.y73{bottom:813.300000pt;}
.y53{bottom:814.965333pt;}
.y91{bottom:816.488000pt;}
.y5{bottom:816.813333pt;}
.y2d{bottom:821.269333pt;}
.y72{bottom:832.428000pt;}
.y2c{bottom:840.398667pt;}
.y90{bottom:843.586667pt;}
.y52{bottom:850.794667pt;}
.y71{bottom:851.556000pt;}
.y2b{bottom:859.526667pt;}
.y8f{bottom:862.714667pt;}
.y51{bottom:869.924000pt;}
.y4{bottom:872.012000pt;}
.y2a{bottom:878.654667pt;}
.y50{bottom:889.052000pt;}
.y8e{bottom:889.813333pt;}
.y29{bottom:897.782667pt;}
.y3{bottom:902.937333pt;}
.y4f{bottom:908.180000pt;}
.y8d{bottom:908.941333pt;}
.y28{bottom:916.910667pt;}
.y4e{bottom:927.308000pt;}
.y8c{bottom:928.069333pt;}
.y27{bottom:936.040000pt;}
.y2{bottom:939.648000pt;}
.y4d{bottom:946.436000pt;}
.y26{bottom:955.168000pt;}
.y1{bottom:966.216000pt;}
.y25{bottom:974.296000pt;}
.h4{height:28.267288pt;}
.h5{height:33.155533pt;}
.h9{height:43.548809pt;}
.h7{height:43.867614pt;}
.hb{height:44.187614pt;}
.h8{height:44.568986pt;}
.h6{height:45.461641pt;}
.ha{height:49.249857pt;}
.h3{height:51.408621pt;}
.h2{height:60.615267pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:113.385333pt;}
.x1{left:114.381333pt;}
.x7{left:119.940000pt;}
.x17{left:131.805333pt;}
.x9{left:143.622667pt;}
.x15{left:148.002667pt;}
.xe{left:155.956000pt;}
.x14{left:161.385333pt;}
.x16{left:183.354667pt;}
.x8{left:188.058667pt;}
.x5{left:207.040000pt;}
.x3{left:235.428000pt;}
.x2{left:246.205333pt;}
.xf{left:257.677333pt;}
.xc{left:283.725333pt;}
.x10{left:294.038667pt;}
.x6{left:317.149333pt;}
.x18{left:392.017333pt;}
.xd{left:428.180000pt;}
.x4{left:455.877333pt;}
.x19{left:472.056000pt;}
.x11{left:504.441333pt;}
.x1a{left:532.664000pt;}
.x1d{left:541.533333pt;}
.xa{left:569.201333pt;}
.x1b{left:574.106667pt;}
.x12{left:577.776000pt;}
.xb{left:625.276000pt;}
.x1c{left:664.374667pt;}
}




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