
    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_2ba178cc518b7e23d340cbbf.woff')format("woff");}.ff1{font-family:ff1;line-height:0.879000;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_01905e78e748ec9ffc60f554.woff')format("woff");}.ff2{font-family:ff2;line-height:0.700000;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_2a970ba8cd270d9fdc17fa72.woff')format("woff");}.ff3{font-family:ff3;line-height:0.879000;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_d217021d105bb3ffd63e4573.woff')format("woff");}.ff4{font-family:ff4;line-height:0.869000;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_27083f4c7ba29cf1d95a61bb.woff')format("woff");}.ff5{font-family:ff5;line-height:0.740723;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_bc31a310ac3897645fb5468c.woff')format("woff");}.ff6{font-family:ff6;line-height:0.784180;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_dbf4f58630376dfa763fe3e6.woff')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_100d2f5333d97b62c038cdb3.woff')format("woff");}.ff8{font-family:ff8;line-height:0.700195;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_e2663cb07481b0abb97fd7a6.woff')format("woff");}.ff9{font-family:ff9;line-height:0.666016;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_84f3b57c03a2f8a7e0027983.woff')format("woff");}.ffa{font-family:ffa;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_db97d09396ce65829e2daa3e.woff')format("woff");}.ffb{font-family:ffb;line-height:0.784180;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_0e9ef227e6439b80730458ba.woff')format("woff");}.ffc{font-family:ffc;line-height:0.910156;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_100d2f5333d97b62c038cdb3.woff')format("woff");}.ffd{font-family:ffd;line-height:0.700195;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_9dd8283462f426325aacd1d7.woff')format("woff");}.ffe{font-family:ffe;line-height:0.666016;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_b2d15cb1850c50c4ab053ac1.woff')format("woff");}.fff{font-family:fff;line-height:0.689453;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_da34c40b408e159ae8a1f4e9.woff')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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_bf508d310a33e29b591f910f.woff')format("woff");}.ff11{font-family:ff11;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_72c7ff0e8de62f34a255f483.woff')format("woff");}.ff12{font-family:ff12;line-height:0.910645;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_2fca87dbf4e9237798446ff1.woff')format("woff");}.ff13{font-family:ff13;line-height:0.910156;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_f9191dd4b7781fff950cd290.woff')format("woff");}.ff14{font-family:ff14;line-height:0.893555;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:-6.156000px;}
.ls1{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.000018px;}
.ls6{letter-spacing:15.419893px;}
.ls2{letter-spacing:15.420043px;}
.ls4{letter-spacing:15.431293px;}
.ls5{letter-spacing:21.624469px;}
.ls3{letter-spacing:21.630469px;}
.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;}
}
.ws0{word-spacing:-26.028000px;}
.ws2{word-spacing:-15.431250px;}
.ws3{word-spacing:-10.800000px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-7.715625px;}
._3{margin-left:-5.994000px;}
._4{margin-left:-4.320750px;}
._0{margin-left:-3.207600px;}
._8{margin-left:-2.203200px;}
._2{margin-left:-1.188000px;}
._7{width:1.037550px;}
._1{width:2.257200px;}
._6{width:140.512024px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:32.400000px;}
.fs9{font-size:43.200000px;}
.fs2{font-size:48.600000px;}
.fs6{font-size:54.000000px;}
.fs1{font-size:59.400000px;}
.fs5{font-size:61.725000px;}
.fs8{font-size:61.728000px;}
.fs7{font-size:77.175000px;}
.fs4{font-size:81.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y9d{bottom:62.418759px;}
.ye9{bottom:64.030350px;}
.y22{bottom:76.957088px;}
.y9c{bottom:77.531275px;}
.yc2{bottom:90.431225px;}
.ye8{bottom:94.259550px;}
.y9b{bottom:109.293761px;}
.yc1{bottom:120.656267px;}
.y9a{bottom:139.518803px;}
.ye7{bottom:141.131550px;}
.y21{bottom:149.700000px;}
.yc0{bottom:150.881309px;}
.y99{bottom:154.631319px;}
.ye6{bottom:156.240750px;}
.y117{bottom:163.331237px;}
.y20{bottom:175.200000px;}
.y116{bottom:178.443753px;}
.ybf{bottom:181.106254px;}
.y98{bottom:186.393806px;}
.ye5{bottom:186.469950px;}
.y1f{bottom:200.700000px;}
.y115{bottom:210.206240px;}
.ybe{bottom:211.331296px;}
.y97{bottom:216.618751px;}
.ye4{bottom:216.699150px;}
.y1e{bottom:226.200000px;}
.ybd{bottom:226.443812px;}
.y96{bottom:231.731266px;}
.y114{bottom:241.968727px;}
.ye3{bottom:246.928350px;}
.y1d{bottom:251.698500px;}
.ybc{bottom:256.668756px;}
.y113{bottom:257.081242px;}
.y95{bottom:261.956308px;}
.y112{bottom:272.193758px;}
.ye2{bottom:277.157550px;}
.y1c{bottom:277.200000px;}
.ybb{bottom:286.893798px;}
.y94{bottom:292.181253px;}
.y111{bottom:303.956245px;}
.ye1{bottom:307.386750px;}
.y1b{bottom:313.575000px;}
.yba{bottom:317.118743px;}
.y110{bottom:319.068760px;}
.y93{bottom:322.406295px;}
.ye0{bottom:337.615950px;}
.yb9{bottom:347.343785px;}
.y40{bottom:348.449986px;}
.y10f{bottom:350.831247px;}
.y92{bottom:352.631337px;}
.y10e{bottom:365.943763px;}
.ydf{bottom:367.845150px;}
.yb8{bottom:377.568827px;}
.y91{bottom:382.856282px;}
.yde{bottom:382.954350px;}
.y1a{bottom:386.325000px;}
.y10d{bottom:397.706249px;}
.y90{bottom:397.968797px;}
.y19{bottom:405.075000px;}
.yb7{bottom:407.793772px;}
.y10c{bottom:412.818765px;}
.ydd{bottom:413.183550px;}
.y3f{bottom:421.199982px;}
.y8f{bottom:428.193785px;}
.y18{bottom:430.577063px;}
.y4{bottom:437.581200px;}
.yb6{bottom:438.018814px;}
.y76{bottom:440.718767px;}
.y8e{bottom:443.306301px;}
.ydc{bottom:443.412750px;}
.y10b{bottom:444.581252px;}
.y4e{bottom:448.582088px;}
.y17{bottom:449.326031px;}
.y75{bottom:455.831283px;}
.y3e{bottom:457.949982px;}
.ydb{bottom:458.521950px;}
.y10a{bottom:459.693724px;}
.y16{bottom:468.075000px;}
.yb5{bottom:468.243802px;}
.y8d{bottom:473.531289px;}
.y3{bottom:479.037450px;}
.y74{bottom:486.056271px;}
.y8c{bottom:488.643805px;}
.yda{bottom:488.751150px;}
.y109{bottom:491.456254px;}
.y3d{bottom:494.699991px;}
.yb4{bottom:500.006289px;}
.y73{bottom:501.168743px;}
.y15{bottom:504.832088px;}
.y108{bottom:506.568727px;}
.y2{bottom:514.456200px;}
.y72{bottom:516.281259px;}
.yd9{bottom:518.980350px;}
.y8b{bottom:520.406291px;}
.y4d{bottom:521.325000px;}
.yb3{bottom:530.231277px;}
.y71{bottom:531.393775px;}
.yd8{bottom:534.089550px;}
.y8a{bottom:535.518807px;}
.y107{bottom:538.331257px;}
.yb2{bottom:545.343792px;}
.y4c{bottom:546.825000px;}
.y106{bottom:553.443729px;}
.y70{bottom:561.618763px;}
.yd7{bottom:564.318750px;}
.y89{bottom:565.743795px;}
.y3c{bottom:567.449986px;}
.y4b{bottom:572.325000px;}
.yb1{bottom:575.568780px;}
.y6f{bottom:576.731235px;}
.y14{bottom:577.575000px;}
.y88{bottom:580.856267px;}
.y105{bottom:585.206259px;}
.y87{bottom:595.968783px;}
.y4a{bottom:597.825000px;}
.y104{bottom:600.318731px;}
.y13{bottom:603.075000px;}
.yb0{bottom:605.793768px;}
.y6e{bottom:606.956277px;}
.yd6{bottom:613.242000px;}
.y6d{bottom:622.068749px;}
.y49{bottom:623.325000px;}
.y86{bottom:627.731270px;}
.y12{bottom:628.575000px;}
.y103{bottom:632.081261px;}
.y6c{bottom:637.181265px;}
.yaf{bottom:637.556298px;}
.yd5{bottom:638.365500px;}
.y3b{bottom:640.199982px;}
.y102{bottom:647.193734px;}
.y6b{bottom:652.293737px;}
.y11{bottom:654.075000px;}
.y85{bottom:657.956312px;}
.y59{bottom:658.164000px;}
.y48{bottom:660.082088px;}
.y101{bottom:662.306249px;}
.yd4{bottom:663.489000px;}
.y2f{bottom:665.325881px;}
.yae{bottom:667.781286px;}
.y84{bottom:673.068784px;}
.y3a{bottom:676.949982px;}
.y10{bottom:679.575000px;}
.y6a{bottom:682.518779px;}
.y2e{bottom:684.074850px;}
.y83{bottom:688.181300px;}
.yd3{bottom:688.612500px;}
.y100{bottom:694.068736px;}
.y69{bottom:697.631252px;}
.yad{bottom:698.006274px;}
.yf{bottom:705.075000px;}
.yff{bottom:709.181252px;}
.y39{bottom:713.699976px;}
.y82{bottom:718.406288px;}
.yd2{bottom:722.942850px;}
.yfe{bottom:724.293724px;}
.y68{bottom:727.856240px;}
.yac{bottom:728.231262px;}
.y38{bottom:732.449978px;}
.y47{bottom:732.825000px;}
.y81{bottom:733.518803px;}
.yd1{bottom:738.052050px;}
.ye{bottom:741.832087px;}
.y67{bottom:742.968755px;}
.yfd{bottom:756.056254px;}
.y2d{bottom:756.817762px;}
.y66{bottom:758.081271px;}
.y46{bottom:758.325000px;}
.yab{bottom:758.456304px;}
.y58{bottom:763.280306px;}
.y80{bottom:763.743791px;}
.yd0{bottom:768.281250px;}
.yfc{bottom:771.168727px;}
.y65{bottom:773.193743px;}
.y7f{bottom:778.856264px;}
.yef{bottom:779.831269px;}
.y45{bottom:783.825000px;}
.yfb{bottom:786.281242px;}
.y64{bottom:788.306259px;}
.yaa{bottom:788.681292px;}
.y2c{bottom:793.575000px;}
.yee{bottom:794.943741px;}
.y54{bottom:795.073819px;}
.y57{bottom:800.037544px;}
.yfa{bottom:801.393758px;}
.y37{bottom:805.200009px;}
.y7e{bottom:809.081273px;}
.y44{bottom:809.325000px;}
.yd{bottom:814.575000px;}
.ycf{bottom:817.210500px;}
.y56{bottom:818.786512px;}
.ya9{bottom:818.906280px;}
.y2b{bottom:819.075000px;}
.y7d{bottom:824.193767px;}
.yf9{bottom:833.156245px;}
.y7c{bottom:839.306283px;}
.yc{bottom:840.075000px;}
.yce{bottom:842.334000px;}
.yed{bottom:843.862499px;}
.y43{bottom:846.074700px;}
.yf8{bottom:848.268739px;}
.ya8{bottom:849.131268px;}
.y55{bottom:855.543750px;}
.y2a{bottom:855.817762px;}
.ycd{bottom:860.329500px;}
.ya7{bottom:864.243784px;}
.yb{bottom:865.575000px;}
.y63{bottom:868.987487px;}
.yec{bottom:868.987497px;}
.y7b{bottom:869.531271px;}
.y36{bottom:879.075004px;}
.yf7{bottom:880.031247px;}
.y7a{bottom:884.643765px;}
.ycc{bottom:885.453000px;}
.y53{bottom:885.825000px;}
.ya{bottom:891.075000px;}
.y29{bottom:892.575000px;}
.yeb{bottom:894.112496px;}
.ya6{bottom:894.468772px;}
.yf6{bottom:895.143741px;}
.y35{bottom:904.575004px;}
.y62{bottom:904.987491px;}
.ya5{bottom:909.581266px;}
.yf5{bottom:910.256235px;}
.ycb{bottom:910.576500px;}
.y52{bottom:911.325000px;}
.y79{bottom:914.868775px;}
.y9{bottom:916.575000px;}
.y28{bottom:918.075000px;}
.y42{bottom:918.817612px;}
.y78{bottom:929.981269px;}
.y34{bottom:930.075004px;}
.yca{bottom:935.700000px;}
.y51{bottom:937.950000px;}
.ya4{bottom:939.806275px;}
.y61{bottom:940.987496px;}
.yf4{bottom:942.018743px;}
.y8{bottom:953.333119px;}
.y27{bottom:954.834150px;}
.y33{bottom:955.575004px;}
.yf3{bottom:957.131237px;}
.y77{bottom:960.206257px;}
.y50{bottom:964.575000px;}
.yc9{bottom:970.024950px;}
.ya3{bottom:970.031264px;}
.yf2{bottom:972.243753px;}
.y41{bottom:973.583119px;}
.y60{bottom:975.318751px;}
.yea{bottom:990.431266px;}
.y4f{bottom:991.200000px;}
.y32{bottom:992.325009px;}
.yc8{bottom:1000.254150px;}
.ya2{bottom:1000.256262px;}
.yf1{bottom:1004.006251px;}
.y5f{bottom:1005.543760px;}
.yc7{bottom:1015.363350px;}
.ya1{bottom:1015.368756px;}
.yf0{bottom:1019.118745px;}
.y5e{bottom:1020.656254px;}
.y7{bottom:1026.076031px;}
.y26{bottom:1027.577063px;}
.y5d{bottom:1035.768748px;}
.y6{bottom:1044.825000px;}
.yc6{bottom:1045.592550px;}
.ya0{bottom:1045.593755px;}
.y25{bottom:1046.326031px;}
.y5c{bottom:1050.881253px;}
.yc5{bottom:1060.701750px;}
.y24{bottom:1065.075000px;}
.y31{bottom:1065.075004px;}
.y5b{bottom:1065.993747px;}
.y5{bottom:1074.600000px;}
.y9f{bottom:1075.818754px;}
.y1{bottom:1081.776000px;}
.yc4{bottom:1090.930950px;}
.y5a{bottom:1093.837497px;}
.y23{bottom:1094.850000px;}
.y30{bottom:1094.850003px;}
.y9e{bottom:1107.581252px;}
.yc3{bottom:1122.693750px;}
.h4{height:23.588086px;}
.hd{height:29.278125px;}
.hc{height:30.016406px;}
.h3{height:33.339600px;}
.h8{height:37.520508px;}
.h2{height:41.401800px;}
.h6{height:42.857886px;}
.hb{height:42.859969px;}
.h9{height:42.863886px;}
.h7{height:43.219556px;}
.ha{height:51.437439px;}
.h5{height:59.009766px;}
.h1{height:75.606000px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:98.503500px;}
.x9{left:141.187500px;}
.xa{left:144.412503px;}
.x5{left:147.262500px;}
.x6{left:151.162500px;}
.xb{left:157.387501px;}
.x7{left:164.137500px;}
.x2{left:219.856650px;}
.x3{left:382.437900px;}
.x8{left:404.257500px;}
.x4{left:429.650400px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:-5.472000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.000016pt;}
.ls6{letter-spacing:13.706571pt;}
.ls2{letter-spacing:13.706705pt;}
.ls4{letter-spacing:13.716705pt;}
.ls5{letter-spacing:19.221750pt;}
.ls3{letter-spacing:19.227083pt;}
.ws0{word-spacing:-23.136000pt;}
.ws2{word-spacing:-13.716667pt;}
.ws3{word-spacing:-9.600000pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-6.858333pt;}
._3{margin-left:-5.328000pt;}
._4{margin-left:-3.840667pt;}
._0{margin-left:-2.851200pt;}
._8{margin-left:-1.958400pt;}
._2{margin-left:-1.056000pt;}
._7{width:0.922267pt;}
._1{width:2.006400pt;}
._6{width:124.899577pt;}
.fs3{font-size:28.800000pt;}
.fs9{font-size:38.400000pt;}
.fs2{font-size:43.200000pt;}
.fs6{font-size:48.000000pt;}
.fs1{font-size:52.800000pt;}
.fs5{font-size:54.866667pt;}
.fs8{font-size:54.869333pt;}
.fs7{font-size:68.600000pt;}
.fs4{font-size:72.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y9d{bottom:55.483341pt;}
.ye9{bottom:56.915867pt;}
.y22{bottom:68.406300pt;}
.y9c{bottom:68.916689pt;}
.yc2{bottom:80.383311pt;}
.ye8{bottom:83.786267pt;}
.y9b{bottom:97.150010pt;}
.yc1{bottom:107.250015pt;}
.y9a{bottom:124.016714pt;}
.ye7{bottom:125.450267pt;}
.y21{bottom:133.066667pt;}
.yc0{bottom:134.116719pt;}
.y99{bottom:137.450061pt;}
.ye6{bottom:138.880667pt;}
.y117{bottom:145.183322pt;}
.y20{bottom:155.733333pt;}
.y116{bottom:158.616669pt;}
.ybf{bottom:160.983337pt;}
.y98{bottom:165.683383pt;}
.ye5{bottom:165.751067pt;}
.y1f{bottom:178.400000pt;}
.y115{bottom:186.849991pt;}
.ybe{bottom:187.850041pt;}
.y97{bottom:192.550001pt;}
.ye4{bottom:192.621467pt;}
.y1e{bottom:201.066667pt;}
.ybd{bottom:201.283388pt;}
.y96{bottom:205.983348pt;}
.y114{bottom:215.083313pt;}
.ye3{bottom:219.491867pt;}
.y1d{bottom:223.732000pt;}
.ybc{bottom:228.150006pt;}
.y113{bottom:228.516660pt;}
.y95{bottom:232.850052pt;}
.y112{bottom:241.950007pt;}
.ye2{bottom:246.362267pt;}
.y1c{bottom:246.400000pt;}
.ybb{bottom:255.016710pt;}
.y94{bottom:259.716669pt;}
.y111{bottom:270.183329pt;}
.ye1{bottom:273.232667pt;}
.y1b{bottom:278.733333pt;}
.yba{bottom:281.883327pt;}
.y110{bottom:283.616676pt;}
.y93{bottom:286.583373pt;}
.ye0{bottom:300.103067pt;}
.yb9{bottom:308.750031pt;}
.y40{bottom:309.733321pt;}
.y10f{bottom:311.849997pt;}
.y92{bottom:313.450077pt;}
.y10e{bottom:325.283345pt;}
.ydf{bottom:326.973467pt;}
.yb8{bottom:335.616735pt;}
.y91{bottom:340.316695pt;}
.yde{bottom:340.403867pt;}
.y1a{bottom:343.400000pt;}
.y10d{bottom:353.516666pt;}
.y90{bottom:353.750042pt;}
.y19{bottom:360.066667pt;}
.yb7{bottom:362.483353pt;}
.y10c{bottom:366.950013pt;}
.ydd{bottom:367.274267pt;}
.y3f{bottom:374.399984pt;}
.y8f{bottom:380.616698pt;}
.y18{bottom:382.735167pt;}
.y4{bottom:388.961067pt;}
.yb6{bottom:389.350057pt;}
.y76{bottom:391.750015pt;}
.y8e{bottom:394.050045pt;}
.ydc{bottom:394.144667pt;}
.y10b{bottom:395.183335pt;}
.y4e{bottom:398.739633pt;}
.y17{bottom:399.400917pt;}
.y75{bottom:405.183363pt;}
.y3e{bottom:407.066651pt;}
.ydb{bottom:407.575067pt;}
.y10a{bottom:408.616644pt;}
.y16{bottom:416.066667pt;}
.yb5{bottom:416.216713pt;}
.y8d{bottom:420.916701pt;}
.y3{bottom:425.811067pt;}
.y74{bottom:432.050019pt;}
.y8c{bottom:434.350049pt;}
.yda{bottom:434.445467pt;}
.y109{bottom:436.850004pt;}
.y3d{bottom:439.733325pt;}
.yb4{bottom:444.450034pt;}
.y73{bottom:445.483327pt;}
.y15{bottom:448.739633pt;}
.y108{bottom:450.283313pt;}
.y2{bottom:457.294400pt;}
.y72{bottom:458.916675pt;}
.yd9{bottom:461.315867pt;}
.y8b{bottom:462.583370pt;}
.y4d{bottom:463.400000pt;}
.yb3{bottom:471.316690pt;}
.y71{bottom:472.350022pt;}
.yd8{bottom:474.746267pt;}
.y8a{bottom:476.016717pt;}
.y107{bottom:478.516673pt;}
.yb2{bottom:484.750038pt;}
.y4c{bottom:486.066667pt;}
.y106{bottom:491.949981pt;}
.y70{bottom:499.216678pt;}
.yd7{bottom:501.616667pt;}
.y89{bottom:502.883373pt;}
.y3c{bottom:504.399988pt;}
.y4b{bottom:508.733333pt;}
.yb1{bottom:511.616694pt;}
.y6f{bottom:512.649987pt;}
.y14{bottom:513.400000pt;}
.y88{bottom:516.316682pt;}
.y105{bottom:520.183341pt;}
.y87{bottom:529.750029pt;}
.y4a{bottom:531.400000pt;}
.y104{bottom:533.616650pt;}
.y13{bottom:536.066667pt;}
.yb0{bottom:538.483350pt;}
.y6e{bottom:539.516691pt;}
.yd6{bottom:545.104000pt;}
.y6d{bottom:552.949999pt;}
.y49{bottom:554.066667pt;}
.y86{bottom:557.983351pt;}
.y12{bottom:558.733333pt;}
.y103{bottom:561.850010pt;}
.y6c{bottom:566.383347pt;}
.yaf{bottom:566.716710pt;}
.yd5{bottom:567.436000pt;}
.y3b{bottom:569.066650pt;}
.y102{bottom:575.283319pt;}
.y6b{bottom:579.816655pt;}
.y11{bottom:581.400000pt;}
.y85{bottom:584.850055pt;}
.y59{bottom:585.034667pt;}
.y48{bottom:586.739633pt;}
.y101{bottom:588.716666pt;}
.yd4{bottom:589.768000pt;}
.y2f{bottom:591.400783pt;}
.yae{bottom:593.583366pt;}
.y84{bottom:598.283364pt;}
.y3a{bottom:601.733317pt;}
.y10{bottom:604.066667pt;}
.y6a{bottom:606.683359pt;}
.y2e{bottom:608.066533pt;}
.y83{bottom:611.716711pt;}
.yd3{bottom:612.100000pt;}
.y100{bottom:616.949988pt;}
.y69{bottom:620.116668pt;}
.yad{bottom:620.450022pt;}
.yf{bottom:626.733333pt;}
.yff{bottom:630.383335pt;}
.y39{bottom:634.399978pt;}
.y82{bottom:638.583367pt;}
.yd2{bottom:642.615867pt;}
.yfe{bottom:643.816644pt;}
.y68{bottom:646.983324pt;}
.yac{bottom:647.316678pt;}
.y38{bottom:651.066647pt;}
.y47{bottom:651.400000pt;}
.y81{bottom:652.016714pt;}
.yd1{bottom:656.046267pt;}
.ye{bottom:659.406300pt;}
.y67{bottom:660.416671pt;}
.yfd{bottom:672.050004pt;}
.y2d{bottom:672.726900pt;}
.y66{bottom:673.850019pt;}
.y46{bottom:674.066667pt;}
.yab{bottom:674.183382pt;}
.y58{bottom:678.471383pt;}
.y80{bottom:678.883370pt;}
.yd0{bottom:682.916667pt;}
.yfc{bottom:685.483313pt;}
.y65{bottom:687.283327pt;}
.y7f{bottom:692.316679pt;}
.yef{bottom:693.183350pt;}
.y45{bottom:696.733333pt;}
.yfb{bottom:698.916660pt;}
.y64{bottom:700.716675pt;}
.yaa{bottom:701.050038pt;}
.y2c{bottom:705.400000pt;}
.yee{bottom:706.616659pt;}
.y54{bottom:706.732283pt;}
.y57{bottom:711.144483pt;}
.yfa{bottom:712.350007pt;}
.y37{bottom:715.733342pt;}
.y7e{bottom:719.183354pt;}
.y44{bottom:719.400000pt;}
.yd{bottom:724.066667pt;}
.ycf{bottom:726.409333pt;}
.y56{bottom:727.810233pt;}
.ya9{bottom:727.916694pt;}
.y2b{bottom:728.066667pt;}
.y7d{bottom:732.616682pt;}
.yf9{bottom:740.583329pt;}
.y7c{bottom:746.050029pt;}
.yc{bottom:746.733333pt;}
.yce{bottom:748.741333pt;}
.yed{bottom:750.099999pt;}
.y43{bottom:752.066400pt;}
.yf8{bottom:754.016657pt;}
.ya8{bottom:754.783350pt;}
.y55{bottom:760.483333pt;}
.y2a{bottom:760.726900pt;}
.ycd{bottom:764.737333pt;}
.ya7{bottom:768.216697pt;}
.yb{bottom:769.400000pt;}
.y63{bottom:772.433321pt;}
.yec{bottom:772.433331pt;}
.y7b{bottom:772.916685pt;}
.y36{bottom:781.400004pt;}
.yf7{bottom:782.249997pt;}
.y7a{bottom:786.350013pt;}
.ycc{bottom:787.069333pt;}
.y53{bottom:787.400000pt;}
.ya{bottom:792.066667pt;}
.y29{bottom:793.400000pt;}
.yeb{bottom:794.766663pt;}
.ya6{bottom:795.083353pt;}
.yf6{bottom:795.683325pt;}
.y35{bottom:804.066671pt;}
.y62{bottom:804.433325pt;}
.ya5{bottom:808.516681pt;}
.yf5{bottom:809.116653pt;}
.ycb{bottom:809.401333pt;}
.y52{bottom:810.066667pt;}
.y79{bottom:813.216689pt;}
.y9{bottom:814.733333pt;}
.y28{bottom:816.066667pt;}
.y42{bottom:816.726767pt;}
.y78{bottom:826.650017pt;}
.y34{bottom:826.733337pt;}
.yca{bottom:831.733333pt;}
.y51{bottom:833.733333pt;}
.ya4{bottom:835.383356pt;}
.y61{bottom:836.433329pt;}
.yf4{bottom:837.349994pt;}
.y8{bottom:847.407217pt;}
.y27{bottom:848.741467pt;}
.y33{bottom:849.400004pt;}
.yf3{bottom:850.783322pt;}
.y77{bottom:853.516673pt;}
.y50{bottom:857.400000pt;}
.yc9{bottom:862.244400pt;}
.ya3{bottom:862.250012pt;}
.yf2{bottom:864.216669pt;}
.y41{bottom:865.407217pt;}
.y60{bottom:866.950001pt;}
.yea{bottom:880.383348pt;}
.y4f{bottom:881.066667pt;}
.y32{bottom:882.066675pt;}
.yc8{bottom:889.114800pt;}
.ya2{bottom:889.116678pt;}
.yf1{bottom:892.450001pt;}
.y5f{bottom:893.816676pt;}
.yc7{bottom:902.545200pt;}
.ya1{bottom:902.550006pt;}
.yf0{bottom:905.883329pt;}
.y5e{bottom:907.250004pt;}
.y7{bottom:912.067583pt;}
.y26{bottom:913.401833pt;}
.y5d{bottom:920.683332pt;}
.y6{bottom:928.733333pt;}
.yc6{bottom:929.415600pt;}
.ya0{bottom:929.416671pt;}
.y25{bottom:930.067583pt;}
.y5c{bottom:934.116669pt;}
.yc5{bottom:942.846000pt;}
.y24{bottom:946.733333pt;}
.y31{bottom:946.733337pt;}
.y5b{bottom:947.549997pt;}
.y5{bottom:955.200000pt;}
.y9f{bottom:956.283337pt;}
.y1{bottom:961.578667pt;}
.yc4{bottom:969.716400pt;}
.y5a{bottom:972.299997pt;}
.y23{bottom:973.200000pt;}
.y30{bottom:973.200003pt;}
.y9e{bottom:984.516668pt;}
.yc3{bottom:997.950000pt;}
.h4{height:20.967188pt;}
.hd{height:26.025000pt;}
.hc{height:26.681250pt;}
.h3{height:29.635200pt;}
.h8{height:33.351562pt;}
.h2{height:36.801600pt;}
.h6{height:38.095898pt;}
.hb{height:38.097750pt;}
.h9{height:38.101232pt;}
.h7{height:38.417383pt;}
.ha{height:45.722168pt;}
.h5{height:52.453125pt;}
.h1{height:67.205333pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:87.558667pt;}
.x9{left:125.500000pt;}
.xa{left:128.366669pt;}
.x5{left:130.900000pt;}
.x6{left:134.366667pt;}
.xb{left:139.900001pt;}
.x7{left:145.900000pt;}
.x2{left:195.428133pt;}
.x3{left:339.944800pt;}
.x8{left:359.340000pt;}
.x4{left:381.911467pt;}
}




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