
    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_641fb1cdd6b2ddff93bc4b50.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2672cede3d9e3974be3bc979.woff')format("woff");}.ff2{font-family:ff2;line-height:1.035156;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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_7ef4d88b5adbae4331a82045.woff')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_fe4b411ff5eb21cf33ce0afe.woff')format("woff");}.ff5{font-family:ff5;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_356d6be1c7010c3c881692e1.woff')format("woff");}.ff6{font-family:ff6;line-height:1.050293;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_783063dcbbea5564e16e5f67.woff')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_793080b72a9aa14bf42c0c9a.woff')format("woff");}.ff8{font-family:ff8;line-height:1.040039;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_8482b47977c8fd6217e41094.woff')format("woff");}.ff9{font-family:ff9;line-height:1.109375;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_17781c3c767bbff58d9c4859.woff')format("woff");}.ffa{font-family:ffa;line-height:1.150391;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_9a0db5e9a3cbe3f1537a3d37.woff')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_df31c73cfc251044476f9936.woff')format("woff");}.ffc{font-family:ffc;line-height:1.402354;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_468f680eb9f3da31519b6794.woff')format("woff");}.ffd{font-family:ffd;line-height:1.435059;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_4bfa46c69891adb05bd8322f.woff')format("woff");}.ffe{font-family:ffe;line-height:0.758789;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m2{transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-ms-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,0);-webkit-transform:matrix(0.237173,0.000000,-0.079050,0.237173,0,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);}
.v6{vertical-align:-30.240000px;}
.v5{vertical-align:-7.200000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:2.880000px;}
.v4{vertical-align:7.200000px;}
.v1{vertical-align:30.240000px;}
.lsc{letter-spacing:-25.380000px;}
.lsb{letter-spacing:-21.780000px;}
.ls29{letter-spacing:-19.620000px;}
.ls28{letter-spacing:-16.020000px;}
.ls2b{letter-spacing:-14.220000px;}
.ls26{letter-spacing:-9.540000px;}
.ls2f{letter-spacing:-0.690000px;}
.ls13{letter-spacing:-0.684000px;}
.ls34{letter-spacing:-0.398400px;}
.lsa{letter-spacing:-0.369600px;}
.ls6{letter-spacing:-0.360000px;}
.ls5{letter-spacing:-0.341400px;}
.ls4{letter-spacing:-0.180000px;}
.ls14{letter-spacing:-0.018720px;}
.ls18{letter-spacing:-0.009360px;}
.ls1{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.004320px;}
.ls0{letter-spacing:0.028080px;}
.ls1b{letter-spacing:0.037440px;}
.ls2e{letter-spacing:0.073440px;}
.ls1d{letter-spacing:0.106560px;}
.ls9{letter-spacing:0.180000px;}
.ls1c{letter-spacing:0.181440px;}
.ls15{letter-spacing:0.208080px;}
.ls21{letter-spacing:0.252720px;}
.ls12{letter-spacing:0.259920px;}
.ls33{letter-spacing:0.321600px;}
.ls32{letter-spacing:0.321840px;}
.ls16{letter-spacing:0.326880px;}
.ls1e{letter-spacing:0.341400px;}
.ls2{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.378600px;}
.ls25{letter-spacing:0.494640px;}
.lsd{letter-spacing:0.504000px;}
.ls10{letter-spacing:1.620000px;}
.ls22{letter-spacing:3.600000px;}
.ls7{letter-spacing:4.140000px;}
.ls19{letter-spacing:4.860000px;}
.ls20{letter-spacing:5.580000px;}
.ls1a{letter-spacing:8.460000px;}
.ls27{letter-spacing:9.900000px;}
.ls11{letter-spacing:10.980000px;}
.lsf{letter-spacing:12.060000px;}
.ls8{letter-spacing:14.196000px;}
.ls1f{letter-spacing:14.220000px;}
.ls23{letter-spacing:15.660000px;}
.ls24{letter-spacing:30.060000px;}
.ls2d{letter-spacing:32.220000px;}
.ls31{letter-spacing:50.220000px;}
.ls30{letter-spacing:50.940000px;}
.ls2c{letter-spacing:126.341280px;}
.lse{letter-spacing:168.077280px;}
.ls2a{letter-spacing:2024.220000px;}
.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:-24.300000px;}
.ws2{word-spacing:-21.438600px;}
.ws3{word-spacing:-21.420000px;}
.wsb{word-spacing:-21.401400px;}
.ws13{word-spacing:-21.381600px;}
.ws10{word-spacing:-21.312720px;}
.wsc{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.wsa{word-spacing:-21.050640px;}
.ws8{word-spacing:-21.041280px;}
.wsf{word-spacing:-20.880000px;}
.ws4{word-spacing:-20.718600px;}
.ws7{word-spacing:-20.700000px;}
.ws6{word-spacing:-20.690400px;}
.ws14{word-spacing:-20.661600px;}
.wse{word-spacing:-20.376000px;}
.ws12{word-spacing:-20.370000px;}
.ws11{word-spacing:-15.300000px;}
.ws9{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.580000px;}
.ws5{word-spacing:0.000000px;}
._3f{margin-left:-2911.246320px;}
._17{margin-left:-2909.149680px;}
._3e{margin-left:-2742.557760px;}
._35{margin-left:-2664.808800px;}
._38{margin-left:-2565.843120px;}
._40{margin-left:-2480.130720px;}
._4c{margin-left:-1998.370560px;}
._3b{margin-left:-1970.160480px;}
._42{margin-left:-1744.281360px;}
._2f{margin-left:-1505.229360px;}
._30{margin-left:-1503.826560px;}
._3a{margin-left:-1399.303680px;}
._22{margin-left:-1332.765360px;}
._49{margin-left:-960.768960px;}
._44{margin-left:-849.033600px;}
._23{margin-left:-683.674560px;}
._39{margin-left:-615.867120px;}
._2b{margin-left:-582.915360px;}
._2a{margin-left:-568.330560px;}
._41{margin-left:-439.320000px;}
._4b{margin-left:-371.984400px;}
._36{margin-left:-347.731200px;}
._2e{margin-left:-330.138240px;}
._2d{margin-left:-312.480000px;}
._31{margin-left:-261.657360px;}
._32{margin-left:-247.474080px;}
._37{margin-left:-229.140000px;}
._33{margin-left:-158.040000px;}
._47{margin-left:-155.703600px;}
._46{margin-left:-130.320000px;}
._2c{margin-left:-81.427680px;}
._48{margin-left:-74.131920px;}
._29{margin-left:-69.511680px;}
._3d{margin-left:-59.940000px;}
._45{margin-left:-50.371920px;}
._34{margin-left:-26.114400px;}
._16{margin-left:-25.088400px;}
._14{margin-left:-21.818160px;}
._43{margin-left:-18.869760px;}
._4a{margin-left:-16.787760px;}
._3c{margin-left:-11.340240px;}
._20{margin-left:-6.936480px;}
._5{margin-left:-5.896800px;}
._4{margin-left:-4.822320px;}
._6{margin-left:-3.029520px;}
._1{margin-left:-1.158720px;}
._2{width:1.038720px;}
._0{width:2.208000px;}
._b{width:3.361920px;}
._f{width:4.543680px;}
._9{width:5.812560px;}
._18{width:6.862080px;}
._a{width:7.880160px;}
._1c{width:8.944800px;}
._11{width:10.046880px;}
._19{width:11.087520px;}
._10{width:12.636000px;}
._12{width:13.696800px;}
._1a{width:15.691200px;}
._1b{width:16.922880px;}
._1d{width:18.170160px;}
._7{width:19.796400px;}
._15{width:21.600000px;}
._8{width:23.414880px;}
._13{width:25.251360px;}
._c{width:26.535600px;}
._d{width:28.596240px;}
._e{width:29.872800px;}
._1f{width:31.253040px;}
._26{width:32.749920px;}
._1e{width:33.759600px;}
._25{width:35.385600px;}
._3{width:37.402560px;}
._27{width:40.103040px;}
._28{width:41.256960px;}
._4d{width:42.774480px;}
._4f{width:46.480800px;}
._50{width:47.812080px;}
._4e{width:51.106080px;}
._21{width:705.169200px;}
._24{width:1332.017280px;}
.fc3{color:transparent;}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs5{font-size:38.880000px;}
.fs1{font-size:54.000000px;}
.fs6{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs7{font-size:88.795869px;}
.fs3{font-size:95.760000px;}
.y6{bottom:-6.480000px;}
.y0{bottom:0.000000px;}
.y3{bottom:3.960000px;}
.ya{bottom:5.220000px;}
.y9{bottom:7.380000px;}
.y4{bottom:16.020000px;}
.yb{bottom:16.380000px;}
.y2{bottom:24.660000px;}
.y8{bottom:44.640000px;}
.y48{bottom:88.236000px;}
.y47{bottom:93.456000px;}
.y6c{bottom:95.256000px;}
.y2d{bottom:104.976000px;}
.y54{bottom:105.336000px;}
.y46{bottom:106.776000px;}
.y5a{bottom:110.556000px;}
.y53{bottom:122.616000px;}
.y6b{bottom:122.976000px;}
.y59{bottom:123.876000px;}
.y5e{bottom:127.836000px;}
.y2c{bottom:132.696000px;}
.y52{bottom:139.896000px;}
.y5d{bottom:141.156000px;}
.y51{bottom:145.116000px;}
.y6a{bottom:150.870000px;}
.y50{bottom:157.170000px;}
.y69{bottom:158.430000px;}
.y2b{bottom:160.410000px;}
.y64{bottom:162.390000px;}
.y4f{bottom:174.450000px;}
.y56{bottom:178.590000px;}
.y63{bottom:179.670000px;}
.y2a{bottom:188.130000px;}
.y4e{bottom:191.730000px;}
.y62{bottom:192.990000px;}
.y55{bottom:206.310000px;}
.y4d{bottom:208.830000px;}
.y29{bottom:216.030000px;}
.y4c{bottom:226.110000px;}
.y45{bottom:234.030000px;}
.y4b{bottom:243.390000px;}
.y28{bottom:243.750000px;}
.y4a{bottom:248.610000px;}
.y44{bottom:261.930000px;}
.y27{bottom:271.470000px;}
.y43{bottom:289.650000px;}
.y68{bottom:297.210000px;}
.y26{bottom:299.370000px;}
.y42{bottom:317.370000px;}
.y41{bottom:324.930000px;}
.y25{bottom:327.090000px;}
.y40{bottom:345.135000px;}
.y24{bottom:354.855000px;}
.y3f{bottom:373.035000px;}
.y23{bottom:382.575000px;}
.y3e{bottom:400.755000px;}
.y67{bottom:408.315000px;}
.y22{bottom:410.475000px;}
.y3d{bottom:428.475000px;}
.y21{bottom:438.195000px;}
.y3c{bottom:456.375000px;}
.y5c{bottom:463.935000px;}
.y20{bottom:474.375000px;}
.y3b{bottom:484.095000px;}
.y1f{bottom:510.555000px;}
.y3a{bottom:511.815000px;}
.y39{bottom:539.535000px;}
.y1e{bottom:546.915000px;}
.y38{bottom:567.435000px;}
.y1d{bottom:583.095000px;}
.y37{bottom:595.155000px;}
.y1c{bottom:619.305000px;}
.y36{bottom:622.905000px;}
.y66{bottom:630.465000px;}
.y35{bottom:650.805000px;}
.y1b{bottom:655.485000px;}
.y34{bottom:678.525000px;}
.y1a{bottom:691.845000px;}
.y33{bottom:706.245000px;}
.y19{bottom:728.025000px;}
.y32{bottom:733.965000px;}
.y31{bottom:761.865000px;}
.y18{bottom:764.205000px;}
.y30{bottom:789.585000px;}
.y61{bottom:797.145000px;}
.y17{bottom:800.385000px;}
.y2f{bottom:817.305000px;}
.y65{bottom:824.865000px;}
.y16{bottom:836.745000px;}
.y2e{bottom:845.025000px;}
.y15{bottom:872.970000px;}
.y58{bottom:880.530000px;}
.y14{bottom:900.690000px;}
.y5b{bottom:908.250000px;}
.y13{bottom:928.410000px;}
.y60{bottom:935.970000px;}
.y12{bottom:956.310000px;}
.y11{bottom:984.030000px;}
.y10{bottom:1011.750000px;}
.yf{bottom:1039.470000px;}
.ye{bottom:1067.370000px;}
.y5f{bottom:1074.930000px;}
.yd{bottom:1095.090000px;}
.y57{bottom:1102.650000px;}
.yc{bottom:1122.810000px;}
.y49{bottom:1130.370000px;}
.y7{bottom:1146.240000px;}
.y5{bottom:1161.540000px;}
.y1{bottom:1178.820000px;}
.h5{height:6.480000px;}
.h7{height:27.576000px;}
.h11{height:38.158594px;}
.h2{height:41.400000px;}
.h15{height:49.868086px;}
.h18{height:52.436953px;}
.h10{height:52.998047px;}
.h4{height:53.709961px;}
.h13{height:54.421875px;}
.h12{height:58.651172px;}
.h6{height:66.757500px;}
.h19{height:69.432187px;}
.hc{height:70.295977px;}
.h8{height:70.664062px;}
.h3{height:72.562500px;}
.he{height:75.602109px;}
.hf{height:79.057266px;}
.h1a{height:79.690824px;}
.hd{height:82.635820px;}
.ha{height:82.676953px;}
.h17{height:82.802109px;}
.hb{height:84.898125px;}
.h14{height:86.585445px;}
.h16{height:87.695156px;}
.h9{height:96.508125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w6{width:63.756000px;}
.w3{width:68.616000px;}
.w2{width:760.830000px;}
.w5{width:765.690000px;}
.w7{width:892.979973px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.640000px;}
.xa{left:19.800000px;}
.x8{left:25.380000px;}
.x1{left:31.860000px;}
.x2{left:44.460000px;}
.x5{left:59.970000px;}
.x16{left:79.919987px;}
.x7{left:84.959987px;}
.x1a{left:89.855987px;}
.x18{left:91.835987px;}
.x17{left:105.155987px;}
.x15{left:117.035987px;}
.xc{left:123.515987px;}
.xb{left:127.475987px;}
.x3b{left:134.315987px;}
.x10{left:144.035987px;}
.x36{left:187.049987px;}
.x35{left:192.269973px;}
.x39{left:193.529987px;}
.xd{left:201.089987px;}
.x2f{left:210.269973px;}
.x23{left:215.669973px;}
.x27{left:216.749973px;}
.x25{left:220.889973px;}
.x24{left:222.509987px;}
.x28{left:223.589987px;}
.x21{left:225.029973px;}
.x26{left:227.729987px;}
.x2d{left:229.169973px;}
.x22{left:231.869987px;}
.x2e{left:236.009987px;}
.x3c{left:281.054987px;}
.x19{left:301.034987px;}
.x11{left:304.634987px;}
.x1b{left:343.514973px;}
.x1c{left:350.354987px;}
.xf{left:367.454987px;}
.x12{left:368.894987px;}
.x14{left:375.914987px;}
.x3d{left:383.114987px;}
.x13{left:389.234987px;}
.x38{left:434.594987px;}
.xe{left:446.474987px;}
.x1d{left:500.864973px;}
.x1e{left:507.704987px;}
.x3{left:530.205000px;}
.x29{left:551.084973px;}
.x2a{left:557.924987px;}
.x3a{left:576.824987px;}
.x37{left:591.224987px;}
.x1f{left:615.884973px;}
.x20{left:622.724987px;}
.x33{left:664.709987px;}
.x2b{left:672.269973px;}
.x2c{left:679.109987px;}
.x34{left:692.069987px;}
.x30{left:756.509987px;}
.x32{left:768.569987px;}
.x31{left:777.749987px;}
.x4{left:792.690000px;}
.x9{left:797.550000px;}
@media print{
.v6{vertical-align:-26.880000pt;}
.v5{vertical-align:-6.400000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:2.560000pt;}
.v4{vertical-align:6.400000pt;}
.v1{vertical-align:26.880000pt;}
.lsc{letter-spacing:-22.560000pt;}
.lsb{letter-spacing:-19.360000pt;}
.ls29{letter-spacing:-17.440000pt;}
.ls28{letter-spacing:-14.240000pt;}
.ls2b{letter-spacing:-12.640000pt;}
.ls26{letter-spacing:-8.480000pt;}
.ls2f{letter-spacing:-0.613333pt;}
.ls13{letter-spacing:-0.608000pt;}
.ls34{letter-spacing:-0.354133pt;}
.lsa{letter-spacing:-0.328533pt;}
.ls6{letter-spacing:-0.320000pt;}
.ls5{letter-spacing:-0.303467pt;}
.ls4{letter-spacing:-0.160000pt;}
.ls14{letter-spacing:-0.016640pt;}
.ls18{letter-spacing:-0.008320pt;}
.ls1{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.003840pt;}
.ls0{letter-spacing:0.024960pt;}
.ls1b{letter-spacing:0.033280pt;}
.ls2e{letter-spacing:0.065280pt;}
.ls1d{letter-spacing:0.094720pt;}
.ls9{letter-spacing:0.160000pt;}
.ls1c{letter-spacing:0.161280pt;}
.ls15{letter-spacing:0.184960pt;}
.ls21{letter-spacing:0.224640pt;}
.ls12{letter-spacing:0.231040pt;}
.ls33{letter-spacing:0.285867pt;}
.ls32{letter-spacing:0.286080pt;}
.ls16{letter-spacing:0.290560pt;}
.ls1e{letter-spacing:0.303467pt;}
.ls2{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.336533pt;}
.ls25{letter-spacing:0.439680pt;}
.lsd{letter-spacing:0.448000pt;}
.ls10{letter-spacing:1.440000pt;}
.ls22{letter-spacing:3.200000pt;}
.ls7{letter-spacing:3.680000pt;}
.ls19{letter-spacing:4.320000pt;}
.ls20{letter-spacing:4.960000pt;}
.ls1a{letter-spacing:7.520000pt;}
.ls27{letter-spacing:8.800000pt;}
.ls11{letter-spacing:9.760000pt;}
.lsf{letter-spacing:10.720000pt;}
.ls8{letter-spacing:12.618667pt;}
.ls1f{letter-spacing:12.640000pt;}
.ls23{letter-spacing:13.920000pt;}
.ls24{letter-spacing:26.720000pt;}
.ls2d{letter-spacing:28.640000pt;}
.ls31{letter-spacing:44.640000pt;}
.ls30{letter-spacing:45.280000pt;}
.ls2c{letter-spacing:112.303360pt;}
.lse{letter-spacing:149.402027pt;}
.ls2a{letter-spacing:1799.306667pt;}
.ws0{word-spacing:-21.600000pt;}
.ws2{word-spacing:-19.056533pt;}
.ws3{word-spacing:-19.040000pt;}
.wsb{word-spacing:-19.023467pt;}
.ws13{word-spacing:-19.005867pt;}
.ws10{word-spacing:-18.944640pt;}
.wsc{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.wsa{word-spacing:-18.711680pt;}
.ws8{word-spacing:-18.703360pt;}
.wsf{word-spacing:-18.560000pt;}
.ws4{word-spacing:-18.416533pt;}
.ws7{word-spacing:-18.400000pt;}
.ws6{word-spacing:-18.391467pt;}
.ws14{word-spacing:-18.365867pt;}
.wse{word-spacing:-18.112000pt;}
.ws12{word-spacing:-18.106667pt;}
.ws11{word-spacing:-13.600000pt;}
.ws9{word-spacing:-13.280000pt;}
.wsd{word-spacing:-12.960000pt;}
.ws5{word-spacing:0.000000pt;}
._3f{margin-left:-2587.774507pt;}
._17{margin-left:-2585.910827pt;}
._3e{margin-left:-2437.829120pt;}
._35{margin-left:-2368.718933pt;}
._38{margin-left:-2280.749440pt;}
._40{margin-left:-2204.560640pt;}
._4c{margin-left:-1776.329387pt;}
._3b{margin-left:-1751.253760pt;}
._42{margin-left:-1550.472320pt;}
._2f{margin-left:-1337.981653pt;}
._30{margin-left:-1336.734720pt;}
._3a{margin-left:-1243.825493pt;}
._22{margin-left:-1184.680320pt;}
._49{margin-left:-854.016853pt;}
._44{margin-left:-754.696533pt;}
._23{margin-left:-607.710720pt;}
._39{margin-left:-547.437440pt;}
._2b{margin-left:-518.146987pt;}
._2a{margin-left:-505.182720pt;}
._41{margin-left:-390.506667pt;}
._4b{margin-left:-330.652800pt;}
._36{margin-left:-309.094400pt;}
._2e{margin-left:-293.456213pt;}
._2d{margin-left:-277.760000pt;}
._31{margin-left:-232.584320pt;}
._32{margin-left:-219.976960pt;}
._37{margin-left:-203.680000pt;}
._33{margin-left:-140.480000pt;}
._47{margin-left:-138.403200pt;}
._46{margin-left:-115.840000pt;}
._2c{margin-left:-72.380160pt;}
._48{margin-left:-65.895040pt;}
._29{margin-left:-61.788160pt;}
._3d{margin-left:-53.280000pt;}
._45{margin-left:-44.775040pt;}
._34{margin-left:-23.212800pt;}
._16{margin-left:-22.300800pt;}
._14{margin-left:-19.393920pt;}
._43{margin-left:-16.773120pt;}
._4a{margin-left:-14.922453pt;}
._3c{margin-left:-10.080213pt;}
._20{margin-left:-6.165760pt;}
._5{margin-left:-5.241600pt;}
._4{margin-left:-4.286507pt;}
._6{margin-left:-2.692907pt;}
._1{margin-left:-1.029973pt;}
._2{width:0.923307pt;}
._0{width:1.962667pt;}
._b{width:2.988373pt;}
._f{width:4.038827pt;}
._9{width:5.166720pt;}
._18{width:6.099627pt;}
._a{width:7.004587pt;}
._1c{width:7.950933pt;}
._11{width:8.930560pt;}
._19{width:9.855573pt;}
._10{width:11.232000pt;}
._12{width:12.174933pt;}
._1a{width:13.947733pt;}
._1b{width:15.042560pt;}
._1d{width:16.151253pt;}
._7{width:17.596800pt;}
._15{width:19.200000pt;}
._8{width:20.813227pt;}
._13{width:22.445653pt;}
._c{width:23.587200pt;}
._d{width:25.418880pt;}
._e{width:26.553600pt;}
._1f{width:27.780480pt;}
._26{width:29.111040pt;}
._1e{width:30.008533pt;}
._25{width:31.453867pt;}
._3{width:33.246720pt;}
._27{width:35.647147pt;}
._28{width:36.672853pt;}
._4d{width:38.021760pt;}
._4f{width:41.316267pt;}
._50{width:42.499627pt;}
._4e{width:45.427627pt;}
._21{width:626.817067pt;}
._24{width:1184.015360pt;}
.fs5{font-size:34.560000pt;}
.fs1{font-size:48.000000pt;}
.fs6{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs7{font-size:78.929661pt;}
.fs3{font-size:85.120000pt;}
.y6{bottom:-5.760000pt;}
.y0{bottom:0.000000pt;}
.y3{bottom:3.520000pt;}
.ya{bottom:4.640000pt;}
.y9{bottom:6.560000pt;}
.y4{bottom:14.240000pt;}
.yb{bottom:14.560000pt;}
.y2{bottom:21.920000pt;}
.y8{bottom:39.680000pt;}
.y48{bottom:78.432000pt;}
.y47{bottom:83.072000pt;}
.y6c{bottom:84.672000pt;}
.y2d{bottom:93.312000pt;}
.y54{bottom:93.632000pt;}
.y46{bottom:94.912000pt;}
.y5a{bottom:98.272000pt;}
.y53{bottom:108.992000pt;}
.y6b{bottom:109.312000pt;}
.y59{bottom:110.112000pt;}
.y5e{bottom:113.632000pt;}
.y2c{bottom:117.952000pt;}
.y52{bottom:124.352000pt;}
.y5d{bottom:125.472000pt;}
.y51{bottom:128.992000pt;}
.y6a{bottom:134.106667pt;}
.y50{bottom:139.706667pt;}
.y69{bottom:140.826667pt;}
.y2b{bottom:142.586667pt;}
.y64{bottom:144.346667pt;}
.y4f{bottom:155.066667pt;}
.y56{bottom:158.746667pt;}
.y63{bottom:159.706667pt;}
.y2a{bottom:167.226667pt;}
.y4e{bottom:170.426667pt;}
.y62{bottom:171.546667pt;}
.y55{bottom:183.386667pt;}
.y4d{bottom:185.626667pt;}
.y29{bottom:192.026667pt;}
.y4c{bottom:200.986667pt;}
.y45{bottom:208.026667pt;}
.y4b{bottom:216.346667pt;}
.y28{bottom:216.666667pt;}
.y4a{bottom:220.986667pt;}
.y44{bottom:232.826667pt;}
.y27{bottom:241.306667pt;}
.y43{bottom:257.466667pt;}
.y68{bottom:264.186667pt;}
.y26{bottom:266.106667pt;}
.y42{bottom:282.106667pt;}
.y41{bottom:288.826667pt;}
.y25{bottom:290.746667pt;}
.y40{bottom:306.786667pt;}
.y24{bottom:315.426667pt;}
.y3f{bottom:331.586667pt;}
.y23{bottom:340.066667pt;}
.y3e{bottom:356.226667pt;}
.y67{bottom:362.946667pt;}
.y22{bottom:364.866667pt;}
.y3d{bottom:380.866667pt;}
.y21{bottom:389.506667pt;}
.y3c{bottom:405.666667pt;}
.y5c{bottom:412.386667pt;}
.y20{bottom:421.666667pt;}
.y3b{bottom:430.306667pt;}
.y1f{bottom:453.826667pt;}
.y3a{bottom:454.946667pt;}
.y39{bottom:479.586667pt;}
.y1e{bottom:486.146667pt;}
.y38{bottom:504.386667pt;}
.y1d{bottom:518.306667pt;}
.y37{bottom:529.026667pt;}
.y1c{bottom:550.493333pt;}
.y36{bottom:553.693333pt;}
.y66{bottom:560.413333pt;}
.y35{bottom:578.493333pt;}
.y1b{bottom:582.653333pt;}
.y34{bottom:603.133333pt;}
.y1a{bottom:614.973333pt;}
.y33{bottom:627.773333pt;}
.y19{bottom:647.133333pt;}
.y32{bottom:652.413333pt;}
.y31{bottom:677.213333pt;}
.y18{bottom:679.293333pt;}
.y30{bottom:701.853333pt;}
.y61{bottom:708.573333pt;}
.y17{bottom:711.453333pt;}
.y2f{bottom:726.493333pt;}
.y65{bottom:733.213333pt;}
.y16{bottom:743.773333pt;}
.y2e{bottom:751.133333pt;}
.y15{bottom:775.973333pt;}
.y58{bottom:782.693333pt;}
.y14{bottom:800.613333pt;}
.y5b{bottom:807.333333pt;}
.y13{bottom:825.253333pt;}
.y60{bottom:831.973333pt;}
.y12{bottom:850.053333pt;}
.y11{bottom:874.693333pt;}
.y10{bottom:899.333333pt;}
.yf{bottom:923.973333pt;}
.ye{bottom:948.773333pt;}
.y5f{bottom:955.493333pt;}
.yd{bottom:973.413333pt;}
.y57{bottom:980.133333pt;}
.yc{bottom:998.053333pt;}
.y49{bottom:1004.773333pt;}
.y7{bottom:1018.880000pt;}
.y5{bottom:1032.480000pt;}
.y1{bottom:1047.840000pt;}
.h5{height:5.760000pt;}
.h7{height:24.512000pt;}
.h11{height:33.918750pt;}
.h2{height:36.800000pt;}
.h15{height:44.327188pt;}
.h18{height:46.610625pt;}
.h10{height:47.109375pt;}
.h4{height:47.742188pt;}
.h13{height:48.375000pt;}
.h12{height:52.134375pt;}
.h6{height:59.340000pt;}
.h19{height:61.717500pt;}
.hc{height:62.485312pt;}
.h8{height:62.812500pt;}
.h3{height:64.500000pt;}
.he{height:67.201875pt;}
.hf{height:70.273125pt;}
.h1a{height:70.836288pt;}
.hd{height:73.454062pt;}
.ha{height:73.490625pt;}
.h17{height:73.601875pt;}
.hb{height:75.465000pt;}
.h14{height:76.964840pt;}
.h16{height:77.951250pt;}
.h9{height:85.785000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w6{width:56.672000pt;}
.w3{width:60.992000pt;}
.w2{width:676.293333pt;}
.w5{width:680.613333pt;}
.w7{width:793.759976pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.680000pt;}
.xa{left:17.600000pt;}
.x8{left:22.560000pt;}
.x1{left:28.320000pt;}
.x2{left:39.520000pt;}
.x5{left:53.306667pt;}
.x16{left:71.039988pt;}
.x7{left:75.519988pt;}
.x1a{left:79.871988pt;}
.x18{left:81.631988pt;}
.x17{left:93.471988pt;}
.x15{left:104.031988pt;}
.xc{left:109.791988pt;}
.xb{left:113.311988pt;}
.x3b{left:119.391988pt;}
.x10{left:128.031988pt;}
.x36{left:166.266655pt;}
.x35{left:170.906643pt;}
.x39{left:172.026655pt;}
.xd{left:178.746655pt;}
.x2f{left:186.906643pt;}
.x23{left:191.706643pt;}
.x27{left:192.666643pt;}
.x25{left:196.346643pt;}
.x24{left:197.786655pt;}
.x28{left:198.746655pt;}
.x21{left:200.026643pt;}
.x26{left:202.426655pt;}
.x2d{left:203.706643pt;}
.x22{left:206.106655pt;}
.x2e{left:209.786655pt;}
.x3c{left:249.826655pt;}
.x19{left:267.586655pt;}
.x11{left:270.786655pt;}
.x1b{left:305.346643pt;}
.x1c{left:311.426655pt;}
.xf{left:326.626655pt;}
.x12{left:327.906655pt;}
.x14{left:334.146655pt;}
.x3d{left:340.546655pt;}
.x13{left:345.986655pt;}
.x38{left:386.306655pt;}
.xe{left:396.866655pt;}
.x1d{left:445.213310pt;}
.x1e{left:451.293322pt;}
.x3{left:471.293333pt;}
.x29{left:489.853310pt;}
.x2a{left:495.933322pt;}
.x3a{left:512.733322pt;}
.x37{left:525.533322pt;}
.x1f{left:547.453310pt;}
.x20{left:553.533322pt;}
.x33{left:590.853322pt;}
.x2b{left:597.573310pt;}
.x2c{left:603.653322pt;}
.x34{left:615.173322pt;}
.x30{left:672.453322pt;}
.x32{left:683.173322pt;}
.x31{left:691.333322pt;}
.x4{left:704.613333pt;}
.x9{left:708.933333pt;}
}




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