
    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_fdd64aef03d064fd50f1c534.woff')format("woff");}.ff1{font-family:ff1;line-height:1.082031;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_48a28ab2e5afd52c7efcb4cc.woff')format("woff");}.ff2{font-family:ff2;line-height:1.090332;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_8213d76421d77234f3d3e4ae.woff')format("woff");}.ff3{font-family:ff3;line-height:0.922852;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_b1310742252c1108e68ebe23.woff')format("woff");}.ff4{font-family:ff4;line-height:0.866211;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_a06552a2218e721eac3fb523.woff')format("woff");}.ff5{font-family:ff5;line-height:1.084961;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.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-22.200000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.982000px;}
.v4{vertical-align:24.516000px;}
.v1{vertical-align:26.736600px;}
.ls2b{letter-spacing:-2.046000px;}
.lsc{letter-spacing:-0.936000px;}
.lsb{letter-spacing:-0.720000px;}
.ls1b{letter-spacing:-0.576000px;}
.ls22{letter-spacing:-0.504000px;}
.ls13{letter-spacing:-0.432000px;}
.ls12{letter-spacing:-0.360000px;}
.lsa{letter-spacing:-0.330000px;}
.ls9{letter-spacing:-0.219000px;}
.ls1a{letter-spacing:-0.216000px;}
.ls30{letter-spacing:-0.198000px;}
.ls2f{letter-spacing:-0.132000px;}
.ls19{letter-spacing:-0.072000px;}
.ls8{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.011400px;}
.ls7{letter-spacing:0.072000px;}
.lse{letter-spacing:0.144000px;}
.ls5{letter-spacing:0.163200px;}
.lsd{letter-spacing:0.216000px;}
.ls25{letter-spacing:0.238200px;}
.ls4{letter-spacing:0.288000px;}
.ls6{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.432000px;}
.ls29{letter-spacing:0.462000px;}
.ls18{letter-spacing:0.504000px;}
.ls1d{letter-spacing:0.576000px;}
.ls1c{letter-spacing:0.648000px;}
.ls23{letter-spacing:0.720000px;}
.ls2c{letter-spacing:0.726000px;}
.ls14{letter-spacing:0.792000px;}
.ls27{letter-spacing:0.936000px;}
.ls17{letter-spacing:1.080000px;}
.ls16{letter-spacing:1.584000px;}
.ls2d{letter-spacing:4.161000px;}
.ls0{letter-spacing:4.200000px;}
.ls11{letter-spacing:4.392000px;}
.ls3{letter-spacing:5.130000px;}
.ls28{letter-spacing:6.000000px;}
.ls1e{letter-spacing:6.480000px;}
.ls1{letter-spacing:6.600000px;}
.ls24{letter-spacing:7.200000px;}
.ls1f{letter-spacing:7.272000px;}
.ls10{letter-spacing:8.856000px;}
.ls21{letter-spacing:8.928000px;}
.ls2{letter-spacing:10.200000px;}
.ls20{letter-spacing:10.296000px;}
.ls2a{letter-spacing:10.956000px;}
.ls2e{letter-spacing:19.800000px;}
.ls26{letter-spacing:38.923200px;}
.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;}
}
.wsb{word-spacing:-29.502000px;}
.ws8{word-spacing:-27.432000px;}
.ws9{word-spacing:-20.592000px;}
.ws6{word-spacing:-20.448000px;}
.ws4{word-spacing:-20.304000px;}
.ws5{word-spacing:-20.232000px;}
.ws7{word-spacing:-18.144000px;}
.ws1{word-spacing:-17.784000px;}
.ws3{word-spacing:-16.860000px;}
.wsa{word-spacing:-16.764000px;}
.wsd{word-spacing:-16.170000px;}
.ws0{word-spacing:-12.139200px;}
.wsc{word-spacing:-11.127600px;}
.ws2{word-spacing:0.000000px;}
._14{margin-left:-17.772000px;}
._10{margin-left:-14.112000px;}
._13{margin-left:-11.616000px;}
._6{margin-left:-10.560000px;}
._15{margin-left:-9.000000px;}
._e{margin-left:-7.824000px;}
._a{margin-left:-6.600000px;}
._3{margin-left:-5.280000px;}
._1{margin-left:-3.402000px;}
._0{margin-left:-1.680000px;}
._4{width:1.434000px;}
._8{width:2.592000px;}
._c{width:3.594000px;}
._2{width:4.686000px;}
._7{width:6.222000px;}
._5{width:7.242000px;}
._9{width:8.568000px;}
._b{width:10.080000px;}
._f{width:11.088000px;}
._11{width:12.342000px;}
._12{width:13.494000px;}
._d{width:56.923200px;}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:36.000000px;}
.fsb{font-size:39.600000px;}
.fs0{font-size:42.000000px;}
.fs8{font-size:43.200000px;}
.fs6{font-size:43.800000px;}
.fs1{font-size:48.000000px;}
.fs5{font-size:54.000000px;}
.fsa{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y69{bottom:76.337550px;}
.y1{bottom:76.339050px;}
.y21{bottom:76.340400px;}
.ycb{bottom:140.307150px;}
.y8e{bottom:140.311650px;}
.y20{bottom:140.313000px;}
.yeb{bottom:142.603650px;}
.y68{bottom:143.203350px;}
.y10f{bottom:144.109050px;}
.yb2{bottom:144.928500px;}
.y45{bottom:145.866000px;}
.yca{bottom:156.808650px;}
.y10e{bottom:161.509050px;}
.y8d{bottom:162.363150px;}
.y1f{bottom:162.364500px;}
.yea{bottom:162.403650px;}
.y67{bottom:165.253350px;}
.yb1{bottom:166.672500px;}
.yc9{bottom:173.310150px;}
.y8c{bottom:178.863150px;}
.y1e{bottom:178.864500px;}
.y10d{bottom:178.909050px;}
.ye9{bottom:182.203650px;}
.y44{bottom:185.173350px;}
.y66{bottom:187.303350px;}
.yb0{bottom:188.416500px;}
.yc8{bottom:189.811650px;}
.y1d{bottom:189.813000px;}
.y10c{bottom:196.309050px;}
.ye8{bottom:202.003650px;}
.y43{bottom:207.079350px;}
.y65{bottom:209.353350px;}
.yaf{bottom:210.160500px;}
.yc7{bottom:211.863150px;}
.y1c{bottom:211.864500px;}
.y8b{bottom:217.792500px;}
.ye7{bottom:221.803650px;}
.yc6{bottom:222.808650px;}
.y42{bottom:228.985350px;}
.y10b{bottom:229.309050px;}
.y64{bottom:231.403350px;}
.yae{bottom:231.904500px;}
.y8a{bottom:239.248500px;}
.yc5{bottom:239.310150px;}
.ye6{bottom:241.603650px;}
.y41{bottom:250.891350px;}
.y1b{bottom:251.826150px;}
.y63{bottom:253.453350px;}
.yad{bottom:253.648500px;}
.yc4{bottom:255.811650px;}
.y89{bottom:260.704500px;}
.ye5{bottom:261.403650px;}
.y10a{bottom:269.413050px;}
.y40{bottom:272.797350px;}
.y1a{bottom:273.426150px;}
.yac{bottom:275.392500px;}
.y62{bottom:275.503350px;}
.yc3{bottom:277.863150px;}
.ye4{bottom:281.203650px;}
.y88{bottom:282.160500px;}
.y109{bottom:288.619050px;}
.yc2{bottom:288.811650px;}
.y3f{bottom:294.703350px;}
.y19{bottom:294.882150px;}
.yab{bottom:297.136500px;}
.y61{bottom:297.553350px;}
.y87{bottom:303.616500px;}
.y108{bottom:307.825050px;}
.ye3{bottom:309.507450px;}
.yc1{bottom:310.863150px;}
.y18{bottom:316.338150px;}
.y3e{bottom:316.609350px;}
.yaa{bottom:318.880500px;}
.y60{bottom:319.603350px;}
.yc0{bottom:321.811650px;}
.y86{bottom:325.072500px;}
.y107{bottom:327.031050px;}
.y17{bottom:337.794150px;}
.y3d{bottom:338.521350px;}
.ya9{bottom:340.624500px;}
.y5f{bottom:341.653350px;}
.ybf{bottom:343.863150px;}
.y106{bottom:346.237050px;}
.y85{bottom:346.528500px;}
.ye2{bottom:357.611550px;}
.y16{bottom:359.214000px;}
.y3c{bottom:360.427350px;}
.ya8{bottom:362.368500px;}
.y5e{bottom:363.703350px;}
.y105{bottom:365.443050px;}
.y84{bottom:367.984500px;}
.ye1{bottom:379.211550px;}
.y15{bottom:380.670000px;}
.y3b{bottom:382.333350px;}
.ya7{bottom:384.112500px;}
.y104{bottom:384.649050px;}
.y5d{bottom:385.753350px;}
.ybe{bottom:387.712500px;}
.y83{bottom:389.440500px;}
.ye0{bottom:400.811550px;}
.y14{bottom:402.126000px;}
.y103{bottom:403.855050px;}
.y3a{bottom:404.239350px;}
.ya6{bottom:405.856500px;}
.y5c{bottom:407.803350px;}
.ybd{bottom:409.312500px;}
.y82{bottom:410.896500px;}
.ydf{bottom:422.411550px;}
.y102{bottom:423.061050px;}
.y13{bottom:423.582000px;}
.y39{bottom:426.145350px;}
.ya5{bottom:427.600500px;}
.y5b{bottom:429.853350px;}
.ybc{bottom:430.912500px;}
.y81{bottom:432.352500px;}
.y101{bottom:442.267050px;}
.yde{bottom:444.011550px;}
.y12{bottom:445.038000px;}
.y38{bottom:448.051350px;}
.ya4{bottom:449.344500px;}
.y5a{bottom:451.903350px;}
.ybb{bottom:452.512500px;}
.y80{bottom:453.808500px;}
.y100{bottom:461.473050px;}
.ydd{bottom:465.611550px;}
.y11{bottom:466.494000px;}
.y37{bottom:469.795350px;}
.ya3{bottom:471.088500px;}
.y59{bottom:473.953350px;}
.yba{bottom:474.112500px;}
.y7f{bottom:475.264500px;}
.yff{bottom:480.679050px;}
.ydc{bottom:487.211550px;}
.y10{bottom:487.938150px;}
.y36{bottom:491.539350px;}
.ya2{bottom:492.832500px;}
.yb9{bottom:495.712500px;}
.y58{bottom:496.003350px;}
.y7e{bottom:496.720500px;}
.yfe{bottom:499.885050px;}
.ydb{bottom:508.811550px;}
.yf{bottom:509.394150px;}
.y35{bottom:513.283350px;}
.ya1{bottom:514.576500px;}
.yb8{bottom:517.312500px;}
.y57{bottom:518.053350px;}
.y7d{bottom:518.176500px;}
.yfd{bottom:519.091050px;}
.yda{bottom:530.411550px;}
.ye{bottom:530.826000px;}
.y34{bottom:535.027350px;}
.ya0{bottom:536.320500px;}
.yfc{bottom:538.297050px;}
.yb7{bottom:538.912500px;}
.y7c{bottom:539.632500px;}
.y56{bottom:540.103350px;}
.yd9{bottom:552.011550px;}
.yd{bottom:552.282000px;}
.y33{bottom:556.771350px;}
.yfb{bottom:557.503050px;}
.y9f{bottom:558.064500px;}
.yb6{bottom:560.512500px;}
.y7b{bottom:561.088500px;}
.y55{bottom:562.153350px;}
.yd8{bottom:573.611550px;}
.yc{bottom:573.738000px;}
.yfa{bottom:576.685050px;}
.y32{bottom:578.515350px;}
.y9e{bottom:579.808500px;}
.yb5{bottom:582.112500px;}
.y7a{bottom:582.544500px;}
.y54{bottom:584.203350px;}
.yb{bottom:595.194000px;}
.yd7{bottom:595.211550px;}
.yf9{bottom:595.891050px;}
.y31{bottom:600.259350px;}
.y9d{bottom:601.552500px;}
.yb4{bottom:603.712500px;}
.y79{bottom:604.000500px;}
.y53{bottom:606.253350px;}
.yf8{bottom:615.097050px;}
.ya{bottom:616.650000px;}
.yd6{bottom:616.811550px;}
.y30{bottom:622.003350px;}
.y9c{bottom:623.296500px;}
.yb3{bottom:625.312500px;}
.y78{bottom:625.456500px;}
.y52{bottom:628.303350px;}
.yf7{bottom:634.303050px;}
.yd5{bottom:638.411550px;}
.y2f{bottom:643.747350px;}
.y9b{bottom:645.040500px;}
.y77{bottom:646.912500px;}
.y51{bottom:650.353350px;}
.yf6{bottom:653.509050px;}
.yd4{bottom:660.011550px;}
.y2e{bottom:665.491350px;}
.y9a{bottom:666.784500px;}
.y76{bottom:668.512500px;}
.yd3{bottom:681.611550px;}
.y50{bottom:685.165350px;}
.y2d{bottom:687.235350px;}
.y99{bottom:688.528500px;}
.y75{bottom:690.112500px;}
.yf5{bottom:693.709050px;}
.y9{bottom:702.450150px;}
.y4f{bottom:707.215350px;}
.y2c{bottom:708.979350px;}
.y98{bottom:710.272500px;}
.y74{bottom:711.712500px;}
.yd2{bottom:711.715350px;}
.yf4{bottom:721.395000px;}
.y8{bottom:722.250150px;}
.y4e{bottom:729.265350px;}
.y2b{bottom:730.723350px;}
.y97{bottom:732.016500px;}
.y73{bottom:733.312500px;}
.yf3{bottom:742.401000px;}
.y4d{bottom:751.315350px;}
.y2a{bottom:752.467350px;}
.y96{bottom:753.760500px;}
.y72{bottom:754.912500px;}
.yf2{bottom:763.407000px;}
.y7{bottom:763.650000px;}
.y4c{bottom:773.365350px;}
.y29{bottom:774.373350px;}
.y95{bottom:775.504500px;}
.y71{bottom:776.512500px;}
.yf1{bottom:784.413000px;}
.y6{bottom:794.250000px;}
.y4b{bottom:795.415350px;}
.y28{bottom:796.279350px;}
.y94{bottom:797.248500px;}
.y70{bottom:798.112500px;}
.yd1{bottom:798.115350px;}
.y4a{bottom:817.465350px;}
.y27{bottom:818.185350px;}
.y93{bottom:818.992500px;}
.y6f{bottom:819.712500px;}
.yd0{bottom:819.715350px;}
.y5{bottom:824.850000px;}
.y49{bottom:839.515350px;}
.y26{bottom:840.091350px;}
.yf0{bottom:840.213000px;}
.y92{bottom:840.736500px;}
.y6e{bottom:841.312500px;}
.ycf{bottom:841.315350px;}
.y4{bottom:855.450000px;}
.y48{bottom:861.565350px;}
.y25{bottom:861.997350px;}
.y91{bottom:862.480500px;}
.y6d{bottom:862.912500px;}
.yce{bottom:862.915350px;}
.yef{bottom:871.095000px;}
.y47{bottom:883.615350px;}
.y24{bottom:883.903350px;}
.y90{bottom:884.224500px;}
.y6c{bottom:884.512500px;}
.ycd{bottom:884.515350px;}
.yee{bottom:890.301000px;}
.y46{bottom:905.665350px;}
.y23{bottom:905.809350px;}
.y8f{bottom:905.968500px;}
.y6b{bottom:906.112500px;}
.ycc{bottom:906.115350px;}
.yed{bottom:909.507000px;}
.y3{bottom:910.711500px;}
.y6a{bottom:927.712500px;}
.y22{bottom:927.715350px;}
.y2{bottom:928.711500px;}
.yec{bottom:928.713000px;}
.hc{height:26.199902px;}
.h10{height:30.568359px;}
.he{height:35.663086px;}
.h13{height:37.191504px;}
.h2{height:40.757812px;}
.h3{height:41.396484px;}
.h7{height:45.852539px;}
.hd{height:48.399902px;}
.h5{height:50.947266px;}
.h4{height:56.041992px;}
.h12{height:58.141195px;}
.h8{height:61.136719px;}
.ha{height:61.184119px;}
.h9{height:61.233319px;}
.hb{height:61.281319px;}
.hf{height:63.298031px;}
.h11{height:63.322031px;}
.h6{height:86.610352px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x5{left:97.792650px;}
.x7{left:119.053350px;}
.x8{left:140.307150px;}
.x6{left:143.170350px;}
.xa{left:150.734700px;}
.x1{left:158.158650px;}
.x4{left:220.182150px;}
.x9{left:518.943600px;}
.x2{left:579.664350px;}
@media print{
.v2{vertical-align:-19.733333pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.650667pt;}
.v4{vertical-align:21.792000pt;}
.v1{vertical-align:23.765867pt;}
.ls2b{letter-spacing:-1.818667pt;}
.lsc{letter-spacing:-0.832000pt;}
.lsb{letter-spacing:-0.640000pt;}
.ls1b{letter-spacing:-0.512000pt;}
.ls22{letter-spacing:-0.448000pt;}
.ls13{letter-spacing:-0.384000pt;}
.ls12{letter-spacing:-0.320000pt;}
.lsa{letter-spacing:-0.293333pt;}
.ls9{letter-spacing:-0.194667pt;}
.ls1a{letter-spacing:-0.192000pt;}
.ls30{letter-spacing:-0.176000pt;}
.ls2f{letter-spacing:-0.117333pt;}
.ls19{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.010133pt;}
.ls7{letter-spacing:0.064000pt;}
.lse{letter-spacing:0.128000pt;}
.ls5{letter-spacing:0.145067pt;}
.lsd{letter-spacing:0.192000pt;}
.ls25{letter-spacing:0.211733pt;}
.ls4{letter-spacing:0.256000pt;}
.ls6{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.384000pt;}
.ls29{letter-spacing:0.410667pt;}
.ls18{letter-spacing:0.448000pt;}
.ls1d{letter-spacing:0.512000pt;}
.ls1c{letter-spacing:0.576000pt;}
.ls23{letter-spacing:0.640000pt;}
.ls2c{letter-spacing:0.645333pt;}
.ls14{letter-spacing:0.704000pt;}
.ls27{letter-spacing:0.832000pt;}
.ls17{letter-spacing:0.960000pt;}
.ls16{letter-spacing:1.408000pt;}
.ls2d{letter-spacing:3.698667pt;}
.ls0{letter-spacing:3.733333pt;}
.ls11{letter-spacing:3.904000pt;}
.ls3{letter-spacing:4.560000pt;}
.ls28{letter-spacing:5.333333pt;}
.ls1e{letter-spacing:5.760000pt;}
.ls1{letter-spacing:5.866667pt;}
.ls24{letter-spacing:6.400000pt;}
.ls1f{letter-spacing:6.464000pt;}
.ls10{letter-spacing:7.872000pt;}
.ls21{letter-spacing:7.936000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls20{letter-spacing:9.152000pt;}
.ls2a{letter-spacing:9.738667pt;}
.ls2e{letter-spacing:17.600000pt;}
.ls26{letter-spacing:34.598400pt;}
.wsb{word-spacing:-26.224000pt;}
.ws8{word-spacing:-24.384000pt;}
.ws9{word-spacing:-18.304000pt;}
.ws6{word-spacing:-18.176000pt;}
.ws4{word-spacing:-18.048000pt;}
.ws5{word-spacing:-17.984000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws1{word-spacing:-15.808000pt;}
.ws3{word-spacing:-14.986667pt;}
.wsa{word-spacing:-14.901333pt;}
.wsd{word-spacing:-14.373333pt;}
.ws0{word-spacing:-10.790400pt;}
.wsc{word-spacing:-9.891200pt;}
.ws2{word-spacing:0.000000pt;}
._14{margin-left:-15.797333pt;}
._10{margin-left:-12.544000pt;}
._13{margin-left:-10.325333pt;}
._6{margin-left:-9.386667pt;}
._15{margin-left:-8.000000pt;}
._e{margin-left:-6.954667pt;}
._a{margin-left:-5.866667pt;}
._3{margin-left:-4.693333pt;}
._1{margin-left:-3.024000pt;}
._0{margin-left:-1.493333pt;}
._4{width:1.274667pt;}
._8{width:2.304000pt;}
._c{width:3.194667pt;}
._2{width:4.165333pt;}
._7{width:5.530667pt;}
._5{width:6.437333pt;}
._9{width:7.616000pt;}
._b{width:8.960000pt;}
._f{width:9.856000pt;}
._11{width:10.970667pt;}
._12{width:11.994667pt;}
._d{width:50.598400pt;}
.fs9{font-size:32.000000pt;}
.fsb{font-size:35.200000pt;}
.fs0{font-size:37.333333pt;}
.fs8{font-size:38.400000pt;}
.fs6{font-size:38.933333pt;}
.fs1{font-size:42.666667pt;}
.fs5{font-size:48.000000pt;}
.fsa{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y69{bottom:67.855600pt;}
.y1{bottom:67.856933pt;}
.y21{bottom:67.858133pt;}
.ycb{bottom:124.717467pt;}
.y8e{bottom:124.721467pt;}
.y20{bottom:124.722667pt;}
.yeb{bottom:126.758800pt;}
.y68{bottom:127.291867pt;}
.y10f{bottom:128.096933pt;}
.yb2{bottom:128.825333pt;}
.y45{bottom:129.658667pt;}
.yca{bottom:139.385467pt;}
.y10e{bottom:143.563600pt;}
.y8d{bottom:144.322800pt;}
.y1f{bottom:144.324000pt;}
.yea{bottom:144.358800pt;}
.y67{bottom:146.891867pt;}
.yb1{bottom:148.153333pt;}
.yc9{bottom:154.053467pt;}
.y8c{bottom:158.989467pt;}
.y1e{bottom:158.990667pt;}
.y10d{bottom:159.030267pt;}
.ye9{bottom:161.958800pt;}
.y44{bottom:164.598533pt;}
.y66{bottom:166.491867pt;}
.yb0{bottom:167.481333pt;}
.yc8{bottom:168.721467pt;}
.y1d{bottom:168.722667pt;}
.y10c{bottom:174.496933pt;}
.ye8{bottom:179.558800pt;}
.y43{bottom:184.070533pt;}
.y65{bottom:186.091867pt;}
.yaf{bottom:186.809333pt;}
.yc7{bottom:188.322800pt;}
.y1c{bottom:188.324000pt;}
.y8b{bottom:193.593333pt;}
.ye7{bottom:197.158800pt;}
.yc6{bottom:198.052133pt;}
.y42{bottom:203.542533pt;}
.y10b{bottom:203.830267pt;}
.y64{bottom:205.691867pt;}
.yae{bottom:206.137333pt;}
.y8a{bottom:212.665333pt;}
.yc5{bottom:212.720133pt;}
.ye6{bottom:214.758800pt;}
.y41{bottom:223.014533pt;}
.y1b{bottom:223.845467pt;}
.y63{bottom:225.291867pt;}
.yad{bottom:225.465333pt;}
.yc4{bottom:227.388133pt;}
.y89{bottom:231.737333pt;}
.ye5{bottom:232.358800pt;}
.y10a{bottom:239.478267pt;}
.y40{bottom:242.486533pt;}
.y1a{bottom:243.045467pt;}
.yac{bottom:244.793333pt;}
.y62{bottom:244.891867pt;}
.yc3{bottom:246.989467pt;}
.ye4{bottom:249.958800pt;}
.y88{bottom:250.809333pt;}
.y109{bottom:256.550267pt;}
.yc2{bottom:256.721467pt;}
.y3f{bottom:261.958533pt;}
.y19{bottom:262.117467pt;}
.yab{bottom:264.121333pt;}
.y61{bottom:264.491867pt;}
.y87{bottom:269.881333pt;}
.y108{bottom:273.622267pt;}
.ye3{bottom:275.117733pt;}
.yc1{bottom:276.322800pt;}
.y18{bottom:281.189467pt;}
.y3e{bottom:281.430533pt;}
.yaa{bottom:283.449333pt;}
.y60{bottom:284.091867pt;}
.yc0{bottom:286.054800pt;}
.y86{bottom:288.953333pt;}
.y107{bottom:290.694267pt;}
.y17{bottom:300.261467pt;}
.y3d{bottom:300.907867pt;}
.ya9{bottom:302.777333pt;}
.y5f{bottom:303.691867pt;}
.ybf{bottom:305.656133pt;}
.y106{bottom:307.766267pt;}
.y85{bottom:308.025333pt;}
.ye2{bottom:317.876933pt;}
.y16{bottom:319.301333pt;}
.y3c{bottom:320.379867pt;}
.ya8{bottom:322.105333pt;}
.y5e{bottom:323.291867pt;}
.y105{bottom:324.838267pt;}
.y84{bottom:327.097333pt;}
.ye1{bottom:337.076933pt;}
.y15{bottom:338.373333pt;}
.y3b{bottom:339.851867pt;}
.ya7{bottom:341.433333pt;}
.y104{bottom:341.910267pt;}
.y5d{bottom:342.891867pt;}
.ybe{bottom:344.633333pt;}
.y83{bottom:346.169333pt;}
.ye0{bottom:356.276933pt;}
.y14{bottom:357.445333pt;}
.y103{bottom:358.982267pt;}
.y3a{bottom:359.323867pt;}
.ya6{bottom:360.761333pt;}
.y5c{bottom:362.491867pt;}
.ybd{bottom:363.833333pt;}
.y82{bottom:365.241333pt;}
.ydf{bottom:375.476933pt;}
.y102{bottom:376.054267pt;}
.y13{bottom:376.517333pt;}
.y39{bottom:378.795867pt;}
.ya5{bottom:380.089333pt;}
.y5b{bottom:382.091867pt;}
.ybc{bottom:383.033333pt;}
.y81{bottom:384.313333pt;}
.y101{bottom:393.126267pt;}
.yde{bottom:394.676933pt;}
.y12{bottom:395.589333pt;}
.y38{bottom:398.267867pt;}
.ya4{bottom:399.417333pt;}
.y5a{bottom:401.691867pt;}
.ybb{bottom:402.233333pt;}
.y80{bottom:403.385333pt;}
.y100{bottom:410.198267pt;}
.ydd{bottom:413.876933pt;}
.y11{bottom:414.661333pt;}
.y37{bottom:417.595867pt;}
.ya3{bottom:418.745333pt;}
.y59{bottom:421.291867pt;}
.yba{bottom:421.433333pt;}
.y7f{bottom:422.457333pt;}
.yff{bottom:427.270267pt;}
.ydc{bottom:433.076933pt;}
.y10{bottom:433.722800pt;}
.y36{bottom:436.923867pt;}
.ya2{bottom:438.073333pt;}
.yb9{bottom:440.633333pt;}
.y58{bottom:440.891867pt;}
.y7e{bottom:441.529333pt;}
.yfe{bottom:444.342267pt;}
.ydb{bottom:452.276933pt;}
.yf{bottom:452.794800pt;}
.y35{bottom:456.251867pt;}
.ya1{bottom:457.401333pt;}
.yb8{bottom:459.833333pt;}
.y57{bottom:460.491867pt;}
.y7d{bottom:460.601333pt;}
.yfd{bottom:461.414267pt;}
.yda{bottom:471.476933pt;}
.ye{bottom:471.845333pt;}
.y34{bottom:475.579867pt;}
.ya0{bottom:476.729333pt;}
.yfc{bottom:478.486267pt;}
.yb7{bottom:479.033333pt;}
.y7c{bottom:479.673333pt;}
.y56{bottom:480.091867pt;}
.yd9{bottom:490.676933pt;}
.yd{bottom:490.917333pt;}
.y33{bottom:494.907867pt;}
.yfb{bottom:495.558267pt;}
.y9f{bottom:496.057333pt;}
.yb6{bottom:498.233333pt;}
.y7b{bottom:498.745333pt;}
.y55{bottom:499.691867pt;}
.yd8{bottom:509.876933pt;}
.yc{bottom:509.989333pt;}
.yfa{bottom:512.608933pt;}
.y32{bottom:514.235867pt;}
.y9e{bottom:515.385333pt;}
.yb5{bottom:517.433333pt;}
.y7a{bottom:517.817333pt;}
.y54{bottom:519.291867pt;}
.yb{bottom:529.061333pt;}
.yd7{bottom:529.076933pt;}
.yf9{bottom:529.680933pt;}
.y31{bottom:533.563867pt;}
.y9d{bottom:534.713333pt;}
.yb4{bottom:536.633333pt;}
.y79{bottom:536.889333pt;}
.y53{bottom:538.891867pt;}
.yf8{bottom:546.752933pt;}
.ya{bottom:548.133333pt;}
.yd6{bottom:548.276933pt;}
.y30{bottom:552.891867pt;}
.y9c{bottom:554.041333pt;}
.yb3{bottom:555.833333pt;}
.y78{bottom:555.961333pt;}
.y52{bottom:558.491867pt;}
.yf7{bottom:563.824933pt;}
.yd5{bottom:567.476933pt;}
.y2f{bottom:572.219867pt;}
.y9b{bottom:573.369333pt;}
.y77{bottom:575.033333pt;}
.y51{bottom:578.091867pt;}
.yf6{bottom:580.896933pt;}
.yd4{bottom:586.676933pt;}
.y2e{bottom:591.547867pt;}
.y9a{bottom:592.697333pt;}
.y76{bottom:594.233333pt;}
.yd3{bottom:605.876933pt;}
.y50{bottom:609.035867pt;}
.y2d{bottom:610.875867pt;}
.y99{bottom:612.025333pt;}
.y75{bottom:613.433333pt;}
.yf5{bottom:616.630267pt;}
.y9{bottom:624.400133pt;}
.y4f{bottom:628.635867pt;}
.y2c{bottom:630.203867pt;}
.y98{bottom:631.353333pt;}
.y74{bottom:632.633333pt;}
.yd2{bottom:632.635867pt;}
.yf4{bottom:641.240000pt;}
.y8{bottom:642.000133pt;}
.y4e{bottom:648.235867pt;}
.y2b{bottom:649.531867pt;}
.y97{bottom:650.681333pt;}
.y73{bottom:651.833333pt;}
.yf3{bottom:659.912000pt;}
.y4d{bottom:667.835867pt;}
.y2a{bottom:668.859867pt;}
.y96{bottom:670.009333pt;}
.y72{bottom:671.033333pt;}
.yf2{bottom:678.584000pt;}
.y7{bottom:678.800000pt;}
.y4c{bottom:687.435867pt;}
.y29{bottom:688.331867pt;}
.y95{bottom:689.337333pt;}
.y71{bottom:690.233333pt;}
.yf1{bottom:697.256000pt;}
.y6{bottom:706.000000pt;}
.y4b{bottom:707.035867pt;}
.y28{bottom:707.803867pt;}
.y94{bottom:708.665333pt;}
.y70{bottom:709.433333pt;}
.yd1{bottom:709.435867pt;}
.y4a{bottom:726.635867pt;}
.y27{bottom:727.275867pt;}
.y93{bottom:727.993333pt;}
.y6f{bottom:728.633333pt;}
.yd0{bottom:728.635867pt;}
.y5{bottom:733.200000pt;}
.y49{bottom:746.235867pt;}
.y26{bottom:746.747867pt;}
.yf0{bottom:746.856000pt;}
.y92{bottom:747.321333pt;}
.y6e{bottom:747.833333pt;}
.ycf{bottom:747.835867pt;}
.y4{bottom:760.400000pt;}
.y48{bottom:765.835867pt;}
.y25{bottom:766.219867pt;}
.y91{bottom:766.649333pt;}
.y6d{bottom:767.033333pt;}
.yce{bottom:767.035867pt;}
.yef{bottom:774.306667pt;}
.y47{bottom:785.435867pt;}
.y24{bottom:785.691867pt;}
.y90{bottom:785.977333pt;}
.y6c{bottom:786.233333pt;}
.ycd{bottom:786.235867pt;}
.yee{bottom:791.378667pt;}
.y46{bottom:805.035867pt;}
.y23{bottom:805.163867pt;}
.y8f{bottom:805.305333pt;}
.y6b{bottom:805.433333pt;}
.ycc{bottom:805.435867pt;}
.yed{bottom:808.450667pt;}
.y3{bottom:809.521333pt;}
.y6a{bottom:824.633333pt;}
.y22{bottom:824.635867pt;}
.y2{bottom:825.521333pt;}
.yec{bottom:825.522667pt;}
.hc{height:23.288802pt;}
.h10{height:27.171875pt;}
.he{height:31.700521pt;}
.h13{height:33.059115pt;}
.h2{height:36.229167pt;}
.h3{height:36.796875pt;}
.h7{height:40.757812pt;}
.hd{height:43.022135pt;}
.h5{height:45.286458pt;}
.h4{height:49.815104pt;}
.h12{height:51.681063pt;}
.h8{height:54.343750pt;}
.ha{height:54.385883pt;}
.h9{height:54.429617pt;}
.hb{height:54.472283pt;}
.hf{height:56.264917pt;}
.h11{height:56.286250pt;}
.h6{height:76.986979pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x5{left:86.926800pt;}
.x7{left:105.825200pt;}
.x8{left:124.717467pt;}
.x6{left:127.262533pt;}
.xa{left:133.986400pt;}
.x1{left:140.585467pt;}
.x4{left:195.717467pt;}
.x9{left:461.283200pt;}
.x2{left:515.257200pt;}
}




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