
    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_08e12447bc75d5da0ccb2485.woff')format("woff");}.ff1{font-family:ff1;line-height:0.899414;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_a763022097b48cc90d99ff06.woff')format("woff");}.ff2{font-family:ff2;line-height:1.082031;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_6cad611d88fb60b0d9eda4fe.woff')format("woff");}.ff3{font-family:ff3;line-height:0.899414;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_ec436551477c732ddf1e7082.woff')format("woff");}.ff4{font-family:ff4;line-height:0.899902;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_ba2b432f5314baec4f03cd61.woff')format("woff");}.ff5{font-family:ff5;line-height:0.899414;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_03e22188cbe6b748ecca6402.woff')format("woff");}.ff6{font-family:ff6;line-height:1.090332;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_09aca97c7b3bdc281b7d2a5d.woff')format("woff");}.ff7{font-family:ff7;line-height:0.678711;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;}
.m4{transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.212500,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.225000,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.227500,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:2.982000px;}
.v2{vertical-align:39.600000px;}
.ls1e{letter-spacing:-1.152000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls12{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.330000px;}
.lse{letter-spacing:-0.216000px;}
.lsa{letter-spacing:-0.072000px;}
.ls9{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.066000px;}
.ls4{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.198000px;}
.ls11{letter-spacing:0.216000px;}
.ls1f{letter-spacing:0.264000px;}
.ls5{letter-spacing:0.288000px;}
.ls23{letter-spacing:0.330000px;}
.ls15{letter-spacing:0.360000px;}
.ls3{letter-spacing:0.504000px;}
.ls25{letter-spacing:0.528000px;}
.lsb{letter-spacing:0.576000px;}
.ls17{letter-spacing:0.594000px;}
.ls10{letter-spacing:0.648000px;}
.ls13{letter-spacing:0.660000px;}
.ls1b{letter-spacing:0.792000px;}
.ls21{letter-spacing:0.858000px;}
.ls26{letter-spacing:0.924000px;}
.ls8{letter-spacing:0.936000px;}
.ls6{letter-spacing:1.008000px;}
.ls0{letter-spacing:4.200000px;}
.lsf{letter-spacing:4.860000px;}
.ls24{letter-spacing:5.016000px;}
.lsc{letter-spacing:5.400000px;}
.ls16{letter-spacing:6.000000px;}
.ls1{letter-spacing:6.600000px;}
.ls1c{letter-spacing:7.200000px;}
.ls18{letter-spacing:9.504000px;}
.ls7{letter-spacing:9.864000px;}
.ls2{letter-spacing:10.200000px;}
.ls20{letter-spacing:11.814000px;}
.ls22{letter-spacing:19.800000px;}
.lsd{letter-spacing:165.462000px;}
.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;}
}
.ws7{word-spacing:-184.008000px;}
.ws13{word-spacing:-22.860000px;}
.ws12{word-spacing:-20.592000px;}
.ws11{word-spacing:-20.232000px;}
.wsc{word-spacing:-19.206000px;}
.wsd{word-spacing:-18.546000px;}
.ws10{word-spacing:-17.784000px;}
.ws2{word-spacing:-17.712000px;}
.ws1{word-spacing:-16.860000px;}
.ws14{word-spacing:-16.500000px;}
.ws0{word-spacing:0.000000px;}
.wsf{word-spacing:38.412000px;}
.ws3{word-spacing:52.272000px;}
.wse{word-spacing:55.836000px;}
.ws9{word-spacing:66.396000px;}
.wsb{word-spacing:81.972000px;}
.ws6{word-spacing:118.272000px;}
.ws4{word-spacing:146.916000px;}
.wsa{word-spacing:477.774000px;}
.ws5{word-spacing:520.674000px;}
.ws8{word-spacing:577.962000px;}
._1d{margin-left:-165.660000px;}
._27{margin-left:-13.512000px;}
._25{margin-left:-11.748000px;}
._2b{margin-left:-10.512000px;}
._5{margin-left:-9.486000px;}
._6{margin-left:-7.650000px;}
._d{margin-left:-6.462000px;}
._2a{margin-left:-5.280000px;}
._1{margin-left:-4.256667px;}
._9{margin-left:-3.090000px;}
._0{margin-left:-1.680000px;}
._3{width:1.500000px;}
._a{width:2.880000px;}
._2{width:4.620000px;}
._b{width:5.898000px;}
._4{width:7.140000px;}
._c{width:8.268000px;}
._8{width:9.456000px;}
._7{width:10.680000px;}
._e{width:12.000000px;}
._22{width:13.590000px;}
._23{width:15.300000px;}
._24{width:19.188000px;}
._1a{width:53.394000px;}
._20{width:67.518000px;}
._18{width:69.894000px;}
._26{width:71.676000px;}
._21{width:84.018000px;}
._12{width:86.394000px;}
._1b{width:95.106000px;}
._17{width:108.174000px;}
._11{width:124.674000px;}
._14{width:127.182000px;}
._15{width:165.462000px;}
._13{width:166.668000px;}
._1f{width:188.958000px;}
._1c{width:207.456000px;}
._16{width:326.322000px;}
._19{width:341.022000px;}
._10{width:381.810000px;}
._29{width:418.440000px;}
._1e{width:550.110000px;}
._28{width:650.100000px;}
._f{width:657.822000px;}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:42.000000px;}
.fs1{font-size:48.000000px;}
.fs6{font-size:54.000000px;}
.fs7{font-size:57.000000px;}
.fs2{font-size:60.000000px;}
.fs3{font-size:66.000000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:76.337550px;}
.y4f{bottom:142.122600px;}
.y42{bottom:142.670700px;}
.yab{bottom:143.821500px;}
.ya6{bottom:144.235950px;}
.yc4{bottom:144.280800px;}
.y103{bottom:144.810000px;}
.ydd{bottom:145.144800px;}
.y86{bottom:145.662000px;}
.y95{bottom:146.984700px;}
.y21{bottom:148.048650px;}
.y102{bottom:162.810000px;}
.y4e{bottom:163.722600px;}
.y41{bottom:164.270700px;}
.ydc{bottom:164.944800px;}
.yc3{bottom:165.286800px;}
.yaa{bottom:165.421500px;}
.ya5{bottom:165.835950px;}
.y85{bottom:167.262000px;}
.y94{bottom:168.584700px;}
.y20{bottom:169.648650px;}
.y101{bottom:180.810000px;}
.ydb{bottom:184.744800px;}
.y40{bottom:185.870700px;}
.yc2{bottom:186.292800px;}
.ya9{bottom:187.021500px;}
.ya4{bottom:187.435950px;}
.y93{bottom:190.184700px;}
.y1f{bottom:191.248650px;}
.y100{bottom:198.810000px;}
.yc1{bottom:207.274800px;}
.y3f{bottom:207.470700px;}
.ya3{bottom:209.035950px;}
.y92{bottom:211.784700px;}
.y1e{bottom:212.848650px;}
.y6c{bottom:213.273000px;}
.yda{bottom:226.144800px;}
.yc0{bottom:228.280800px;}
.y3e{bottom:229.070700px;}
.ya2{bottom:230.635950px;}
.ya8{bottom:232.125450px;}
.y4d{bottom:232.434450px;}
.y91{bottom:233.384700px;}
.y6b{bottom:233.815500px;}
.y1d{bottom:234.448650px;}
.ybf{bottom:249.286800px;}
.y84{bottom:250.959000px;}
.ya1{bottom:252.235950px;}
.y6a{bottom:254.358000px;}
.yd9{bottom:254.448600px;}
.y90{bottom:254.984700px;}
.yff{bottom:255.510000px;}
.y1c{bottom:256.048650px;}
.ybd{bottom:270.256800px;}
.ybe{bottom:270.292800px;}
.y83{bottom:271.501500px;}
.ya0{bottom:273.835950px;}
.y3d{bottom:274.064850px;}
.yfe{bottom:275.310000px;}
.y8f{bottom:276.584700px;}
.y1b{bottom:277.648650px;}
.y69{bottom:283.414500px;}
.ybc{bottom:291.262800px;}
.y82{bottom:292.044000px;}
.y3c{bottom:293.864850px;}
.yfd{bottom:295.110000px;}
.y9f{bottom:295.435950px;}
.y1a{bottom:299.248650px;}
.y68{bottom:303.957000px;}
.ybb{bottom:312.268800px;}
.y81{bottom:312.586500px;}
.yfc{bottom:314.910000px;}
.y9e{bottom:317.035950px;}
.y3b{bottom:320.149350px;}
.y19{bottom:320.848650px;}
.y67{bottom:324.499500px;}
.yd8{bottom:331.848750px;}
.y80{bottom:333.129000px;}
.yba{bottom:333.274800px;}
.yfb{bottom:334.710000px;}
.y9d{bottom:338.635950px;}
.y3a{bottom:339.949350px;}
.y18{bottom:342.448650px;}
.y8e{bottom:343.588650px;}
.y66{bottom:353.556000px;}
.y7f{bottom:353.671500px;}
.yb9{bottom:354.280800px;}
.yfa{bottom:354.510000px;}
.y9c{bottom:360.235950px;}
.yd7{bottom:361.704600px;}
.y17{bottom:364.048650px;}
.y39{bottom:366.233850px;}
.y65{bottom:374.098500px;}
.yf9{bottom:374.310000px;}
.yb8{bottom:375.286800px;}
.yd6{bottom:381.504600px;}
.y9b{bottom:381.835950px;}
.y7e{bottom:382.728000px;}
.y16{bottom:385.648650px;}
.y38{bottom:392.518350px;}
.yf8{bottom:394.110000px;}
.y64{bottom:394.641000px;}
.yb7{bottom:396.292800px;}
.yd5{bottom:401.304600px;}
.y7d{bottom:403.270500px;}
.y9a{bottom:403.435950px;}
.y15{bottom:407.248650px;}
.y37{bottom:412.318350px;}
.yf7{bottom:413.910000px;}
.y63{bottom:415.183500px;}
.yb6{bottom:417.280800px;}
.yd4{bottom:421.104600px;}
.y7c{bottom:423.813000px;}
.y99{bottom:425.035950px;}
.y14{bottom:428.848650px;}
.yf6{bottom:433.710000px;}
.y62{bottom:435.726000px;}
.yb5{bottom:438.286800px;}
.y36{bottom:438.602850px;}
.yd3{bottom:440.904600px;}
.y7b{bottom:444.355500px;}
.y98{bottom:446.635950px;}
.y13{bottom:450.448650px;}
.yf5{bottom:453.510000px;}
.y61{bottom:456.268500px;}
.yb4{bottom:459.292800px;}
.yd2{bottom:460.704600px;}
.y35{bottom:464.887350px;}
.y7a{bottom:464.898000px;}
.y97{bottom:468.235950px;}
.y12{bottom:472.048650px;}
.yf4{bottom:473.310000px;}
.yb3{bottom:480.286800px;}
.yd1{bottom:480.504600px;}
.y60{bottom:485.325000px;}
.y79{bottom:485.440500px;}
.y34{bottom:491.171850px;}
.yf3{bottom:493.110000px;}
.y11{bottom:493.648650px;}
.yd0{bottom:500.304600px;}
.yb1{bottom:501.286800px;}
.yb2{bottom:501.292800px;}
.y5f{bottom:505.867500px;}
.y78{bottom:505.983000px;}
.y33{bottom:510.971850px;}
.yf2{bottom:512.910000px;}
.y10{bottom:515.248650px;}
.ycf{bottom:520.104600px;}
.yaf{bottom:522.280800px;}
.yb0{bottom:522.292800px;}
.y5e{bottom:526.410000px;}
.y77{bottom:526.525500px;}
.yf1{bottom:532.710000px;}
.ya7{bottom:533.985600px;}
.y96{bottom:534.339900px;}
.yf{bottom:536.848650px;}
.y32{bottom:537.256350px;}
.yce{bottom:539.904600px;}
.yae{bottom:543.286800px;}
.y5d{bottom:546.952500px;}
.y76{bottom:547.068000px;}
.yf0{bottom:552.510000px;}
.y31{bottom:557.056350px;}
.ye{bottom:558.448650px;}
.ycd{bottom:559.704600px;}
.yad{bottom:564.292800px;}
.yef{bottom:572.310000px;}
.y5c{bottom:576.009000px;}
.y75{bottom:576.124500px;}
.ycc{bottom:579.504600px;}
.yd{bottom:580.048650px;}
.y30{bottom:583.340850px;}
.yee{bottom:592.110000px;}
.y5b{bottom:596.551500px;}
.y74{bottom:596.667000px;}
.ycb{bottom:599.304600px;}
.yc{bottom:601.648650px;}
.y2f{bottom:609.625350px;}
.yed{bottom:611.910000px;}
.y5a{bottom:617.094000px;}
.y73{bottom:617.209500px;}
.yca{bottom:619.104600px;}
.yac{bottom:621.292800px;}
.yb{bottom:623.248650px;}
.y2e{bottom:629.425350px;}
.yec{bottom:631.710000px;}
.yc9{bottom:638.904600px;}
.ya{bottom:644.848650px;}
.y59{bottom:646.150500px;}
.y72{bottom:646.266000px;}
.yeb{bottom:651.510000px;}
.y2d{bottom:655.709850px;}
.yc8{bottom:658.704600px;}
.y9{bottom:666.448650px;}
.y58{bottom:666.693000px;}
.y71{bottom:666.808500px;}
.yea{bottom:671.310000px;}
.y4c{bottom:674.160450px;}
.yc7{bottom:678.504600px;}
.y2c{bottom:681.994350px;}
.y57{bottom:687.235500px;}
.y70{bottom:687.351000px;}
.y8{bottom:688.048650px;}
.ye9{bottom:691.110000px;}
.y4b{bottom:695.166450px;}
.yc6{bottom:706.808550px;}
.y7{bottom:709.648650px;}
.ye8{bottom:710.910000px;}
.y2b{bottom:715.312500px;}
.y4a{bottom:716.172450px;}
.y56{bottom:716.292000px;}
.y6f{bottom:716.407500px;}
.ye7{bottom:730.710000px;}
.y6{bottom:731.248650px;}
.y2a{bottom:735.112500px;}
.y8d{bottom:736.069050px;}
.y55{bottom:736.834500px;}
.y6e{bottom:736.950000px;}
.y49{bottom:737.178450px;}
.ye6{bottom:750.510000px;}
.yc5{bottom:754.912500px;}
.y54{bottom:757.377000px;}
.y6d{bottom:757.492500px;}
.y8c{bottom:757.669050px;}
.y48{bottom:758.184450px;}
.ye5{bottom:770.310000px;}
.y29{bottom:776.512500px;}
.y47{bottom:779.190450px;}
.y8b{bottom:779.269050px;}
.y53{bottom:785.358000px;}
.ye4{bottom:790.110000px;}
.y28{bottom:798.112500px;}
.y8a{bottom:800.869050px;}
.ye3{bottom:809.910000px;}
.y52{bottom:811.337850px;}
.y27{bottom:819.712500px;}
.y46{bottom:823.022850px;}
.y5{bottom:824.848650px;}
.ye2{bottom:829.710000px;}
.y51{bottom:830.543850px;}
.y26{bottom:841.312500px;}
.y89{bottom:846.757500px;}
.y45{bottom:849.307350px;}
.ye1{bottom:849.510000px;}
.y4{bottom:855.448650px;}
.y25{bottom:862.912500px;}
.y50{bottom:864.712500px;}
.y88{bottom:866.557500px;}
.y44{bottom:869.107350px;}
.ye0{bottom:869.310000px;}
.y24{bottom:884.512500px;}
.ydf{bottom:889.110000px;}
.y87{bottom:894.541500px;}
.y43{bottom:895.391850px;}
.y23{bottom:906.112500px;}
.yde{bottom:908.910000px;}
.y3{bottom:910.710000px;}
.y22{bottom:927.712500px;}
.y2{bottom:928.710000px;}
.h8{height:35.663086px;}
.h3{height:39.990234px;}
.h2{height:40.757812px;}
.h4{height:43.989258px;}
.hb{height:45.852539px;}
.hc{height:47.988281px;}
.hd{height:48.399902px;}
.h5{height:50.947266px;}
.h9{height:56.041992px;}
.h7{height:61.136719px;}
.h6{height:86.610352px;}
.ha{height:95.641992px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.x3{left:76.535400px;}
.x12{left:80.787450px;}
.xb{left:85.039350px;}
.x4{left:97.793400px;}
.xe{left:103.748100px;}
.x9{left:106.303500px;}
.x6{left:119.053350px;}
.x13{left:128.305650px;}
.xf{left:146.352750px;}
.x5{left:150.670350px;}
.xd{left:161.279550px;}
.x7{left:191.344950px;}
.xc{left:252.339750px;}
.xa{left:281.028600px;}
.x8{left:288.498150px;}
.x1{left:295.107900px;}
.x14{left:354.118350px;}
.x15{left:384.241350px;}
.x10{left:411.410400px;}
.x16{left:415.451700px;}
.x11{left:458.232450px;}
.x18{left:518.943750px;}
.x17{left:573.320100px;}
.x2{left:578.914350px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:2.650667pt;}
.v2{vertical-align:35.200000pt;}
.ls1e{letter-spacing:-1.024000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.293333pt;}
.lse{letter-spacing:-0.192000pt;}
.lsa{letter-spacing:-0.064000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.058667pt;}
.ls4{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.176000pt;}
.ls11{letter-spacing:0.192000pt;}
.ls1f{letter-spacing:0.234667pt;}
.ls5{letter-spacing:0.256000pt;}
.ls23{letter-spacing:0.293333pt;}
.ls15{letter-spacing:0.320000pt;}
.ls3{letter-spacing:0.448000pt;}
.ls25{letter-spacing:0.469333pt;}
.lsb{letter-spacing:0.512000pt;}
.ls17{letter-spacing:0.528000pt;}
.ls10{letter-spacing:0.576000pt;}
.ls13{letter-spacing:0.586667pt;}
.ls1b{letter-spacing:0.704000pt;}
.ls21{letter-spacing:0.762667pt;}
.ls26{letter-spacing:0.821333pt;}
.ls8{letter-spacing:0.832000pt;}
.ls6{letter-spacing:0.896000pt;}
.ls0{letter-spacing:3.733333pt;}
.lsf{letter-spacing:4.320000pt;}
.ls24{letter-spacing:4.458667pt;}
.lsc{letter-spacing:4.800000pt;}
.ls16{letter-spacing:5.333333pt;}
.ls1{letter-spacing:5.866667pt;}
.ls1c{letter-spacing:6.400000pt;}
.ls18{letter-spacing:8.448000pt;}
.ls7{letter-spacing:8.768000pt;}
.ls2{letter-spacing:9.066667pt;}
.ls20{letter-spacing:10.501333pt;}
.ls22{letter-spacing:17.600000pt;}
.lsd{letter-spacing:147.077333pt;}
.ws7{word-spacing:-163.562667pt;}
.ws13{word-spacing:-20.320000pt;}
.ws12{word-spacing:-18.304000pt;}
.ws11{word-spacing:-17.984000pt;}
.wsc{word-spacing:-17.072000pt;}
.wsd{word-spacing:-16.485333pt;}
.ws10{word-spacing:-15.808000pt;}
.ws2{word-spacing:-15.744000pt;}
.ws1{word-spacing:-14.986667pt;}
.ws14{word-spacing:-14.666667pt;}
.ws0{word-spacing:0.000000pt;}
.wsf{word-spacing:34.144000pt;}
.ws3{word-spacing:46.464000pt;}
.wse{word-spacing:49.632000pt;}
.ws9{word-spacing:59.018667pt;}
.wsb{word-spacing:72.864000pt;}
.ws6{word-spacing:105.130667pt;}
.ws4{word-spacing:130.592000pt;}
.wsa{word-spacing:424.688000pt;}
.ws5{word-spacing:462.821333pt;}
.ws8{word-spacing:513.744000pt;}
._1d{margin-left:-147.253333pt;}
._27{margin-left:-12.010667pt;}
._25{margin-left:-10.442667pt;}
._2b{margin-left:-9.344000pt;}
._5{margin-left:-8.432000pt;}
._6{margin-left:-6.800000pt;}
._d{margin-left:-5.744000pt;}
._2a{margin-left:-4.693333pt;}
._1{margin-left:-3.783704pt;}
._9{margin-left:-2.746667pt;}
._0{margin-left:-1.493333pt;}
._3{width:1.333333pt;}
._a{width:2.560000pt;}
._2{width:4.106667pt;}
._b{width:5.242667pt;}
._4{width:6.346667pt;}
._c{width:7.349333pt;}
._8{width:8.405333pt;}
._7{width:9.493333pt;}
._e{width:10.666667pt;}
._22{width:12.080000pt;}
._23{width:13.600000pt;}
._24{width:17.056000pt;}
._1a{width:47.461333pt;}
._20{width:60.016000pt;}
._18{width:62.128000pt;}
._26{width:63.712000pt;}
._21{width:74.682667pt;}
._12{width:76.794667pt;}
._1b{width:84.538667pt;}
._17{width:96.154667pt;}
._11{width:110.821333pt;}
._14{width:113.050667pt;}
._15{width:147.077333pt;}
._13{width:148.149333pt;}
._1f{width:167.962667pt;}
._1c{width:184.405333pt;}
._16{width:290.064000pt;}
._19{width:303.130667pt;}
._10{width:339.386667pt;}
._29{width:371.946667pt;}
._1e{width:488.986667pt;}
._28{width:577.866667pt;}
._f{width:584.730667pt;}
.fs0{font-size:37.333333pt;}
.fs1{font-size:42.666667pt;}
.fs6{font-size:48.000000pt;}
.fs7{font-size:50.666667pt;}
.fs2{font-size:53.333333pt;}
.fs3{font-size:58.666667pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:67.855600pt;}
.y4f{bottom:126.331200pt;}
.y42{bottom:126.818400pt;}
.yab{bottom:127.841333pt;}
.ya6{bottom:128.209733pt;}
.yc4{bottom:128.249600pt;}
.y103{bottom:128.720000pt;}
.ydd{bottom:129.017600pt;}
.y86{bottom:129.477333pt;}
.y95{bottom:130.653067pt;}
.y21{bottom:131.598800pt;}
.y102{bottom:144.720000pt;}
.y4e{bottom:145.531200pt;}
.y41{bottom:146.018400pt;}
.ydc{bottom:146.617600pt;}
.yc3{bottom:146.921600pt;}
.yaa{bottom:147.041333pt;}
.ya5{bottom:147.409733pt;}
.y85{bottom:148.677333pt;}
.y94{bottom:149.853067pt;}
.y20{bottom:150.798800pt;}
.y101{bottom:160.720000pt;}
.ydb{bottom:164.217600pt;}
.y40{bottom:165.218400pt;}
.yc2{bottom:165.593600pt;}
.ya9{bottom:166.241333pt;}
.ya4{bottom:166.609733pt;}
.y93{bottom:169.053067pt;}
.y1f{bottom:169.998800pt;}
.y100{bottom:176.720000pt;}
.yc1{bottom:184.244267pt;}
.y3f{bottom:184.418400pt;}
.ya3{bottom:185.809733pt;}
.y92{bottom:188.253067pt;}
.y1e{bottom:189.198800pt;}
.y6c{bottom:189.576000pt;}
.yda{bottom:201.017600pt;}
.yc0{bottom:202.916267pt;}
.y3e{bottom:203.618400pt;}
.ya2{bottom:205.009733pt;}
.ya8{bottom:206.333733pt;}
.y4d{bottom:206.608400pt;}
.y91{bottom:207.453067pt;}
.y6b{bottom:207.836000pt;}
.y1d{bottom:208.398800pt;}
.ybf{bottom:221.588267pt;}
.y84{bottom:223.074667pt;}
.ya1{bottom:224.209733pt;}
.y6a{bottom:226.096000pt;}
.yd9{bottom:226.176533pt;}
.y90{bottom:226.653067pt;}
.yff{bottom:227.120000pt;}
.y1c{bottom:227.598800pt;}
.ybd{bottom:240.228267pt;}
.ybe{bottom:240.260267pt;}
.y83{bottom:241.334667pt;}
.ya0{bottom:243.409733pt;}
.y3d{bottom:243.613200pt;}
.yfe{bottom:244.720000pt;}
.y8f{bottom:245.853067pt;}
.y1b{bottom:246.798800pt;}
.y69{bottom:251.924000pt;}
.ybc{bottom:258.900267pt;}
.y82{bottom:259.594667pt;}
.y3c{bottom:261.213200pt;}
.yfd{bottom:262.320000pt;}
.y9f{bottom:262.609733pt;}
.y1a{bottom:265.998800pt;}
.y68{bottom:270.184000pt;}
.ybb{bottom:277.572267pt;}
.y81{bottom:277.854667pt;}
.yfc{bottom:279.920000pt;}
.y9e{bottom:281.809733pt;}
.y3b{bottom:284.577200pt;}
.y19{bottom:285.198800pt;}
.y67{bottom:288.444000pt;}
.yd8{bottom:294.976667pt;}
.y80{bottom:296.114667pt;}
.yba{bottom:296.244267pt;}
.yfb{bottom:297.520000pt;}
.y9d{bottom:301.009733pt;}
.y3a{bottom:302.177200pt;}
.y18{bottom:304.398800pt;}
.y8e{bottom:305.412133pt;}
.y66{bottom:314.272000pt;}
.y7f{bottom:314.374667pt;}
.yb9{bottom:314.916267pt;}
.yfa{bottom:315.120000pt;}
.y9c{bottom:320.209733pt;}
.yd7{bottom:321.515200pt;}
.y17{bottom:323.598800pt;}
.y39{bottom:325.541200pt;}
.y65{bottom:332.532000pt;}
.yf9{bottom:332.720000pt;}
.yb8{bottom:333.588267pt;}
.yd6{bottom:339.115200pt;}
.y9b{bottom:339.409733pt;}
.y7e{bottom:340.202667pt;}
.y16{bottom:342.798800pt;}
.y38{bottom:348.905200pt;}
.yf8{bottom:350.320000pt;}
.y64{bottom:350.792000pt;}
.yb7{bottom:352.260267pt;}
.yd5{bottom:356.715200pt;}
.y7d{bottom:358.462667pt;}
.y9a{bottom:358.609733pt;}
.y15{bottom:361.998800pt;}
.y37{bottom:366.505200pt;}
.yf7{bottom:367.920000pt;}
.y63{bottom:369.052000pt;}
.yb6{bottom:370.916267pt;}
.yd4{bottom:374.315200pt;}
.y7c{bottom:376.722667pt;}
.y99{bottom:377.809733pt;}
.y14{bottom:381.198800pt;}
.yf6{bottom:385.520000pt;}
.y62{bottom:387.312000pt;}
.yb5{bottom:389.588267pt;}
.y36{bottom:389.869200pt;}
.yd3{bottom:391.915200pt;}
.y7b{bottom:394.982667pt;}
.y98{bottom:397.009733pt;}
.y13{bottom:400.398800pt;}
.yf5{bottom:403.120000pt;}
.y61{bottom:405.572000pt;}
.yb4{bottom:408.260267pt;}
.yd2{bottom:409.515200pt;}
.y35{bottom:413.233200pt;}
.y7a{bottom:413.242667pt;}
.y97{bottom:416.209733pt;}
.y12{bottom:419.598800pt;}
.yf4{bottom:420.720000pt;}
.yb3{bottom:426.921600pt;}
.yd1{bottom:427.115200pt;}
.y60{bottom:431.400000pt;}
.y79{bottom:431.502667pt;}
.y34{bottom:436.597200pt;}
.yf3{bottom:438.320000pt;}
.y11{bottom:438.798800pt;}
.yd0{bottom:444.715200pt;}
.yb1{bottom:445.588267pt;}
.yb2{bottom:445.593600pt;}
.y5f{bottom:449.660000pt;}
.y78{bottom:449.762667pt;}
.y33{bottom:454.197200pt;}
.yf2{bottom:455.920000pt;}
.y10{bottom:457.998800pt;}
.ycf{bottom:462.315200pt;}
.yaf{bottom:464.249600pt;}
.yb0{bottom:464.260267pt;}
.y5e{bottom:467.920000pt;}
.y77{bottom:468.022667pt;}
.yf1{bottom:473.520000pt;}
.ya7{bottom:474.653867pt;}
.y96{bottom:474.968800pt;}
.yf{bottom:477.198800pt;}
.y32{bottom:477.561200pt;}
.yce{bottom:479.915200pt;}
.yae{bottom:482.921600pt;}
.y5d{bottom:486.180000pt;}
.y76{bottom:486.282667pt;}
.yf0{bottom:491.120000pt;}
.y31{bottom:495.161200pt;}
.ye{bottom:496.398800pt;}
.ycd{bottom:497.515200pt;}
.yad{bottom:501.593600pt;}
.yef{bottom:508.720000pt;}
.y5c{bottom:512.008000pt;}
.y75{bottom:512.110667pt;}
.ycc{bottom:515.115200pt;}
.yd{bottom:515.598800pt;}
.y30{bottom:518.525200pt;}
.yee{bottom:526.320000pt;}
.y5b{bottom:530.268000pt;}
.y74{bottom:530.370667pt;}
.ycb{bottom:532.715200pt;}
.yc{bottom:534.798800pt;}
.y2f{bottom:541.889200pt;}
.yed{bottom:543.920000pt;}
.y5a{bottom:548.528000pt;}
.y73{bottom:548.630667pt;}
.yca{bottom:550.315200pt;}
.yac{bottom:552.260267pt;}
.yb{bottom:553.998800pt;}
.y2e{bottom:559.489200pt;}
.yec{bottom:561.520000pt;}
.yc9{bottom:567.915200pt;}
.ya{bottom:573.198800pt;}
.y59{bottom:574.356000pt;}
.y72{bottom:574.458667pt;}
.yeb{bottom:579.120000pt;}
.y2d{bottom:582.853200pt;}
.yc8{bottom:585.515200pt;}
.y9{bottom:592.398800pt;}
.y58{bottom:592.616000pt;}
.y71{bottom:592.718667pt;}
.yea{bottom:596.720000pt;}
.y4c{bottom:599.253733pt;}
.yc7{bottom:603.115200pt;}
.y2c{bottom:606.217200pt;}
.y57{bottom:610.876000pt;}
.y70{bottom:610.978667pt;}
.y8{bottom:611.598800pt;}
.ye9{bottom:614.320000pt;}
.y4b{bottom:617.925733pt;}
.yc6{bottom:628.274267pt;}
.y7{bottom:630.798800pt;}
.ye8{bottom:631.920000pt;}
.y2b{bottom:635.833333pt;}
.y4a{bottom:636.597733pt;}
.y56{bottom:636.704000pt;}
.y6f{bottom:636.806667pt;}
.ye7{bottom:649.520000pt;}
.y6{bottom:649.998800pt;}
.y2a{bottom:653.433333pt;}
.y8d{bottom:654.283600pt;}
.y55{bottom:654.964000pt;}
.y6e{bottom:655.066667pt;}
.y49{bottom:655.269733pt;}
.ye6{bottom:667.120000pt;}
.yc5{bottom:671.033333pt;}
.y54{bottom:673.224000pt;}
.y6d{bottom:673.326667pt;}
.y8c{bottom:673.483600pt;}
.y48{bottom:673.941733pt;}
.ye5{bottom:684.720000pt;}
.y29{bottom:690.233333pt;}
.y47{bottom:692.613733pt;}
.y8b{bottom:692.683600pt;}
.y53{bottom:698.096000pt;}
.ye4{bottom:702.320000pt;}
.y28{bottom:709.433333pt;}
.y8a{bottom:711.883600pt;}
.ye3{bottom:719.920000pt;}
.y52{bottom:721.189200pt;}
.y27{bottom:728.633333pt;}
.y46{bottom:731.575867pt;}
.y5{bottom:733.198800pt;}
.ye2{bottom:737.520000pt;}
.y51{bottom:738.261200pt;}
.y26{bottom:747.833333pt;}
.y89{bottom:752.673333pt;}
.y45{bottom:754.939867pt;}
.ye1{bottom:755.120000pt;}
.y4{bottom:760.398800pt;}
.y25{bottom:767.033333pt;}
.y50{bottom:768.633333pt;}
.y88{bottom:770.273333pt;}
.y44{bottom:772.539867pt;}
.ye0{bottom:772.720000pt;}
.y24{bottom:786.233333pt;}
.ydf{bottom:790.320000pt;}
.y87{bottom:795.148000pt;}
.y43{bottom:795.903867pt;}
.y23{bottom:805.433333pt;}
.yde{bottom:807.920000pt;}
.y3{bottom:809.520000pt;}
.y22{bottom:824.633333pt;}
.y2{bottom:825.520000pt;}
.h8{height:31.700521pt;}
.h3{height:35.546875pt;}
.h2{height:36.229167pt;}
.h4{height:39.101562pt;}
.hb{height:40.757812pt;}
.hc{height:42.656250pt;}
.hd{height:43.022135pt;}
.h5{height:45.286458pt;}
.h9{height:49.815104pt;}
.h7{height:54.343750pt;}
.h6{height:76.986979pt;}
.ha{height:85.015104pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.x3{left:68.031467pt;}
.x12{left:71.811067pt;}
.xb{left:75.590533pt;}
.x4{left:86.927467pt;}
.xe{left:92.220533pt;}
.x9{left:94.492000pt;}
.x6{left:105.825200pt;}
.x13{left:114.049467pt;}
.xf{left:130.091333pt;}
.x5{left:133.929200pt;}
.xd{left:143.359600pt;}
.x7{left:170.084400pt;}
.xc{left:224.302000pt;}
.xa{left:249.803200pt;}
.x8{left:256.442800pt;}
.x1{left:262.318133pt;}
.x14{left:314.771867pt;}
.x15{left:341.547867pt;}
.x10{left:365.698133pt;}
.x16{left:369.290400pt;}
.x11{left:407.317733pt;}
.x18{left:461.283333pt;}
.x17{left:509.617867pt;}
.x2{left:514.590533pt;}
}




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