
    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_b6210149cf96f0badb493062.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;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_8f50b9a7c77bd6cc804de43e.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_e1200eb425e4d9c9559c9434.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f648475f10b50ee056c44a4c.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_f048e0952e669320d4b7d515.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_6a9a9039a2421891b6324390.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_28bac11a2564a4ea63e62c2d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.675781;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_e3c34660c9e17b27ef8ab049.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.933594;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-24.480000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:44.534880px;}
.ls24{letter-spacing:-2.053440px;}
.ls12{letter-spacing:-1.457280px;}
.ls18{letter-spacing:-1.422720px;}
.ls1a{letter-spacing:-1.258560px;}
.ls23{letter-spacing:-1.126080px;}
.lse{letter-spacing:-1.061280px;}
.ls2a{letter-spacing:-1.059840px;}
.lsc{letter-spacing:-0.964800px;}
.ls30{letter-spacing:-0.907200px;}
.ls19{letter-spacing:-0.820800px;}
.lsd{letter-spacing:-0.675360px;}
.ls17{letter-spacing:-0.656640px;}
.ls15{letter-spacing:-0.596160px;}
.ls11{letter-spacing:-0.578880px;}
.ls2f{letter-spacing:-0.483840px;}
.ls2b{letter-spacing:-0.463680px;}
.lsf{letter-spacing:-0.385920px;}
.ls2e{letter-spacing:-0.331200px;}
.ls27{letter-spacing:-0.066240px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.028800px;}
.ls26{letter-spacing:0.066240px;}
.ls10{letter-spacing:0.096480px;}
.ls28{letter-spacing:0.132480px;}
.ls22{letter-spacing:0.167040px;}
.ls29{letter-spacing:0.198720px;}
.ls14{letter-spacing:0.331200px;}
.ls1{letter-spacing:0.385920px;}
.ls20{letter-spacing:0.397440px;}
.ls21{letter-spacing:0.463680px;}
.ls1b{letter-spacing:0.483840px;}
.ls25{letter-spacing:0.529920px;}
.ls2{letter-spacing:0.578880px;}
.ls16{letter-spacing:0.656640px;}
.ls3{letter-spacing:0.675360px;}
.lsa{letter-spacing:0.711360px;}
.lsb{letter-spacing:0.771840px;}
.ls13{letter-spacing:0.861120px;}
.ls2c{letter-spacing:0.907488px;}
.ls1e{letter-spacing:0.993600px;}
.ls4{letter-spacing:1.758240px;}
.ls5{letter-spacing:2.851200px;}
.ls2d{letter-spacing:5.034240px;}
.ls1c{letter-spacing:6.491520px;}
.ls7{letter-spacing:9.339840px;}
.ls1d{letter-spacing:9.558432px;}
.ls1f{letter-spacing:10.797120px;}
.ls8{letter-spacing:18.017280px;}
.ls9{letter-spacing:49.680000px;}
.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;}
}
.ws4{word-spacing:-24.505920px;}
.ws5{word-spacing:-24.216480px;}
.ws1{word-spacing:-24.120000px;}
.ws3{word-spacing:-23.444640px;}
.ws2{word-spacing:-23.155200px;}
.ws51{word-spacing:-17.553600px;}
.ws2f{word-spacing:-16.560000px;}
.ws49{word-spacing:-16.228800px;}
.wsc{word-spacing:-15.603840px;}
.ws2e{word-spacing:-15.433920px;}
.ws4a{word-spacing:-15.102720px;}
.ws52{word-spacing:-14.636160px;}
.ws7{word-spacing:-14.336640px;}
.wsb{word-spacing:-13.680000px;}
.ws8{word-spacing:-13.023360px;}
.wsa{word-spacing:-12.859200px;}
.ws9{word-spacing:-12.257280px;}
.ws30{word-spacing:-12.055680px;}
.ws31{word-spacing:-11.923200px;}
.ws32{word-spacing:-11.724480px;}
.ws33{word-spacing:-10.465920px;}
.ws6{word-spacing:-9.000000px;}
.ws11{word-spacing:-1.833120px;}
.ws10{word-spacing:-1.447200px;}
.ws2d{word-spacing:-0.711360px;}
.wse{word-spacing:-0.385920px;}
.ws4b{word-spacing:-0.331200px;}
.ws53{word-spacing:-0.264960px;}
.ws34{word-spacing:-0.250560px;}
.wsf{word-spacing:-0.192960px;}
.ws41{word-spacing:-0.132480px;}
.ws46{word-spacing:-0.066240px;}
.ws0{word-spacing:0.000000px;}
.ws47{word-spacing:0.066240px;}
.ws55{word-spacing:0.241920px;}
.ws13{word-spacing:0.385920px;}
.ws3e{word-spacing:0.397440px;}
.ws48{word-spacing:0.463680px;}
.ws28{word-spacing:0.596160px;}
.ws1e{word-spacing:0.728640px;}
.wsd{word-spacing:0.751680px;}
.ws14{word-spacing:0.964800px;}
.ws12{word-spacing:1.061280px;}
.ws3a{word-spacing:1.126080px;}
.ws2c{word-spacing:1.258560px;}
.ws43{word-spacing:1.854720px;}
.ws57{word-spacing:2.177280px;}
.ws1b{word-spacing:2.185920px;}
.ws45{word-spacing:2.583360px;}
.ws44{word-spacing:2.782080px;}
.ws56{word-spacing:3.084480px;}
.ws3d{word-spacing:3.245760px;}
.ws1a{word-spacing:3.576960px;}
.ws18{word-spacing:3.643200px;}
.ws25{word-spacing:4.173120px;}
.ws4e{word-spacing:4.239360px;}
.ws4c{word-spacing:4.703040px;}
.ws38{word-spacing:5.034240px;}
.ws4d{word-spacing:6.160320px;}
.ws21{word-spacing:6.491520px;}
.ws3f{word-spacing:7.087680px;}
.ws1c{word-spacing:7.948800px;}
.ws20{word-spacing:8.478720px;}
.ws37{word-spacing:9.008640px;}
.ws36{word-spacing:9.339840px;}
.ws40{word-spacing:9.406080px;}
.ws1f{word-spacing:10.797120px;}
.ws26{word-spacing:12.254400px;}
.ws35{word-spacing:13.380480px;}
.ws22{word-spacing:13.711680px;}
.ws42{word-spacing:15.102720px;}
.ws23{word-spacing:15.168960px;}
.ws54{word-spacing:16.228800px;}
.ws16{word-spacing:16.560000px;}
.ws27{word-spacing:17.686080px;}
.ws17{word-spacing:18.017280px;}
.ws39{word-spacing:19.474560px;}
.ws1d{word-spacing:20.931840px;}
.ws29{word-spacing:22.322880px;}
.ws24{word-spacing:23.780160px;}
.ws4f{word-spacing:25.171200px;}
.ws19{word-spacing:28.085760px;}
.ws3b{word-spacing:30.934080px;}
.ws15{word-spacing:31.000320px;}
.ws3c{word-spacing:32.391360px;}
.ws50{word-spacing:35.305920px;}
.ws2b{word-spacing:47.606400px;}
.ws2a{word-spacing:49.029120px;}
._a{margin-left:-16.543008px;}
._3{margin-left:-3.552192px;}
._2{margin-left:-2.247552px;}
._0{margin-left:-1.168128px;}
._1{width:1.842048px;}
._4{width:3.262176px;}
._5{width:4.611168px;}
._6{width:6.964704px;}
._7{width:9.456192px;}
._9{width:63.100224px;}
._8{width:74.008512px;}
.fc4{color:rgb(192,80,77);}
.fc3{color:transparent;}
.fc1{color:rgb(192,0,0);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:36.000000px;}
.fs4{font-size:42.000000px;}
.fsb{font-size:54.720000px;}
.fs3{font-size:60.000000px;}
.fsc{font-size:60.480000px;}
.fs1{font-size:63.000000px;}
.fs8{font-size:63.360000px;}
.fs9{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs7{font-size:96.480000px;}
.fs2{font-size:102.000000px;}
.fs5{font-size:149.760000px;}
.fsd{font-size:306.720000px;}
.y0{bottom:0.000000px;}
.y51{bottom:3.600000px;}
.y24{bottom:5.040000px;}
.y6{bottom:35.925007px;}
.y8a{bottom:57.238560px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y89{bottom:101.520000px;}
.y4f{bottom:131.397840px;}
.y88{bottom:134.138880px;}
.y20{bottom:139.264499px;}
.y87{bottom:153.216000px;}
.y4e{bottom:154.440000px;}
.y92{bottom:164.160000px;}
.y52{bottom:166.680000px;}
.y86{bottom:171.928800px;}
.y85{bottom:191.005920px;}
.y4d{bottom:193.808160px;}
.y17{bottom:196.933500px;}
.y91{bottom:209.154960px;}
.y1f{bottom:209.518500px;}
.y16{bottom:209.533503px;}
.y84{bottom:210.083040px;}
.y4c{bottom:212.885280px;}
.y1e{bottom:222.118502px;}
.y15{bottom:222.133505px;}
.y90{bottom:226.437120px;}
.y83{bottom:229.160160px;}
.y4b{bottom:231.962400px;}
.y1d{bottom:234.718504px;}
.y14{bottom:234.733496px;}
.y8f{bottom:243.719280px;}
.y82{bottom:247.872960px;}
.y4a{bottom:250.675200px;}
.y1c{bottom:259.918497px;}
.y13{bottom:259.933500px;}
.y8e{bottom:260.638560px;}
.y81{bottom:266.950080px;}
.y49{bottom:269.752320px;}
.y1b{bottom:272.518500px;}
.y12{bottom:272.533503px;}
.y8d{bottom:274.322160px;}
.y1a{bottom:285.118502px;}
.y11{bottom:285.133499px;}
.y80{bottom:286.027200px;}
.y48{bottom:288.829440px;}
.y7f{bottom:304.740000px;}
.y47{bottom:307.542240px;}
.y19{bottom:310.318501px;}
.y10{bottom:310.333501px;}
.y18{bottom:322.918500px;}
.yf{bottom:322.933500px;}
.y7e{bottom:323.817120px;}
.y46{bottom:326.619360px;}
.y7d{bottom:342.894240px;}
.y45{bottom:345.696480px;}
.y8c{bottom:345.960720px;}
.ye{bottom:348.133500px;}
.y7c{bottom:361.607040px;}
.y8b{bottom:362.880000px;}
.y44{bottom:364.773600px;}
.y7b{bottom:380.684160px;}
.y43{bottom:383.486400px;}
.yd{bottom:386.785499px;}
.y7a{bottom:399.761280px;}
.y42{bottom:402.563520px;}
.yc{bottom:408.044999px;}
.y79{bottom:418.838400px;}
.y41{bottom:421.640640px;}
.y78{bottom:437.551200px;}
.y40{bottom:440.353440px;}
.y77{bottom:456.628320px;}
.y3f{bottom:459.430560px;}
.y76{bottom:475.705440px;}
.y3e{bottom:478.507680px;}
.y75{bottom:494.418240px;}
.y3d{bottom:497.584800px;}
.yb{bottom:502.864502px;}
.y74{bottom:513.495360px;}
.y3c{bottom:516.297600px;}
.ya{bottom:520.864502px;}
.y73{bottom:532.572480px;}
.y3b{bottom:535.374720px;}
.y9{bottom:538.864499px;}
.y72{bottom:551.649600px;}
.y3a{bottom:554.451840px;}
.y8{bottom:556.864499px;}
.y71{bottom:570.362400px;}
.y39{bottom:573.164640px;}
.y70{bottom:589.439520px;}
.y38{bottom:592.241760px;}
.y6f{bottom:608.516640px;}
.y37{bottom:611.318880px;}
.y6e{bottom:627.229440px;}
.y36{bottom:630.031680px;}
.y6d{bottom:646.306560px;}
.y35{bottom:649.108800px;}
.y6c{bottom:665.383680px;}
.y34{bottom:668.185920px;}
.y6b{bottom:684.096480px;}
.y33{bottom:687.263040px;}
.y6a{bottom:703.173600px;}
.y32{bottom:705.975840px;}
.y69{bottom:722.250720px;}
.y31{bottom:725.052960px;}
.y7{bottom:726.298500px;}
.y50{bottom:739.800000px;}
.y68{bottom:741.327840px;}
.y30{bottom:744.130080px;}
.y3{bottom:752.599495px;}
.y67{bottom:760.040640px;}
.y2f{bottom:762.842880px;}
.y66{bottom:779.117760px;}
.y2e{bottom:781.920000px;}
.y65{bottom:798.194880px;}
.y2d{bottom:801.360000px;}
.y64{bottom:816.907680px;}
.y2c{bottom:826.927920px;}
.y63{bottom:835.984800px;}
.y2b{bottom:854.287920px;}
.y62{bottom:855.061920px;}
.y61{bottom:873.774720px;}
.y2{bottom:879.369000px;}
.y2a{bottom:881.640000px;}
.y60{bottom:892.851840px;}
.y29{bottom:909.386280px;}
.y5f{bottom:911.928960px;}
.y5e{bottom:931.006080px;}
.y28{bottom:936.738360px;}
.y5d{bottom:949.718880px;}
.y27{bottom:964.090440px;}
.y1{bottom:966.726000px;}
.y5c{bottom:968.796000px;}
.y5b{bottom:987.873120px;}
.y26{bottom:992.166120px;}
.y5a{bottom:1006.585920px;}
.y25{bottom:1019.880000px;}
.y59{bottom:1025.663040px;}
.y23{bottom:1042.920000px;}
.y58{bottom:1044.740160px;}
.y57{bottom:1063.817280px;}
.y22{bottom:1073.160000px;}
.y56{bottom:1082.530080px;}
.y21{bottom:1101.600000px;}
.y55{bottom:1101.607200px;}
.y54{bottom:1120.684320px;}
.y53{bottom:1145.160000px;}
.hb{height:24.120000px;}
.h7{height:32.130000px;}
.h13{height:36.472500px;}
.h17{height:44.149219px;}
.h6{height:45.900000px;}
.h3{height:48.195000px;}
.h19{height:51.232500px;}
.h2{height:55.080000px;}
.h15{height:56.880000px;}
.h1a{height:59.357813px;}
.h14{height:59.366452px;}
.h1b{height:60.952500px;}
.h18{height:64.597500px;}
.h12{height:65.010937px;}
.h1c{height:70.664062px;}
.h5{height:78.030000px;}
.ha{height:81.970312px;}
.h11{height:84.172500px;}
.he{height:94.642734px;}
.hc{height:94.689844px;}
.hd{height:97.233750px;}
.hf{height:108.389880px;}
.h10{height:108.463320px;}
.h4{height:119.055004px;}
.h9{height:146.981250px;}
.h16{height:301.028906px;}
.h0{height:1262.833500px;}
.h8{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:51.118500px;}
.w5{width:568.800000px;}
.w2{width:637.794021px;}
.w4{width:892.500000px;}
.w3{width:892.800000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x8{left:7.920000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x12{left:148.680000px;}
.x7{left:162.000000px;}
.x11{left:169.919280px;}
.x5{left:178.920000px;}
.xf{left:191.160000px;}
.xc{left:192.635280px;}
.xb{left:200.184840px;}
.xa{left:202.331520px;}
.x4{left:203.484001px;}
.x10{left:221.040000px;}
.x17{left:280.800000px;}
.xe{left:334.074960px;}
.x13{left:344.520000px;}
.xd{left:360.799920px;}
.x6{left:366.480000px;}
.x9{left:446.040000px;}
.x3{left:454.959000px;}
.x14{left:575.640000px;}
.x16{left:722.525760px;}
.x15{left:799.580880px;}
@media print{
.v2{vertical-align:-21.760000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:39.586560pt;}
.ls24{letter-spacing:-1.825280pt;}
.ls12{letter-spacing:-1.295360pt;}
.ls18{letter-spacing:-1.264640pt;}
.ls1a{letter-spacing:-1.118720pt;}
.ls23{letter-spacing:-1.000960pt;}
.lse{letter-spacing:-0.943360pt;}
.ls2a{letter-spacing:-0.942080pt;}
.lsc{letter-spacing:-0.857600pt;}
.ls30{letter-spacing:-0.806400pt;}
.ls19{letter-spacing:-0.729600pt;}
.lsd{letter-spacing:-0.600320pt;}
.ls17{letter-spacing:-0.583680pt;}
.ls15{letter-spacing:-0.529920pt;}
.ls11{letter-spacing:-0.514560pt;}
.ls2f{letter-spacing:-0.430080pt;}
.ls2b{letter-spacing:-0.412160pt;}
.lsf{letter-spacing:-0.343040pt;}
.ls2e{letter-spacing:-0.294400pt;}
.ls27{letter-spacing:-0.058880pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.025600pt;}
.ls26{letter-spacing:0.058880pt;}
.ls10{letter-spacing:0.085760pt;}
.ls28{letter-spacing:0.117760pt;}
.ls22{letter-spacing:0.148480pt;}
.ls29{letter-spacing:0.176640pt;}
.ls14{letter-spacing:0.294400pt;}
.ls1{letter-spacing:0.343040pt;}
.ls20{letter-spacing:0.353280pt;}
.ls21{letter-spacing:0.412160pt;}
.ls1b{letter-spacing:0.430080pt;}
.ls25{letter-spacing:0.471040pt;}
.ls2{letter-spacing:0.514560pt;}
.ls16{letter-spacing:0.583680pt;}
.ls3{letter-spacing:0.600320pt;}
.lsa{letter-spacing:0.632320pt;}
.lsb{letter-spacing:0.686080pt;}
.ls13{letter-spacing:0.765440pt;}
.ls2c{letter-spacing:0.806656pt;}
.ls1e{letter-spacing:0.883200pt;}
.ls4{letter-spacing:1.562880pt;}
.ls5{letter-spacing:2.534400pt;}
.ls2d{letter-spacing:4.474880pt;}
.ls1c{letter-spacing:5.770240pt;}
.ls7{letter-spacing:8.302080pt;}
.ls1d{letter-spacing:8.496384pt;}
.ls1f{letter-spacing:9.597440pt;}
.ls8{letter-spacing:16.015360pt;}
.ls9{letter-spacing:44.160000pt;}
.ws4{word-spacing:-21.783040pt;}
.ws5{word-spacing:-21.525760pt;}
.ws1{word-spacing:-21.440000pt;}
.ws3{word-spacing:-20.839680pt;}
.ws2{word-spacing:-20.582400pt;}
.ws51{word-spacing:-15.603200pt;}
.ws2f{word-spacing:-14.720000pt;}
.ws49{word-spacing:-14.425600pt;}
.wsc{word-spacing:-13.870080pt;}
.ws2e{word-spacing:-13.719040pt;}
.ws4a{word-spacing:-13.424640pt;}
.ws52{word-spacing:-13.009920pt;}
.ws7{word-spacing:-12.743680pt;}
.wsb{word-spacing:-12.160000pt;}
.ws8{word-spacing:-11.576320pt;}
.wsa{word-spacing:-11.430400pt;}
.ws9{word-spacing:-10.895360pt;}
.ws30{word-spacing:-10.716160pt;}
.ws31{word-spacing:-10.598400pt;}
.ws32{word-spacing:-10.421760pt;}
.ws33{word-spacing:-9.303040pt;}
.ws6{word-spacing:-8.000000pt;}
.ws11{word-spacing:-1.629440pt;}
.ws10{word-spacing:-1.286400pt;}
.ws2d{word-spacing:-0.632320pt;}
.wse{word-spacing:-0.343040pt;}
.ws4b{word-spacing:-0.294400pt;}
.ws53{word-spacing:-0.235520pt;}
.ws34{word-spacing:-0.222720pt;}
.wsf{word-spacing:-0.171520pt;}
.ws41{word-spacing:-0.117760pt;}
.ws46{word-spacing:-0.058880pt;}
.ws0{word-spacing:0.000000pt;}
.ws47{word-spacing:0.058880pt;}
.ws55{word-spacing:0.215040pt;}
.ws13{word-spacing:0.343040pt;}
.ws3e{word-spacing:0.353280pt;}
.ws48{word-spacing:0.412160pt;}
.ws28{word-spacing:0.529920pt;}
.ws1e{word-spacing:0.647680pt;}
.wsd{word-spacing:0.668160pt;}
.ws14{word-spacing:0.857600pt;}
.ws12{word-spacing:0.943360pt;}
.ws3a{word-spacing:1.000960pt;}
.ws2c{word-spacing:1.118720pt;}
.ws43{word-spacing:1.648640pt;}
.ws57{word-spacing:1.935360pt;}
.ws1b{word-spacing:1.943040pt;}
.ws45{word-spacing:2.296320pt;}
.ws44{word-spacing:2.472960pt;}
.ws56{word-spacing:2.741760pt;}
.ws3d{word-spacing:2.885120pt;}
.ws1a{word-spacing:3.179520pt;}
.ws18{word-spacing:3.238400pt;}
.ws25{word-spacing:3.709440pt;}
.ws4e{word-spacing:3.768320pt;}
.ws4c{word-spacing:4.180480pt;}
.ws38{word-spacing:4.474880pt;}
.ws4d{word-spacing:5.475840pt;}
.ws21{word-spacing:5.770240pt;}
.ws3f{word-spacing:6.300160pt;}
.ws1c{word-spacing:7.065600pt;}
.ws20{word-spacing:7.536640pt;}
.ws37{word-spacing:8.007680pt;}
.ws36{word-spacing:8.302080pt;}
.ws40{word-spacing:8.360960pt;}
.ws1f{word-spacing:9.597440pt;}
.ws26{word-spacing:10.892800pt;}
.ws35{word-spacing:11.893760pt;}
.ws22{word-spacing:12.188160pt;}
.ws42{word-spacing:13.424640pt;}
.ws23{word-spacing:13.483520pt;}
.ws54{word-spacing:14.425600pt;}
.ws16{word-spacing:14.720000pt;}
.ws27{word-spacing:15.720960pt;}
.ws17{word-spacing:16.015360pt;}
.ws39{word-spacing:17.310720pt;}
.ws1d{word-spacing:18.606080pt;}
.ws29{word-spacing:19.842560pt;}
.ws24{word-spacing:21.137920pt;}
.ws4f{word-spacing:22.374400pt;}
.ws19{word-spacing:24.965120pt;}
.ws3b{word-spacing:27.496960pt;}
.ws15{word-spacing:27.555840pt;}
.ws3c{word-spacing:28.792320pt;}
.ws50{word-spacing:31.383040pt;}
.ws2b{word-spacing:42.316800pt;}
.ws2a{word-spacing:43.581440pt;}
._a{margin-left:-14.704896pt;}
._3{margin-left:-3.157504pt;}
._2{margin-left:-1.997824pt;}
._0{margin-left:-1.038336pt;}
._1{width:1.637376pt;}
._4{width:2.899712pt;}
._5{width:4.098816pt;}
._6{width:6.190848pt;}
._7{width:8.405504pt;}
._9{width:56.089088pt;}
._8{width:65.785344pt;}
.fsa{font-size:32.000000pt;}
.fs4{font-size:37.333333pt;}
.fsb{font-size:48.640000pt;}
.fs3{font-size:53.333333pt;}
.fsc{font-size:53.760000pt;}
.fs1{font-size:56.000000pt;}
.fs8{font-size:56.320000pt;}
.fs9{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs7{font-size:85.760000pt;}
.fs2{font-size:90.666667pt;}
.fs5{font-size:133.120000pt;}
.fsd{font-size:272.640000pt;}
.y0{bottom:0.000000pt;}
.y51{bottom:3.200000pt;}
.y24{bottom:4.480000pt;}
.y6{bottom:31.933340pt;}
.y8a{bottom:50.878720pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y89{bottom:90.240000pt;}
.y4f{bottom:116.798080pt;}
.y88{bottom:119.234560pt;}
.y20{bottom:123.790666pt;}
.y87{bottom:136.192000pt;}
.y4e{bottom:137.280000pt;}
.y92{bottom:145.920000pt;}
.y52{bottom:148.160000pt;}
.y86{bottom:152.825600pt;}
.y85{bottom:169.783040pt;}
.y4d{bottom:172.273920pt;}
.y17{bottom:175.052000pt;}
.y91{bottom:185.915520pt;}
.y1f{bottom:186.238666pt;}
.y16{bottom:186.252002pt;}
.y84{bottom:186.740480pt;}
.y4c{bottom:189.231360pt;}
.y1e{bottom:197.438668pt;}
.y15{bottom:197.452004pt;}
.y90{bottom:201.277440pt;}
.y83{bottom:203.697920pt;}
.y4b{bottom:206.188800pt;}
.y1d{bottom:208.638670pt;}
.y14{bottom:208.651996pt;}
.y8f{bottom:216.639360pt;}
.y82{bottom:220.331520pt;}
.y4a{bottom:222.822400pt;}
.y1c{bottom:231.038664pt;}
.y13{bottom:231.052000pt;}
.y8e{bottom:231.678720pt;}
.y81{bottom:237.288960pt;}
.y49{bottom:239.779840pt;}
.y1b{bottom:242.238666pt;}
.y12{bottom:242.252002pt;}
.y8d{bottom:243.841920pt;}
.y1a{bottom:253.438668pt;}
.y11{bottom:253.451999pt;}
.y80{bottom:254.246400pt;}
.y48{bottom:256.737280pt;}
.y7f{bottom:270.880000pt;}
.y47{bottom:273.370880pt;}
.y19{bottom:275.838667pt;}
.y10{bottom:275.852001pt;}
.y18{bottom:287.038667pt;}
.yf{bottom:287.052000pt;}
.y7e{bottom:287.837440pt;}
.y46{bottom:290.328320pt;}
.y7d{bottom:304.794880pt;}
.y45{bottom:307.285760pt;}
.y8c{bottom:307.520640pt;}
.ye{bottom:309.452000pt;}
.y7c{bottom:321.428480pt;}
.y8b{bottom:322.560000pt;}
.y44{bottom:324.243200pt;}
.y7b{bottom:338.385920pt;}
.y43{bottom:340.876800pt;}
.yd{bottom:343.809333pt;}
.y7a{bottom:355.343360pt;}
.y42{bottom:357.834240pt;}
.yc{bottom:362.706666pt;}
.y79{bottom:372.300800pt;}
.y41{bottom:374.791680pt;}
.y78{bottom:388.934400pt;}
.y40{bottom:391.425280pt;}
.y77{bottom:405.891840pt;}
.y3f{bottom:408.382720pt;}
.y76{bottom:422.849280pt;}
.y3e{bottom:425.340160pt;}
.y75{bottom:439.482880pt;}
.y3d{bottom:442.297600pt;}
.yb{bottom:446.990669pt;}
.y74{bottom:456.440320pt;}
.y3c{bottom:458.931200pt;}
.ya{bottom:462.990669pt;}
.y73{bottom:473.397760pt;}
.y3b{bottom:475.888640pt;}
.y9{bottom:478.990666pt;}
.y72{bottom:490.355200pt;}
.y3a{bottom:492.846080pt;}
.y8{bottom:494.990666pt;}
.y71{bottom:506.988800pt;}
.y39{bottom:509.479680pt;}
.y70{bottom:523.946240pt;}
.y38{bottom:526.437120pt;}
.y6f{bottom:540.903680pt;}
.y37{bottom:543.394560pt;}
.y6e{bottom:557.537280pt;}
.y36{bottom:560.028160pt;}
.y6d{bottom:574.494720pt;}
.y35{bottom:576.985600pt;}
.y6c{bottom:591.452160pt;}
.y34{bottom:593.943040pt;}
.y6b{bottom:608.085760pt;}
.y33{bottom:610.900480pt;}
.y6a{bottom:625.043200pt;}
.y32{bottom:627.534080pt;}
.y69{bottom:642.000640pt;}
.y31{bottom:644.491520pt;}
.y7{bottom:645.598667pt;}
.y50{bottom:657.600000pt;}
.y68{bottom:658.958080pt;}
.y30{bottom:661.448960pt;}
.y3{bottom:668.977329pt;}
.y67{bottom:675.591680pt;}
.y2f{bottom:678.082560pt;}
.y66{bottom:692.549120pt;}
.y2e{bottom:695.040000pt;}
.y65{bottom:709.506560pt;}
.y2d{bottom:712.320000pt;}
.y64{bottom:726.140160pt;}
.y2c{bottom:735.047040pt;}
.y63{bottom:743.097600pt;}
.y2b{bottom:759.367040pt;}
.y62{bottom:760.055040pt;}
.y61{bottom:776.688640pt;}
.y2{bottom:781.661334pt;}
.y2a{bottom:783.680000pt;}
.y60{bottom:793.646080pt;}
.y29{bottom:808.343360pt;}
.y5f{bottom:810.603520pt;}
.y5e{bottom:827.560960pt;}
.y28{bottom:832.656320pt;}
.y5d{bottom:844.194560pt;}
.y27{bottom:856.969280pt;}
.y1{bottom:859.312000pt;}
.y5c{bottom:861.152000pt;}
.y5b{bottom:878.109440pt;}
.y26{bottom:881.925440pt;}
.y5a{bottom:894.743040pt;}
.y25{bottom:906.560000pt;}
.y59{bottom:911.700480pt;}
.y23{bottom:927.040000pt;}
.y58{bottom:928.657920pt;}
.y57{bottom:945.615360pt;}
.y22{bottom:953.920000pt;}
.y56{bottom:962.248960pt;}
.y21{bottom:979.200000pt;}
.y55{bottom:979.206400pt;}
.y54{bottom:996.163840pt;}
.y53{bottom:1017.920000pt;}
.hb{height:21.440000pt;}
.h7{height:28.560000pt;}
.h13{height:32.420000pt;}
.h17{height:39.243750pt;}
.h6{height:40.800000pt;}
.h3{height:42.840000pt;}
.h19{height:45.540000pt;}
.h2{height:48.960000pt;}
.h15{height:50.560000pt;}
.h1a{height:52.762500pt;}
.h14{height:52.770180pt;}
.h1b{height:54.180000pt;}
.h18{height:57.420000pt;}
.h12{height:57.787500pt;}
.h1c{height:62.812500pt;}
.h5{height:69.360000pt;}
.ha{height:72.862500pt;}
.h11{height:74.820000pt;}
.he{height:84.126875pt;}
.hc{height:84.168750pt;}
.hd{height:86.430000pt;}
.hf{height:96.346560pt;}
.h10{height:96.411840pt;}
.h4{height:105.826671pt;}
.h9{height:130.650000pt;}
.h16{height:267.581250pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:45.438667pt;}
.w5{width:505.600000pt;}
.w2{width:566.928019pt;}
.w4{width:793.333333pt;}
.w3{width:793.600000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x8{left:7.040000pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x12{left:132.160000pt;}
.x7{left:144.000000pt;}
.x11{left:151.039360pt;}
.x5{left:159.040000pt;}
.xf{left:169.920000pt;}
.xc{left:171.231360pt;}
.xb{left:177.942080pt;}
.xa{left:179.850240pt;}
.x4{left:180.874667pt;}
.x10{left:196.480000pt;}
.x17{left:249.600000pt;}
.xe{left:296.955520pt;}
.x13{left:306.240000pt;}
.xd{left:320.711040pt;}
.x6{left:325.760000pt;}
.x9{left:396.480000pt;}
.x3{left:404.408000pt;}
.x14{left:511.680000pt;}
.x16{left:642.245120pt;}
.x15{left:710.738560pt;}
}




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