
    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_2d6b04b475de00191b10a2e7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.236000;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_7502791349c2374b48e1a9fe.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.842285;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_1cb6871e2225a0257e132cb9.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893000;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_19e07a0134f24be884330e03.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.149000;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_e022bc84ada34ed328e09af8.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.119000;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_924500bc1fa9d9debea95888.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.010000;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_d4c6a890f00958dc8ba87092.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.020000;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_eb2bac4bd74078645ac381bb.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.008000;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_f922565ada4c1c70ac53ac1c.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.010000;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_09f4a2929363a00191f6c249.woff2')format("woff");}.ffb{font-family:ffb;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,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);}
.v3{vertical-align:-17.982000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:18.981000px;}
.v1{vertical-align:20.979600px;}
.ls8{letter-spacing:-3.150000px;}
.ls2{letter-spacing:-2.268000px;}
.ls3{letter-spacing:-1.260000px;}
.lsa{letter-spacing:-1.008000px;}
.lsc{letter-spacing:-0.882000px;}
.lsd{letter-spacing:-0.252000px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.252000px;}
.ls5{letter-spacing:0.376800px;}
.ls6{letter-spacing:0.459000px;}
.ls4{letter-spacing:0.630000px;}
.ls7{letter-spacing:0.756000px;}
.ls1{letter-spacing:1.260000px;}
.lsb{letter-spacing:40.932000px;}
.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:-46.800000px;}
.ws10{word-spacing:-21.600000px;}
.ws56{word-spacing:-16.506000px;}
.ws12{word-spacing:-15.498000px;}
.ws11{word-spacing:-15.246000px;}
.ws2a{word-spacing:-14.868000px;}
.ws13{word-spacing:-14.238000px;}
.ws42{word-spacing:-13.068000px;}
.ws14{word-spacing:-12.978000px;}
.ws57{word-spacing:-12.204000px;}
.ws3f{word-spacing:-12.096000px;}
.ws3e{word-spacing:-9.147600px;}
.ws40{word-spacing:-8.276400px;}
.ws41{word-spacing:-7.840800px;}
.ws34{word-spacing:-2.835000px;}
.ws1f{word-spacing:-2.772000px;}
.ws2{word-spacing:-2.641703px;}
.ws27{word-spacing:-2.394000px;}
.ws5d{word-spacing:-1.890000px;}
.ws22{word-spacing:-1.701000px;}
.ws37{word-spacing:-1.575000px;}
.ws2d{word-spacing:-1.512000px;}
.ws46{word-spacing:-1.449000px;}
.ws36{word-spacing:-1.386000px;}
.ws59{word-spacing:-1.323000px;}
.ws53{word-spacing:-1.296000px;}
.wsf{word-spacing:-1.197000px;}
.ws48{word-spacing:-1.071000px;}
.ws18{word-spacing:-1.008000px;}
.ws3b{word-spacing:-0.945000px;}
.wse{word-spacing:-0.882000px;}
.wsd{word-spacing:-0.756000px;}
.ws45{word-spacing:-0.693000px;}
.ws17{word-spacing:-0.630000px;}
.ws31{word-spacing:-0.504000px;}
.ws15{word-spacing:-0.441000px;}
.ws29{word-spacing:-0.378000px;}
.ws51{word-spacing:-0.252000px;}
.ws60{word-spacing:-0.216000px;}
.wsc{word-spacing:-0.189000px;}
.ws1{word-spacing:0.000000px;}
.ws5f{word-spacing:0.057000px;}
.ws1b{word-spacing:0.063000px;}
.ws5e{word-spacing:0.126000px;}
.ws5c{word-spacing:0.252000px;}
.ws35{word-spacing:0.315000px;}
.ws1e{word-spacing:0.378000px;}
.ws1a{word-spacing:0.441000px;}
.ws1d{word-spacing:0.504000px;}
.ws5a{word-spacing:0.693000px;}
.ws8{word-spacing:0.756000px;}
.ws33{word-spacing:0.819000px;}
.ws62{word-spacing:0.945000px;}
.ws52{word-spacing:1.008000px;}
.ws4f{word-spacing:1.254000px;}
.ws6{word-spacing:1.260000px;}
.ws16{word-spacing:1.323000px;}
.ws26{word-spacing:1.386000px;}
.ws63{word-spacing:1.449000px;}
.ws24{word-spacing:1.575000px;}
.ws23{word-spacing:1.701000px;}
.ws49{word-spacing:1.827000px;}
.wsb{word-spacing:1.890000px;}
.ws65{word-spacing:1.953000px;}
.ws4d{word-spacing:2.016000px;}
.ws19{word-spacing:2.205000px;}
.ws20{word-spacing:2.268000px;}
.ws21{word-spacing:2.331000px;}
.ws5{word-spacing:2.394000px;}
.ws3d{word-spacing:2.457000px;}
.ws5b{word-spacing:2.583000px;}
.ws4a{word-spacing:2.646000px;}
.ws44{word-spacing:2.709000px;}
.ws58{word-spacing:2.772000px;}
.ws3c{word-spacing:2.835000px;}
.ws47{word-spacing:2.898000px;}
.ws7{word-spacing:3.087000px;}
.ws4b{word-spacing:3.135000px;}
.ws4{word-spacing:3.276000px;}
.ws39{word-spacing:3.465000px;}
.ws1c{word-spacing:3.528000px;}
.wsa{word-spacing:3.780000px;}
.ws30{word-spacing:3.843000px;}
.ws3{word-spacing:3.969000px;}
.ws4c{word-spacing:4.161000px;}
.ws9{word-spacing:4.221000px;}
.ws28{word-spacing:4.284000px;}
.ws25{word-spacing:4.599000px;}
.ws64{word-spacing:4.725000px;}
.ws3a{word-spacing:5.040000px;}
.ws2c{word-spacing:5.355000px;}
.ws43{word-spacing:5.418000px;}
.ws2e{word-spacing:5.544000px;}
.ws2f{word-spacing:6.048000px;}
.ws38{word-spacing:6.426000px;}
.ws2b{word-spacing:6.993000px;}
.ws4e{word-spacing:7.056000px;}
.ws32{word-spacing:7.623000px;}
.ws50{word-spacing:8.505000px;}
.ws55{word-spacing:88.620000px;}
.ws54{word-spacing:245.931000px;}
.ws61{word-spacing:1276.494600px;}
._3{margin-left:-23.400000px;}
._4{margin-left:-15.615600px;}
._6{margin-left:-14.040000px;}
._d{margin-left:-10.200000px;}
._12{margin-left:-9.000000px;}
._7{margin-left:-7.815600px;}
._13{margin-left:-6.719700px;}
._c{margin-left:-5.646300px;}
._a{margin-left:-3.936000px;}
._2{margin-left:-2.340000px;}
._0{margin-left:-1.177800px;}
._9{width:1.974600px;}
._11{width:3.283500px;}
._5{width:4.680000px;}
._b{width:6.494100px;}
._8{width:7.736400px;}
._15{width:40.932000px;}
._10{width:41.998200px;}
._14{width:50.767200px;}
._e{width:72.066600px;}
._16{width:97.449000px;}
._1{width:382.675800px;}
._f{width:1035.123000px;}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:32.400000px;}
.fsb{font-size:34.200000px;}
.fsa{font-size:37.800000px;}
.fsd{font-size:54.000000px;}
.fs8{font-size:57.000000px;}
.fs9{font-size:60.000000px;}
.fs6{font-size:63.000000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:78.000000px;}
.fs2{font-size:91.093200px;}
.fs5{font-size:96.000000px;}
.fs7{font-size:102.000000px;}
.fs4{font-size:156.000000px;}
.fs1{font-size:411.607800px;}
.y0{bottom:0.000000px;}
.y1{bottom:45.510300px;}
.y70{bottom:106.135050px;}
.y4e{bottom:106.136550px;}
.y7d{bottom:106.299300px;}
.y20{bottom:107.074050px;}
.yc2{bottom:110.794800px;}
.ya0{bottom:110.794950px;}
.y6f{bottom:128.635050px;}
.y4d{bottom:128.636550px;}
.y1f{bottom:129.574050px;}
.y7c{bottom:130.294800px;}
.y9f{bottom:130.295100px;}
.y7b{bottom:149.794800px;}
.y6e{bottom:151.135050px;}
.y4c{bottom:151.136550px;}
.y1e{bottom:152.074050px;}
.y7a{bottom:169.294800px;}
.yc1{bottom:169.453650px;}
.y6d{bottom:173.635050px;}
.y4b{bottom:173.636550px;}
.y1d{bottom:174.574050px;}
.yc0{bottom:191.953650px;}
.y6c{bottom:196.135050px;}
.y4a{bottom:196.136550px;}
.y1c{bottom:197.074050px;}
.y9e{bottom:201.864450px;}
.ybf{bottom:214.453650px;}
.y6b{bottom:218.635050px;}
.y49{bottom:218.636550px;}
.y1b{bottom:219.574050px;}
.y9d{bottom:224.364450px;}
.ybe{bottom:236.953650px;}
.y79{bottom:241.133700px;}
.y6a{bottom:241.135050px;}
.y48{bottom:241.136550px;}
.y1a{bottom:242.074050px;}
.y9c{bottom:246.864450px;}
.ybd{bottom:259.453650px;}
.y78{bottom:263.633700px;}
.y69{bottom:263.635050px;}
.y47{bottom:263.636550px;}
.y19{bottom:264.574050px;}
.ybc{bottom:281.953650px;}
.y68{bottom:286.135050px;}
.y46{bottom:286.136550px;}
.y18{bottom:287.074050px;}
.y9b{bottom:291.865800px;}
.ybb{bottom:304.453650px;}
.y67{bottom:308.635050px;}
.y77{bottom:308.635200px;}
.y45{bottom:308.636550px;}
.y17{bottom:309.574050px;}
.y9a{bottom:314.365800px;}
.yba{bottom:326.953650px;}
.y66{bottom:331.135050px;}
.y76{bottom:331.135200px;}
.y44{bottom:331.136550px;}
.y16{bottom:332.074050px;}
.y99{bottom:336.865800px;}
.yb9{bottom:349.453650px;}
.y65{bottom:353.635050px;}
.y75{bottom:353.635200px;}
.y43{bottom:353.636550px;}
.y15{bottom:354.574050px;}
.y98{bottom:359.365800px;}
.yb8{bottom:371.953650px;}
.y64{bottom:376.135050px;}
.y74{bottom:376.135200px;}
.y42{bottom:376.136550px;}
.y14{bottom:377.074050px;}
.y97{bottom:381.865800px;}
.yb7{bottom:394.453650px;}
.y63{bottom:398.635050px;}
.y41{bottom:398.636550px;}
.y13{bottom:399.574050px;}
.y96{bottom:404.365800px;}
.yb6{bottom:416.953650px;}
.y62{bottom:421.135050px;}
.y73{bottom:421.135200px;}
.y40{bottom:421.136550px;}
.y12{bottom:422.074050px;}
.y95{bottom:426.865800px;}
.yb5{bottom:439.453650px;}
.y61{bottom:443.635050px;}
.y72{bottom:443.635200px;}
.y3f{bottom:443.636550px;}
.y11{bottom:444.574050px;}
.yb4{bottom:461.953650px;}
.y60{bottom:466.135050px;}
.y71{bottom:466.135200px;}
.y3e{bottom:466.136550px;}
.y10{bottom:467.074050px;}
.y94{bottom:471.865800px;}
.yb3{bottom:484.453650px;}
.y5f{bottom:488.635050px;}
.y3d{bottom:488.636550px;}
.yf{bottom:489.574050px;}
.y93{bottom:494.365800px;}
.yb2{bottom:506.953650px;}
.y5e{bottom:511.135050px;}
.y3c{bottom:511.136550px;}
.ye{bottom:512.074050px;}
.y92{bottom:516.865800px;}
.yb1{bottom:529.453650px;}
.y5d{bottom:533.635050px;}
.y3b{bottom:533.636550px;}
.yd{bottom:534.574050px;}
.y91{bottom:539.365800px;}
.y5c{bottom:556.135050px;}
.y3a{bottom:556.136550px;}
.yc{bottom:557.074050px;}
.y90{bottom:578.365800px;}
.y5b{bottom:578.635050px;}
.y39{bottom:578.636550px;}
.yb{bottom:579.574050px;}
.yb0{bottom:590.953650px;}
.y8f{bottom:600.865800px;}
.y5a{bottom:601.135050px;}
.y38{bottom:601.136550px;}
.ya{bottom:602.074050px;}
.yaf{bottom:613.453650px;}
.y59{bottom:623.635050px;}
.y37{bottom:623.636550px;}
.y8e{bottom:631.840800px;}
.yae{bottom:635.953650px;}
.y58{bottom:646.135050px;}
.y36{bottom:646.136550px;}
.y21{bottom:652.694700px;}
.y8d{bottom:653.803050px;}
.y57{bottom:668.635050px;}
.y35{bottom:668.636550px;}
.y9{bottom:671.345700px;}
.y8c{bottom:676.303050px;}
.yad{bottom:680.953650px;}
.y56{bottom:691.135050px;}
.y34{bottom:691.136550px;}
.y8b{bottom:698.803050px;}
.yac{bottom:703.453650px;}
.y55{bottom:713.635050px;}
.y33{bottom:713.636550px;}
.y8a{bottom:721.303050px;}
.yab{bottom:725.953650px;}
.y8{bottom:726.857550px;}
.y54{bottom:736.135050px;}
.y32{bottom:736.136550px;}
.y89{bottom:746.578050px;}
.yaa{bottom:748.453650px;}
.y53{bottom:758.635050px;}
.y31{bottom:758.636550px;}
.y7{bottom:768.857550px;}
.y88{bottom:769.078050px;}
.ya9{bottom:770.953650px;}
.y52{bottom:781.135050px;}
.y30{bottom:781.136550px;}
.y87{bottom:791.578050px;}
.ya8{bottom:793.453650px;}
.y51{bottom:803.635050px;}
.y2f{bottom:803.636550px;}
.y6{bottom:810.857550px;}
.y86{bottom:814.078050px;}
.ya7{bottom:815.953650px;}
.y50{bottom:826.135050px;}
.y2e{bottom:826.136550px;}
.y85{bottom:840.853050px;}
.y4f{bottom:848.635050px;}
.y2d{bottom:848.636550px;}
.y5{bottom:852.857550px;}
.ya6{bottom:860.953650px;}
.y84{bottom:867.178050px;}
.y2c{bottom:871.136550px;}
.ya5{bottom:883.453650px;}
.y83{bottom:889.678050px;}
.y2b{bottom:893.636400px;}
.ya4{bottom:905.953650px;}
.y82{bottom:913.903050px;}
.y2a{bottom:916.136400px;}
.ya3{bottom:928.453650px;}
.y81{bottom:936.403050px;}
.y29{bottom:938.636400px;}
.ya2{bottom:950.953650px;}
.y80{bottom:958.903050px;}
.y28{bottom:961.136400px;}
.y4{bottom:961.189500px;}
.ya1{bottom:973.453650px;}
.y7f{bottom:981.403050px;}
.y27{bottom:983.636400px;}
.y3{bottom:993.257550px;}
.y26{bottom:1006.136400px;}
.y7e{bottom:1008.178050px;}
.y2{bottom:1008.672450px;}
.y25{bottom:1028.636400px;}
.y24{bottom:1051.136400px;}
.y23{bottom:1073.636400px;}
.y22{bottom:1138.056450px;}
.he{height:30.402000px;}
.hb{height:44.460000px;}
.h10{height:48.321000px;}
.hf{height:48.384000px;}
.hd{height:49.362000px;}
.hc{height:51.072000px;}
.h9{height:54.558000px;}
.h8{height:56.448000px;}
.h5{height:56.706000px;}
.h4{height:71.789270px;}
.h2{height:72.000000px;}
.h7{height:96.000000px;}
.ha{height:102.000000px;}
.h6{height:156.000000px;}
.h3{height:324.382319px;}
.h1{height:1190.250000px;}
.h0{height:1190.551500px;}
.w0{width:850.393500px;}
.w1{width:850.500000px;}
.x0{left:0.000000px;}
.x6{left:63.779550px;}
.x4{left:85.039350px;}
.x8{left:106.299150px;}
.x9{left:172.714350px;}
.x7{left:186.980700px;}
.x2{left:193.464600px;}
.x3{left:195.975000px;}
.xa{left:435.098700px;}
.x1{left:801.512100px;}
.x5{left:827.428950px;}
@media print{
.v3{vertical-align:-15.984000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.872000pt;}
.v1{vertical-align:18.648533pt;}
.ls8{letter-spacing:-2.800000pt;}
.ls2{letter-spacing:-2.016000pt;}
.ls3{letter-spacing:-1.120000pt;}
.lsa{letter-spacing:-0.896000pt;}
.lsc{letter-spacing:-0.784000pt;}
.lsd{letter-spacing:-0.224000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.224000pt;}
.ls5{letter-spacing:0.334933pt;}
.ls6{letter-spacing:0.408000pt;}
.ls4{letter-spacing:0.560000pt;}
.ls7{letter-spacing:0.672000pt;}
.ls1{letter-spacing:1.120000pt;}
.lsb{letter-spacing:36.384000pt;}
.ws0{word-spacing:-41.600000pt;}
.ws10{word-spacing:-19.200000pt;}
.ws56{word-spacing:-14.672000pt;}
.ws12{word-spacing:-13.776000pt;}
.ws11{word-spacing:-13.552000pt;}
.ws2a{word-spacing:-13.216000pt;}
.ws13{word-spacing:-12.656000pt;}
.ws42{word-spacing:-11.616000pt;}
.ws14{word-spacing:-11.536000pt;}
.ws57{word-spacing:-10.848000pt;}
.ws3f{word-spacing:-10.752000pt;}
.ws3e{word-spacing:-8.131200pt;}
.ws40{word-spacing:-7.356800pt;}
.ws41{word-spacing:-6.969600pt;}
.ws34{word-spacing:-2.520000pt;}
.ws1f{word-spacing:-2.464000pt;}
.ws2{word-spacing:-2.348180pt;}
.ws27{word-spacing:-2.128000pt;}
.ws5d{word-spacing:-1.680000pt;}
.ws22{word-spacing:-1.512000pt;}
.ws37{word-spacing:-1.400000pt;}
.ws2d{word-spacing:-1.344000pt;}
.ws46{word-spacing:-1.288000pt;}
.ws36{word-spacing:-1.232000pt;}
.ws59{word-spacing:-1.176000pt;}
.ws53{word-spacing:-1.152000pt;}
.wsf{word-spacing:-1.064000pt;}
.ws48{word-spacing:-0.952000pt;}
.ws18{word-spacing:-0.896000pt;}
.ws3b{word-spacing:-0.840000pt;}
.wse{word-spacing:-0.784000pt;}
.wsd{word-spacing:-0.672000pt;}
.ws45{word-spacing:-0.616000pt;}
.ws17{word-spacing:-0.560000pt;}
.ws31{word-spacing:-0.448000pt;}
.ws15{word-spacing:-0.392000pt;}
.ws29{word-spacing:-0.336000pt;}
.ws51{word-spacing:-0.224000pt;}
.ws60{word-spacing:-0.192000pt;}
.wsc{word-spacing:-0.168000pt;}
.ws1{word-spacing:0.000000pt;}
.ws5f{word-spacing:0.050667pt;}
.ws1b{word-spacing:0.056000pt;}
.ws5e{word-spacing:0.112000pt;}
.ws5c{word-spacing:0.224000pt;}
.ws35{word-spacing:0.280000pt;}
.ws1e{word-spacing:0.336000pt;}
.ws1a{word-spacing:0.392000pt;}
.ws1d{word-spacing:0.448000pt;}
.ws5a{word-spacing:0.616000pt;}
.ws8{word-spacing:0.672000pt;}
.ws33{word-spacing:0.728000pt;}
.ws62{word-spacing:0.840000pt;}
.ws52{word-spacing:0.896000pt;}
.ws4f{word-spacing:1.114667pt;}
.ws6{word-spacing:1.120000pt;}
.ws16{word-spacing:1.176000pt;}
.ws26{word-spacing:1.232000pt;}
.ws63{word-spacing:1.288000pt;}
.ws24{word-spacing:1.400000pt;}
.ws23{word-spacing:1.512000pt;}
.ws49{word-spacing:1.624000pt;}
.wsb{word-spacing:1.680000pt;}
.ws65{word-spacing:1.736000pt;}
.ws4d{word-spacing:1.792000pt;}
.ws19{word-spacing:1.960000pt;}
.ws20{word-spacing:2.016000pt;}
.ws21{word-spacing:2.072000pt;}
.ws5{word-spacing:2.128000pt;}
.ws3d{word-spacing:2.184000pt;}
.ws5b{word-spacing:2.296000pt;}
.ws4a{word-spacing:2.352000pt;}
.ws44{word-spacing:2.408000pt;}
.ws58{word-spacing:2.464000pt;}
.ws3c{word-spacing:2.520000pt;}
.ws47{word-spacing:2.576000pt;}
.ws7{word-spacing:2.744000pt;}
.ws4b{word-spacing:2.786667pt;}
.ws4{word-spacing:2.912000pt;}
.ws39{word-spacing:3.080000pt;}
.ws1c{word-spacing:3.136000pt;}
.wsa{word-spacing:3.360000pt;}
.ws30{word-spacing:3.416000pt;}
.ws3{word-spacing:3.528000pt;}
.ws4c{word-spacing:3.698667pt;}
.ws9{word-spacing:3.752000pt;}
.ws28{word-spacing:3.808000pt;}
.ws25{word-spacing:4.088000pt;}
.ws64{word-spacing:4.200000pt;}
.ws3a{word-spacing:4.480000pt;}
.ws2c{word-spacing:4.760000pt;}
.ws43{word-spacing:4.816000pt;}
.ws2e{word-spacing:4.928000pt;}
.ws2f{word-spacing:5.376000pt;}
.ws38{word-spacing:5.712000pt;}
.ws2b{word-spacing:6.216000pt;}
.ws4e{word-spacing:6.272000pt;}
.ws32{word-spacing:6.776000pt;}
.ws50{word-spacing:7.560000pt;}
.ws55{word-spacing:78.773333pt;}
.ws54{word-spacing:218.605333pt;}
.ws61{word-spacing:1134.661867pt;}
._3{margin-left:-20.800000pt;}
._4{margin-left:-13.880533pt;}
._6{margin-left:-12.480000pt;}
._d{margin-left:-9.066667pt;}
._12{margin-left:-8.000000pt;}
._7{margin-left:-6.947200pt;}
._13{margin-left:-5.973067pt;}
._c{margin-left:-5.018933pt;}
._a{margin-left:-3.498667pt;}
._2{margin-left:-2.080000pt;}
._0{margin-left:-1.046933pt;}
._9{width:1.755200pt;}
._11{width:2.918667pt;}
._5{width:4.160000pt;}
._b{width:5.772533pt;}
._8{width:6.876800pt;}
._15{width:36.384000pt;}
._10{width:37.331733pt;}
._14{width:45.126400pt;}
._e{width:64.059200pt;}
._16{width:86.621333pt;}
._1{width:340.156267pt;}
._f{width:920.109333pt;}
.fsc{font-size:28.800000pt;}
.fsb{font-size:30.400000pt;}
.fsa{font-size:33.600000pt;}
.fsd{font-size:48.000000pt;}
.fs8{font-size:50.666667pt;}
.fs9{font-size:53.333333pt;}
.fs6{font-size:56.000000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:69.333333pt;}
.fs2{font-size:80.971733pt;}
.fs5{font-size:85.333333pt;}
.fs7{font-size:90.666667pt;}
.fs4{font-size:138.666667pt;}
.fs1{font-size:365.873600pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:40.453600pt;}
.y70{bottom:94.342267pt;}
.y4e{bottom:94.343600pt;}
.y7d{bottom:94.488267pt;}
.y20{bottom:95.176933pt;}
.yc2{bottom:98.484267pt;}
.ya0{bottom:98.484400pt;}
.y6f{bottom:114.342267pt;}
.y4d{bottom:114.343600pt;}
.y1f{bottom:115.176933pt;}
.y7c{bottom:115.817600pt;}
.y9f{bottom:115.817867pt;}
.y7b{bottom:133.150933pt;}
.y6e{bottom:134.342267pt;}
.y4c{bottom:134.343600pt;}
.y1e{bottom:135.176933pt;}
.y7a{bottom:150.484267pt;}
.yc1{bottom:150.625467pt;}
.y6d{bottom:154.342267pt;}
.y4b{bottom:154.343600pt;}
.y1d{bottom:155.176933pt;}
.yc0{bottom:170.625467pt;}
.y6c{bottom:174.342267pt;}
.y4a{bottom:174.343600pt;}
.y1c{bottom:175.176933pt;}
.y9e{bottom:179.435067pt;}
.ybf{bottom:190.625467pt;}
.y6b{bottom:194.342267pt;}
.y49{bottom:194.343600pt;}
.y1b{bottom:195.176933pt;}
.y9d{bottom:199.435067pt;}
.ybe{bottom:210.625467pt;}
.y79{bottom:214.341067pt;}
.y6a{bottom:214.342267pt;}
.y48{bottom:214.343600pt;}
.y1a{bottom:215.176933pt;}
.y9c{bottom:219.435067pt;}
.ybd{bottom:230.625467pt;}
.y78{bottom:234.341067pt;}
.y69{bottom:234.342267pt;}
.y47{bottom:234.343600pt;}
.y19{bottom:235.176933pt;}
.ybc{bottom:250.625467pt;}
.y68{bottom:254.342267pt;}
.y46{bottom:254.343600pt;}
.y18{bottom:255.176933pt;}
.y9b{bottom:259.436267pt;}
.ybb{bottom:270.625467pt;}
.y67{bottom:274.342267pt;}
.y77{bottom:274.342400pt;}
.y45{bottom:274.343600pt;}
.y17{bottom:275.176933pt;}
.y9a{bottom:279.436267pt;}
.yba{bottom:290.625467pt;}
.y66{bottom:294.342267pt;}
.y76{bottom:294.342400pt;}
.y44{bottom:294.343600pt;}
.y16{bottom:295.176933pt;}
.y99{bottom:299.436267pt;}
.yb9{bottom:310.625467pt;}
.y65{bottom:314.342267pt;}
.y75{bottom:314.342400pt;}
.y43{bottom:314.343600pt;}
.y15{bottom:315.176933pt;}
.y98{bottom:319.436267pt;}
.yb8{bottom:330.625467pt;}
.y64{bottom:334.342267pt;}
.y74{bottom:334.342400pt;}
.y42{bottom:334.343600pt;}
.y14{bottom:335.176933pt;}
.y97{bottom:339.436267pt;}
.yb7{bottom:350.625467pt;}
.y63{bottom:354.342267pt;}
.y41{bottom:354.343600pt;}
.y13{bottom:355.176933pt;}
.y96{bottom:359.436267pt;}
.yb6{bottom:370.625467pt;}
.y62{bottom:374.342267pt;}
.y73{bottom:374.342400pt;}
.y40{bottom:374.343600pt;}
.y12{bottom:375.176933pt;}
.y95{bottom:379.436267pt;}
.yb5{bottom:390.625467pt;}
.y61{bottom:394.342267pt;}
.y72{bottom:394.342400pt;}
.y3f{bottom:394.343600pt;}
.y11{bottom:395.176933pt;}
.yb4{bottom:410.625467pt;}
.y60{bottom:414.342267pt;}
.y71{bottom:414.342400pt;}
.y3e{bottom:414.343600pt;}
.y10{bottom:415.176933pt;}
.y94{bottom:419.436267pt;}
.yb3{bottom:430.625467pt;}
.y5f{bottom:434.342267pt;}
.y3d{bottom:434.343600pt;}
.yf{bottom:435.176933pt;}
.y93{bottom:439.436267pt;}
.yb2{bottom:450.625467pt;}
.y5e{bottom:454.342267pt;}
.y3c{bottom:454.343600pt;}
.ye{bottom:455.176933pt;}
.y92{bottom:459.436267pt;}
.yb1{bottom:470.625467pt;}
.y5d{bottom:474.342267pt;}
.y3b{bottom:474.343600pt;}
.yd{bottom:475.176933pt;}
.y91{bottom:479.436267pt;}
.y5c{bottom:494.342267pt;}
.y3a{bottom:494.343600pt;}
.yc{bottom:495.176933pt;}
.y90{bottom:514.102933pt;}
.y5b{bottom:514.342267pt;}
.y39{bottom:514.343600pt;}
.yb{bottom:515.176933pt;}
.yb0{bottom:525.292133pt;}
.y8f{bottom:534.102933pt;}
.y5a{bottom:534.342267pt;}
.y38{bottom:534.343600pt;}
.ya{bottom:535.176933pt;}
.yaf{bottom:545.292133pt;}
.y59{bottom:554.342267pt;}
.y37{bottom:554.343600pt;}
.y8e{bottom:561.636267pt;}
.yae{bottom:565.292133pt;}
.y58{bottom:574.342267pt;}
.y36{bottom:574.343600pt;}
.y21{bottom:580.173067pt;}
.y8d{bottom:581.158267pt;}
.y57{bottom:594.342267pt;}
.y35{bottom:594.343600pt;}
.y9{bottom:596.751733pt;}
.y8c{bottom:601.158267pt;}
.yad{bottom:605.292133pt;}
.y56{bottom:614.342267pt;}
.y34{bottom:614.343600pt;}
.y8b{bottom:621.158267pt;}
.yac{bottom:625.292133pt;}
.y55{bottom:634.342267pt;}
.y33{bottom:634.343600pt;}
.y8a{bottom:641.158267pt;}
.yab{bottom:645.292133pt;}
.y8{bottom:646.095600pt;}
.y54{bottom:654.342267pt;}
.y32{bottom:654.343600pt;}
.y89{bottom:663.624933pt;}
.yaa{bottom:665.292133pt;}
.y53{bottom:674.342267pt;}
.y31{bottom:674.343600pt;}
.y7{bottom:683.428933pt;}
.y88{bottom:683.624933pt;}
.ya9{bottom:685.292133pt;}
.y52{bottom:694.342267pt;}
.y30{bottom:694.343600pt;}
.y87{bottom:703.624933pt;}
.ya8{bottom:705.292133pt;}
.y51{bottom:714.342267pt;}
.y2f{bottom:714.343600pt;}
.y6{bottom:720.762267pt;}
.y86{bottom:723.624933pt;}
.ya7{bottom:725.292133pt;}
.y50{bottom:734.342267pt;}
.y2e{bottom:734.343600pt;}
.y85{bottom:747.424933pt;}
.y4f{bottom:754.342267pt;}
.y2d{bottom:754.343600pt;}
.y5{bottom:758.095600pt;}
.ya6{bottom:765.292133pt;}
.y84{bottom:770.824933pt;}
.y2c{bottom:774.343600pt;}
.ya5{bottom:785.292133pt;}
.y83{bottom:790.824933pt;}
.y2b{bottom:794.343467pt;}
.ya4{bottom:805.292133pt;}
.y82{bottom:812.358267pt;}
.y2a{bottom:814.343467pt;}
.ya3{bottom:825.292133pt;}
.y81{bottom:832.358267pt;}
.y29{bottom:834.343467pt;}
.ya2{bottom:845.292133pt;}
.y80{bottom:852.358267pt;}
.y28{bottom:854.343467pt;}
.y4{bottom:854.390667pt;}
.ya1{bottom:865.292133pt;}
.y7f{bottom:872.358267pt;}
.y27{bottom:874.343467pt;}
.y3{bottom:882.895600pt;}
.y26{bottom:894.343467pt;}
.y7e{bottom:896.158267pt;}
.y2{bottom:896.597733pt;}
.y25{bottom:914.343467pt;}
.y24{bottom:934.343467pt;}
.y23{bottom:954.343467pt;}
.y22{bottom:1011.605733pt;}
.he{height:27.024000pt;}
.hb{height:39.520000pt;}
.h10{height:42.952000pt;}
.hf{height:43.008000pt;}
.hd{height:43.877333pt;}
.hc{height:45.397333pt;}
.h9{height:48.496000pt;}
.h8{height:50.176000pt;}
.h5{height:50.405333pt;}
.h4{height:63.812684pt;}
.h2{height:64.000000pt;}
.h7{height:85.333333pt;}
.ha{height:90.666667pt;}
.h6{height:138.666667pt;}
.h3{height:288.339839pt;}
.h1{height:1058.000000pt;}
.h0{height:1058.268000pt;}
.w0{width:755.905333pt;}
.w1{width:756.000000pt;}
.x0{left:0.000000pt;}
.x6{left:56.692933pt;}
.x4{left:75.590533pt;}
.x8{left:94.488133pt;}
.x9{left:153.523867pt;}
.x7{left:166.205067pt;}
.x2{left:171.968533pt;}
.x3{left:174.200000pt;}
.xa{left:386.754400pt;}
.x1{left:712.455200pt;}
.x5{left:735.492400pt;}
}




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