
    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_c9faa0ec5f3d231414902b86.woff')format("woff");}.ff1{font-family:ff1;line-height:0.723000;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_f420229af2d6b9c483b48d54.woff')format("woff");}.ff2{font-family:ff2;line-height:1.001000;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_1f542cf9976e9c2fa97f868d.woff')format("woff");}.ff3{font-family:ff3;line-height:0.901000;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_78e0fddbdcfb07c44b112838.woff')format("woff");}.ff4{font-family:ff4;line-height:1.000000;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_df9ec5c88e1c1912ce5165ae.woff')format("woff");}.ff5{font-family:ff5;line-height:0.706000;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_51162a604b7d9174a5e54d25.woff')format("woff");}.ff6{font-family:ff6;line-height:0.922000;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_fa87094b6711cf07a1e55a32.woff')format("woff");}.ff7{font-family:ff7;line-height:0.901000;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_08c1f6217a647eccf30ce30e.woff')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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_4602248ce9a9707dceb9d2a6.woff')format("woff");}.ff9{font-family:ff9;line-height:1.000000;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_def7d99ce936270f73dab8df.woff')format("woff");}.ffa{font-family:ffa;line-height:0.876000;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_b176de412cb2e56aaeb27b60.woff')format("woff");}.ffb{font-family:ffb;line-height:0.451000;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_20196e02c79724fb99d280c8.woff')format("woff");}.ffc{font-family:ffc;line-height:0.755000;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_7f8935c82d248fe03300f00e.woff')format("woff");}.ffd{font-family:ffd;line-height:0.908000;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_d97e2a3317268ad199b98c3b.woff')format("woff");}.ffe{font-family:ffe;line-height:1.400000;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_93dda27b4cd23f7c3c43a55a.woff')format("woff");}.fff{font-family:fff;line-height:0.653000;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_5d4af784cfc81db223251b46.woff')format("woff");}.ff10{font-family:ff10;line-height:0.390000;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_f7f52f78422e827be749f706.woff')format("woff");}.ff11{font-family:ff11;line-height:0.921000;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);}
.v2{vertical-align:-10.758000px;}
.v1{vertical-align:-8.964000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:8.970000px;}
.v5{vertical-align:21.690000px;}
.v6{vertical-align:24.684000px;}
.v3{vertical-align:56.784000px;}
.ls1{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.000062px;}
.lsa{letter-spacing:0.000376px;}
.ls2{letter-spacing:0.002471px;}
.ls12{letter-spacing:0.008731px;}
.ls9{letter-spacing:0.015447px;}
.ls15{letter-spacing:0.015540px;}
.ls1a{letter-spacing:0.020957px;}
.lsf{letter-spacing:0.029870px;}
.ls6{letter-spacing:1.912819px;}
.ls17{letter-spacing:2.986982px;}
.lsc{letter-spacing:2.988775px;}
.lse{letter-spacing:2.994775px;}
.ls8{letter-spacing:4.000868px;}
.ls16{letter-spacing:5.562136px;}
.ls5{letter-spacing:6.515540px;}
.lsd{letter-spacing:9.982525px;}
.ls11{letter-spacing:13.270183px;}
.ls1b{letter-spacing:16.274525px;}
.ls10{letter-spacing:16.617617px;}
.ls3{letter-spacing:20.263928px;}
.lsb{letter-spacing:20.292538px;}
.ls18{letter-spacing:22.912982px;}
.ls4{letter-spacing:26.779469px;}
.ls7{letter-spacing:28.092043px;}
.ls14{letter-spacing:28.871615px;}
.ls0{letter-spacing:29.887800px;}
.ls13{letter-spacing:31.023536px;}
.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;}
}
.ws20{word-spacing:-38.937826px;}
.ws25{word-spacing:-28.955301px;}
.wsf{word-spacing:-26.899125px;}
.ws12{word-spacing:-26.707738px;}
.ws29{word-spacing:-16.605662px;}
.ws21{word-spacing:-11.020771px;}
.ws5{word-spacing:-6.623136px;}
.ws3b{word-spacing:-5.786278px;}
.ws3e{word-spacing:-5.379825px;}
.ws1b{word-spacing:-3.335478px;}
.ws18{word-spacing:-3.215927px;}
.ws2d{word-spacing:-1.936729px;}
.ws30{word-spacing:-1.721537px;}
.ws2e{word-spacing:-1.661762px;}
.ws1a{word-spacing:-0.585801px;}
.ws39{word-spacing:-0.167372px;}
.ws1{word-spacing:-0.103292px;}
.ws49{word-spacing:-0.059776px;}
.ws1d{word-spacing:-0.047821px;}
.ws11{word-spacing:-0.041843px;}
.ws15{word-spacing:0.000000px;}
.ws22{word-spacing:0.011955px;}
.ws38{word-spacing:0.370609px;}
.ws34{word-spacing:0.430384px;}
.ws37{word-spacing:0.454295px;}
.ws33{word-spacing:0.514070px;}
.ws42{word-spacing:0.549936px;}
.ws2c{word-spacing:0.789038px;}
.ws2b{word-spacing:0.932499px;}
.ws3c{word-spacing:2.044326px;}
.wsd{word-spacing:2.663021px;}
.wsc{word-spacing:2.716819px;}
.ws3{word-spacing:2.725767px;}
.ws44{word-spacing:3.000735px;}
.wse{word-spacing:3.093408px;}
.ws6{word-spacing:3.299613px;}
.ws10{word-spacing:3.359389px;}
.ws4{word-spacing:3.801728px;}
.ws8{word-spacing:3.846586px;}
.ws2{word-spacing:3.873485px;}
.wsa{word-spacing:4.276973px;}
.ws1c{word-spacing:4.483200px;}
.ws43{word-spacing:4.853779px;}
.ws4b{word-spacing:5.331984px;}
.ws16{word-spacing:5.379825px;}
.ws1e{word-spacing:5.511310px;}
.ws32{word-spacing:5.571086px;}
.ws3d{word-spacing:6.288393px;}
.ws31{word-spacing:6.372079px;}
.ws3f{word-spacing:6.587271px;}
.ws4e{word-spacing:7.723008px;}
.ws19{word-spacing:8.081661px;}
.ws17{word-spacing:8.320764px;}
.ws23{word-spacing:8.440315px;}
.ws24{word-spacing:8.500090px;}
.ws9{word-spacing:8.849837px;}
.ws41{word-spacing:9.456500px;}
.wsb{word-spacing:9.925805px;}
.ws47{word-spacing:9.934705px;}
.ws7{word-spacing:10.248595px;}
.ws3a{word-spacing:10.372303px;}
.ws35{word-spacing:10.652012px;}
.ws36{word-spacing:10.711788px;}
.ws28{word-spacing:10.831339px;}
.ws13{word-spacing:13.282138px;}
.ws27{word-spacing:14.358099px;}
.ws4d{word-spacing:15.183002px;}
.ws48{word-spacing:16.737168px;}
.ws2a{word-spacing:16.885660px;}
.ws2f{word-spacing:17.877480px;}
.ws26{word-spacing:19.535281px;}
.ws46{word-spacing:21.280114px;}
.ws4a{word-spacing:21.339889px;}
.ws4c{word-spacing:23.192933px;}
.ws1f{word-spacing:23.206937px;}
.ws45{word-spacing:24.029791px;}
.ws0{word-spacing:31.091012px;}
.ws14{word-spacing:36.200103px;}
.ws40{word-spacing:69.937725px;}
._10{margin-left:-29.887800px;}
._0{margin-left:-8.056807px;}
._5{margin-left:-5.702605px;}
._2{margin-left:-3.873485px;}
._1{margin-left:-2.685602px;}
._3{margin-left:-1.187882px;}
._4{width:1.936742px;}
._7{width:3.443098px;}
._24{width:10.544429px;}
._19{width:14.704798px;}
._25{width:16.099260px;}
._1a{width:17.430552px;}
._6{width:20.024826px;}
._18{width:22.439773px;}
._1f{width:24.089567px;}
._1e{width:25.392701px;}
._e{width:26.540366px;}
._21{width:29.110717px;}
._20{width:31.023536px;}
._26{width:33.534112px;}
._22{width:34.757846px;}
._1c{width:35.865600px;}
._8{width:41.209574px;}
._11{width:43.126430px;}
._23{width:44.145946px;}
._9{width:45.952469px;}
._1d{width:49.162796px;}
._a{width:55.292430px;}
._d{width:61.090663px;}
._f{width:64.285870px;}
._1b{width:80.697600px;}
._12{width:94.624775px;}
._17{width:96.836850px;}
._14{width:309.996262px;}
._15{width:465.400892px;}
._c{width:638.176235px;}
._b{width:684.055738px;}
._13{width:1346.026961px;}
._16{width:1609.398254px;}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:41.842800px;}
.fs6{font-size:47.820600px;}
.fs3{font-size:53.798400px;}
.fs2{font-size:59.775600px;}
.fs1{font-size:71.731200px;}
.fs4{font-size:86.077200px;}
.fs0{font-size:103.292400px;}
.y0{bottom:0.000000px;}
.y1a{bottom:134.047500px;}
.y58{bottom:178.879500px;}
.y39{bottom:194.469000px;}
.y57{bottom:196.812000px;}
.y38{bottom:212.401500px;}
.y56{bottom:214.744500px;}
.y37{bottom:230.334000px;}
.y55{bottom:232.677000px;}
.y54{bottom:250.609500px;}
.y36{bottom:260.221500px;}
.y19{bottom:263.875500px;}
.y53{bottom:268.542000px;}
.y35{bottom:278.155500px;}
.y18{bottom:296.752500px;}
.y52{bottom:301.273500px;}
.y34{bottom:308.043000px;}
.y33{bottom:325.975500px;}
.y17{bottom:329.629500px;}
.y51{bottom:349.959000px;}
.y32{bottom:358.852500px;}
.y16{bottom:362.505000px;}
.y50{bottom:367.893000px;}
.y31{bottom:391.584000px;}
.y15{bottom:395.382000px;}
.y4f{bottom:396.076500px;}
.y14{bottom:413.314500px;}
.y4e{bottom:424.261500px;}
.y13{bottom:431.248500px;}
.y30{bottom:441.003000px;}
.y4d{bottom:452.445000px;}
.y2f{bottom:458.935500px;}
.y12{bottom:464.124000px;}
.y2e{bottom:476.868000px;}
.y4c{bottom:480.630000px;}
.y2d{bottom:494.800500px;}
.y11{bottom:497.001000px;}
.y4b{bottom:508.815000px;}
.y2c{bottom:525.975000px;}
.y4a{bottom:537.432000px;}
.y2b{bottom:543.834000px;}
.y10{bottom:546.420000px;}
.yf{bottom:562.858500px;}
.y49{bottom:570.163500px;}
.ye{bottom:579.297000px;}
.y2a{bottom:579.699000px;}
.yd{bottom:595.735500px;}
.y48{bottom:597.063000px;}
.y29{bottom:607.284000px;}
.yc{bottom:612.174000px;}
.yb{bottom:628.612500px;}
.ya{bottom:645.051000px;}
.y47{bottom:645.748500px;}
.y28{bottom:649.116000px;}
.y9{bottom:661.488000px;}
.y46{bottom:663.681000px;}
.y27{bottom:667.048500px;}
.y45{bottom:681.613500px;}
.y8{bottom:684.913500px;}
.y44{bottom:699.547500px;}
.y26{bottom:699.925500px;}
.y7{bottom:716.296500px;}
.y43{bottom:717.480000px;}
.y25{bottom:732.802500px;}
.y6{bottom:738.480000px;}
.y42{bottom:746.097000px;}
.y24{bottom:750.735000px;}
.y5{bottom:756.414000px;}
.y5f{bottom:761.839500px;}
.y41{bottom:777.621000px;}
.y23{bottom:778.318500px;}
.y5e{bottom:779.772000px;}
.y5d{bottom:809.659500px;}
.y40{bottom:810.352500px;}
.y4{bottom:811.705500px;}
.y22{bottom:814.039500px;}
.y5c{bottom:827.592000px;}
.y3f{bottom:837.252000px;}
.y3{bottom:846.874500px;}
.y5b{bottom:857.481000px;}
.y21{bottom:863.458500px;}
.y20{bottom:881.391000px;}
.y3e{bottom:885.937500px;}
.y5a{bottom:887.368500px;}
.y2{bottom:890.211000px;}
.y1f{bottom:899.323500px;}
.y3d{bottom:903.870000px;}
.y59{bottom:905.301000px;}
.y1e{bottom:917.256000px;}
.y3c{bottom:921.802500px;}
.y1{bottom:923.088000px;}
.y1d{bottom:935.188500px;}
.y3b{bottom:949.987500px;}
.y1c{bottom:953.121000px;}
.y3a{bottom:967.920000px;}
.y1b{bottom:985.852500px;}
.ha{height:29.038903px;}
.h5{height:37.658880px;}
.h6{height:38.519654px;}
.h3{height:41.842920px;}
.h4{height:44.831700px;}
.hc{height:45.833296px;}
.hd{height:45.839296px;}
.he{height:48.827296px;}
.h8{height:50.211840px;}
.hb{height:50.728903px;}
.h2{height:53.798400px;}
.h9{height:56.784000px;}
.h7{height:60.254040px;}
.h1{height:73.027727px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x6{left:200.652000px;}
.x10{left:218.917500px;}
.x5{left:223.068000px;}
.x11{left:236.967000px;}
.x9{left:238.012500px;}
.x8{left:258.747000px;}
.x1{left:280.776000px;}
.x3{left:317.313000px;}
.x2{left:342.015000px;}
.x12{left:352.348500px;}
.xc{left:376.567500px;}
.xf{left:378.291000px;}
.xb{left:396.997500px;}
.x4{left:399.661500px;}
.x7{left:427.995000px;}
.xd{left:430.749000px;}
.xa{left:454.699500px;}
.xe{left:456.670500px;}
@media print{
.v2{vertical-align:-9.562667pt;}
.v1{vertical-align:-7.968000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:7.973333pt;}
.v5{vertical-align:19.280000pt;}
.v6{vertical-align:21.941333pt;}
.v3{vertical-align:50.474667pt;}
.ls1{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.000055pt;}
.lsa{letter-spacing:0.000334pt;}
.ls2{letter-spacing:0.002196pt;}
.ls12{letter-spacing:0.007761pt;}
.ls9{letter-spacing:0.013730pt;}
.ls15{letter-spacing:0.013813pt;}
.ls1a{letter-spacing:0.018628pt;}
.lsf{letter-spacing:0.026551pt;}
.ls6{letter-spacing:1.700284pt;}
.ls17{letter-spacing:2.655095pt;}
.lsc{letter-spacing:2.656689pt;}
.lse{letter-spacing:2.662022pt;}
.ls8{letter-spacing:3.556327pt;}
.ls16{letter-spacing:4.944121pt;}
.ls5{letter-spacing:5.791591pt;}
.lsd{letter-spacing:8.873356pt;}
.ls11{letter-spacing:11.795718pt;}
.ls1b{letter-spacing:14.466245pt;}
.ls10{letter-spacing:14.771215pt;}
.ls3{letter-spacing:18.012381pt;}
.lsb{letter-spacing:18.037812pt;}
.ls18{letter-spacing:20.367095pt;}
.ls4{letter-spacing:23.803972pt;}
.ls7{letter-spacing:24.970705pt;}
.ls14{letter-spacing:25.663658pt;}
.ls0{letter-spacing:26.566933pt;}
.ls13{letter-spacing:27.576477pt;}
.ws20{word-spacing:-34.611401pt;}
.ws25{word-spacing:-25.738045pt;}
.wsf{word-spacing:-23.910333pt;}
.ws12{word-spacing:-23.740212pt;}
.ws29{word-spacing:-14.760588pt;}
.ws21{word-spacing:-9.796241pt;}
.ws5{word-spacing:-5.887232pt;}
.ws3b{word-spacing:-5.143358pt;}
.ws3e{word-spacing:-4.782067pt;}
.ws1b{word-spacing:-2.964870pt;}
.ws18{word-spacing:-2.858602pt;}
.ws2d{word-spacing:-1.721537pt;}
.ws30{word-spacing:-1.530255pt;}
.ws2e{word-spacing:-1.477121pt;}
.ws1a{word-spacing:-0.520712pt;}
.ws39{word-spacing:-0.148775pt;}
.ws1{word-spacing:-0.091815pt;}
.ws49{word-spacing:-0.053134pt;}
.ws1d{word-spacing:-0.042507pt;}
.ws11{word-spacing:-0.037194pt;}
.ws15{word-spacing:0.000000pt;}
.ws22{word-spacing:0.010627pt;}
.ws38{word-spacing:0.329430pt;}
.ws34{word-spacing:0.382564pt;}
.ws37{word-spacing:0.403817pt;}
.ws33{word-spacing:0.456951pt;}
.ws42{word-spacing:0.488832pt;}
.ws2c{word-spacing:0.701367pt;}
.ws2b{word-spacing:0.828888pt;}
.ws3c{word-spacing:1.817178pt;}
.wsd{word-spacing:2.367130pt;}
.wsc{word-spacing:2.414950pt;}
.ws3{word-spacing:2.422904pt;}
.ws44{word-spacing:2.667320pt;}
.wse{word-spacing:2.749696pt;}
.ws6{word-spacing:2.932989pt;}
.ws10{word-spacing:2.986123pt;}
.ws4{word-spacing:3.379314pt;}
.ws8{word-spacing:3.419187pt;}
.ws2{word-spacing:3.443098pt;}
.wsa{word-spacing:3.801754pt;}
.ws1c{word-spacing:3.985067pt;}
.ws43{word-spacing:4.314470pt;}
.ws4b{word-spacing:4.739541pt;}
.ws16{word-spacing:4.782067pt;}
.ws1e{word-spacing:4.898943pt;}
.ws32{word-spacing:4.952076pt;}
.ws3d{word-spacing:5.589683pt;}
.ws31{word-spacing:5.664070pt;}
.ws3f{word-spacing:5.855352pt;}
.ws4e{word-spacing:6.864896pt;}
.ws19{word-spacing:7.183699pt;}
.ws17{word-spacing:7.396234pt;}
.ws23{word-spacing:7.502502pt;}
.ws24{word-spacing:7.555636pt;}
.ws9{word-spacing:7.866522pt;}
.ws41{word-spacing:8.405778pt;}
.wsb{word-spacing:8.822938pt;}
.ws47{word-spacing:8.830849pt;}
.ws7{word-spacing:9.109862pt;}
.ws3a{word-spacing:9.219825pt;}
.ws35{word-spacing:9.468455pt;}
.ws36{word-spacing:9.521589pt;}
.ws28{word-spacing:9.627857pt;}
.ws13{word-spacing:11.806345pt;}
.ws27{word-spacing:12.762755pt;}
.ws4d{word-spacing:13.496002pt;}
.ws48{word-spacing:14.877483pt;}
.ws2a{word-spacing:15.009476pt;}
.ws2f{word-spacing:15.891093pt;}
.ws26{word-spacing:17.364694pt;}
.ws46{word-spacing:18.915657pt;}
.ws4a{word-spacing:18.968790pt;}
.ws4c{word-spacing:20.615940pt;}
.ws1f{word-spacing:20.628389pt;}
.ws45{word-spacing:21.359814pt;}
.ws0{word-spacing:27.636455pt;}
.ws14{word-spacing:32.177870pt;}
.ws40{word-spacing:62.166867pt;}
._10{margin-left:-26.566933pt;}
._0{margin-left:-7.161606pt;}
._5{margin-left:-5.068982pt;}
._2{margin-left:-3.443098pt;}
._1{margin-left:-2.387202pt;}
._3{margin-left:-1.055895pt;}
._4{width:1.721549pt;}
._7{width:3.060531pt;}
._24{width:9.372826pt;}
._19{width:13.070931pt;}
._25{width:14.310453pt;}
._1a{width:15.493824pt;}
._6{width:17.799845pt;}
._18{width:19.946465pt;}
._1f{width:21.412948pt;}
._1e{width:22.571290pt;}
._e{width:23.591437pt;}
._21{width:25.876193pt;}
._20{width:27.576477pt;}
._26{width:29.808099pt;}
._22{width:30.895863pt;}
._1c{width:31.880533pt;}
._8{width:36.630733pt;}
._11{width:38.334605pt;}
._23{width:39.240841pt;}
._9{width:40.846639pt;}
._1d{width:43.700263pt;}
._a{width:49.148827pt;}
._d{width:54.302812pt;}
._f{width:57.142995pt;}
._1b{width:71.731200pt;}
._12{width:84.110911pt;}
._17{width:86.077200pt;}
._14{width:275.552233pt;}
._15{width:413.689682pt;}
._c{width:567.267764pt;}
._b{width:608.049545pt;}
._13{width:1196.468410pt;}
._16{width:1430.576226pt;}
.fs5{font-size:37.193600pt;}
.fs6{font-size:42.507200pt;}
.fs3{font-size:47.820800pt;}
.fs2{font-size:53.133867pt;}
.fs1{font-size:63.761067pt;}
.fs4{font-size:76.513067pt;}
.fs0{font-size:91.815467pt;}
.y0{bottom:0.000000pt;}
.y1a{bottom:119.153333pt;}
.y58{bottom:159.004000pt;}
.y39{bottom:172.861333pt;}
.y57{bottom:174.944000pt;}
.y38{bottom:188.801333pt;}
.y56{bottom:190.884000pt;}
.y37{bottom:204.741333pt;}
.y55{bottom:206.824000pt;}
.y54{bottom:222.764000pt;}
.y36{bottom:231.308000pt;}
.y19{bottom:234.556000pt;}
.y53{bottom:238.704000pt;}
.y35{bottom:247.249333pt;}
.y18{bottom:263.780000pt;}
.y52{bottom:267.798667pt;}
.y34{bottom:273.816000pt;}
.y33{bottom:289.756000pt;}
.y17{bottom:293.004000pt;}
.y51{bottom:311.074667pt;}
.y32{bottom:318.980000pt;}
.y16{bottom:322.226667pt;}
.y50{bottom:327.016000pt;}
.y31{bottom:348.074667pt;}
.y15{bottom:351.450667pt;}
.y4f{bottom:352.068000pt;}
.y14{bottom:367.390667pt;}
.y4e{bottom:377.121333pt;}
.y13{bottom:383.332000pt;}
.y30{bottom:392.002667pt;}
.y4d{bottom:402.173333pt;}
.y2f{bottom:407.942667pt;}
.y12{bottom:412.554667pt;}
.y2e{bottom:423.882667pt;}
.y4c{bottom:427.226667pt;}
.y2d{bottom:439.822667pt;}
.y11{bottom:441.778667pt;}
.y4b{bottom:452.280000pt;}
.y2c{bottom:467.533333pt;}
.y4a{bottom:477.717333pt;}
.y2b{bottom:483.408000pt;}
.y10{bottom:485.706667pt;}
.yf{bottom:500.318667pt;}
.y49{bottom:506.812000pt;}
.ye{bottom:514.930667pt;}
.y2a{bottom:515.288000pt;}
.yd{bottom:529.542667pt;}
.y48{bottom:530.722667pt;}
.y29{bottom:539.808000pt;}
.yc{bottom:544.154667pt;}
.yb{bottom:558.766667pt;}
.ya{bottom:573.378667pt;}
.y47{bottom:573.998667pt;}
.y28{bottom:576.992000pt;}
.y9{bottom:587.989333pt;}
.y46{bottom:589.938667pt;}
.y27{bottom:592.932000pt;}
.y45{bottom:605.878667pt;}
.y8{bottom:608.812000pt;}
.y44{bottom:621.820000pt;}
.y26{bottom:622.156000pt;}
.y7{bottom:636.708000pt;}
.y43{bottom:637.760000pt;}
.y25{bottom:651.380000pt;}
.y6{bottom:656.426667pt;}
.y42{bottom:663.197333pt;}
.y24{bottom:667.320000pt;}
.y5{bottom:672.368000pt;}
.y5f{bottom:677.190667pt;}
.y41{bottom:691.218667pt;}
.y23{bottom:691.838667pt;}
.y5e{bottom:693.130667pt;}
.y5d{bottom:719.697333pt;}
.y40{bottom:720.313333pt;}
.y4{bottom:721.516000pt;}
.y22{bottom:723.590667pt;}
.y5c{bottom:735.637333pt;}
.y3f{bottom:744.224000pt;}
.y3{bottom:752.777333pt;}
.y5b{bottom:762.205333pt;}
.y21{bottom:767.518667pt;}
.y20{bottom:783.458667pt;}
.y3e{bottom:787.500000pt;}
.y5a{bottom:788.772000pt;}
.y2{bottom:791.298667pt;}
.y1f{bottom:799.398667pt;}
.y3d{bottom:803.440000pt;}
.y59{bottom:804.712000pt;}
.y1e{bottom:815.338667pt;}
.y3c{bottom:819.380000pt;}
.y1{bottom:820.522667pt;}
.y1d{bottom:831.278667pt;}
.y3b{bottom:844.433333pt;}
.y1c{bottom:847.218667pt;}
.y3a{bottom:860.373333pt;}
.y1b{bottom:876.313333pt;}
.ha{height:25.812358pt;}
.h5{height:33.474560pt;}
.h6{height:34.239693pt;}
.h3{height:37.193707pt;}
.h4{height:39.850400pt;}
.hc{height:40.740707pt;}
.hd{height:40.746041pt;}
.he{height:43.402041pt;}
.h8{height:44.632747pt;}
.hb{height:45.092358pt;}
.h2{height:47.820800pt;}
.h9{height:50.474667pt;}
.h7{height:53.559147pt;}
.h1{height:64.913535pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x6{left:178.357333pt;}
.x10{left:194.593333pt;}
.x5{left:198.282667pt;}
.x11{left:210.637333pt;}
.x9{left:211.566667pt;}
.x8{left:229.997333pt;}
.x1{left:249.578667pt;}
.x3{left:282.056000pt;}
.x2{left:304.013333pt;}
.x12{left:313.198667pt;}
.xc{left:334.726667pt;}
.xf{left:336.258667pt;}
.xb{left:352.886667pt;}
.x4{left:355.254667pt;}
.x7{left:380.440000pt;}
.xd{left:382.888000pt;}
.xa{left:404.177333pt;}
.xe{left:405.929333pt;}
}




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