
    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_75d6e529f5688fe39eea56ac.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_bb7e998e99901210f63dcf01.woff')format("woff");}.ff2{font-family:ff2;line-height:0.983398;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_1b9b4cae7e0a856e98f4d3ce.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_699cf86755b7fb67e0c0c39b.woff')format("woff");}.ff4{font-family:ff4;line-height:1.172852;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_5f2638d4c11d9973aa94fd7b.woff')format("woff");}.ff5{font-family:ff5;line-height:0.983398;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_d0c7cbf13512a2d9c24f43b0.woff')format("woff");}.ff6{font-family:ff6;line-height:0.758789;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_3efa5d84715cd28425178eac.woff')format("woff");}.ff7{font-family:ff7;line-height:0.970215;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_a75d32cb66bec2e1e9dd7996.woff')format("woff");}.ff8{font-family:ff8;line-height:0.970215;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_5f2d09a0c585ffac71973771.woff')format("woff");}.ff9{font-family:ff9;line-height:0.750000;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_bef67b9f0288104be99207d5.woff')format("woff");}.ffa{font-family:ffa;line-height:0.958008;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_968514f6869123b4152d021e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.958008;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_c91dc4fdfb77be2589e73930.woff')format("woff");}.ffc{font-family:ffc;line-height:1.202148;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:ffd;src:url('chunks/assets/font_88d60ced650b1524b9eddeb4.woff')format("woff");}.ffd{font-family:ffd;line-height:0.923340;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:ffe;src:url('chunks/assets/font_eaeaa16c92dbb6d1f8ee7a46.woff')format("woff");}.ffe{font-family:ffe;line-height:0.923340;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:fff;src:url('chunks/assets/font_fff03a816d164a9f8bbfb901.woff')format("woff");}.fff{font-family:fff;line-height:0.921387;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:ff10;src:url('chunks/assets/font_8020a8e331e7f82589040208.woff')format("woff");}.ff10{font-family:ff10;line-height:0.914062;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:ff11;src:url('chunks/assets/font_744b2aa9ab5daaf964d785b3.woff')format("woff");}.ff11{font-family:ff11;line-height:0.914062;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:ff12;src:url('chunks/assets/font_7861352bb59722b50afe472f.woff')format("woff");}.ff12{font-family:ff12;line-height:0.934082;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:ff13;src:url('chunks/assets/font_e235d8f3d433c41d81ade932.woff')format("woff");}.ff13{font-family:ff13;line-height:0.921387;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:ff14;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ff14{font-family:ff14;line-height:0.739746;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);}
.v2{vertical-align:-18.000000px;}
.v3{vertical-align:-13.500000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:18.000000px;}
.lsd{letter-spacing:-2.724000px;}
.ls10{letter-spacing:-2.250000px;}
.ls1a{letter-spacing:-1.740000px;}
.lsf{letter-spacing:-1.482000px;}
.ls13{letter-spacing:-1.128000px;}
.lse{letter-spacing:-0.792000px;}
.ls11{letter-spacing:-0.780000px;}
.lsb{letter-spacing:-0.432000px;}
.lsc{letter-spacing:-0.378000px;}
.lsa{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.108000px;}
.ls6{letter-spacing:0.994500px;}
.ls1{letter-spacing:1.476000px;}
.ls12{letter-spacing:1.722000px;}
.ls17{letter-spacing:1.737000px;}
.ls2{letter-spacing:1.854000px;}
.ls4{letter-spacing:1.966500px;}
.ls5{letter-spacing:2.146500px;}
.ls16{letter-spacing:2.164500px;}
.ls3{letter-spacing:2.175000px;}
.ls7{letter-spacing:2.250000px;}
.ls9{letter-spacing:2.430000px;}
.ls14{letter-spacing:3.375000px;}
.ls8{letter-spacing:4.779000px;}
.ls18{letter-spacing:10.887000px;}
.ls19{letter-spacing:15.387000px;}
.ls15{letter-spacing:46.887000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws8{word-spacing:-16.875000px;}
.ws10{word-spacing:-16.789500px;}
.wsb{word-spacing:-16.347000px;}
.ws3{word-spacing:-16.146000px;}
.ws5{word-spacing:-15.619500px;}
.ws2{word-spacing:-15.354000px;}
.ws7{word-spacing:-14.625000px;}
.ws9{word-spacing:-13.221000px;}
.wsa{word-spacing:-13.143000px;}
.wsf{word-spacing:-12.885000px;}
.ws1{word-spacing:-12.531000px;}
.ws6{word-spacing:-12.375000px;}
.ws0{word-spacing:-11.826000px;}
.wsd{word-spacing:-10.125000px;}
.ws4{word-spacing:-8.136000px;}
.wse{word-spacing:-7.875000px;}
.wsc{word-spacing:0.000000px;}
._6{margin-left:-8.131500px;}
._8{margin-left:-6.861000px;}
._d{margin-left:-5.287500px;}
._b{margin-left:-4.104000px;}
._2{margin-left:-2.232000px;}
._1{margin-left:-1.188000px;}
._0{width:1.944000px;}
._3{width:3.120000px;}
._4{width:4.608000px;}
._1d{width:5.710500px;}
._a{width:6.912000px;}
._c{width:8.026500px;}
._7{width:9.369000px;}
._5{width:10.734000px;}
._1b{width:11.871000px;}
._1c{width:13.072500px;}
._9{width:14.554500px;}
._1e{width:16.587000px;}
._1f{width:17.617500px;}
._20{width:20.529000px;}
._1a{width:21.802500px;}
._19{width:23.634000px;}
._11{width:24.921000px;}
._10{width:26.059500px;}
._18{width:27.252000px;}
._17{width:28.359000px;}
._e{width:29.817000px;}
._f{width:30.996000px;}
._15{width:34.426500px;}
._16{width:35.772000px;}
._14{width:39.571500px;}
._13{width:44.668500px;}
._12{width:48.327000px;}
._22{width:53.031000px;}
._21{width:57.811500px;}
.fc7{color:transparent;}
.fc5{color:rgb(227,108,10);}
.fc8{color:rgb(0,94,162);}
.fc4{color:rgb(50,62,79);}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(31,56,100);}
.fc6{color:rgb(27,27,27);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,54,93);}
.fs7{font-size:36.000000px;}
.fs6{font-size:40.500000px;}
.fs3{font-size:49.500000px;}
.fs0{font-size:54.000000px;}
.fs4{font-size:58.500000px;}
.fs1{font-size:67.500000px;}
.fs2{font-size:72.000000px;}
.fs5{font-size:85.650000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.375000px;}
.y3e{bottom:3.390000px;}
.y1a{bottom:4.500000px;}
.y1c{bottom:11.250000px;}
.y41{bottom:11.280000px;}
.ye{bottom:11.295000px;}
.yc{bottom:13.500000px;}
.y4{bottom:16.912500px;}
.y2{bottom:19.162500px;}
.y3d{bottom:20.295000px;}
.y42{bottom:22.545000px;}
.y40{bottom:25.920000px;}
.y19{bottom:29.295000px;}
.yb{bottom:30.405000px;}
.y5{bottom:38.287500px;}
.y3c{bottom:38.295000px;}
.y2c{bottom:43.920000px;}
.y18{bottom:45.045000px;}
.ya{bottom:46.155000px;}
.y3b{bottom:55.170000px;}
.y1{bottom:61.912500px;}
.y17{bottom:61.965000px;}
.y2b{bottom:63.090000px;}
.y3a{bottom:72.090000px;}
.y9{bottom:73.185000px;}
.y16{bottom:77.715000px;}
.y2a{bottom:79.965000px;}
.y39{bottom:90.090000px;}
.y15{bottom:91.215000px;}
.y8{bottom:93.435000px;}
.y29{bottom:96.840000px;}
.y7b{bottom:104.700000px;}
.y38{bottom:106.995000px;}
.y14{bottom:108.120000px;}
.ya8{bottom:109.200000px;}
.y7{bottom:110.355000px;}
.y55{bottom:113.700000px;}
.y28{bottom:114.870000px;}
.y7a{bottom:122.737500px;}
.y37{bottom:123.870000px;}
.ya7{bottom:126.112500px;}
.y13{bottom:126.120000px;}
.y54{bottom:131.737500px;}
.y27{bottom:131.745000px;}
.y79{bottom:139.612500px;}
.y36{bottom:141.915000px;}
.ya6{bottom:142.987500px;}
.y12{bottom:145.290000px;}
.y53{bottom:148.612500px;}
.y26{bottom:149.790000px;}
.y78{bottom:156.480000px;}
.y35{bottom:158.790000px;}
.ya5{bottom:161.025000px;}
.y52{bottom:165.525000px;}
.y25{bottom:166.665000px;}
.y11{bottom:171.165000px;}
.y77{bottom:174.525000px;}
.y34{bottom:175.665000px;}
.ya4{bottom:177.900000px;}
.y51{bottom:183.525000px;}
.y24{bottom:184.695000px;}
.y76{bottom:191.400000px;}
.y33{bottom:193.695000px;}
.ya3{bottom:194.775000px;}
.y10{bottom:195.945000px;}
.y50{bottom:200.400000px;}
.y23{bottom:201.570000px;}
.y75{bottom:208.320000px;}
.y32{bottom:210.570000px;}
.ya2{bottom:212.820000px;}
.y4f{bottom:217.320000px;}
.y22{bottom:219.570000px;}
.y74{bottom:226.320000px;}
.y31{bottom:227.475000px;}
.ya1{bottom:229.695000px;}
.y4e{bottom:235.320000px;}
.y21{bottom:236.475000px;}
.y73{bottom:243.225000px;}
.y30{bottom:245.490000px;}
.ya0{bottom:246.600000px;}
.y4d{bottom:252.225000px;}
.y20{bottom:253.350000px;}
.y72{bottom:260.100000px;}
.y2f{bottom:262.365000px;}
.y9f{bottom:264.600000px;}
.y4c{bottom:269.100000px;}
.y71{bottom:278.100000px;}
.y2e{bottom:279.270000px;}
.y9e{bottom:281.475000px;}
.y1f{bottom:281.520000px;}
.y4b{bottom:287.130000px;}
.y70{bottom:295.020000px;}
.y2d{bottom:297.270000px;}
.y9d{bottom:298.395000px;}
.y1e{bottom:299.520000px;}
.y4a{bottom:304.005000px;}
.y6f{bottom:311.895000px;}
.y9c{bottom:316.380000px;}
.y49{bottom:320.880000px;}
.y6e{bottom:328.800000px;}
.y9b{bottom:333.300000px;}
.y48{bottom:338.925000px;}
.y6d{bottom:346.800000px;}
.y9a{bottom:350.175000px;}
.y47{bottom:355.800000px;}
.y6c{bottom:363.675000px;}
.y99{bottom:368.205000px;}
.y46{bottom:372.720000px;}
.y6b{bottom:380.580000px;}
.y98{bottom:385.080000px;}
.y45{bottom:390.705000px;}
.y6a{bottom:398.580000px;}
.y97{bottom:401.955000px;}
.y44{bottom:408.705000px;}
.y69{bottom:415.500000px;}
.y96{bottom:420.000000px;}
.y43{bottom:425.625000px;}
.y68{bottom:432.375000px;}
.y95{bottom:436.875000px;}
.y3f{bottom:440.250000px;}
.y67{bottom:445.875000px;}
.y94{bottom:453.795000px;}
.y93{bottom:471.780000px;}
.y1d{bottom:477.405000px;}
.y92{bottom:488.655000px;}
.y91{bottom:505.575000px;}
.y90{bottom:523.575000px;}
.y8f{bottom:540.495000px;}
.y8e{bottom:557.370000px;}
.y8d{bottom:575.355000px;}
.y8c{bottom:592.275000px;}
.y8b{bottom:609.150000px;}
.y8a{bottom:627.195000px;}
.y89{bottom:644.070000px;}
.y88{bottom:660.975000px;}
.y87{bottom:678.975000px;}
.y86{bottom:695.850000px;}
.y85{bottom:712.770000px;}
.y84{bottom:730.755000px;}
.y83{bottom:747.675000px;}
.yaa{bottom:752.175000px;}
.y82{bottom:764.550000px;}
.y81{bottom:782.550000px;}
.y1b{bottom:788.205000px;}
.y80{bottom:799.455000px;}
.y7f{bottom:816.330000px;}
.yf{bottom:817.455000px;}
.y7e{bottom:834.375000px;}
.y7d{bottom:851.250000px;}
.y7c{bottom:868.125000px;}
.ya9{bottom:872.670000px;}
.y66{bottom:886.170000px;}
.y65{bottom:903.045000px;}
.y64{bottom:919.950000px;}
.y63{bottom:937.950000px;}
.y62{bottom:954.870000px;}
.y61{bottom:971.745000px;}
.y60{bottom:989.745000px;}
.y5f{bottom:1006.650000px;}
.y5e{bottom:1023.525000px;}
.yd{bottom:1028.025000px;}
.y5d{bottom:1041.570000px;}
.y6{bottom:1053.945000px;}
.y5c{bottom:1058.445000px;}
.y5b{bottom:1075.320000px;}
.y5a{bottom:1093.350000px;}
.y59{bottom:1110.225000px;}
.y58{bottom:1127.130000px;}
.y57{bottom:1145.130000px;}
.y56{bottom:1162.050000px;}
.hb{height:25.912500px;}
.h1f{height:28.278809px;}
.h12{height:29.250000px;}
.h11{height:29.953125px;}
.h2{height:32.662500px;}
.h8{height:37.125000px;}
.h1c{height:37.162500px;}
.h19{height:39.832031px;}
.h1b{height:40.847168px;}
.h1a{height:41.275635px;}
.h18{height:41.389893px;}
.h22{height:42.589600px;}
.hd{height:43.075195px;}
.h10{height:43.453125px;}
.ha{height:43.875000px;}
.h21{height:46.218809px;}
.h1d{height:46.278809px;}
.h1e{height:46.338809px;}
.h20{height:46.458809px;}
.h17{height:47.074219px;}
.h15{height:49.234131px;}
.h4{height:53.709961px;}
.h9{height:54.000000px;}
.h3{height:55.291992px;}
.h16{height:58.185791px;}
.hf{height:59.899658px;}
.he{height:64.237500px;}
.h5{height:69.114990px;}
.h6{height:71.613281px;}
.h13{height:73.722656px;}
.h7{height:121.612500px;}
.hc{height:210.555000px;}
.h14{height:310.800000px;}
.h0{height:1263.375000px;}
.h1{height:1263.750000px;}
.w2{width:74.362500px;}
.w4{width:145.275000px;}
.w7{width:214.020000px;}
.w8{width:533.925000px;}
.w5{width:602.670000px;}
.w1{width:674.745000px;}
.w6{width:747.945000px;}
.w3{width:893.249987px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.905000px;}
.x2{left:9.037500px;}
.xf{left:11.250000px;}
.x17{left:20.250000px;}
.x1{left:72.075000px;}
.x5{left:73.237500px;}
.x10{left:78.817500px;}
.x4{left:81.112487px;}
.x6{left:97.987500px;}
.x19{left:108.149987px;}
.x12{left:113.737500px;}
.x1a{left:135.187487px;}
.x14{left:153.187500px;}
.x11{left:203.842500px;}
.x15{left:214.012500px;}
.x7{left:218.520000px;}
.x16{left:287.250000px;}
.xb{left:296.280000px;}
.x13{left:298.507500px;}
.x9{left:351.450000px;}
.xa{left:370.605000px;}
.xe{left:373.957500px;}
.xd{left:437.055000px;}
.xc{left:459.600000px;}
.x18{left:637.574987px;}
.x3{left:746.820000px;}
@media print{
.v2{vertical-align:-16.000000pt;}
.v3{vertical-align:-12.000000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:16.000000pt;}
.lsd{letter-spacing:-2.421333pt;}
.ls10{letter-spacing:-2.000000pt;}
.ls1a{letter-spacing:-1.546667pt;}
.lsf{letter-spacing:-1.317333pt;}
.ls13{letter-spacing:-1.002667pt;}
.lse{letter-spacing:-0.704000pt;}
.ls11{letter-spacing:-0.693333pt;}
.lsb{letter-spacing:-0.384000pt;}
.lsc{letter-spacing:-0.336000pt;}
.lsa{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.096000pt;}
.ls6{letter-spacing:0.884000pt;}
.ls1{letter-spacing:1.312000pt;}
.ls12{letter-spacing:1.530667pt;}
.ls17{letter-spacing:1.544000pt;}
.ls2{letter-spacing:1.648000pt;}
.ls4{letter-spacing:1.748000pt;}
.ls5{letter-spacing:1.908000pt;}
.ls16{letter-spacing:1.924000pt;}
.ls3{letter-spacing:1.933333pt;}
.ls7{letter-spacing:2.000000pt;}
.ls9{letter-spacing:2.160000pt;}
.ls14{letter-spacing:3.000000pt;}
.ls8{letter-spacing:4.248000pt;}
.ls18{letter-spacing:9.677333pt;}
.ls19{letter-spacing:13.677333pt;}
.ls15{letter-spacing:41.677333pt;}
.ws8{word-spacing:-15.000000pt;}
.ws10{word-spacing:-14.924000pt;}
.wsb{word-spacing:-14.530667pt;}
.ws3{word-spacing:-14.352000pt;}
.ws5{word-spacing:-13.884000pt;}
.ws2{word-spacing:-13.648000pt;}
.ws7{word-spacing:-13.000000pt;}
.ws9{word-spacing:-11.752000pt;}
.wsa{word-spacing:-11.682667pt;}
.wsf{word-spacing:-11.453333pt;}
.ws1{word-spacing:-11.138667pt;}
.ws6{word-spacing:-11.000000pt;}
.ws0{word-spacing:-10.512000pt;}
.wsd{word-spacing:-9.000000pt;}
.ws4{word-spacing:-7.232000pt;}
.wse{word-spacing:-7.000000pt;}
.wsc{word-spacing:0.000000pt;}
._6{margin-left:-7.228000pt;}
._8{margin-left:-6.098667pt;}
._d{margin-left:-4.700000pt;}
._b{margin-left:-3.648000pt;}
._2{margin-left:-1.984000pt;}
._1{margin-left:-1.056000pt;}
._0{width:1.728000pt;}
._3{width:2.773333pt;}
._4{width:4.096000pt;}
._1d{width:5.076000pt;}
._a{width:6.144000pt;}
._c{width:7.134667pt;}
._7{width:8.328000pt;}
._5{width:9.541333pt;}
._1b{width:10.552000pt;}
._1c{width:11.620000pt;}
._9{width:12.937333pt;}
._1e{width:14.744000pt;}
._1f{width:15.660000pt;}
._20{width:18.248000pt;}
._1a{width:19.380000pt;}
._19{width:21.008000pt;}
._11{width:22.152000pt;}
._10{width:23.164000pt;}
._18{width:24.224000pt;}
._17{width:25.208000pt;}
._e{width:26.504000pt;}
._f{width:27.552000pt;}
._15{width:30.601333pt;}
._16{width:31.797333pt;}
._14{width:35.174667pt;}
._13{width:39.705333pt;}
._12{width:42.957333pt;}
._22{width:47.138667pt;}
._21{width:51.388000pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:36.000000pt;}
.fs3{font-size:44.000000pt;}
.fs0{font-size:48.000000pt;}
.fs4{font-size:52.000000pt;}
.fs1{font-size:60.000000pt;}
.fs2{font-size:64.000000pt;}
.fs5{font-size:76.133333pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.000000pt;}
.y3e{bottom:3.013333pt;}
.y1a{bottom:4.000000pt;}
.y1c{bottom:10.000000pt;}
.y41{bottom:10.026667pt;}
.ye{bottom:10.040000pt;}
.yc{bottom:12.000000pt;}
.y4{bottom:15.033333pt;}
.y2{bottom:17.033333pt;}
.y3d{bottom:18.040000pt;}
.y42{bottom:20.040000pt;}
.y40{bottom:23.040000pt;}
.y19{bottom:26.040000pt;}
.yb{bottom:27.026667pt;}
.y5{bottom:34.033333pt;}
.y3c{bottom:34.040000pt;}
.y2c{bottom:39.040000pt;}
.y18{bottom:40.040000pt;}
.ya{bottom:41.026667pt;}
.y3b{bottom:49.040000pt;}
.y1{bottom:55.033333pt;}
.y17{bottom:55.080000pt;}
.y2b{bottom:56.080000pt;}
.y3a{bottom:64.080000pt;}
.y9{bottom:65.053333pt;}
.y16{bottom:69.080000pt;}
.y2a{bottom:71.080000pt;}
.y39{bottom:80.080000pt;}
.y15{bottom:81.080000pt;}
.y8{bottom:83.053333pt;}
.y29{bottom:86.080000pt;}
.y7b{bottom:93.066667pt;}
.y38{bottom:95.106667pt;}
.y14{bottom:96.106667pt;}
.ya8{bottom:97.066667pt;}
.y7{bottom:98.093333pt;}
.y55{bottom:101.066667pt;}
.y28{bottom:102.106667pt;}
.y7a{bottom:109.100000pt;}
.y37{bottom:110.106667pt;}
.ya7{bottom:112.100000pt;}
.y13{bottom:112.106667pt;}
.y54{bottom:117.100000pt;}
.y27{bottom:117.106667pt;}
.y79{bottom:124.100000pt;}
.y36{bottom:126.146667pt;}
.ya6{bottom:127.100000pt;}
.y12{bottom:129.146667pt;}
.y53{bottom:132.100000pt;}
.y26{bottom:133.146667pt;}
.y78{bottom:139.093333pt;}
.y35{bottom:141.146667pt;}
.ya5{bottom:143.133333pt;}
.y52{bottom:147.133333pt;}
.y25{bottom:148.146667pt;}
.y11{bottom:152.146667pt;}
.y77{bottom:155.133333pt;}
.y34{bottom:156.146667pt;}
.ya4{bottom:158.133333pt;}
.y51{bottom:163.133333pt;}
.y24{bottom:164.173333pt;}
.y76{bottom:170.133333pt;}
.y33{bottom:172.173333pt;}
.ya3{bottom:173.133333pt;}
.y10{bottom:174.173333pt;}
.y50{bottom:178.133333pt;}
.y23{bottom:179.173333pt;}
.y75{bottom:185.173333pt;}
.y32{bottom:187.173333pt;}
.ya2{bottom:189.173333pt;}
.y4f{bottom:193.173333pt;}
.y22{bottom:195.173333pt;}
.y74{bottom:201.173333pt;}
.y31{bottom:202.200000pt;}
.ya1{bottom:204.173333pt;}
.y4e{bottom:209.173333pt;}
.y21{bottom:210.200000pt;}
.y73{bottom:216.200000pt;}
.y30{bottom:218.213333pt;}
.ya0{bottom:219.200000pt;}
.y4d{bottom:224.200000pt;}
.y20{bottom:225.200000pt;}
.y72{bottom:231.200000pt;}
.y2f{bottom:233.213333pt;}
.y9f{bottom:235.200000pt;}
.y4c{bottom:239.200000pt;}
.y71{bottom:247.200000pt;}
.y2e{bottom:248.240000pt;}
.y9e{bottom:250.200000pt;}
.y1f{bottom:250.240000pt;}
.y4b{bottom:255.226667pt;}
.y70{bottom:262.240000pt;}
.y2d{bottom:264.240000pt;}
.y9d{bottom:265.240000pt;}
.y1e{bottom:266.240000pt;}
.y4a{bottom:270.226667pt;}
.y6f{bottom:277.240000pt;}
.y9c{bottom:281.226667pt;}
.y49{bottom:285.226667pt;}
.y6e{bottom:292.266667pt;}
.y9b{bottom:296.266667pt;}
.y48{bottom:301.266667pt;}
.y6d{bottom:308.266667pt;}
.y9a{bottom:311.266667pt;}
.y47{bottom:316.266667pt;}
.y6c{bottom:323.266667pt;}
.y99{bottom:327.293333pt;}
.y46{bottom:331.306667pt;}
.y6b{bottom:338.293333pt;}
.y98{bottom:342.293333pt;}
.y45{bottom:347.293333pt;}
.y6a{bottom:354.293333pt;}
.y97{bottom:357.293333pt;}
.y44{bottom:363.293333pt;}
.y69{bottom:369.333333pt;}
.y96{bottom:373.333333pt;}
.y43{bottom:378.333333pt;}
.y68{bottom:384.333333pt;}
.y95{bottom:388.333333pt;}
.y3f{bottom:391.333333pt;}
.y67{bottom:396.333333pt;}
.y94{bottom:403.373333pt;}
.y93{bottom:419.360000pt;}
.y1d{bottom:424.360000pt;}
.y92{bottom:434.360000pt;}
.y91{bottom:449.400000pt;}
.y90{bottom:465.400000pt;}
.y8f{bottom:480.440000pt;}
.y8e{bottom:495.440000pt;}
.y8d{bottom:511.426667pt;}
.y8c{bottom:526.466667pt;}
.y8b{bottom:541.466667pt;}
.y8a{bottom:557.506667pt;}
.y89{bottom:572.506667pt;}
.y88{bottom:587.533333pt;}
.y87{bottom:603.533333pt;}
.y86{bottom:618.533333pt;}
.y85{bottom:633.573333pt;}
.y84{bottom:649.560000pt;}
.y83{bottom:664.600000pt;}
.yaa{bottom:668.600000pt;}
.y82{bottom:679.600000pt;}
.y81{bottom:695.600000pt;}
.y1b{bottom:700.626667pt;}
.y80{bottom:710.626667pt;}
.y7f{bottom:725.626667pt;}
.yf{bottom:726.626667pt;}
.y7e{bottom:741.666667pt;}
.y7d{bottom:756.666667pt;}
.y7c{bottom:771.666667pt;}
.ya9{bottom:775.706667pt;}
.y66{bottom:787.706667pt;}
.y65{bottom:802.706667pt;}
.y64{bottom:817.733333pt;}
.y63{bottom:833.733333pt;}
.y62{bottom:848.773333pt;}
.y61{bottom:863.773333pt;}
.y60{bottom:879.773333pt;}
.y5f{bottom:894.800000pt;}
.y5e{bottom:909.800000pt;}
.yd{bottom:913.800000pt;}
.y5d{bottom:925.840000pt;}
.y6{bottom:936.840000pt;}
.y5c{bottom:940.840000pt;}
.y5b{bottom:955.840000pt;}
.y5a{bottom:971.866667pt;}
.y59{bottom:986.866667pt;}
.y58{bottom:1001.893333pt;}
.y57{bottom:1017.893333pt;}
.y56{bottom:1032.933333pt;}
.hb{height:23.033333pt;}
.h1f{height:25.136719pt;}
.h12{height:26.000000pt;}
.h11{height:26.625000pt;}
.h2{height:29.033333pt;}
.h8{height:33.000000pt;}
.h1c{height:33.033333pt;}
.h19{height:35.406250pt;}
.h1b{height:36.308594pt;}
.h1a{height:36.689453pt;}
.h18{height:36.791016pt;}
.h22{height:37.857422pt;}
.hd{height:38.289062pt;}
.h10{height:38.625000pt;}
.ha{height:39.000000pt;}
.h21{height:41.083385pt;}
.h1d{height:41.136719pt;}
.h1e{height:41.190052pt;}
.h20{height:41.296719pt;}
.h17{height:41.843750pt;}
.h15{height:43.763672pt;}
.h4{height:47.742188pt;}
.h9{height:48.000000pt;}
.h3{height:49.148438pt;}
.h16{height:51.720703pt;}
.hf{height:53.244141pt;}
.he{height:57.100000pt;}
.h5{height:61.435547pt;}
.h6{height:63.656250pt;}
.h13{height:65.531250pt;}
.h7{height:108.100000pt;}
.hc{height:187.160000pt;}
.h14{height:276.266667pt;}
.h0{height:1123.000000pt;}
.h1{height:1123.333333pt;}
.w2{width:66.100000pt;}
.w4{width:129.133333pt;}
.w7{width:190.240000pt;}
.w8{width:474.600000pt;}
.w5{width:535.706667pt;}
.w1{width:599.773333pt;}
.w6{width:664.840000pt;}
.w3{width:793.999988pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.026667pt;}
.x2{left:8.033333pt;}
.xf{left:10.000000pt;}
.x17{left:18.000000pt;}
.x1{left:64.066667pt;}
.x5{left:65.100000pt;}
.x10{left:70.060000pt;}
.x4{left:72.099988pt;}
.x6{left:87.100000pt;}
.x19{left:96.133322pt;}
.x12{left:101.100000pt;}
.x1a{left:120.166655pt;}
.x14{left:136.166667pt;}
.x11{left:181.193333pt;}
.x15{left:190.233333pt;}
.x7{left:194.240000pt;}
.x16{left:255.333333pt;}
.xb{left:263.360000pt;}
.x13{left:265.340000pt;}
.x9{left:312.400000pt;}
.xa{left:329.426667pt;}
.xe{left:332.406667pt;}
.xd{left:388.493333pt;}
.xc{left:408.533333pt;}
.x18{left:566.733322pt;}
.x3{left:663.840000pt;}
}




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