
    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_71092d9e3c5073471df3e9aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.776367;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_4de0a8ea491c25e3e69b2a8f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.774902;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_3505637755cbcbfac2220168.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_e740d2c13a2ebe07ea9bacc0.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_1d08b211c9f6f9748b96715c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.963867;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_8ff2dbb69dfc9600b7115959.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.728516;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_e47a53e2645fedf6cccb0ecd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.728027;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_521a6deef9b845bf69d5d664.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.941406;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_3197ac2a84924fe6f9a24b07.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.687500;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_2c3e0c054b8e707435cdce9d.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.938965;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:ffb;src:url('chunks/assets/font_359d01edf130577d36b3965b.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.035156;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:ffc;src:url('chunks/assets/font_889dee253e36e96af03c5d29.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;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(0.288450,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.288450,0.000000,0.000000,0.250000,0,0);}
.m2{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);}
.v1{vertical-align:-119.520000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:27.360000px;}
.ls8{letter-spacing:-0.288000px;}
.ls4{letter-spacing:-0.166800px;}
.ls5{letter-spacing:-0.127200px;}
.ls3{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.017280px;}
.ls7{letter-spacing:0.144000px;}
.ls2{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.720000px;}
.ls0{letter-spacing:160.344000px;}
.sc_{text-shadow:none;}
.sc2{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.sc1{text-shadow:-0.015em 0 rgb(35,31,32),0 0.015em rgb(35,31,32),0.015em 0 rgb(35,31,32),0 -0.015em  rgb(35,31,32);}
.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;}
.sc2{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc1{-webkit-text-stroke:0.015em rgb(35,31,32);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-20.566320px;}
.ws4{word-spacing:-18.144000px;}
.ws3{word-spacing:-18.000000px;}
.ws5{word-spacing:-17.712000px;}
.ws1{word-spacing:-0.059760px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-6.890640px;}
._6{margin-left:-4.875840px;}
._5{margin-left:-3.816000px;}
._7{margin-left:-2.031120px;}
._0{margin-left:-1.028160px;}
._1{width:1.599120px;}
._8{width:3.384000px;}
._9{width:5.184000px;}
._d{width:6.443280px;}
._c{width:7.488000px;}
._a{width:8.640000px;}
._b{width:9.663120px;}
._11{width:11.648880px;}
._16{width:13.680000px;}
._e{width:14.904000px;}
._4{width:16.416000px;}
._15{width:19.388160px;}
._17{width:20.396160px;}
._19{width:21.641760px;}
._18{width:23.127120px;}
._12{width:24.696000px;}
._13{width:26.444160px;}
._f{width:28.296000px;}
._10{width:29.808000px;}
._23{width:71.424000px;}
._24{width:72.720000px;}
._2a{width:74.592000px;}
._2b{width:75.828000px;}
._1b{width:84.312000px;}
._27{width:93.384000px;}
._22{width:94.768080px;}
._21{width:96.068160px;}
._2{width:99.216000px;}
._3{width:100.512000px;}
._1a{width:114.624000px;}
._29{width:126.108000px;}
._28{width:127.272000px;}
._1d{width:168.408000px;}
._25{width:179.640000px;}
._1c{width:230.544000px;}
._1e{width:258.120000px;}
._1f{width:279.144000px;}
._20{width:281.328000px;}
._26{width:2124.600000px;}
.fc2{color:rgb(0,0,255);}
.fc3{color:rgb(255,255,255);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:12.240000px;}
.fs7{font-size:15.120000px;}
.fsc{font-size:18.000000px;}
.fs2{font-size:30.240000px;}
.fs4{font-size:33.120000px;}
.fs1{font-size:45.360000px;}
.fsb{font-size:51.120000px;}
.fs5{font-size:54.000000px;}
.fs8{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs3{font-size:120.240000px;}
.y46{bottom:-2.325000px;}
.y0{bottom:0.000000px;}
.yba{bottom:4.125000px;}
.y94{bottom:4.140000px;}
.ya9{bottom:4.485000px;}
.y96{bottom:4.500000px;}
.y48{bottom:14.040000px;}
.yb8{bottom:14.385000px;}
.ybd{bottom:14.925000px;}
.yc7{bottom:14.940000px;}
.yc5{bottom:24.825000px;}
.yb9{bottom:24.870000px;}
.ybc{bottom:25.185000px;}
.yc8{bottom:25.200000px;}
.y45{bottom:26.835000px;}
.y4d{bottom:36.216000px;}
.y3{bottom:46.656000px;}
.y4c{bottom:56.196000px;}
.y2{bottom:66.456000px;}
.y1{bottom:86.436000px;}
.y92{bottom:99.936000px;}
.y7e{bottom:100.296000px;}
.ycd{bottom:105.156000px;}
.y91{bottom:120.636000px;}
.y7d{bottom:120.996000px;}
.y2c{bottom:124.236000px;}
.ycc{bottom:125.856000px;}
.yc0{bottom:141.336000px;}
.y7c{bottom:141.696000px;}
.ycb{bottom:142.236000px;}
.y2b{bottom:143.676000px;}
.y2a{bottom:162.210000px;}
.y7b{bottom:162.390000px;}
.ybf{bottom:162.405000px;}
.y29{bottom:179.490000px;}
.y87{bottom:182.730000px;}
.y7a{bottom:183.090000px;}
.ybe{bottom:189.045000px;}
.y28{bottom:196.770000px;}
.y86{bottom:203.430000px;}
.y79{bottom:203.790000px;}
.y27{bottom:214.410000px;}
.ybb{bottom:215.685000px;}
.y90{bottom:224.130000px;}
.y78{bottom:224.490000px;}
.y26{bottom:233.850000px;}
.y8f{bottom:244.830000px;}
.y77{bottom:245.190000px;}
.y25{bottom:254.550000px;}
.yb7{bottom:263.205000px;}
.y76{bottom:265.890000px;}
.y24{bottom:275.250000px;}
.y75{bottom:286.590000px;}
.y23{bottom:295.635000px;}
.y74{bottom:307.335000px;}
.yb6{bottom:313.995000px;}
.y22{bottom:316.155000px;}
.y43{bottom:323.355000px;}
.y85{bottom:327.675000px;}
.y73{bottom:328.035000px;}
.yb5{bottom:334.335000px;}
.y21{bottom:337.215000px;}
.y42{bottom:338.835000px;}
.y8e{bottom:348.375000px;}
.y72{bottom:348.735000px;}
.y41{bottom:354.315000px;}
.yb4{bottom:355.395000px;}
.y20{bottom:357.915000px;}
.y71{bottom:369.435000px;}
.y40{bottom:369.795000px;}
.yb3{bottom:376.095000px;}
.y1f{bottom:378.255000px;}
.y3f{bottom:389.235000px;}
.y70{bottom:390.135000px;}
.yb2{bottom:396.795000px;}
.y1e{bottom:399.315000px;}
.y3e{bottom:409.935000px;}
.y6f{bottom:410.835000px;}
.yb1{bottom:417.135000px;}
.y1d{bottom:420.015000px;}
.y3d{bottom:430.635000px;}
.ycf{bottom:431.175000px;}
.y6e{bottom:431.535000px;}
.yb0{bottom:437.835000px;}
.y1c{bottom:440.715000px;}
.y3c{bottom:451.335000px;}
.y84{bottom:451.875000px;}
.y6d{bottom:452.235000px;}
.yaf{bottom:458.895000px;}
.y1b{bottom:461.415000px;}
.y3b{bottom:472.035000px;}
.y83{bottom:472.575000px;}
.y6c{bottom:472.935000px;}
.yae{bottom:479.595000px;}
.y1a{bottom:481.755000px;}
.y3a{bottom:492.735000px;}
.y8d{bottom:493.275000px;}
.y6b{bottom:493.635000px;}
.yad{bottom:500.295000px;}
.y19{bottom:502.815000px;}
.y39{bottom:513.435000px;}
.y6a{bottom:514.335000px;}
.yac{bottom:520.995000px;}
.y18{bottom:523.515000px;}
.y38{bottom:534.135000px;}
.y69{bottom:535.035000px;}
.yab{bottom:541.695000px;}
.y17{bottom:544.215000px;}
.y37{bottom:554.865000px;}
.y68{bottom:555.765000px;}
.yaa{bottom:562.425000px;}
.y16{bottom:564.945000px;}
.y36{bottom:575.565000px;}
.y67{bottom:576.465000px;}
.ya8{bottom:583.500000px;}
.y15{bottom:585.645000px;}
.y35{bottom:596.265000px;}
.y66{bottom:597.165000px;}
.y14{bottom:605.985000px;}
.ya7{bottom:610.125000px;}
.y34{bottom:616.965000px;}
.y8c{bottom:617.505000px;}
.y65{bottom:617.865000px;}
.y13{bottom:627.045000px;}
.ya6{bottom:636.765000px;}
.y33{bottom:637.665000px;}
.y8b{bottom:638.205000px;}
.y64{bottom:638.565000px;}
.y12{bottom:647.745000px;}
.yca{bottom:652.605000px;}
.y32{bottom:658.365000px;}
.y63{bottom:659.265000px;}
.ya5{bottom:663.585000px;}
.y11{bottom:668.445000px;}
.y31{bottom:679.065000px;}
.yc9{bottom:679.245000px;}
.y62{bottom:679.965000px;}
.y10{bottom:689.145000px;}
.ya4{bottom:693.645000px;}
.y30{bottom:699.765000px;}
.y61{bottom:700.665000px;}
.yf{bottom:709.485000px;}
.ya3{bottom:713.985000px;}
.y2f{bottom:720.465000px;}
.yce{bottom:721.005000px;}
.y60{bottom:721.365000px;}
.yc6{bottom:726.585000px;}
.ye{bottom:730.185000px;}
.ya2{bottom:735.045000px;}
.y2e{bottom:741.165000px;}
.y8a{bottom:741.705000px;}
.y5f{bottom:742.065000px;}
.yd{bottom:746.565000px;}
.ya1{bottom:755.745000px;}
.y2d{bottom:761.865000px;}
.y82{bottom:762.405000px;}
.y5e{bottom:762.765000px;}
.yc{bottom:764.025000px;}
.yc4{bottom:774.120000px;}
.ya0{bottom:776.445000px;}
.yb{bottom:778.965000px;}
.y5d{bottom:783.465000px;}
.ya{bottom:788.685000px;}
.y9f{bottom:796.785000px;}
.y9{bottom:797.505000px;}
.y5c{bottom:804.165000px;}
.y9e{bottom:817.530000px;}
.y5b{bottom:824.910000px;}
.y44{bottom:825.975000px;}
.y9d{bottom:838.590000px;}
.y5a{bottom:845.610000px;}
.y9c{bottom:859.290000px;}
.yc3{bottom:865.950000px;}
.y59{bottom:866.310000px;}
.y9b{bottom:879.990000px;}
.y81{bottom:886.650000px;}
.y58{bottom:887.010000px;}
.y8{bottom:889.890000px;}
.y9a{bottom:900.690000px;}
.y7{bottom:904.650000px;}
.y80{bottom:907.350000px;}
.y57{bottom:907.710000px;}
.y99{bottom:921.390000px;}
.y56{bottom:928.410000px;}
.y98{bottom:942.450000px;}
.yc2{bottom:948.750000px;}
.y55{bottom:949.110000px;}
.y6{bottom:968.910000px;}
.y97{bottom:969.090000px;}
.yc1{bottom:969.450000px;}
.y54{bottom:969.810000px;}
.y89{bottom:990.150000px;}
.y53{bottom:990.510000px;}
.y95{bottom:995.730000px;}
.y88{bottom:1010.850000px;}
.y52{bottom:1011.210000px;}
.y93{bottom:1022.550000px;}
.y4a{bottom:1030.290000px;}
.y51{bottom:1031.910000px;}
.y49{bottom:1050.990000px;}
.y50{bottom:1052.250000px;}
.y7f{bottom:1052.610000px;}
.y4b{bottom:1072.260000px;}
.y5{bottom:1106.460000px;}
.y47{bottom:1108.080000px;}
.y4f{bottom:1117.620000px;}
.y4{bottom:1120.680000px;}
.y4e{bottom:1138.320000px;}
.h8{height:8.773594px;}
.h9{height:10.830586px;}
.h14{height:18.430664px;}
.h19{height:20.685000px;}
.h1a{height:20.700000px;}
.h5{height:25.163437px;}
.h3{height:29.678906px;}
.h15{height:29.700000px;}
.hb{height:40.472227px;}
.h1c{height:41.385000px;}
.h1d{height:41.400000px;}
.h1b{height:41.421000px;}
.h17{height:42.602344px;}
.h2{height:44.518359px;}
.h12{height:45.000000px;}
.hf{height:45.403594px;}
.h7{height:45.457031px;}
.h16{height:47.221875px;}
.h1{height:50.326875px;}
.h18{height:51.328125px;}
.h10{height:52.066406px;}
.h11{height:52.998047px;}
.h6{height:55.760625px;}
.ha{height:58.651172px;}
.he{height:65.010937px;}
.hd{height:70.664062px;}
.hc{height:72.562500px;}
.h13{height:78.879375px;}
.h4{height:121.179375px;}
.h0{height:1188.000000px;}
.w4{width:77.781000px;}
.w6{width:85.896000px;}
.wd{width:136.065000px;}
.wc{width:138.276000px;}
.w5{width:141.120000px;}
.w8{width:142.236000px;}
.wf{width:144.216000px;}
.we{width:150.855000px;}
.wb{width:152.475000px;}
.w9{width:155.685000px;}
.w7{width:155.715000px;}
.w3{width:158.790000px;}
.wa{width:183.450000px;}
.w11{width:216.015000px;}
.w10{width:253.830000px;}
.w2{width:406.440000px;}
.w1{width:783.495000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1c{left:1.080000px;}
.x13{left:5.400000px;}
.x15{left:8.385000px;}
.x12{left:23.040000px;}
.x20{left:29.865000px;}
.x22{left:33.840000px;}
.x3{left:58.500000px;}
.x21{left:66.060000px;}
.x11{left:67.320000px;}
.x23{left:73.245000px;}
.x5{left:76.500000px;}
.x18{left:81.000000px;}
.x1b{left:84.420000px;}
.x30{left:121.536000px;}
.x16{left:206.310000px;}
.x19{left:207.390000px;}
.x24{left:230.445000px;}
.x2c{left:232.425000px;}
.x1d{left:247.005000px;}
.x28{left:271.665000px;}
.x25{left:312.015000px;}
.x1e{left:328.575000px;}
.x4{left:341.175000px;}
.xf{left:351.435000px;}
.x6{left:369.075000px;}
.x7{left:383.475000px;}
.x10{left:385.275000px;}
.x2d{left:387.075000px;}
.x8{left:393.735000px;}
.x9{left:401.655000px;}
.xa{left:411.915000px;}
.xb{left:423.795000px;}
.x29{left:427.935000px;}
.xc{left:438.195000px;}
.x2{left:445.575000px;}
.xd{left:450.075000px;}
.x26{left:456.915000px;}
.x1{left:459.075000px;}
.x17{left:472.215000px;}
.x1a{left:474.195000px;}
.xe{left:509.295000px;}
.x14{left:511.560000px;}
.x27{left:546.600000px;}
.x1f{left:563.160000px;}
.x2a{left:570.000000px;}
.x2e{left:644.700000px;}
.x2b{left:709.860000px;}
.x2f{left:757.950000px;}
@media print{
.v1{vertical-align:-106.240000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:24.320000pt;}
.ls8{letter-spacing:-0.256000pt;}
.ls4{letter-spacing:-0.148267pt;}
.ls5{letter-spacing:-0.113067pt;}
.ls3{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.015360pt;}
.ls7{letter-spacing:0.128000pt;}
.ls2{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.640000pt;}
.ls0{letter-spacing:142.528000pt;}
.ws0{word-spacing:-18.281173pt;}
.ws4{word-spacing:-16.128000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws5{word-spacing:-15.744000pt;}
.ws1{word-spacing:-0.053120pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-6.125013pt;}
._6{margin-left:-4.334080pt;}
._5{margin-left:-3.392000pt;}
._7{margin-left:-1.805440pt;}
._0{margin-left:-0.913920pt;}
._1{width:1.421440pt;}
._8{width:3.008000pt;}
._9{width:4.608000pt;}
._d{width:5.727360pt;}
._c{width:6.656000pt;}
._a{width:7.680000pt;}
._b{width:8.589440pt;}
._11{width:10.354560pt;}
._16{width:12.160000pt;}
._e{width:13.248000pt;}
._4{width:14.592000pt;}
._15{width:17.233920pt;}
._17{width:18.129920pt;}
._19{width:19.237120pt;}
._18{width:20.557440pt;}
._12{width:21.952000pt;}
._13{width:23.505920pt;}
._f{width:25.152000pt;}
._10{width:26.496000pt;}
._23{width:63.488000pt;}
._24{width:64.640000pt;}
._2a{width:66.304000pt;}
._2b{width:67.402667pt;}
._1b{width:74.944000pt;}
._27{width:83.008000pt;}
._22{width:84.238293pt;}
._21{width:85.393920pt;}
._2{width:88.192000pt;}
._3{width:89.344000pt;}
._1a{width:101.888000pt;}
._29{width:112.096000pt;}
._28{width:113.130667pt;}
._1d{width:149.696000pt;}
._25{width:159.680000pt;}
._1c{width:204.928000pt;}
._1e{width:229.440000pt;}
._1f{width:248.128000pt;}
._20{width:250.069333pt;}
._26{width:1888.533333pt;}
.fs6{font-size:10.880000pt;}
.fs7{font-size:13.440000pt;}
.fsc{font-size:16.000000pt;}
.fs2{font-size:26.880000pt;}
.fs4{font-size:29.440000pt;}
.fs1{font-size:40.320000pt;}
.fsb{font-size:45.440000pt;}
.fs5{font-size:48.000000pt;}
.fs8{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs3{font-size:106.880000pt;}
.y46{bottom:-2.066667pt;}
.y0{bottom:0.000000pt;}
.yba{bottom:3.666667pt;}
.y94{bottom:3.680000pt;}
.ya9{bottom:3.986667pt;}
.y96{bottom:4.000000pt;}
.y48{bottom:12.480000pt;}
.yb8{bottom:12.786667pt;}
.ybd{bottom:13.266667pt;}
.yc7{bottom:13.280000pt;}
.yc5{bottom:22.066667pt;}
.yb9{bottom:22.106667pt;}
.ybc{bottom:22.386667pt;}
.yc8{bottom:22.400000pt;}
.y45{bottom:23.853333pt;}
.y4d{bottom:32.192000pt;}
.y3{bottom:41.472000pt;}
.y4c{bottom:49.952000pt;}
.y2{bottom:59.072000pt;}
.y1{bottom:76.832000pt;}
.y92{bottom:88.832000pt;}
.y7e{bottom:89.152000pt;}
.ycd{bottom:93.472000pt;}
.y91{bottom:107.232000pt;}
.y7d{bottom:107.552000pt;}
.y2c{bottom:110.432000pt;}
.ycc{bottom:111.872000pt;}
.yc0{bottom:125.632000pt;}
.y7c{bottom:125.952000pt;}
.ycb{bottom:126.432000pt;}
.y2b{bottom:127.712000pt;}
.y2a{bottom:144.186667pt;}
.y7b{bottom:144.346667pt;}
.ybf{bottom:144.360000pt;}
.y29{bottom:159.546667pt;}
.y87{bottom:162.426667pt;}
.y7a{bottom:162.746667pt;}
.ybe{bottom:168.040000pt;}
.y28{bottom:174.906667pt;}
.y86{bottom:180.826667pt;}
.y79{bottom:181.146667pt;}
.y27{bottom:190.586667pt;}
.ybb{bottom:191.720000pt;}
.y90{bottom:199.226667pt;}
.y78{bottom:199.546667pt;}
.y26{bottom:207.866667pt;}
.y8f{bottom:217.626667pt;}
.y77{bottom:217.946667pt;}
.y25{bottom:226.266667pt;}
.yb7{bottom:233.960000pt;}
.y76{bottom:236.346667pt;}
.y24{bottom:244.666667pt;}
.y75{bottom:254.746667pt;}
.y23{bottom:262.786667pt;}
.y74{bottom:273.186667pt;}
.yb6{bottom:279.106667pt;}
.y22{bottom:281.026667pt;}
.y43{bottom:287.426667pt;}
.y85{bottom:291.266667pt;}
.y73{bottom:291.586667pt;}
.yb5{bottom:297.186667pt;}
.y21{bottom:299.746667pt;}
.y42{bottom:301.186667pt;}
.y8e{bottom:309.666667pt;}
.y72{bottom:309.986667pt;}
.y41{bottom:314.946667pt;}
.yb4{bottom:315.906667pt;}
.y20{bottom:318.146667pt;}
.y71{bottom:328.386667pt;}
.y40{bottom:328.706667pt;}
.yb3{bottom:334.306667pt;}
.y1f{bottom:336.226667pt;}
.y3f{bottom:345.986667pt;}
.y70{bottom:346.786667pt;}
.yb2{bottom:352.706667pt;}
.y1e{bottom:354.946667pt;}
.y3e{bottom:364.386667pt;}
.y6f{bottom:365.186667pt;}
.yb1{bottom:370.786667pt;}
.y1d{bottom:373.346667pt;}
.y3d{bottom:382.786667pt;}
.ycf{bottom:383.266667pt;}
.y6e{bottom:383.586667pt;}
.yb0{bottom:389.186667pt;}
.y1c{bottom:391.746667pt;}
.y3c{bottom:401.186667pt;}
.y84{bottom:401.666667pt;}
.y6d{bottom:401.986667pt;}
.yaf{bottom:407.906667pt;}
.y1b{bottom:410.146667pt;}
.y3b{bottom:419.586667pt;}
.y83{bottom:420.066667pt;}
.y6c{bottom:420.386667pt;}
.yae{bottom:426.306667pt;}
.y1a{bottom:428.226667pt;}
.y3a{bottom:437.986667pt;}
.y8d{bottom:438.466667pt;}
.y6b{bottom:438.786667pt;}
.yad{bottom:444.706667pt;}
.y19{bottom:446.946667pt;}
.y39{bottom:456.386667pt;}
.y6a{bottom:457.186667pt;}
.yac{bottom:463.106667pt;}
.y18{bottom:465.346667pt;}
.y38{bottom:474.786667pt;}
.y69{bottom:475.586667pt;}
.yab{bottom:481.506667pt;}
.y17{bottom:483.746667pt;}
.y37{bottom:493.213333pt;}
.y68{bottom:494.013333pt;}
.yaa{bottom:499.933333pt;}
.y16{bottom:502.173333pt;}
.y36{bottom:511.613333pt;}
.y67{bottom:512.413333pt;}
.ya8{bottom:518.666667pt;}
.y15{bottom:520.573333pt;}
.y35{bottom:530.013333pt;}
.y66{bottom:530.813333pt;}
.y14{bottom:538.653333pt;}
.ya7{bottom:542.333333pt;}
.y34{bottom:548.413333pt;}
.y8c{bottom:548.893333pt;}
.y65{bottom:549.213333pt;}
.y13{bottom:557.373333pt;}
.ya6{bottom:566.013333pt;}
.y33{bottom:566.813333pt;}
.y8b{bottom:567.293333pt;}
.y64{bottom:567.613333pt;}
.y12{bottom:575.773333pt;}
.yca{bottom:580.093333pt;}
.y32{bottom:585.213333pt;}
.y63{bottom:586.013333pt;}
.ya5{bottom:589.853333pt;}
.y11{bottom:594.173333pt;}
.y31{bottom:603.613333pt;}
.yc9{bottom:603.773333pt;}
.y62{bottom:604.413333pt;}
.y10{bottom:612.573333pt;}
.ya4{bottom:616.573333pt;}
.y30{bottom:622.013333pt;}
.y61{bottom:622.813333pt;}
.yf{bottom:630.653333pt;}
.ya3{bottom:634.653333pt;}
.y2f{bottom:640.413333pt;}
.yce{bottom:640.893333pt;}
.y60{bottom:641.213333pt;}
.yc6{bottom:645.853333pt;}
.ye{bottom:649.053333pt;}
.ya2{bottom:653.373333pt;}
.y2e{bottom:658.813333pt;}
.y8a{bottom:659.293333pt;}
.y5f{bottom:659.613333pt;}
.yd{bottom:663.613333pt;}
.ya1{bottom:671.773333pt;}
.y2d{bottom:677.213333pt;}
.y82{bottom:677.693333pt;}
.y5e{bottom:678.013333pt;}
.yc{bottom:679.133333pt;}
.yc4{bottom:688.106667pt;}
.ya0{bottom:690.173333pt;}
.yb{bottom:692.413333pt;}
.y5d{bottom:696.413333pt;}
.ya{bottom:701.053333pt;}
.y9f{bottom:708.253333pt;}
.y9{bottom:708.893333pt;}
.y5c{bottom:714.813333pt;}
.y9e{bottom:726.693333pt;}
.y5b{bottom:733.253333pt;}
.y44{bottom:734.200000pt;}
.y9d{bottom:745.413333pt;}
.y5a{bottom:751.653333pt;}
.y9c{bottom:763.813333pt;}
.yc3{bottom:769.733333pt;}
.y59{bottom:770.053333pt;}
.y9b{bottom:782.213333pt;}
.y81{bottom:788.133333pt;}
.y58{bottom:788.453333pt;}
.y8{bottom:791.013333pt;}
.y9a{bottom:800.613333pt;}
.y7{bottom:804.133333pt;}
.y80{bottom:806.533333pt;}
.y57{bottom:806.853333pt;}
.y99{bottom:819.013333pt;}
.y56{bottom:825.253333pt;}
.y98{bottom:837.733333pt;}
.yc2{bottom:843.333333pt;}
.y55{bottom:843.653333pt;}
.y6{bottom:861.253333pt;}
.y97{bottom:861.413333pt;}
.yc1{bottom:861.733333pt;}
.y54{bottom:862.053333pt;}
.y89{bottom:880.133333pt;}
.y53{bottom:880.453333pt;}
.y95{bottom:885.093333pt;}
.y88{bottom:898.533333pt;}
.y52{bottom:898.853333pt;}
.y93{bottom:908.933333pt;}
.y4a{bottom:915.813333pt;}
.y51{bottom:917.253333pt;}
.y49{bottom:934.213333pt;}
.y50{bottom:935.333333pt;}
.y7f{bottom:935.653333pt;}
.y4b{bottom:953.120000pt;}
.y5{bottom:983.520000pt;}
.y47{bottom:984.960000pt;}
.y4f{bottom:993.440000pt;}
.y4{bottom:996.160000pt;}
.y4e{bottom:1011.840000pt;}
.h8{height:7.798750pt;}
.h9{height:9.627187pt;}
.h14{height:16.382812pt;}
.h19{height:18.386667pt;}
.h1a{height:18.400000pt;}
.h5{height:22.367500pt;}
.h3{height:26.381250pt;}
.h15{height:26.400000pt;}
.hb{height:35.975313pt;}
.h1c{height:36.786667pt;}
.h1d{height:36.800000pt;}
.h1b{height:36.818667pt;}
.h17{height:37.868750pt;}
.h2{height:39.571875pt;}
.h12{height:40.000000pt;}
.hf{height:40.358750pt;}
.h7{height:40.406250pt;}
.h16{height:41.975000pt;}
.h1{height:44.735000pt;}
.h18{height:45.625000pt;}
.h10{height:46.281250pt;}
.h11{height:47.109375pt;}
.h6{height:49.565000pt;}
.ha{height:52.134375pt;}
.he{height:57.787500pt;}
.hd{height:62.812500pt;}
.hc{height:64.500000pt;}
.h13{height:70.115000pt;}
.h4{height:107.715000pt;}
.h0{height:1056.000000pt;}
.w4{width:69.138667pt;}
.w6{width:76.352000pt;}
.wd{width:120.946667pt;}
.wc{width:122.912000pt;}
.w5{width:125.440000pt;}
.w8{width:126.432000pt;}
.wf{width:128.192000pt;}
.we{width:134.093333pt;}
.wb{width:135.533333pt;}
.w9{width:138.386667pt;}
.w7{width:138.413333pt;}
.w3{width:141.146667pt;}
.wa{width:163.066667pt;}
.w11{width:192.013333pt;}
.w10{width:225.626667pt;}
.w2{width:361.280000pt;}
.w1{width:696.440000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1c{left:0.960000pt;}
.x13{left:4.800000pt;}
.x15{left:7.453333pt;}
.x12{left:20.480000pt;}
.x20{left:26.546667pt;}
.x22{left:30.080000pt;}
.x3{left:52.000000pt;}
.x21{left:58.720000pt;}
.x11{left:59.840000pt;}
.x23{left:65.106667pt;}
.x5{left:68.000000pt;}
.x18{left:72.000000pt;}
.x1b{left:75.040000pt;}
.x30{left:108.032000pt;}
.x16{left:183.386667pt;}
.x19{left:184.346667pt;}
.x24{left:204.840000pt;}
.x2c{left:206.600000pt;}
.x1d{left:219.560000pt;}
.x28{left:241.480000pt;}
.x25{left:277.346667pt;}
.x1e{left:292.066667pt;}
.x4{left:303.266667pt;}
.xf{left:312.386667pt;}
.x6{left:328.066667pt;}
.x7{left:340.866667pt;}
.x10{left:342.466667pt;}
.x2d{left:344.066667pt;}
.x8{left:349.986667pt;}
.x9{left:357.026667pt;}
.xa{left:366.146667pt;}
.xb{left:376.706667pt;}
.x29{left:380.386667pt;}
.xc{left:389.506667pt;}
.x2{left:396.066667pt;}
.xd{left:400.066667pt;}
.x26{left:406.146667pt;}
.x1{left:408.066667pt;}
.x17{left:419.746667pt;}
.x1a{left:421.506667pt;}
.xe{left:452.706667pt;}
.x14{left:454.720000pt;}
.x27{left:485.866667pt;}
.x1f{left:500.586667pt;}
.x2a{left:506.666667pt;}
.x2e{left:573.066667pt;}
.x2b{left:630.986667pt;}
.x2f{left:673.733333pt;}
}




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