
    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_81874db11cd156c3e2f3b622.woff')format("woff");}.ff1{font-family:ff1;line-height:1.056000;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_b1b9a732e1d6fe5a7dbe6da6.woff')format("woff");}.ff2{font-family:ff2;line-height:1.008000;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_71c6460091ff7ee972e5a336.woff')format("woff");}.ff3{font-family:ff3;line-height:0.904297;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_c90bf3c63c9be376fa3e539b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.008000;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_f8b3f99bac85bc4202218fdc.woff')format("woff");}.ff5{font-family:ff5;line-height:0.948730;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_0eec0b257f08ccd282c69d8c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.056000;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_4cab390bbc08dbdbb1ce54a4.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_2372a0ebe6dd2b70f57dc1fb.woff')format("woff");}.ff8{font-family:ff8;line-height:0.718000;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_6d0693fcb89904ab2d2dbce1.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_1c94984cf068ee0d1d451d52.woff')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.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);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.832000px;}
.ls6{letter-spacing:-0.465600px;}
.lsb{letter-spacing:-0.028800px;}
.ls7{letter-spacing:-0.016800px;}
.ls8{letter-spacing:-0.009600px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.006600px;}
.lsa{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.009600px;}
.ls3{letter-spacing:0.010800px;}
.ls5{letter-spacing:0.012000px;}
.ls2{letter-spacing:0.014280px;}
.ls4{letter-spacing:29.526300px;}
.lsc{letter-spacing:176.799960px;}
.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;}
}
.ws3{word-spacing:-62.160000px;}
.ws2{word-spacing:-30.192000px;}
.ws1{word-spacing:-28.416000px;}
.ws9{word-spacing:-28.356000px;}
.ws8{word-spacing:-26.688000px;}
.ws4{word-spacing:-26.640000px;}
.ws12{word-spacing:-25.574400px;}
.ws13{word-spacing:-24.019200px;}
.ws11{word-spacing:-21.705600px;}
.ws10{word-spacing:-21.696000px;}
.wsa{word-spacing:-21.686400px;}
.wsb{word-spacing:-21.667200px;}
.wsf{word-spacing:-16.680000px;}
.ws7{word-spacing:-10.382400px;}
.ws5{word-spacing:-0.150000px;}
.ws6{word-spacing:-0.144000px;}
.ws0{word-spacing:0.000000px;}
.wsd{word-spacing:15.176340px;}
.wsc{word-spacing:24.560340px;}
.wse{word-spacing:28.334340px;}
._7{margin-left:-28.638000px;}
._b{margin-left:-14.190000px;}
._4{margin-left:-13.086000px;}
._2{margin-left:-9.990000px;}
._5{margin-left:-7.992000px;}
._9{margin-left:-5.826000px;}
._0{margin-left:-4.432320px;}
._3{margin-left:-2.916000px;}
._1{margin-left:-1.620000px;}
._6{width:1.080000px;}
._a{width:2.664000px;}
._c{width:16.811640px;}
._8{width:29.526300px;}
.fce{color:rgb(70,120,134);}
.fc0{color:rgb(165,16,40);}
.fc1{color:rgb(83,83,83);}
.fc6{color:rgb(0,0,0);}
.fcd{color:rgb(151,30,19);}
.fc3{color:rgb(148,17,0);}
.fc4{color:rgb(55,55,55);}
.fc8{color:rgb(55,55,55);}
.fc5{color:rgb(33,80,150);}
.fc7{color:rgb(149,49,20);}
.fc9{color:rgb(161,2,36);}
.fca{color:rgb(147,29,41);}
.fcb{color:transparent;}
.fc2{color:rgb(166,1,0);}
.fcc{color:rgb(55,95,113);}
.fse{font-size:48.000000px;}
.fs2{font-size:60.000000px;}
.fs14{font-size:69.600000px;}
.fsf{font-size:72.000000px;}
.fs11{font-size:78.000000px;}
.fs4{font-size:84.000000px;}
.fs13{font-size:86.400000px;}
.fs1{font-size:90.000000px;}
.fs5{font-size:96.000000px;}
.fs6{font-size:102.000000px;}
.fs8{font-size:108.000000px;}
.fs3{font-size:114.000000px;}
.fsb{font-size:138.000000px;}
.fsd{font-size:144.000000px;}
.fsc{font-size:150.000000px;}
.fs9{font-size:192.000000px;}
.fs7{font-size:210.000000px;}
.fs0{font-size:246.240000px;}
.fsa{font-size:258.000000px;}
.fs10{font-size:270.000000px;}
.fs12{font-size:300.000000px;}
.y0{bottom:0.000000px;}
.y94{bottom:13.796250px;}
.y78{bottom:14.857410px;}
.y74{bottom:14.857500px;}
.y81{bottom:18.041100px;}
.ye{bottom:18.041160px;}
.y7b{bottom:18.041250px;}
.y4{bottom:21.630900px;}
.y47{bottom:26.531100px;}
.y6{bottom:27.701490px;}
.y93{bottom:40.796250px;}
.y77{bottom:43.357410px;}
.y49{bottom:45.633600px;}
.y15{bottom:47.737350px;}
.y80{bottom:52.541100px;}
.yd{bottom:52.541160px;}
.y7a{bottom:52.541250px;}
.y96{bottom:53.062350px;}
.y5{bottom:54.701490px;}
.y92{bottom:67.796250px;}
.y4e{bottom:68.075895px;}
.y7c{bottom:71.435730px;}
.y46{bottom:72.431100px;}
.y84{bottom:74.702505px;}
.y72{bottom:75.161370px;}
.y5b{bottom:77.442000px;}
.y8b{bottom:84.278460px;}
.y7f{bottom:87.041100px;}
.y83{bottom:87.041250px;}
.yc{bottom:90.277125px;}
.y7d{bottom:90.642210px;}
.y4b{bottom:93.018405px;}
.y2c{bottom:96.095220px;}
.y8a{bottom:105.278460px;}
.yb4{bottom:111.369810px;}
.y4d{bottom:117.575895px;}
.y45{bottom:118.331100px;}
.y2{bottom:119.153550px;}
.y14{bottom:121.237350px;}
.yb3{bottom:139.869810px;}
.y76{bottom:145.090590px;}
.y79{bottom:160.218450px;}
.y6d{bottom:160.663350px;}
.y6a{bottom:163.084200px;}
.y5a{bottom:166.360650px;}
.y4c{bottom:167.075895px;}
.yb2{bottom:168.369750px;}
.ya4{bottom:173.210700px;}
.y75{bottom:174.590550px;}
.y87{bottom:180.860700px;}
.yf{bottom:188.989800px;}
.y3f{bottom:191.160900px;}
.y39{bottom:192.081450px;}
.y6c{bottom:193.663350px;}
.y69{bottom:196.084200px;}
.y59{bottom:200.860650px;}
.y13{bottom:205.331100px;}
.ya3{bottom:207.002700px;}
.y86{bottom:215.360700px;}
.y3e{bottom:221.160900px;}
.y38{bottom:222.081450px;}
.yb1{bottom:225.369750px;}
.y6b{bottom:226.663350px;}
.y68{bottom:229.084200px;}
.y91{bottom:229.650000px;}
.y58{bottom:235.360650px;}
.y97{bottom:237.745950px;}
.ya2{bottom:242.210700px;}
.y21{bottom:249.516600px;}
.y85{bottom:249.860700px;}
.y3d{bottom:251.160900px;}
.y37{bottom:252.081450px;}
.yb0{bottom:253.869750px;}
.y4a{bottom:259.127700px;}
.y8e{bottom:269.093700px;}
.y57{bottom:269.860650px;}
.ya1{bottom:276.002700px;}
.yaf{bottom:282.369750px;}
.y20{bottom:284.016600px;}
.y2b{bottom:284.360700px;}
.y12{bottom:289.424850px;}
.y9{bottom:293.678100px;}
.y8d{bottom:296.093700px;}
.y56{bottom:304.360650px;}
.yae{bottom:310.869750px;}
.ya0{bottom:311.210700px;}
.y64{bottom:314.799150px;}
.y1f{bottom:318.516600px;}
.y2a{bottom:318.860700px;}
.y8c{bottom:323.093700px;}
.y8{bottom:336.758100px;}
.y55{bottom:338.860650px;}
.yad{bottom:339.369750px;}
.y9f{bottom:345.002700px;}
.y63{bottom:347.799150px;}
.y1e{bottom:353.016600px;}
.y29{bottom:353.360700px;}
.y30{bottom:362.026950px;}
.y67{bottom:363.326100px;}
.y7e{bottom:367.396200px;}
.yac{bottom:367.869750px;}
.y11{bottom:373.518600px;}
.y1{bottom:377.166150px;}
.y9e{bottom:380.210700px;}
.y62{bottom:380.799150px;}
.y43{bottom:386.627400px;}
.y2f{bottom:386.671200px;}
.y1d{bottom:387.516600px;}
.y28{bottom:387.860700px;}
.y3c{bottom:388.185600px;}
.y54{bottom:392.708250px;}
.y66{bottom:396.326100px;}
.yab{bottom:396.369750px;}
.y3{bottom:399.088800px;}
.y73{bottom:406.108050px;}
.y61{bottom:413.799150px;}
.y9d{bottom:414.002700px;}
.y44{bottom:414.211650px;}
.y2e{bottom:416.671200px;}
.y3b{bottom:418.185600px;}
.y1c{bottom:422.016600px;}
.y27{bottom:422.360700px;}
.yaa{bottom:424.869750px;}
.y42{bottom:425.627400px;}
.y65{bottom:429.326100px;}
.y2d{bottom:446.671200px;}
.y3a{bottom:448.185600px;}
.y10{bottom:452.315400px;}
.ya9{bottom:453.369750px;}
.y1b{bottom:456.516600px;}
.y26{bottom:456.860700px;}
.y41{bottom:464.627400px;}
.y9a{bottom:477.363900px;}
.y99{bottom:482.784600px;}
.y9c{bottom:483.710700px;}
.y1a{bottom:491.016600px;}
.y25{bottom:491.360700px;}
.y95{bottom:500.678550px;}
.y53{bottom:501.313350px;}
.y40{bottom:503.627400px;}
.y8f{bottom:508.217100px;}
.ya8{bottom:510.369750px;}
.y60{bottom:517.724850px;}
.y9b{bottom:518.210700px;}
.y82{bottom:519.320700px;}
.y19{bottom:525.516600px;}
.y24{bottom:525.860700px;}
.y71{bottom:531.172200px;}
.ya7{bottom:538.869750px;}
.y52{bottom:543.313350px;}
.y48{bottom:545.474100px;}
.y5f{bottom:550.724850px;}
.y90{bottom:553.740900px;}
.y18{bottom:560.016600px;}
.y23{bottom:560.360700px;}
.y70{bottom:560.872200px;}
.y36{bottom:582.775200px;}
.y5e{bottom:583.724850px;}
.y51{bottom:585.313350px;}
.y33{bottom:585.332400px;}
.y6f{bottom:590.572200px;}
.y17{bottom:594.516600px;}
.ya5{bottom:594.852150px;}
.y22{bottom:594.860700px;}
.y89{bottom:606.172800px;}
.y35{bottom:612.775200px;}
.y32{bottom:615.332400px;}
.y5d{bottom:616.724850px;}
.y50{bottom:619.813350px;}
.y6e{bottom:620.272200px;}
.y34{bottom:642.775200px;}
.y31{bottom:645.332400px;}
.y88{bottom:672.525450px;}
.y4f{bottom:674.427450px;}
.y16{bottom:674.502150px;}
.ya6{bottom:676.081050px;}
.y98{bottom:679.293000px;}
.y7{bottom:738.528900px;}
.yb{bottom:776.046900px;}
.ya{bottom:783.553950px;}
.y5c{bottom:785.782200px;}
.h15{height:34.851562px;}
.h17{height:42.842970px;}
.hd{height:43.652344px;}
.h1a{height:46.080000px;}
.h16{height:51.679688px;}
.h21{height:51.916470px;}
.h1d{height:59.904000px;}
.h6{height:60.990234px;}
.h18{height:64.512000px;}
.he{height:65.346680px;}
.h23{height:66.355200px;}
.h4{height:69.120000px;}
.h7{height:73.728000px;}
.h9{height:78.336000px;}
.h22{height:81.168000px;}
.h8{height:86.416470px;}
.h5{height:87.552000px;}
.h1f{height:94.318470px;}
.h19{height:99.842970px;}
.hf{height:100.198242px;}
.h14{height:110.592000px;}
.h11{height:115.200000px;}
.h1b{height:120.916470px;}
.h12{height:132.553410px;}
.h20{height:153.224850px;}
.h3{height:158.700000px;}
.hb{height:161.280000px;}
.h10{height:168.412500px;}
.h2{height:189.112320px;}
.hc{height:198.144000px;}
.h1{height:201.645450px;}
.h1c{height:207.360000px;}
.h13{height:215.694000px;}
.h1e{height:230.400000px;}
.ha{height:523.029300px;}
.h0{height:810.000000px;}
.we{width:151.047150px;}
.w9{width:166.056000px;}
.w8{width:194.580450px;}
.w5{width:227.623800px;}
.wa{width:371.833350px;}
.wc{width:401.649900px;}
.wb{width:403.149900px;}
.w12{width:421.689900px;}
.wd{width:441.877800px;}
.w10{width:481.846350px;}
.w6{width:489.862650px;}
.w3{width:588.389250px;}
.w11{width:729.003150px;}
.w4{width:769.114800px;}
.wf{width:858.511950px;}
.w2{width:909.177450px;}
.w7{width:1182.953550px;}
.w1{width:1260.356850px;}
.w0{width:1440.000000px;}
.x0{left:0.000000px;}
.x45{left:7.171350px;}
.xb{left:8.708250px;}
.x27{left:12.806220px;}
.xd{left:17.928600px;}
.x5{left:19.286745px;}
.x2{left:21.022710px;}
.x29{left:22.026705px;}
.x5a{left:25.612500px;}
.x9{left:31.323180px;}
.xe{left:32.818365px;}
.x2f{left:34.818360px;}
.x4d{left:37.573950px;}
.xf{left:39.890715px;}
.x31{left:41.690715px;}
.x30{left:43.690710px;}
.x11{left:44.690715px;}
.x1c{left:45.955095px;}
.x2c{left:54.689550px;}
.x28{left:55.791645px;}
.x10{left:60.022290px;}
.x43{left:61.643625px;}
.x2d{left:63.437550px;}
.x12{left:64.822290px;}
.x26{left:68.046180px;}
.x35{left:70.544880px;}
.x57{left:74.848065px;}
.x1{left:76.735470px;}
.x4b{left:80.898450px;}
.x5d{left:86.023350px;}
.x39{left:87.233220px;}
.x13{left:89.690715px;}
.x4e{left:92.615700px;}
.x18{left:98.783325px;}
.x4c{left:100.201950px;}
.x1d{left:103.150095px;}
.x36{left:105.584880px;}
.x14{left:109.822290px;}
.x3a{left:116.489220px;}
.x50{left:119.690715px;}
.x17{left:128.438325px;}
.x3e{left:132.142095px;}
.x1f{left:133.481700px;}
.x19{left:139.665825px;}
.x60{left:140.706285px;}
.x20{left:145.496700px;}
.x51{left:153.243300px;}
.x3d{left:154.438050px;}
.x49{left:156.949800px;}
.x48{left:163.446600px;}
.x1b{left:185.680050px;}
.x37{left:188.768850px;}
.x1e{left:190.519200px;}
.x3f{left:197.998050px;}
.x6{left:203.988300px;}
.x5e{left:205.853370px;}
.x2b{left:221.789100px;}
.x34{left:225.632850px;}
.x38{left:230.993250px;}
.x2e{left:280.841550px;}
.x5b{left:311.592150px;}
.xa{left:411.641400px;}
.x5c{left:465.982350px;}
.x7{left:525.682050px;}
.x3{left:580.973850px;}
.x56{left:583.580250px;}
.x55{left:586.974750px;}
.x25{left:613.306650px;}
.x22{left:621.742650px;}
.x23{left:635.978400px;}
.x24{left:644.713650px;}
.x47{left:683.452650px;}
.x4{left:700.403850px;}
.x15{left:788.469450px;}
.x4f{left:839.954400px;}
.x59{left:843.516300px;}
.xc{left:851.610750px;}
.x32{left:860.248500px;}
.x53{left:864.874200px;}
.x58{left:875.409600px;}
.x54{left:887.899200px;}
.x5f{left:903.276450px;}
.x41{left:906.704850px;}
.x52{left:940.534950px;}
.x2a{left:950.137350px;}
.x44{left:985.323750px;}
.x40{left:1010.164350px;}
.x3c{left:1036.850250px;}
.x3b{left:1094.015550px;}
.x1a{left:1171.199700px;}
.x21{left:1174.352850px;}
.x16{left:1186.594650px;}
.x46{left:1208.661000px;}
.x4a{left:1260.347250px;}
.x33{left:1403.433300px;}
.x42{left:1409.289750px;}
.x8{left:1419.933300px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.517333pt;}
.ls6{letter-spacing:-0.413867pt;}
.lsb{letter-spacing:-0.025600pt;}
.ls7{letter-spacing:-0.014933pt;}
.ls8{letter-spacing:-0.008533pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.005867pt;}
.lsa{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.008533pt;}
.ls3{letter-spacing:0.009600pt;}
.ls5{letter-spacing:0.010667pt;}
.ls2{letter-spacing:0.012693pt;}
.ls4{letter-spacing:26.245600pt;}
.lsc{letter-spacing:157.155520pt;}
.ws3{word-spacing:-55.253333pt;}
.ws2{word-spacing:-26.837333pt;}
.ws1{word-spacing:-25.258667pt;}
.ws9{word-spacing:-25.205333pt;}
.ws8{word-spacing:-23.722667pt;}
.ws4{word-spacing:-23.680000pt;}
.ws12{word-spacing:-22.732800pt;}
.ws13{word-spacing:-21.350400pt;}
.ws11{word-spacing:-19.293867pt;}
.ws10{word-spacing:-19.285333pt;}
.wsa{word-spacing:-19.276800pt;}
.wsb{word-spacing:-19.259733pt;}
.wsf{word-spacing:-14.826667pt;}
.ws7{word-spacing:-9.228800pt;}
.ws5{word-spacing:-0.133333pt;}
.ws6{word-spacing:-0.128000pt;}
.ws0{word-spacing:0.000000pt;}
.wsd{word-spacing:13.490080pt;}
.wsc{word-spacing:21.831413pt;}
.wse{word-spacing:25.186080pt;}
._7{margin-left:-25.456000pt;}
._b{margin-left:-12.613333pt;}
._4{margin-left:-11.632000pt;}
._2{margin-left:-8.880000pt;}
._5{margin-left:-7.104000pt;}
._9{margin-left:-5.178667pt;}
._0{margin-left:-3.939840pt;}
._3{margin-left:-2.592000pt;}
._1{margin-left:-1.440000pt;}
._6{width:0.960000pt;}
._a{width:2.368000pt;}
._c{width:14.943680pt;}
._8{width:26.245600pt;}
.fse{font-size:42.666667pt;}
.fs2{font-size:53.333333pt;}
.fs14{font-size:61.866667pt;}
.fsf{font-size:64.000000pt;}
.fs11{font-size:69.333333pt;}
.fs4{font-size:74.666667pt;}
.fs13{font-size:76.800000pt;}
.fs1{font-size:80.000000pt;}
.fs5{font-size:85.333333pt;}
.fs6{font-size:90.666667pt;}
.fs8{font-size:96.000000pt;}
.fs3{font-size:101.333333pt;}
.fsb{font-size:122.666667pt;}
.fsd{font-size:128.000000pt;}
.fsc{font-size:133.333333pt;}
.fs9{font-size:170.666667pt;}
.fs7{font-size:186.666667pt;}
.fs0{font-size:218.880000pt;}
.fsa{font-size:229.333333pt;}
.fs10{font-size:240.000000pt;}
.fs12{font-size:266.666667pt;}
.y0{bottom:0.000000pt;}
.y94{bottom:12.263333pt;}
.y78{bottom:13.206587pt;}
.y74{bottom:13.206667pt;}
.y81{bottom:16.036533pt;}
.ye{bottom:16.036587pt;}
.y7b{bottom:16.036667pt;}
.y4{bottom:19.227467pt;}
.y47{bottom:23.583200pt;}
.y6{bottom:24.623547pt;}
.y93{bottom:36.263333pt;}
.y77{bottom:38.539920pt;}
.y49{bottom:40.563200pt;}
.y15{bottom:42.433200pt;}
.y80{bottom:46.703200pt;}
.yd{bottom:46.703253pt;}
.y7a{bottom:46.703333pt;}
.y96{bottom:47.166533pt;}
.y5{bottom:48.623547pt;}
.y92{bottom:60.263333pt;}
.y4e{bottom:60.511907pt;}
.y7c{bottom:63.498427pt;}
.y46{bottom:64.383200pt;}
.y84{bottom:66.402227pt;}
.y72{bottom:66.810107pt;}
.y5b{bottom:68.837333pt;}
.y8b{bottom:74.914187pt;}
.y7f{bottom:77.369867pt;}
.y83{bottom:77.370000pt;}
.yc{bottom:80.246333pt;}
.y7d{bottom:80.570853pt;}
.y4b{bottom:82.683027pt;}
.y2c{bottom:85.417973pt;}
.y8a{bottom:93.580853pt;}
.yb4{bottom:98.995387pt;}
.y4d{bottom:104.511907pt;}
.y45{bottom:105.183200pt;}
.y2{bottom:105.914267pt;}
.y14{bottom:107.766533pt;}
.yb3{bottom:124.328720pt;}
.y76{bottom:128.969413pt;}
.y79{bottom:142.416400pt;}
.y6d{bottom:142.811867pt;}
.y6a{bottom:144.963733pt;}
.y5a{bottom:147.876133pt;}
.y4c{bottom:148.511907pt;}
.yb2{bottom:149.662000pt;}
.ya4{bottom:153.965067pt;}
.y75{bottom:155.191600pt;}
.y87{bottom:160.765067pt;}
.yf{bottom:167.990933pt;}
.y3f{bottom:169.920800pt;}
.y39{bottom:170.739067pt;}
.y6c{bottom:172.145200pt;}
.y69{bottom:174.297067pt;}
.y59{bottom:178.542800pt;}
.y13{bottom:182.516533pt;}
.ya3{bottom:184.002400pt;}
.y86{bottom:191.431733pt;}
.y3e{bottom:196.587467pt;}
.y38{bottom:197.405733pt;}
.yb1{bottom:200.328667pt;}
.y6b{bottom:201.478533pt;}
.y68{bottom:203.630400pt;}
.y91{bottom:204.133333pt;}
.y58{bottom:209.209467pt;}
.y97{bottom:211.329733pt;}
.ya2{bottom:215.298400pt;}
.y21{bottom:221.792533pt;}
.y85{bottom:222.098400pt;}
.y3d{bottom:223.254133pt;}
.y37{bottom:224.072400pt;}
.yb0{bottom:225.662000pt;}
.y4a{bottom:230.335733pt;}
.y8e{bottom:239.194400pt;}
.y57{bottom:239.876133pt;}
.ya1{bottom:245.335733pt;}
.yaf{bottom:250.995333pt;}
.y20{bottom:252.459200pt;}
.y2b{bottom:252.765067pt;}
.y12{bottom:257.266533pt;}
.y9{bottom:261.047200pt;}
.y8d{bottom:263.194400pt;}
.y56{bottom:270.542800pt;}
.yae{bottom:276.328667pt;}
.ya0{bottom:276.631733pt;}
.y64{bottom:279.821467pt;}
.y1f{bottom:283.125867pt;}
.y2a{bottom:283.431733pt;}
.y8c{bottom:287.194400pt;}
.y8{bottom:299.340533pt;}
.y55{bottom:301.209467pt;}
.yad{bottom:301.662000pt;}
.y9f{bottom:306.669067pt;}
.y63{bottom:309.154800pt;}
.y1e{bottom:313.792533pt;}
.y29{bottom:314.098400pt;}
.y30{bottom:321.801733pt;}
.y67{bottom:322.956533pt;}
.y7e{bottom:326.574400pt;}
.yac{bottom:326.995333pt;}
.y11{bottom:332.016533pt;}
.y1{bottom:335.258800pt;}
.y9e{bottom:337.965067pt;}
.y62{bottom:338.488133pt;}
.y43{bottom:343.668800pt;}
.y2f{bottom:343.707733pt;}
.y1d{bottom:344.459200pt;}
.y28{bottom:344.765067pt;}
.y3c{bottom:345.053867pt;}
.y54{bottom:349.074000pt;}
.y66{bottom:352.289867pt;}
.yab{bottom:352.328667pt;}
.y3{bottom:354.745600pt;}
.y73{bottom:360.984933pt;}
.y61{bottom:367.821467pt;}
.y9d{bottom:368.002400pt;}
.y44{bottom:368.188133pt;}
.y2e{bottom:370.374400pt;}
.y3b{bottom:371.720533pt;}
.y1c{bottom:375.125867pt;}
.y27{bottom:375.431733pt;}
.yaa{bottom:377.662000pt;}
.y42{bottom:378.335467pt;}
.y65{bottom:381.623200pt;}
.y2d{bottom:397.041067pt;}
.y3a{bottom:398.387200pt;}
.y10{bottom:402.058133pt;}
.ya9{bottom:402.995333pt;}
.y1b{bottom:405.792533pt;}
.y26{bottom:406.098400pt;}
.y41{bottom:413.002133pt;}
.y9a{bottom:424.323467pt;}
.y99{bottom:429.141867pt;}
.y9c{bottom:429.965067pt;}
.y1a{bottom:436.459200pt;}
.y25{bottom:436.765067pt;}
.y95{bottom:445.047600pt;}
.y53{bottom:445.611867pt;}
.y40{bottom:447.668800pt;}
.y8f{bottom:451.748533pt;}
.ya8{bottom:453.662000pt;}
.y60{bottom:460.199867pt;}
.y9b{bottom:460.631733pt;}
.y82{bottom:461.618400pt;}
.y19{bottom:467.125867pt;}
.y24{bottom:467.431733pt;}
.y71{bottom:472.153067pt;}
.ya7{bottom:478.995333pt;}
.y52{bottom:482.945200pt;}
.y48{bottom:484.865867pt;}
.y5f{bottom:489.533200pt;}
.y90{bottom:492.214133pt;}
.y18{bottom:497.792533pt;}
.y23{bottom:498.098400pt;}
.y70{bottom:498.553067pt;}
.y36{bottom:518.022400pt;}
.y5e{bottom:518.866533pt;}
.y51{bottom:520.278533pt;}
.y33{bottom:520.295467pt;}
.y6f{bottom:524.953067pt;}
.y17{bottom:528.459200pt;}
.ya5{bottom:528.757467pt;}
.y22{bottom:528.765067pt;}
.y89{bottom:538.820267pt;}
.y35{bottom:544.689067pt;}
.y32{bottom:546.962133pt;}
.y5d{bottom:548.199867pt;}
.y50{bottom:550.945200pt;}
.y6e{bottom:551.353067pt;}
.y34{bottom:571.355733pt;}
.y31{bottom:573.628800pt;}
.y88{bottom:597.800400pt;}
.y4f{bottom:599.491067pt;}
.y16{bottom:599.557467pt;}
.ya6{bottom:600.960933pt;}
.y98{bottom:603.816000pt;}
.y7{bottom:656.470133pt;}
.yb{bottom:689.819467pt;}
.ya{bottom:696.492400pt;}
.y5c{bottom:698.473067pt;}
.h15{height:30.979167pt;}
.h17{height:38.082640pt;}
.hd{height:38.802083pt;}
.h1a{height:40.960000pt;}
.h16{height:45.937500pt;}
.h21{height:46.147973pt;}
.h1d{height:53.248000pt;}
.h6{height:54.213542pt;}
.h18{height:57.344000pt;}
.he{height:58.085938pt;}
.h23{height:58.982400pt;}
.h4{height:61.440000pt;}
.h7{height:65.536000pt;}
.h9{height:69.632000pt;}
.h22{height:72.149333pt;}
.h8{height:76.814640pt;}
.h5{height:77.824000pt;}
.h1f{height:83.838640pt;}
.h19{height:88.749307pt;}
.hf{height:89.065104pt;}
.h14{height:98.304000pt;}
.h11{height:102.400000pt;}
.h1b{height:107.481307pt;}
.h12{height:117.825253pt;}
.h20{height:136.199867pt;}
.h3{height:141.066667pt;}
.hb{height:143.360000pt;}
.h10{height:149.700000pt;}
.h2{height:168.099840pt;}
.hc{height:176.128000pt;}
.h1{height:179.240400pt;}
.h1c{height:184.320000pt;}
.h13{height:191.728000pt;}
.h1e{height:204.800000pt;}
.ha{height:464.914933pt;}
.h0{height:720.000000pt;}
.we{width:134.264133pt;}
.w9{width:147.605333pt;}
.w8{width:172.960400pt;}
.w5{width:202.332267pt;}
.wa{width:330.518533pt;}
.wc{width:357.022133pt;}
.wb{width:358.355467pt;}
.w12{width:374.835467pt;}
.wd{width:392.780267pt;}
.w10{width:428.307867pt;}
.w6{width:435.433467pt;}
.w3{width:523.012667pt;}
.w11{width:648.002800pt;}
.w4{width:683.657600pt;}
.wf{width:763.121733pt;}
.w2{width:808.157733pt;}
.w7{width:1051.514267pt;}
.w1{width:1120.317200pt;}
.w0{width:1280.000000pt;}
.x0{left:0.000000pt;}
.x45{left:6.374533pt;}
.xb{left:7.740667pt;}
.x27{left:11.383307pt;}
.xd{left:15.936533pt;}
.x5{left:17.143773pt;}
.x2{left:18.686853pt;}
.x29{left:19.579293pt;}
.x5a{left:22.766667pt;}
.x9{left:27.842827pt;}
.xe{left:29.171880pt;}
.x2f{left:30.949653pt;}
.x4d{left:33.399067pt;}
.xf{left:35.458413pt;}
.x31{left:37.058413pt;}
.x30{left:38.836187pt;}
.x11{left:39.725080pt;}
.x1c{left:40.848973pt;}
.x2c{left:48.612933pt;}
.x28{left:49.592573pt;}
.x10{left:53.353147pt;}
.x43{left:54.794333pt;}
.x2d{left:56.388933pt;}
.x12{left:57.619813pt;}
.x26{left:60.485493pt;}
.x35{left:62.706560pt;}
.x57{left:66.531613pt;}
.x1{left:68.209307pt;}
.x4b{left:71.909733pt;}
.x5d{left:76.465200pt;}
.x39{left:77.540640pt;}
.x13{left:79.725080pt;}
.x4e{left:82.325067pt;}
.x18{left:87.807400pt;}
.x4c{left:89.068400pt;}
.x1d{left:91.688973pt;}
.x36{left:93.853227pt;}
.x14{left:97.619813pt;}
.x3a{left:103.545973pt;}
.x50{left:106.391747pt;}
.x17{left:114.167400pt;}
.x3e{left:117.459640pt;}
.x1f{left:118.650400pt;}
.x19{left:124.147400pt;}
.x60{left:125.072253pt;}
.x20{left:129.330400pt;}
.x51{left:136.216267pt;}
.x3d{left:137.278267pt;}
.x49{left:139.510933pt;}
.x48{left:145.285867pt;}
.x1b{left:165.048933pt;}
.x37{left:167.794533pt;}
.x1e{left:169.350400pt;}
.x3f{left:175.998267pt;}
.x6{left:181.322933pt;}
.x5e{left:182.980773pt;}
.x2b{left:197.145867pt;}
.x34{left:200.562533pt;}
.x38{left:205.327333pt;}
.x2e{left:249.636933pt;}
.x5b{left:276.970800pt;}
.xa{left:365.903467pt;}
.x5c{left:414.206533pt;}
.x7{left:467.272933pt;}
.x3{left:516.421200pt;}
.x56{left:518.738000pt;}
.x55{left:521.755333pt;}
.x25{left:545.161467pt;}
.x22{left:552.660133pt;}
.x23{left:565.314133pt;}
.x24{left:573.078800pt;}
.x47{left:607.513467pt;}
.x4{left:622.581200pt;}
.x15{left:700.861733pt;}
.x4f{left:746.626133pt;}
.x59{left:749.792267pt;}
.xc{left:756.987333pt;}
.x32{left:764.665333pt;}
.x53{left:768.777067pt;}
.x58{left:778.141867pt;}
.x54{left:789.243733pt;}
.x5f{left:802.912400pt;}
.x41{left:805.959867pt;}
.x52{left:836.031067pt;}
.x2a{left:844.566533pt;}
.x44{left:875.843333pt;}
.x40{left:897.923867pt;}
.x3c{left:921.644667pt;}
.x3b{left:972.458267pt;}
.x1a{left:1041.066400pt;}
.x21{left:1043.869200pt;}
.x16{left:1054.750800pt;}
.x46{left:1074.365333pt;}
.x4a{left:1120.308667pt;}
.x33{left:1247.496267pt;}
.x42{left:1252.702000pt;}
.x8{left:1262.162933pt;}
}




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