
    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_f71cca98e4da7e5aecb79340.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_f0b734fde8379246917f9a40.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_dc92c230936c8c47fe118c9a.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.857910;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_0a30e2d6af126ffc75432db2.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.873047;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_b56e1176a9b83bafe9cb0d53.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.686523;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bd8c9eca6425744f22c524cb.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_775f215d876261dc20488c17.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.740723;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_00f224a75e65a4c0ef8817d1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.866699;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_99e647a4cc39c58249b8cc1b.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_3f3fb4fda64cea18cb3db4b4.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{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);}
.m1{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);}
.m2{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);}
.m3{transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249859,0.000000,0.000000,0.250000,0,0);}
.v1{vertical-align:-4.319998px;}
.v0{vertical-align:0.000000px;}
.ls5{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.018600px;}
.ls1{letter-spacing:0.156848px;}
.ls2{letter-spacing:0.161081px;}
.ls3{letter-spacing:0.233352px;}
.ls6{letter-spacing:59.392056px;}
.ls0{letter-spacing:1494.331725px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(83,129,53),0 0.015em rgb(83,129,53),0.015em 0 rgb(83,129,53),0 -0.015em  rgb(83,129,53);}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em rgb(83,129,53);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws7{word-spacing:-39.743984px;}
.ws4{word-spacing:-32.418587px;}
.ws3{word-spacing:-15.011994px;}
.ws0{word-spacing:-14.970234px;}
.ws8{word-spacing:-14.939994px;}
.ws1{word-spacing:-14.374074px;}
.ws2{word-spacing:-13.505755px;}
.ws5{word-spacing:-12.203995px;}
.ws6{word-spacing:0.000000px;}
._17{margin-left:-4.634757px;}
._10{margin-left:-3.634578px;}
._c{margin-left:-2.621687px;}
._1{margin-left:-1.570801px;}
._0{width:1.003097px;}
._e{width:2.643253px;}
._4{width:4.419200px;}
._2{width:5.717299px;}
._3{width:7.007224px;}
._a{width:8.784883px;}
._f{width:9.989271px;}
._16{width:11.212084px;}
._13{width:12.375957px;}
._b{width:13.961018px;}
._d{width:14.964194px;}
._7{width:16.563548px;}
._8{width:17.833151px;}
._15{width:19.658791px;}
._11{width:24.104561px;}
._12{width:25.114150px;}
._6{width:26.842354px;}
._5{width:28.216541px;}
._9{width:31.165852px;}
._14{width:927.775743px;}
.fcc{color:transparent;}
.fcb{color:rgb(0,101,204);}
.fc9{color:rgb(0,0,255);}
.fc8{color:rgb(44,62,80);}
.fca{color:rgb(0,112,192);}
.fc7{color:rgb(192,0,0);}
.fc6{color:rgb(83,129,53);}
.fc4{color:rgb(0,32,96);}
.fc3{color:rgb(128,52,13);}
.fc5{color:rgb(51,51,51);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(64,64,64);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:53.999978px;}
.fs0{font-size:59.759976px;}
.fs1{font-size:66.239974px;}
.fs4{font-size:71.999971px;}
.fs3{font-size:84.239966px;}
.y0{bottom:0.000000px;}
.yc{bottom:3.060047px;}
.y85{bottom:3.238974px;}
.y8a{bottom:3.239002px;}
.y8c{bottom:3.239009px;}
.y8f{bottom:3.239024px;}
.y91{bottom:3.239031px;}
.y9d{bottom:3.239181px;}
.y9f{bottom:3.239188px;}
.ya1{bottom:3.239196px;}
.ya3{bottom:3.239203px;}
.ya5{bottom:3.239210px;}
.ya7{bottom:3.239217px;}
.ya9{bottom:3.239224px;}
.yab{bottom:3.239232px;}
.yad{bottom:3.239239px;}
.yaf{bottom:3.239246px;}
.yb1{bottom:3.239253px;}
.y7c{bottom:3.239312px;}
.y7e{bottom:3.239319px;}
.y80{bottom:3.239326px;}
.y82{bottom:3.239693px;}
.y1b{bottom:4.319151px;}
.y3d{bottom:4.498953px;}
.y1d{bottom:4.499151px;}
.y2b{bottom:4.499166px;}
.ya{bottom:4.500038px;}
.y19{bottom:5.579151px;}
.yb{bottom:28.560240px;}
.y9{bottom:50.520240px;}
.y7{bottom:55.020278px;}
.y8{bottom:56.100278px;}
.y5{bottom:106.319957px;}
.y63{bottom:114.779954px;}
.y83{bottom:115.140254px;}
.y62{bottom:135.839946px;}
.yb7{bottom:141.059944px;}
.y29{bottom:156.899937px;}
.y81{bottom:163.020240px;}
.y61{bottom:172.919931px;}
.yb6{bottom:177.239929px;}
.y7f{bottom:181.020600px;}
.y42{bottom:186.419925px;}
.y7d{bottom:199.020600px;}
.y41{bottom:203.699919px;}
.y60{bottom:212.699915px;}
.yb5{bottom:213.239915px;}
.y7b{bottom:217.020600px;}
.y40{bottom:220.979912px;}
.yb4{bottom:234.479906px;}
.y3f{bottom:238.259905px;}
.y3e{bottom:255.539898px;}
.y7a{bottom:258.239897px;}
.y5f{bottom:265.259894px;}
.yb3{bottom:276.779889px;}
.y5e{bottom:286.499885px;}
.y28{bottom:302.519879px;}
.yd1{bottom:304.319878px;}
.y79{bottom:310.799876px;}
.yb2{bottom:315.659874px;}
.y37{bottom:318.179873px;}
.y5d{bottom:325.379870px;}
.y78{bottom:332.039867px;}
.y36{bottom:337.799865px;}
.yd0{bottom:343.199863px;}
.y35{bottom:358.859856px;}
.yb0{bottom:363.540600px;}
.y77{bottom:368.219853px;}
.y5c{bottom:377.939849px;}
.y34{bottom:380.099848px;}
.yae{bottom:381.540600px;}
.y76{bottom:389.279844px;}
.ycf{bottom:395.759842px;}
.y27{bottom:396.299841px;}
.y5b{bottom:398.999840px;}
.yac{bottom:399.540600px;}
.y75{bottom:410.519836px;}
.y33{bottom:416.279833px;}
.yce{bottom:416.999833px;}
.yaa{bottom:417.540600px;}
.y5a{bottom:420.239832px;}
.y26{bottom:428.879828px;}
.y74{bottom:431.579827px;}
.ya8{bottom:435.540600px;}
.y32{bottom:437.339825px;}
.y25{bottom:444.899822px;}
.ya6{bottom:453.540600px;}
.ycd{bottom:453.899818px;}
.y59{bottom:456.419817px;}
.y31{bottom:458.579817px;}
.y24{bottom:460.919816px;}
.y73{bottom:470.459812px;}
.ya4{bottom:471.540600px;}
.ycc{bottom:475.139810px;}
.y23{bottom:475.679810px;}
.y58{bottom:477.479809px;}
.y30{bottom:479.639808px;}
.ya2{bottom:489.540600px;}
.y57{bottom:498.719801px;}
.y2f{bottom:500.879800px;}
.y22{bottom:507.179797px;}
.ya0{bottom:507.540600px;}
.ycb{bottom:512.219795px;}
.y2e{bottom:521.939791px;}
.y72{bottom:523.019791px;}
.y9e{bottom:525.540600px;}
.yca{bottom:533.279787px;}
.y56{bottom:537.599785px;}
.y21{bottom:538.499785px;}
.y2d{bottom:543.179783px;}
.y9c{bottom:543.540600px;}
.yc9{bottom:554.339778px;}
.y20{bottom:554.519778px;}
.y71{bottom:560.099776px;}
.y2c{bottom:564.239774px;}
.y2a{bottom:580.800600px;}
.y9b{bottom:584.759766px;}
.y1f{bottom:588.179765px;}
.y55{bottom:590.159764px;}
.yc8{bottom:591.419763px;}
.y70{bottom:597.179761px;}
.y54{bottom:611.219756px;}
.yc7{bottom:612.659755px;}
.y18{bottom:615.900600px;}
.y1a{bottom:616.980600px;}
.y6f{bottom:618.239753px;}
.y1c{bottom:621.479751px;}
.y1e{bottom:622.739751px;}
.y53{bottom:632.459747px;}
.y9a{bottom:637.319745px;}
.yc6{bottom:649.559740px;}
.y52{bottom:653.519739px;}
.y17{bottom:655.139738px;}
.y6e{bottom:658.019737px;}
.y99{bottom:658.379737px;}
.yc5{bottom:670.799732px;}
.y16{bottom:677.819729px;}
.yc4{bottom:691.859723px;}
.y51{bottom:692.579723px;}
.y98{bottom:695.459722px;}
.y15{bottom:698.879720px;}
.y6d{bottom:710.579716px;}
.y14{bottom:720.119712px;}
.yc3{bottom:728.939708px;}
.y97{bottom:732.539707px;}
.y50{bottom:745.139702px;}
.y6c{bottom:747.659701px;}
.yc2{bottom:750.179700px;}
.y96{bottom:753.599699px;}
.y13{bottom:756.119698px;}
.y4f{bottom:766.199694px;}
.y12{bottom:777.359689px;}
.y6b{bottom:784.559686px;}
.yc1{bottom:787.079685px;}
.y4e{bottom:787.439685px;}
.y95{bottom:790.679684px;}
.yc0{bottom:808.319677px;}
.y94{bottom:811.739675px;}
.y11{bottom:813.539675px;}
.y4d{bottom:823.439671px;}
.y6a{bottom:824.519670px;}
.y93{bottom:832.979667px;}
.y4c{bottom:844.679662px;}
.ybf{bottom:845.399662px;}
.y10{bottom:852.419659px;}
.y4b{bottom:865.739654px;}
.ybe{bottom:866.459653px;}
.y92{bottom:871.859651px;}
.y69{bottom:876.899649px;}
.y4a{bottom:886.979645px;}
.ybd{bottom:887.519645px;}
.yf{bottom:912.359635px;}
.y68{bottom:913.979634px;}
.y90{bottom:919.740600px;}
.ybc{bottom:924.599630px;}
.y49{bottom:925.859630px;}
.y8e{bottom:937.740600px;}
.ye{bottom:939.179624px;}
.ybb{bottom:945.839622px;}
.y67{bottom:951.059620px;}
.y8d{bottom:958.259617px;}
.yd{bottom:966.179614px;}
.y8b{bottom:973.020600px;}
.y48{bottom:978.419609px;}
.yba{bottom:982.739607px;}
.y66{bottom:988.139605px;}
.y89{bottom:991.020600px;}
.y47{bottom:999.659600px;}
.yb9{bottom:1003.979598px;}
.y88{bottom:1011.359595px;}
.y46{bottom:1020.719592px;}
.y65{bottom:1025.039590px;}
.y3b{bottom:1026.119590px;}
.y87{bottom:1028.639589px;}
.yb8{bottom:1041.059584px;}
.y45{bottom:1041.959583px;}
.y86{bottom:1045.919582px;}
.y3a{bottom:1048.079581px;}
.y84{bottom:1060.680600px;}
.y64{bottom:1062.119575px;}
.y44{bottom:1063.019575px;}
.y39{bottom:1082.099567px;}
.y43{bottom:1101.899559px;}
.y38{bottom:1112.879555px;}
.y3c{bottom:1112.880600px;}
.y4{bottom:1148.879540px;}
.y6{bottom:1177.139529px;}
.y3{bottom:1180.379528px;}
.y2{bottom:1197.659521px;}
.y1{bottom:1214.939514px;}
.h13{height:16.560000px;}
.h6{height:18.900000px;}
.ha{height:20.160000px;}
.h5{height:20.340000px;}
.h9{height:21.240000px;}
.hf{height:36.624009px;}
.h3{height:36.703110px;}
.h4{height:38.759750px;}
.he{height:39.313461px;}
.h10{height:39.830258px;}
.h1{height:41.522679px;}
.hd{height:42.894123px;}
.hb{height:44.149201px;}
.hc{height:46.089825px;}
.h2{height:47.545293px;}
.h12{height:48.224512px;}
.h8{height:51.679667px;}
.h11{height:58.614234px;}
.h7{height:60.465210px;}
.h0{height:1263.000000px;}
.w6{width:3.600000px;}
.w11{width:3.780000px;}
.w10{width:5.040000px;}
.w2{width:5.940000px;}
.wd{width:7.560000px;}
.w8{width:8.280000px;}
.w3{width:9.720000px;}
.w9{width:13.140000px;}
.w4{width:18.900000px;}
.w1d{width:27.540000px;}
.w29{width:28.260000px;}
.w7{width:33.840000px;}
.w2a{width:35.820000px;}
.w20{width:38.340000px;}
.w13{width:39.240000px;}
.wb{width:50.400000px;}
.w26{width:52.560000px;}
.w25{width:56.700000px;}
.w5{width:58.500000px;}
.wc{width:59.220000px;}
.w28{width:63.720000px;}
.w2c{width:67.500000px;}
.w17{width:69.660000px;}
.w2e{width:70.740000px;}
.w21{width:75.780000px;}
.w2f{width:77.040000px;}
.w1a{width:81.360000px;}
.w14{width:86.220000px;}
.w16{width:87.840000px;}
.w12{width:92.700000px;}
.w2b{width:97.020000px;}
.we{width:105.120000px;}
.wf{width:126.720000px;}
.w1f{width:132.120000px;}
.w23{width:139.860000px;}
.w1b{width:140.580000px;}
.w24{width:143.280000px;}
.w2d{width:144.180000px;}
.w27{width:149.220000px;}
.w19{width:161.640000px;}
.w1c{width:167.400000px;}
.w22{width:178.020000px;}
.w15{width:191.160000px;}
.w18{width:210.780000px;}
.w1e{width:217.980000px;}
.wa{width:502.380000px;}
.w1{width:892.500000px;}
.w0{width:892.830000px;}
.x0{left:0.000000px;}
.x10{left:61.200000px;}
.x1a{left:63.899974px;}
.x17{left:72.899971px;}
.x1c{left:76.859969px;}
.x4{left:80.099968px;}
.x18{left:81.359991px;}
.x1{left:84.959966px;}
.x27{left:93.420000px;}
.xb{left:95.399987px;}
.xd{left:97.379213px;}
.x1b{left:100.439960px;}
.x5{left:105.479958px;}
.x26{left:111.959955px;}
.x19{left:118.619953px;}
.x45{left:121.680000px;}
.x34{left:127.260000px;}
.x46{left:129.240000px;}
.x11{left:138.600000px;}
.x12{left:142.200000px;}
.x8{left:145.619942px;}
.x28{left:152.640000px;}
.x44{left:157.140000px;}
.x48{left:160.920000px;}
.x49{left:164.160000px;}
.x3f{left:169.200000px;}
.x4a{left:170.460000px;}
.x13{left:176.039930px;}
.x14{left:178.920000px;}
.x32{left:181.260000px;}
.x47{left:190.440000px;}
.x1d{left:192.239965px;}
.xf{left:203.760491px;}
.x1f{left:210.059916px;}
.x21{left:211.679915px;}
.x15{left:220.680000px;}
.x2b{left:225.180000px;}
.x2c{left:228.960000px;}
.x42{left:236.700000px;}
.x16{left:241.919903px;}
.xc{left:244.439659px;}
.x25{left:248.399901px;}
.x2{left:279.539888px;}
.xe{left:286.920498px;}
.x2d{left:321.660000px;}
.xa{left:323.639871px;}
.x35{left:336.420000px;}
.x20{left:347.939903px;}
.x22{left:365.040133px;}
.x9{left:394.920157px;}
.x6{left:405.179838px;}
.x38{left:417.780000px;}
.x39{left:421.560000px;}
.x29{left:459.540000px;}
.x3d{left:468.540000px;}
.x23{left:470.699812px;}
.x2e{left:498.780000px;}
.x2f{left:503.820000px;}
.x40{left:515.340000px;}
.x33{left:529.020000px;}
.x36{left:547.200000px;}
.x3c{left:554.400000px;}
.x3a{left:562.140000px;}
.x2a{left:564.660000px;}
.x37{left:582.300000px;}
.x30{left:589.860000px;}
.x3b{left:609.840000px;}
.x3e{left:620.640000px;}
.x43{left:634.500000px;}
.x31{left:650.700000px;}
.x24{left:657.900000px;}
.x3{left:700.019720px;}
.x41{left:721.620000px;}
.x1e{left:744.300000px;}
.x7{left:807.300000px;}
@media print{
.v1{vertical-align:-3.839998pt;}
.v0{vertical-align:0.000000pt;}
.ls5{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.016533pt;}
.ls1{letter-spacing:0.139420pt;}
.ls2{letter-spacing:0.143183pt;}
.ls3{letter-spacing:0.207424pt;}
.ls6{letter-spacing:52.792939pt;}
.ls0{letter-spacing:1328.294867pt;}
.ws7{word-spacing:-35.327986pt;}
.ws4{word-spacing:-28.816521pt;}
.ws3{word-spacing:-13.343995pt;}
.ws0{word-spacing:-13.306875pt;}
.ws8{word-spacing:-13.279995pt;}
.ws1{word-spacing:-12.776955pt;}
.ws2{word-spacing:-12.005115pt;}
.ws5{word-spacing:-10.847996pt;}
.ws6{word-spacing:0.000000pt;}
._17{margin-left:-4.119784pt;}
._10{margin-left:-3.230736pt;}
._c{margin-left:-2.330388pt;}
._1{margin-left:-1.396267pt;}
._0{width:0.891642pt;}
._e{width:2.349558pt;}
._4{width:3.928178pt;}
._2{width:5.082044pt;}
._3{width:6.228643pt;}
._a{width:7.808784pt;}
._f{width:8.879352pt;}
._16{width:9.966297pt;}
._13{width:11.000851pt;}
._b{width:12.409794pt;}
._d{width:13.301506pt;}
._7{width:14.723154pt;}
._8{width:15.851690pt;}
._15{width:17.474481pt;}
._11{width:21.426277pt;}
._12{width:22.323689pt;}
._6{width:23.859870pt;}
._5{width:25.081370pt;}
._9{width:27.702979pt;}
._14{width:824.689549pt;}
.fs2{font-size:47.999981pt;}
.fs0{font-size:53.119979pt;}
.fs1{font-size:58.879976pt;}
.fs4{font-size:63.999974pt;}
.fs3{font-size:74.879970pt;}
.y0{bottom:0.000000pt;}
.yc{bottom:2.720042pt;}
.y85{bottom:2.879088pt;}
.y8a{bottom:2.879113pt;}
.y8c{bottom:2.879120pt;}
.y8f{bottom:2.879132pt;}
.y91{bottom:2.879138pt;}
.y9d{bottom:2.879272pt;}
.y9f{bottom:2.879279pt;}
.ya1{bottom:2.879285pt;}
.ya3{bottom:2.879291pt;}
.ya5{bottom:2.879298pt;}
.ya7{bottom:2.879304pt;}
.ya9{bottom:2.879311pt;}
.yab{bottom:2.879317pt;}
.yad{bottom:2.879323pt;}
.yaf{bottom:2.879330pt;}
.yb1{bottom:2.879336pt;}
.y7c{bottom:2.879388pt;}
.y7e{bottom:2.879395pt;}
.y80{bottom:2.879401pt;}
.y82{bottom:2.879728pt;}
.y1b{bottom:3.839246pt;}
.y3d{bottom:3.999069pt;}
.y1d{bottom:3.999246pt;}
.y2b{bottom:3.999259pt;}
.ya{bottom:4.000034pt;}
.y19{bottom:4.959246pt;}
.yb{bottom:25.386880pt;}
.y9{bottom:44.906880pt;}
.y7{bottom:48.906914pt;}
.y8{bottom:49.866913pt;}
.y5{bottom:94.506629pt;}
.y63{bottom:102.026626pt;}
.y83{bottom:102.346892pt;}
.y62{bottom:120.746618pt;}
.yb7{bottom:125.386617pt;}
.y29{bottom:139.466611pt;}
.y81{bottom:144.906880pt;}
.y61{bottom:153.706605pt;}
.yb6{bottom:157.546604pt;}
.y7f{bottom:160.907200pt;}
.y42{bottom:165.706600pt;}
.y7d{bottom:176.907200pt;}
.y41{bottom:181.066594pt;}
.y60{bottom:189.066591pt;}
.yb5{bottom:189.546591pt;}
.y7b{bottom:192.907200pt;}
.y40{bottom:196.426588pt;}
.yb4{bottom:208.426583pt;}
.y3f{bottom:211.786582pt;}
.y3e{bottom:227.146576pt;}
.y7a{bottom:229.546575pt;}
.y5f{bottom:235.786572pt;}
.yb3{bottom:246.026568pt;}
.y5e{bottom:254.666565pt;}
.y28{bottom:268.906559pt;}
.yd1{bottom:270.506558pt;}
.y79{bottom:276.266556pt;}
.yb2{bottom:280.586554pt;}
.y37{bottom:282.826554pt;}
.y5d{bottom:289.226551pt;}
.y78{bottom:295.146549pt;}
.y36{bottom:300.266547pt;}
.yd0{bottom:305.066545pt;}
.y35{bottom:318.986539pt;}
.yb0{bottom:323.147200pt;}
.y77{bottom:327.306536pt;}
.y5c{bottom:335.946532pt;}
.y34{bottom:337.866532pt;}
.yae{bottom:339.147200pt;}
.y76{bottom:346.026528pt;}
.ycf{bottom:351.786526pt;}
.y27{bottom:352.266526pt;}
.y5b{bottom:354.666525pt;}
.yac{bottom:355.147200pt;}
.y75{bottom:364.906521pt;}
.y33{bottom:370.026519pt;}
.yce{bottom:370.666518pt;}
.yaa{bottom:371.147200pt;}
.y5a{bottom:373.546517pt;}
.y26{bottom:381.226514pt;}
.y74{bottom:383.626513pt;}
.ya8{bottom:387.147200pt;}
.y32{bottom:388.746511pt;}
.y25{bottom:395.466508pt;}
.ya6{bottom:403.147200pt;}
.ycd{bottom:403.466505pt;}
.y59{bottom:405.706504pt;}
.y31{bottom:407.626504pt;}
.y24{bottom:409.706503pt;}
.y73{bottom:418.186499pt;}
.ya4{bottom:419.147200pt;}
.ycc{bottom:422.346498pt;}
.y23{bottom:422.826498pt;}
.y58{bottom:424.426497pt;}
.y30{bottom:426.346496pt;}
.ya2{bottom:435.147200pt;}
.y57{bottom:443.306489pt;}
.y2f{bottom:445.226489pt;}
.y22{bottom:450.826486pt;}
.ya0{bottom:451.147200pt;}
.ycb{bottom:455.306485pt;}
.y2e{bottom:463.946481pt;}
.y72{bottom:464.906481pt;}
.y9e{bottom:467.147200pt;}
.yca{bottom:474.026477pt;}
.y56{bottom:477.866476pt;}
.y21{bottom:478.666475pt;}
.y2d{bottom:482.826474pt;}
.y9c{bottom:483.147200pt;}
.yc9{bottom:492.746470pt;}
.y20{bottom:492.906470pt;}
.y71{bottom:497.866468pt;}
.y2c{bottom:501.546466pt;}
.y2a{bottom:516.267200pt;}
.y9b{bottom:519.786459pt;}
.y1f{bottom:522.826458pt;}
.y55{bottom:524.586457pt;}
.yc8{bottom:525.706456pt;}
.y70{bottom:530.826454pt;}
.y54{bottom:543.306449pt;}
.yc7{bottom:544.586449pt;}
.y18{bottom:547.467200pt;}
.y1a{bottom:548.427200pt;}
.y6f{bottom:549.546447pt;}
.y1c{bottom:552.426446pt;}
.y1e{bottom:553.546445pt;}
.y53{bottom:562.186442pt;}
.y9a{bottom:566.506440pt;}
.yc6{bottom:577.386436pt;}
.y52{bottom:580.906434pt;}
.y17{bottom:582.346434pt;}
.y6e{bottom:584.906433pt;}
.y99{bottom:585.226433pt;}
.yc5{bottom:596.266428pt;}
.y16{bottom:602.506426pt;}
.yc4{bottom:614.986421pt;}
.y51{bottom:615.626420pt;}
.y98{bottom:618.186419pt;}
.y15{bottom:621.226418pt;}
.y6d{bottom:631.626414pt;}
.y14{bottom:640.106411pt;}
.yc3{bottom:647.946407pt;}
.y97{bottom:651.146406pt;}
.y50{bottom:662.346402pt;}
.y6c{bottom:664.586401pt;}
.yc2{bottom:666.826400pt;}
.y96{bottom:669.866399pt;}
.y13{bottom:672.106398pt;}
.y4f{bottom:681.066394pt;}
.y12{bottom:690.986390pt;}
.y6b{bottom:697.386388pt;}
.yc1{bottom:699.626387pt;}
.y4e{bottom:699.946387pt;}
.y95{bottom:702.826386pt;}
.yc0{bottom:718.506379pt;}
.y94{bottom:721.546378pt;}
.y11{bottom:723.146377pt;}
.y4d{bottom:731.946374pt;}
.y6a{bottom:732.906374pt;}
.y93{bottom:740.426370pt;}
.y4c{bottom:750.826366pt;}
.ybf{bottom:751.466366pt;}
.y10{bottom:757.706364pt;}
.y4b{bottom:769.546359pt;}
.ybe{bottom:770.186359pt;}
.y92{bottom:774.986357pt;}
.y69{bottom:779.466355pt;}
.y4a{bottom:788.426351pt;}
.ybd{bottom:788.906351pt;}
.yf{bottom:810.986342pt;}
.y68{bottom:812.426342pt;}
.y90{bottom:817.547200pt;}
.ybc{bottom:821.866338pt;}
.y49{bottom:822.986337pt;}
.y8e{bottom:833.547200pt;}
.ye{bottom:834.826333pt;}
.ybb{bottom:840.746330pt;}
.y67{bottom:845.386329pt;}
.y8d{bottom:851.786326pt;}
.yd{bottom:858.826323pt;}
.y8b{bottom:864.907200pt;}
.y48{bottom:869.706319pt;}
.yba{bottom:873.546317pt;}
.y66{bottom:878.346315pt;}
.y89{bottom:880.907200pt;}
.y47{bottom:888.586311pt;}
.yb9{bottom:892.426310pt;}
.y88{bottom:898.986307pt;}
.y46{bottom:907.306304pt;}
.y65{bottom:911.146302pt;}
.y3b{bottom:912.106302pt;}
.y87{bottom:914.346301pt;}
.yb8{bottom:925.386297pt;}
.y45{bottom:926.186296pt;}
.y86{bottom:929.706295pt;}
.y3a{bottom:931.626294pt;}
.y84{bottom:942.827200pt;}
.y64{bottom:944.106289pt;}
.y44{bottom:944.906289pt;}
.y39{bottom:961.866282pt;}
.y43{bottom:979.466275pt;}
.y38{bottom:989.226271pt;}
.y3c{bottom:989.227200pt;}
.y4{bottom:1021.226258pt;}
.y6{bottom:1046.346248pt;}
.y3{bottom:1049.226247pt;}
.y2{bottom:1064.586241pt;}
.y1{bottom:1079.946235pt;}
.h13{height:14.720000pt;}
.h6{height:16.800000pt;}
.ha{height:17.920000pt;}
.h5{height:18.080000pt;}
.h9{height:18.880000pt;}
.hf{height:32.554674pt;}
.h3{height:32.624987pt;}
.h4{height:34.453111pt;}
.he{height:34.945299pt;}
.h10{height:35.404673pt;}
.h1{height:36.909048pt;}
.hd{height:38.128110pt;}
.hb{height:39.243734pt;}
.hc{height:40.968734pt;}
.h2{height:42.262483pt;}
.h12{height:42.866233pt;}
.h8{height:45.937482pt;}
.h11{height:52.101542pt;}
.h7{height:53.746854pt;}
.h0{height:1122.666667pt;}
.w6{width:3.200000pt;}
.w11{width:3.360000pt;}
.w10{width:4.480000pt;}
.w2{width:5.280000pt;}
.wd{width:6.720000pt;}
.w8{width:7.360000pt;}
.w3{width:8.640000pt;}
.w9{width:11.680000pt;}
.w4{width:16.800000pt;}
.w1d{width:24.480000pt;}
.w29{width:25.120000pt;}
.w7{width:30.080000pt;}
.w2a{width:31.840000pt;}
.w20{width:34.080000pt;}
.w13{width:34.880000pt;}
.wb{width:44.800000pt;}
.w26{width:46.720000pt;}
.w25{width:50.400000pt;}
.w5{width:52.000000pt;}
.wc{width:52.640000pt;}
.w28{width:56.640000pt;}
.w2c{width:60.000000pt;}
.w17{width:61.920000pt;}
.w2e{width:62.880000pt;}
.w21{width:67.360000pt;}
.w2f{width:68.480000pt;}
.w1a{width:72.320000pt;}
.w14{width:76.640000pt;}
.w16{width:78.080000pt;}
.w12{width:82.400000pt;}
.w2b{width:86.240000pt;}
.we{width:93.440000pt;}
.wf{width:112.640000pt;}
.w1f{width:117.440000pt;}
.w23{width:124.320000pt;}
.w1b{width:124.960000pt;}
.w24{width:127.360000pt;}
.w2d{width:128.160000pt;}
.w27{width:132.640000pt;}
.w19{width:143.680000pt;}
.w1c{width:148.800000pt;}
.w22{width:158.240000pt;}
.w15{width:169.920000pt;}
.w18{width:187.360000pt;}
.w1e{width:193.760000pt;}
.wa{width:446.560000pt;}
.w1{width:793.333333pt;}
.w0{width:793.626667pt;}
.x0{left:0.000000pt;}
.x10{left:54.400000pt;}
.x1a{left:56.799977pt;}
.x17{left:64.799974pt;}
.x1c{left:68.319973pt;}
.x4{left:71.199972pt;}
.x18{left:72.319992pt;}
.x1{left:75.519970pt;}
.x27{left:83.040000pt;}
.xb{left:84.799988pt;}
.xd{left:86.559301pt;}
.x1b{left:89.279964pt;}
.x5{left:93.759962pt;}
.x26{left:99.519960pt;}
.x19{left:105.439958pt;}
.x45{left:108.160000pt;}
.x34{left:113.120000pt;}
.x46{left:114.880000pt;}
.x11{left:123.200000pt;}
.x12{left:126.400000pt;}
.x8{left:129.439948pt;}
.x28{left:135.680000pt;}
.x44{left:139.680000pt;}
.x48{left:143.040000pt;}
.x49{left:145.920000pt;}
.x3f{left:150.400000pt;}
.x4a{left:151.520000pt;}
.x13{left:156.479937pt;}
.x14{left:159.040000pt;}
.x32{left:161.120000pt;}
.x47{left:169.280000pt;}
.x1d{left:170.879969pt;}
.xf{left:181.120436pt;}
.x1f{left:186.719925pt;}
.x21{left:188.159925pt;}
.x15{left:196.160000pt;}
.x2b{left:200.160000pt;}
.x2c{left:203.520000pt;}
.x42{left:210.400000pt;}
.x16{left:215.039914pt;}
.xc{left:217.279697pt;}
.x25{left:220.799912pt;}
.x2{left:248.479901pt;}
.xe{left:255.040443pt;}
.x2d{left:285.920000pt;}
.xa{left:287.679885pt;}
.x35{left:299.040000pt;}
.x20{left:309.279913pt;}
.x22{left:324.480118pt;}
.x9{left:351.040140pt;}
.x6{left:360.159856pt;}
.x38{left:371.360000pt;}
.x39{left:374.720000pt;}
.x29{left:408.480000pt;}
.x3d{left:416.480000pt;}
.x23{left:418.399833pt;}
.x2e{left:443.360000pt;}
.x2f{left:447.840000pt;}
.x40{left:458.080000pt;}
.x33{left:470.240000pt;}
.x36{left:486.400000pt;}
.x3c{left:492.800000pt;}
.x3a{left:499.680000pt;}
.x2a{left:501.920000pt;}
.x37{left:517.600000pt;}
.x30{left:524.320000pt;}
.x3b{left:542.080000pt;}
.x3e{left:551.680000pt;}
.x43{left:564.000000pt;}
.x31{left:578.400000pt;}
.x24{left:584.800000pt;}
.x3{left:622.239751pt;}
.x41{left:641.440000pt;}
.x1e{left:661.600000pt;}
.x7{left:717.600000pt;}
}




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