
    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_a29098f83ede3bf2d00c0f1b.woff')format("woff");}.ff1{font-family:ff1;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_3cf56e75ff780b67e2b84fe1.woff')format("woff");}.ff2{font-family:ff2;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_828b2ae00308b0bda53f2637.woff')format("woff");}.ff3{font-family:ff3;line-height:1.006000;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_b5df2ca11ef1e78227ec1cd7.woff')format("woff");}.ff4{font-family:ff4;line-height:1.145000;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_0f5343c690a25015c8f83dae.woff')format("woff");}.ff5{font-family:ff5;line-height:1.054000;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_27350422821b1c208d9004c3.woff')format("woff");}.ff6{font-family:ff6;line-height:0.708000;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_0af5052c4fc7080082e60677.woff')format("woff");}.ff7{font-family:ff7;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_a13285f9f7e8baa6220cab5d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.400000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v4{vertical-align:-58.458000px;}
.v3{vertical-align:-56.298000px;}
.v5{vertical-align:-45.060000px;}
.v2{vertical-align:-17.166000px;}
.v1{vertical-align:-4.332000px;}
.v0{vertical-align:0.000000px;}
.ls2{letter-spacing:-2.863434px;}
.ls5{letter-spacing:-2.068036px;}
.ls4{letter-spacing:-1.749876px;}
.ls3{letter-spacing:-1.511257px;}
.lsa{letter-spacing:-0.798508px;}
.ls7{letter-spacing:-0.626376px;}
.ls6{letter-spacing:-0.556779px;}
.ls8{letter-spacing:-0.487182px;}
.ls0{letter-spacing:0.000000px;}
.ls9{letter-spacing:32.724530px;}
.ls1{letter-spacing:32.730530px;}
.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;}
}
.ws25{word-spacing:-47.772979px;}
.ws21{word-spacing:-43.592764px;}
.wsd{word-spacing:-35.083666px;}
.ws0{word-spacing:-34.603034px;}
.ws5{word-spacing:-28.835942px;}
.ws17{word-spacing:-28.764211px;}
.ws18{word-spacing:-26.312749px;}
.ws4{word-spacing:-25.631842px;}
.ws23{word-spacing:-25.396385px;}
.ws1e{word-spacing:-25.330930px;}
.ws22{word-spacing:-25.197498px;}
.wse{word-spacing:-19.407721px;}
.ws1{word-spacing:-18.434918px;}
.ws1f{word-spacing:-17.869106px;}
.ws16{word-spacing:-17.149105px;}
.wsc{word-spacing:-16.952741px;}
.ws6{word-spacing:-16.887287px;}
.ws26{word-spacing:-16.825906px;}
.wsa{word-spacing:-16.824324px;}
.ws8{word-spacing:-16.824099px;}
.wsb{word-spacing:-16.823669px;}
.ws7{word-spacing:-16.823215px;}
.ws9{word-spacing:-16.821832px;}
.ws20{word-spacing:-16.820272px;}
.ws2{word-spacing:-15.422105px;}
.ws3{word-spacing:-12.337715px;}
.wsf{word-spacing:-8.908462px;}
.ws1d{word-spacing:-2.359136px;}
.ws19{word-spacing:-2.353136px;}
.ws10{word-spacing:0.000000px;}
.ws14{word-spacing:0.556779px;}
.ws15{word-spacing:0.626376px;}
.ws1a{word-spacing:0.766568px;}
.ws1b{word-spacing:0.798508px;}
.ws11{word-spacing:0.874938px;}
.ws12{word-spacing:1.511257px;}
.ws13{word-spacing:1.749876px;}
.ws24{word-spacing:1362.627343px;}
.ws1c{word-spacing:1669.467013px;}
._12{margin-left:-8.521643px;}
._4{margin-left:-6.480005px;}
._7{margin-left:-4.705559px;}
._0{margin-left:-2.840548px;}
._1{margin-left:-1.391593px;}
._a{width:1.328315px;}
._c{width:2.457781px;}
._b{width:3.833820px;}
._3{width:8.700100px;}
._2{width:9.898906px;}
._5{width:11.276113px;}
._15{width:14.008256px;}
._11{width:15.172012px;}
._16{width:17.192152px;}
._9{width:19.221244px;}
._8{width:32.730530px;}
._d{width:99.792469px;}
._13{width:228.901172px;}
._14{width:326.961349px;}
._6{width:341.762530px;}
._17{width:432.580289px;}
._e{width:924.177851px;}
._10{width:990.053680px;}
._f{width:1036.466723px;}
.fc8{color:rgb(20,176,61);}
.fc6{color:rgb(0,92,185);}
.fc3{color:rgb(235,129,27);}
.fc7{color:rgb(46,75,153);}
.fc2{color:rgb(42,27,129);}
.fc4{color:rgb(255,255,255);}
.fc1{color:rgb(250,250,250);}
.fc5{color:rgb(255,247,102);}
.fc0{color:rgb(35,55,59);}
.fs8{font-size:31.940324px;}
.fs6{font-size:34.798680px;}
.fs9{font-size:35.865600px;}
.fs3{font-size:47.820600px;}
.fs7{font-size:55.269000px;}
.fs2{font-size:59.775600px;}
.fs4{font-size:65.454600px;}
.fs1{font-size:71.731200px;}
.fs5{font-size:79.539840px;}
.fs0{font-size:86.077200px;}
.y0{bottom:0.000000px;}
.y30{bottom:16.531649px;}
.y18{bottom:17.090580px;}
.y6{bottom:19.953000px;}
.y37{bottom:21.036000px;}
.y1e{bottom:21.916996px;}
.y6f{bottom:24.244500px;}
.y2f{bottom:29.892930px;}
.y93{bottom:31.218000px;}
.y1d{bottom:32.356600px;}
.y7b{bottom:34.027500px;}
.y82{bottom:34.567500px;}
.y23{bottom:36.768000px;}
.y1c{bottom:42.796204px;}
.y36{bottom:44.407500px;}
.y6e{bottom:44.866500px;}
.y66{bottom:44.898000px;}
.y2e{bottom:51.062862px;}
.y51{bottom:52.558500px;}
.y17{bottom:54.054000px;}
.y92{bottom:54.591000px;}
.y5b{bottom:59.148000px;}
.y7a{bottom:61.882500px;}
.y81{bottom:62.422500px;}
.y22{bottom:64.623000px;}
.y6d{bottom:68.478000px;}
.y35{bottom:69.700500px;}
.y95{bottom:70.806000px;}
.y97{bottom:70.807500px;}
.y65{bottom:72.754500px;}
.y3f{bottom:75.237000px;}
.y50{bottom:75.930000px;}
.y16{bottom:77.425500px;}
.y91{bottom:77.962500px;}
.y2d{bottom:85.261500px;}
.y5a{bottom:87.003000px;}
.y21{bottom:87.994500px;}
.y80{bottom:90.279000px;}
.y79{bottom:90.829500px;}
.y6c{bottom:93.583500px;}
.y42{bottom:94.294500px;}
.y34{bottom:97.555500px;}
.y4f{bottom:99.303000px;}
.y64{bottom:100.609500px;}
.y15{bottom:100.798500px;}
.y90{bottom:101.335500px;}
.y3e{bottom:103.092000px;}
.y2c{bottom:108.633000px;}
.y5{bottom:110.844000px;}
.y24{bottom:111.367500px;}
.y59{bottom:115.312500px;}
.y20{bottom:115.851000px;}
.y7f{bottom:119.224500px;}
.y6b{bottom:121.893000px;}
.y4e{bottom:122.674500px;}
.y14{bottom:124.170000px;}
.y8f{bottom:124.707000px;}
.y33{bottom:125.410500px;}
.y63{bottom:129.556500px;}
.y78{bottom:129.762000px;}
.y3d{bottom:130.948500px;}
.ya{bottom:135.474000px;}
.y2b{bottom:136.488000px;}
.y1f{bottom:139.222500px;}
.y4{bottom:139.926000px;}
.y4d{bottom:146.047500px;}
.y8e{bottom:148.080000px;}
.y13{bottom:152.025000px;}
.y32{bottom:152.239179px;}
.y58{bottom:155.505000px;}
.y77{bottom:157.617000px;}
.y7e{bottom:158.124000px;}
.y3c{bottom:158.803500px;}
.y6a{bottom:160.824000px;}
.y31{bottom:161.821276px;}
.y3{bottom:164.286000px;}
.y2a{bottom:164.344500px;}
.y62{bottom:165.265500px;}
.y4c{bottom:169.419000px;}
.y85{bottom:169.977000px;}
.y8d{bottom:171.451500px;}
.y73{bottom:171.769500px;}
.y12{bottom:175.398000px;}
.y57{bottom:183.360000px;}
.y44{bottom:185.443500px;}
.y76{bottom:185.472000px;}
.y7d{bottom:185.979000px;}
.y3b{bottom:186.658500px;}
.yc{bottom:187.236000px;}
.y41{bottom:187.245000px;}
.y69{bottom:188.679000px;}
.y61{bottom:188.877000px;}
.y29{bottom:192.199500px;}
.y4b{bottom:192.792000px;}
.y8c{bottom:194.824500px;}
.y11{bottom:198.769500px;}
.y9{bottom:202.560000px;}
.y56{bottom:211.215000px;}
.y84{bottom:213.628500px;}
.y7c{bottom:213.835500px;}
.y60{bottom:213.982500px;}
.y75{bottom:214.419000px;}
.y3a{bottom:214.515000px;}
.y72{bottom:215.422500px;}
.y4a{bottom:216.163500px;}
.y68{bottom:216.535500px;}
.y8b{bottom:218.196000px;}
.y28{bottom:220.054500px;}
.y10{bottom:226.626000px;}
.y43{bottom:229.096500px;}
.yb{bottom:230.889000px;}
.y40{bottom:230.898000px;}
.y1b{bottom:234.079162px;}
.y49{bottom:239.536500px;}
.y55{bottom:240.162000px;}
.y8a{bottom:241.569000px;}
.y5f{bottom:242.307000px;}
.y39{bottom:242.370000px;}
.y83{bottom:244.563000px;}
.y67{bottom:245.482500px;}
.y71{bottom:246.355500px;}
.y2{bottom:247.134000px;}
.y27{bottom:247.911000px;}
.yf{bottom:249.997500px;}
.y74{bottom:253.351500px;}
.y1a{bottom:255.196990px;}
.y48{bottom:262.908000px;}
.y89{bottom:264.940500px;}
.y8{bottom:269.647500px;}
.y38{bottom:270.225000px;}
.y26{bottom:275.766000px;}
.y19{bottom:276.314817px;}
.ye{bottom:277.852500px;}
.y54{bottom:280.387500px;}
.y5e{bottom:281.206500px;}
.y1{bottom:281.953500px;}
.y47{bottom:286.281000px;}
.y88{bottom:288.313500px;}
.yd{bottom:301.225500px;}
.y25{bottom:304.237500px;}
.y70{bottom:306.273000px;}
.y53{bottom:308.242500px;}
.y5d{bottom:309.061500px;}
.y46{bottom:309.652500px;}
.y87{bottom:311.685000px;}
.y96{bottom:315.928500px;}
.y94{bottom:315.930000px;}
.y45{bottom:333.025500px;}
.y86{bottom:335.058000px;}
.y52{bottom:336.715500px;}
.y5c{bottom:338.008500px;}
.y7{bottom:379.849500px;}
.hd{height:22.326286px;}
.ha{height:31.144819px;}
.he{height:37.658880px;}
.hc{height:46.039077px;}
.h5{height:50.211630px;}
.h8{height:60.132119px;}
.h4{height:62.764380px;}
.h6{height:68.727330px;}
.h9{height:71.188157px;}
.h3{height:75.317760px;}
.h2{height:90.381060px;}
.hb{height:313.336081px;}
.h7{height:348.769770px;}
.h1{height:408.000000px;}
.h0{height:408.195000px;}
.w3{width:221.946487px;}
.w2{width:246.604989px;}
.w0{width:544.245000px;}
.w1{width:544.500000px;}
.x0{left:0.000000px;}
.xc{left:13.965000px;}
.x3{left:15.984000px;}
.x8{left:22.311878px;}
.x19{left:28.347000px;}
.x5{left:33.813000px;}
.xe{left:38.882755px;}
.x1{left:42.519000px;}
.x6{left:46.692000px;}
.x11{left:62.368500px;}
.x18{left:75.247500px;}
.x4{left:92.125500px;}
.x16{left:95.503500px;}
.x10{left:99.611025px;}
.xf{left:100.928563px;}
.x15{left:107.974500px;}
.x7{left:279.108607px;}
.x1a{left:286.299000px;}
.x9{left:298.957500px;}
.xd{left:303.771486px;}
.xa{left:311.835000px;}
.x17{left:344.641500px;}
.x12{left:352.072500px;}
.x13{left:502.603500px;}
.x14{left:504.384000px;}
.xb{left:508.162500px;}
.x2{left:509.178000px;}
@media print{
.v4{vertical-align:-51.962667pt;}
.v3{vertical-align:-50.042667pt;}
.v5{vertical-align:-40.053333pt;}
.v2{vertical-align:-15.258667pt;}
.v1{vertical-align:-3.850667pt;}
.v0{vertical-align:0.000000pt;}
.ls2{letter-spacing:-2.545275pt;}
.ls5{letter-spacing:-1.838254pt;}
.ls4{letter-spacing:-1.555446pt;}
.ls3{letter-spacing:-1.343340pt;}
.lsa{letter-spacing:-0.709785pt;}
.ls7{letter-spacing:-0.556779pt;}
.ls6{letter-spacing:-0.494915pt;}
.ls8{letter-spacing:-0.433050pt;}
.ls0{letter-spacing:0.000000pt;}
.ls9{letter-spacing:29.088471pt;}
.ls1{letter-spacing:29.093804pt;}
.ws25{word-spacing:-42.464870pt;}
.ws21{word-spacing:-38.749123pt;}
.wsd{word-spacing:-31.185481pt;}
.ws0{word-spacing:-30.758253pt;}
.ws5{word-spacing:-25.631949pt;}
.ws17{word-spacing:-25.568188pt;}
.ws18{word-spacing:-23.389110pt;}
.ws4{word-spacing:-22.783859pt;}
.ws23{word-spacing:-22.574564pt;}
.ws1e{word-spacing:-22.516382pt;}
.ws22{word-spacing:-22.397776pt;}
.wse{word-spacing:-17.251308pt;}
.ws1{word-spacing:-16.386594pt;}
.ws1f{word-spacing:-15.883650pt;}
.ws16{word-spacing:-15.243649pt;}
.wsc{word-spacing:-15.069103pt;}
.ws6{word-spacing:-15.010922pt;}
.ws26{word-spacing:-14.956361pt;}
.wsa{word-spacing:-14.954955pt;}
.ws8{word-spacing:-14.954755pt;}
.wsb{word-spacing:-14.954372pt;}
.ws7{word-spacing:-14.953969pt;}
.ws9{word-spacing:-14.952740pt;}
.ws20{word-spacing:-14.951353pt;}
.ws2{word-spacing:-13.708538pt;}
.ws3{word-spacing:-10.966858pt;}
.wsf{word-spacing:-7.918633pt;}
.ws1d{word-spacing:-2.097010pt;}
.ws19{word-spacing:-2.091676pt;}
.ws10{word-spacing:0.000000pt;}
.ws14{word-spacing:0.494915pt;}
.ws15{word-spacing:0.556779pt;}
.ws1a{word-spacing:0.681394pt;}
.ws1b{word-spacing:0.709785pt;}
.ws11{word-spacing:0.777723pt;}
.ws12{word-spacing:1.343340pt;}
.ws13{word-spacing:1.555446pt;}
.ws24{word-spacing:1211.224305pt;}
.ws1c{word-spacing:1483.970678pt;}
._12{margin-left:-7.574794pt;}
._4{margin-left:-5.760005pt;}
._7{margin-left:-4.182719pt;}
._0{margin-left:-2.524931pt;}
._1{margin-left:-1.236972pt;}
._a{width:1.180725pt;}
._c{width:2.184694pt;}
._b{width:3.407840pt;}
._3{width:7.733422pt;}
._2{width:8.799027pt;}
._5{width:10.023212pt;}
._15{width:12.451783pt;}
._11{width:13.486233pt;}
._16{width:15.281913pt;}
._9{width:17.085550pt;}
._8{width:29.093804pt;}
._d{width:88.704417pt;}
._13{width:203.467709pt;}
._14{width:290.632310pt;}
._6{width:303.788915pt;}
._17{width:384.515812pt;}
._e{width:821.491423pt;}
._10{width:880.047715pt;}
._f{width:921.303754pt;}
.fs8{font-size:28.391399pt;}
.fs6{font-size:30.932160pt;}
.fs9{font-size:31.880533pt;}
.fs3{font-size:42.507200pt;}
.fs7{font-size:49.128000pt;}
.fs2{font-size:53.133867pt;}
.fs4{font-size:58.181867pt;}
.fs1{font-size:63.761067pt;}
.fs5{font-size:70.702080pt;}
.fs0{font-size:76.513067pt;}
.y0{bottom:0.000000pt;}
.y30{bottom:14.694799pt;}
.y18{bottom:15.191627pt;}
.y6{bottom:17.736000pt;}
.y37{bottom:18.698667pt;}
.y1e{bottom:19.481774pt;}
.y6f{bottom:21.550667pt;}
.y2f{bottom:26.571493pt;}
.y93{bottom:27.749333pt;}
.y1d{bottom:28.761422pt;}
.y7b{bottom:30.246667pt;}
.y82{bottom:30.726667pt;}
.y23{bottom:32.682667pt;}
.y1c{bottom:38.041070pt;}
.y36{bottom:39.473333pt;}
.y6e{bottom:39.881333pt;}
.y66{bottom:39.909333pt;}
.y2e{bottom:45.389210pt;}
.y51{bottom:46.718667pt;}
.y17{bottom:48.048000pt;}
.y92{bottom:48.525333pt;}
.y5b{bottom:52.576000pt;}
.y7a{bottom:55.006667pt;}
.y81{bottom:55.486667pt;}
.y22{bottom:57.442667pt;}
.y6d{bottom:60.869333pt;}
.y35{bottom:61.956000pt;}
.y95{bottom:62.938667pt;}
.y97{bottom:62.940000pt;}
.y65{bottom:64.670667pt;}
.y3f{bottom:66.877333pt;}
.y50{bottom:67.493333pt;}
.y16{bottom:68.822667pt;}
.y91{bottom:69.300000pt;}
.y2d{bottom:75.788000pt;}
.y5a{bottom:77.336000pt;}
.y21{bottom:78.217333pt;}
.y80{bottom:80.248000pt;}
.y79{bottom:80.737333pt;}
.y6c{bottom:83.185333pt;}
.y42{bottom:83.817333pt;}
.y34{bottom:86.716000pt;}
.y4f{bottom:88.269333pt;}
.y64{bottom:89.430667pt;}
.y15{bottom:89.598667pt;}
.y90{bottom:90.076000pt;}
.y3e{bottom:91.637333pt;}
.y2c{bottom:96.562667pt;}
.y5{bottom:98.528000pt;}
.y24{bottom:98.993333pt;}
.y59{bottom:102.500000pt;}
.y20{bottom:102.978667pt;}
.y7f{bottom:105.977333pt;}
.y6b{bottom:108.349333pt;}
.y4e{bottom:109.044000pt;}
.y14{bottom:110.373333pt;}
.y8f{bottom:110.850667pt;}
.y33{bottom:111.476000pt;}
.y63{bottom:115.161333pt;}
.y78{bottom:115.344000pt;}
.y3d{bottom:116.398667pt;}
.ya{bottom:120.421333pt;}
.y2b{bottom:121.322667pt;}
.y1f{bottom:123.753333pt;}
.y4{bottom:124.378667pt;}
.y4d{bottom:129.820000pt;}
.y8e{bottom:131.626667pt;}
.y13{bottom:135.133333pt;}
.y32{bottom:135.323715pt;}
.y58{bottom:138.226667pt;}
.y77{bottom:140.104000pt;}
.y7e{bottom:140.554667pt;}
.y3c{bottom:141.158667pt;}
.y6a{bottom:142.954667pt;}
.y31{bottom:143.841134pt;}
.y3{bottom:146.032000pt;}
.y2a{bottom:146.084000pt;}
.y62{bottom:146.902667pt;}
.y4c{bottom:150.594667pt;}
.y85{bottom:151.090667pt;}
.y8d{bottom:152.401333pt;}
.y73{bottom:152.684000pt;}
.y12{bottom:155.909333pt;}
.y57{bottom:162.986667pt;}
.y44{bottom:164.838667pt;}
.y76{bottom:164.864000pt;}
.y7d{bottom:165.314667pt;}
.y3b{bottom:165.918667pt;}
.yc{bottom:166.432000pt;}
.y41{bottom:166.440000pt;}
.y69{bottom:167.714667pt;}
.y61{bottom:167.890667pt;}
.y29{bottom:170.844000pt;}
.y4b{bottom:171.370667pt;}
.y8c{bottom:173.177333pt;}
.y11{bottom:176.684000pt;}
.y9{bottom:180.053333pt;}
.y56{bottom:187.746667pt;}
.y84{bottom:189.892000pt;}
.y7c{bottom:190.076000pt;}
.y60{bottom:190.206667pt;}
.y75{bottom:190.594667pt;}
.y3a{bottom:190.680000pt;}
.y72{bottom:191.486667pt;}
.y4a{bottom:192.145333pt;}
.y68{bottom:192.476000pt;}
.y8b{bottom:193.952000pt;}
.y28{bottom:195.604000pt;}
.y10{bottom:201.445333pt;}
.y43{bottom:203.641333pt;}
.yb{bottom:205.234667pt;}
.y40{bottom:205.242667pt;}
.y1b{bottom:208.070366pt;}
.y49{bottom:212.921333pt;}
.y55{bottom:213.477333pt;}
.y8a{bottom:214.728000pt;}
.y5f{bottom:215.384000pt;}
.y39{bottom:215.440000pt;}
.y83{bottom:217.389333pt;}
.y67{bottom:218.206667pt;}
.y71{bottom:218.982667pt;}
.y2{bottom:219.674667pt;}
.y27{bottom:220.365333pt;}
.yf{bottom:222.220000pt;}
.y74{bottom:225.201333pt;}
.y1a{bottom:226.841769pt;}
.y48{bottom:233.696000pt;}
.y89{bottom:235.502667pt;}
.y8{bottom:239.686667pt;}
.y38{bottom:240.200000pt;}
.y26{bottom:245.125333pt;}
.y19{bottom:245.613171pt;}
.ye{bottom:246.980000pt;}
.y54{bottom:249.233333pt;}
.y5e{bottom:249.961333pt;}
.y1{bottom:250.625333pt;}
.y47{bottom:254.472000pt;}
.y88{bottom:256.278667pt;}
.yd{bottom:267.756000pt;}
.y25{bottom:270.433333pt;}
.y70{bottom:272.242667pt;}
.y53{bottom:273.993333pt;}
.y5d{bottom:274.721333pt;}
.y46{bottom:275.246667pt;}
.y87{bottom:277.053333pt;}
.y96{bottom:280.825333pt;}
.y94{bottom:280.826667pt;}
.y45{bottom:296.022667pt;}
.y86{bottom:297.829333pt;}
.y52{bottom:299.302667pt;}
.y5c{bottom:300.452000pt;}
.y7{bottom:337.644000pt;}
.hd{height:19.845588pt;}
.ha{height:27.684283pt;}
.he{height:33.474560pt;}
.hc{height:40.923624pt;}
.h5{height:44.632560pt;}
.h8{height:53.450772pt;}
.h4{height:55.790560pt;}
.h6{height:61.090960pt;}
.h9{height:63.278362pt;}
.h3{height:66.949120pt;}
.h2{height:80.338720pt;}
.hb{height:278.520961pt;}
.h7{height:310.017574pt;}
.h1{height:362.666667pt;}
.h0{height:362.840000pt;}
.w3{width:197.285766pt;}
.w2{width:219.204434pt;}
.w0{width:483.773333pt;}
.w1{width:484.000000pt;}
.x0{left:0.000000pt;}
.xc{left:12.413333pt;}
.x3{left:14.208000pt;}
.x8{left:19.832780pt;}
.x19{left:25.197333pt;}
.x5{left:30.056000pt;}
.xe{left:34.562449pt;}
.x1{left:37.794667pt;}
.x6{left:41.504000pt;}
.x11{left:55.438667pt;}
.x18{left:66.886667pt;}
.x4{left:81.889333pt;}
.x16{left:84.892000pt;}
.x10{left:88.543133pt;}
.xf{left:89.714278pt;}
.x15{left:95.977333pt;}
.x7{left:248.096540pt;}
.x1a{left:254.488000pt;}
.x9{left:265.740000pt;}
.xd{left:270.019098pt;}
.xa{left:277.186667pt;}
.x17{left:306.348000pt;}
.x12{left:312.953333pt;}
.x13{left:446.758667pt;}
.x14{left:448.341333pt;}
.xb{left:451.700000pt;}
.x2{left:452.602667pt;}
}




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