
    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_18836023e08768df2300e9a3.woff')format("woff");}.ff1{font-family:ff1;line-height:0.910156;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_312659a04e2c699c89f1ae56.woff')format("woff");}.ff2{font-family:ff2;line-height:1.065430;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_263fc222583059be349f5225.woff')format("woff");}.ff3{font-family:ff3;line-height:1.064941;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_45f3ccb25dc7bbe3912e87ff.woff')format("woff");}.ff4{font-family:ff4;line-height:1.052734;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_d4dfa41589f2c61a0615cd06.woff')format("woff");}.ff5{font-family:ff5;line-height:1.064941;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_21b390013992b98e95476f6c.woff')format("woff");}.ff6{font-family:ff6;line-height:1.435059;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_25620d1888d65f5e97cacdd9.woff')format("woff");}.ff7{font-family:ff7;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_08c0c5498f627934eca2cd5f.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v1{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:15.120000px;}
.ls8{letter-spacing:-0.648000px;}
.ls9{letter-spacing:-0.370200px;}
.ls19{letter-spacing:-0.363000px;}
.lsd{letter-spacing:-0.334200px;}
.lsa{letter-spacing:-0.326400px;}
.ls14{letter-spacing:-0.288600px;}
.ls1f{letter-spacing:-0.107400px;}
.ls21{letter-spacing:-0.106800px;}
.ls16{letter-spacing:-0.053280px;}
.ls1d{letter-spacing:-0.052560px;}
.ls1e{letter-spacing:-0.038880px;}
.ls12{letter-spacing:-0.036000px;}
.lsb{letter-spacing:-0.010800px;}
.ls6{letter-spacing:0.000000px;}
.lse{letter-spacing:0.012960px;}
.ls1{letter-spacing:0.013200px;}
.ls17{letter-spacing:0.069000px;}
.ls7{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.211200px;}
.lsf{letter-spacing:0.211680px;}
.ls15{letter-spacing:0.285600px;}
.ls10{letter-spacing:0.319680px;}
.ls18{letter-spacing:0.328800px;}
.lsc{letter-spacing:0.357000px;}
.ls4{letter-spacing:0.360000px;}
.ls1b{letter-spacing:0.439680px;}
.ls20{letter-spacing:0.546000px;}
.ls5{letter-spacing:0.666720px;}
.ls0{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.732000px;}
.ls2{letter-spacing:0.732960px;}
.ls1c{letter-spacing:47.466720px;}
.ls13{letter-spacing:64.026720px;}
.ls1a{letter-spacing:81.306720px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
.sc0{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc1{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
}
.wse{word-spacing:-59.760000px;}
.ws13{word-spacing:-14.641800px;}
.ws8{word-spacing:-14.572800px;}
.wsc{word-spacing:-14.238600px;}
.wsa{word-spacing:-13.879200px;}
.ws6{word-spacing:-13.504200px;}
.ws12{word-spacing:-13.476000px;}
.ws10{word-spacing:-13.432800px;}
.ws4{word-spacing:-13.160400px;}
.wsd{word-spacing:-13.160160px;}
.ws5{word-spacing:-13.147200px;}
.wsb{word-spacing:-13.111200px;}
.ws16{word-spacing:-13.108320px;}
.ws15{word-spacing:-13.094640px;}
.ws11{word-spacing:-13.093920px;}
.ws18{word-spacing:-13.040400px;}
.ws17{word-spacing:-13.039800px;}
.wsf{word-spacing:-12.858600px;}
.ws14{word-spacing:-12.784200px;}
.ws2{word-spacing:-9.652800px;}
.ws1{word-spacing:-9.609000px;}
.ws0{word-spacing:-9.331200px;}
.ws3{word-spacing:-9.187200px;}
.ws9{word-spacing:0.000000px;}
.ws7{word-spacing:4.712040px;}
._f{margin-left:-3.473640px;}
._4{margin-left:-2.442600px;}
._0{margin-left:-1.159200px;}
._1{width:1.056000px;}
._5{width:2.431192px;}
._3{width:3.733799px;}
._8{width:5.438399px;}
._c{width:7.153896px;}
._a{width:8.306401px;}
._b{width:9.322799px;}
._d{width:10.642082px;}
._2{width:11.713151px;}
._9{width:14.262599px;}
._17{width:15.711840px;}
._e{width:17.629200px;}
._18{width:18.645120px;}
._19{width:19.776361px;}
._13{width:21.941280px;}
._12{width:23.194080px;}
._7{width:26.016595px;}
._6{width:27.310200px;}
._16{width:29.226240px;}
._15{width:30.298320px;}
._1a{width:37.542960px;}
._14{width:40.543440px;}
._1c{width:41.600160px;}
._1b{width:49.919280px;}
._1d{width:79.421040px;}
._11{width:82.044000px;}
._10{width:83.197440px;}
._1f{width:104.659440px;}
._1e{width:230.633520px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs3{font-size:45.360000px;}
.fs2{font-size:54.000000px;}
.fs1{font-size:59.760000px;}
.fs5{font-size:66.240000px;}
.fs7{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y6f{bottom:3.225000px;}
.y65{bottom:3.240000px;}
.y69{bottom:3.405000px;}
.y61{bottom:3.420000px;}
.y67{bottom:12.045000px;}
.y63{bottom:12.060000px;}
.y6c{bottom:12.240000px;}
.y6e{bottom:20.865000px;}
.y64{bottom:20.880000px;}
.y68{bottom:20.910000px;}
.y6b{bottom:21.060000px;}
.y2{bottom:73.296000px;}
.y2a{bottom:74.196000px;}
.y1{bottom:101.556000px;}
.y5a{bottom:111.636000px;}
.y83{bottom:124.056000px;}
.ye7{bottom:125.136000px;}
.y28{bottom:131.076000px;}
.y82{bottom:141.696000px;}
.y8f{bottom:142.236000px;}
.ye6{bottom:142.776000px;}
.yb9{bottom:144.576000px;}
.y59{bottom:147.276000px;}
.y27{bottom:148.716000px;}
.y81{bottom:159.150000px;}
.yb8{bottom:162.210000px;}
.y26{bottom:166.350000px;}
.ye5{bottom:169.410000px;}
.y8e{bottom:174.450000px;}
.y80{bottom:176.790000px;}
.yb7{bottom:179.850000px;}
.y58{bottom:182.730000px;}
.ye4{bottom:186.870000px;}
.y25{bottom:192.810000px;}
.yb6{bottom:197.310000px;}
.y57{bottom:200.370000px;}
.y7f{bottom:203.430000px;}
.ye3{bottom:204.510000px;}
.yb5{bottom:214.950000px;}
.y56{bottom:218.010000px;}
.y24{bottom:228.450000px;}
.ye2{bottom:231.150000px;}
.yb4{bottom:232.590000px;}
.y55{bottom:235.470000px;}
.y7e{bottom:238.890000px;}
.y23{bottom:246.090000px;}
.ye1{bottom:248.790000px;}
.yb3{bottom:250.050000px;}
.y54{bottom:253.110000px;}
.y7d{bottom:257.250000px;}
.y22{bottom:263.550000px;}
.yb2{bottom:267.690000px;}
.y53{bottom:270.750000px;}
.ye0{bottom:275.250000px;}
.y7c{bottom:275.790000px;}
.y21{bottom:281.190000px;}
.yb1{bottom:285.330000px;}
.y52{bottom:288.390000px;}
.ydf{bottom:292.890000px;}
.y7b{bottom:294.150000px;}
.y20{bottom:298.830000px;}
.yb0{bottom:302.790000px;}
.y7a{bottom:312.690000px;}
.y51{bottom:314.850000px;}
.y1f{bottom:316.470000px;}
.yde{bottom:319.530000px;}
.yaf{bottom:320.430000px;}
.y1e{bottom:333.930000px;}
.ydd{bottom:337.035000px;}
.yae{bottom:347.475000px;}
.y79{bottom:348.195000px;}
.y50{bottom:350.535000px;}
.y1d{bottom:351.615000px;}
.ydc{bottom:363.675000px;}
.y78{bottom:365.835000px;}
.y4f{bottom:368.175000px;}
.y1c{bottom:378.615000px;}
.ydb{bottom:381.315000px;}
.y77{bottom:383.475000px;}
.y4e{bottom:385.635000px;}
.yad{bottom:395.715000px;}
.y76{bottom:400.935000px;}
.y4d{bottom:403.275000px;}
.yda{bottom:407.775000px;}
.yac{bottom:413.175000px;}
.y4c{bottom:420.915000px;}
.yd9{bottom:425.415000px;}
.y1b{bottom:426.855000px;}
.y75{bottom:427.575000px;}
.yab{bottom:430.815000px;}
.y1a{bottom:444.675000px;}
.y4b{bottom:447.375000px;}
.yaa{bottom:448.455000px;}
.yd8{bottom:452.055000px;}
.ya9{bottom:466.095000px;}
.yd7{bottom:469.695000px;}
.y74{bottom:469.875000px;}
.y19{bottom:481.755000px;}
.y4a{bottom:483.375000px;}
.ya8{bottom:483.555000px;}
.yd6{bottom:496.155000px;}
.y18{bottom:499.215000px;}
.ya7{bottom:501.195000px;}
.yd5{bottom:513.795000px;}
.y17{bottom:516.855000px;}
.ya6{bottom:518.835000px;}
.y73{bottom:524.235000px;}
.yd4{bottom:531.435000px;}
.y49{bottom:531.615000px;}
.y16{bottom:534.495000px;}
.ya5{bottom:536.295000px;}
.y48{bottom:549.255000px;}
.y15{bottom:552.135000px;}
.ya4{bottom:553.935000px;}
.yd3{bottom:557.895000px;}
.y47{bottom:566.715000px;}
.y14{bottom:569.595000px;}
.ya3{bottom:571.575000px;}
.yd2{bottom:575.535000px;}
.y72{bottom:578.595000px;}
.y46{bottom:584.355000px;}
.y13{bottom:587.235000px;}
.yd1{bottom:593.175000px;}
.ya2{bottom:598.575000px;}
.y8d{bottom:599.115000px;}
.y45{bottom:602.025000px;}
.y12{bottom:604.905000px;}
.y8c{bottom:616.605000px;}
.y44{bottom:619.665000px;}
.y11{bottom:622.365000px;}
.y71{bottom:632.805000px;}
.y8b{bottom:634.245000px;}
.y43{bottom:637.125000px;}
.yd0{bottom:637.305000px;}
.y10{bottom:640.005000px;}
.ya1{bottom:646.665000px;}
.y8a{bottom:651.885000px;}
.y42{bottom:654.765000px;}
.yf{bottom:657.645000px;}
.yf5{bottom:663.765000px;}
.ycf{bottom:663.945000px;}
.ya0{bottom:664.305000px;}
.y89{bottom:669.345000px;}
.y41{bottom:672.405000px;}
.ye{bottom:675.105000px;}
.yf4{bottom:681.405000px;}
.yce{bottom:681.585000px;}
.y9f{bottom:681.945000px;}
.y88{bottom:686.985000px;}
.y70{bottom:687.165000px;}
.yd{bottom:692.745000px;}
.y40{bottom:698.865000px;}
.y9e{bottom:699.585000px;}
.yf3{bottom:707.865000px;}
.ycd{bottom:708.405000px;}
.yc{bottom:710.385000px;}
.y87{bottom:713.625000px;}
.y9d{bottom:717.045000px;}
.yf2{bottom:725.505000px;}
.yb{bottom:728.025000px;}
.y3f{bottom:734.505000px;}
.y9c{bottom:734.685000px;}
.y6d{bottom:741.540000px;}
.yf1{bottom:743.145000px;}
.y86{bottom:749.625000px;}
.y3e{bottom:752.145000px;}
.y9b{bottom:752.325000px;}
.ya{bottom:754.845000px;}
.ycc{bottom:756.645000px;}
.y3d{bottom:769.605000px;}
.ycb{bottom:774.285000px;}
.y9a{bottom:779.325000px;}
.y3c{bottom:787.245000px;}
.yca{bottom:791.925000px;}
.y6a{bottom:795.705000px;}
.y85{bottom:797.685000px;}
.y9{bottom:803.085000px;}
.y3b{bottom:804.885000px;}
.yc9{bottom:809.385000px;}
.yf0{bottom:813.885000px;}
.y3a{bottom:822.525000px;}
.yc8{bottom:827.025000px;}
.y99{bottom:827.385000px;}
.y84{bottom:830.085000px;}
.yef{bottom:831.525000px;}
.y8{bottom:838.905000px;}
.y39{bottom:839.985000px;}
.yc7{bottom:844.665000px;}
.y98{bottom:845.025000px;}
.yee{bottom:848.985000px;}
.y66{bottom:850.080000px;}
.y38{bottom:857.625000px;}
.y97{bottom:862.665000px;}
.yed{bottom:866.670000px;}
.yc6{bottom:871.170000px;}
.y7{bottom:874.950000px;}
.y96{bottom:880.170000px;}
.y37{bottom:884.310000px;}
.yec{bottom:893.310000px;}
.y95{bottom:897.810000px;}
.y62{bottom:904.470000px;}
.yc5{bottom:906.810000px;}
.yeb{bottom:910.770000px;}
.y6{bottom:910.950000px;}
.y94{bottom:915.450000px;}
.y36{bottom:919.770000px;}
.yc4{bottom:924.450000px;}
.yea{bottom:928.410000px;}
.y35{bottom:937.410000px;}
.yc3{bottom:941.910000px;}
.y93{bottom:942.450000px;}
.y5{bottom:947.130000px;}
.y34{bottom:955.050000px;}
.y60{bottom:958.650000px;}
.yc2{bottom:959.550000px;}
.y33{bottom:972.510000px;}
.yc1{bottom:977.190000px;}
.y4{bottom:985.470000px;}
.y32{bottom:990.150000px;}
.y92{bottom:990.510000px;}
.yc0{bottom:994.830000px;}
.y31{bottom:1007.790000px;}
.y91{bottom:1008.150000px;}
.y3{bottom:1010.130000px;}
.ybf{bottom:1012.290000px;}
.ye9{bottom:1016.790000px;}
.y30{bottom:1025.430000px;}
.y90{bottom:1025.790000px;}
.ybe{bottom:1029.930000px;}
.ye8{bottom:1034.430000px;}
.y5f{bottom:1043.430000px;}
.ybd{bottom:1047.570000px;}
.y2f{bottom:1051.890000px;}
.y5e{bottom:1060.890000px;}
.ybc{bottom:1065.030000px;}
.y5d{bottom:1078.530000px;}
.y2e{bottom:1087.530000px;}
.ybb{bottom:1091.670000px;}
.y5c{bottom:1096.170000px;}
.y2d{bottom:1105.170000px;}
.y5b{bottom:1113.630000px;}
.y2c{bottom:1122.630000px;}
.yba{bottom:1127.670000px;}
.y2b{bottom:1140.300000px;}
.y29{bottom:1194.300000px;}
.ha{height:17.625000px;}
.h2{height:29.717578px;}
.hb{height:35.085000px;}
.he{height:35.100000px;}
.hc{height:35.121000px;}
.hf{height:35.130000px;}
.hd{height:35.280000px;}
.h3{height:38.405391px;}
.h6{height:50.364141px;}
.h7{height:50.597578px;}
.h5{height:56.084062px;}
.h10{height:61.423863px;}
.h8{height:62.211094px;}
.h9{height:68.956875px;}
.h4{height:71.324297px;}
.h11{height:74.004654px;}
.h1{height:1262.250000px;}
.h0{height:1262.520000px;}
.w2{width:142.236000px;}
.w3{width:299.580000px;}
.w4{width:311.100000px;}
.w0{width:893.160000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xa{left:8.460000px;}
.x7{left:38.550000px;}
.x5{left:44.136000px;}
.x1{left:68.040000px;}
.x4{left:69.120000px;}
.xb{left:95.076000px;}
.x9{left:104.790000px;}
.xf{left:111.276000px;}
.xe{left:155.910000px;}
.x2{left:209.730000px;}
.x6{left:212.445000px;}
.x8{left:513.120000px;}
.xc{left:694.230000px;}
.xd{left:710.970000px;}
.x3{left:800.460000px;}
@media print{
.v1{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:13.440000pt;}
.ls8{letter-spacing:-0.576000pt;}
.ls9{letter-spacing:-0.329067pt;}
.ls19{letter-spacing:-0.322667pt;}
.lsd{letter-spacing:-0.297067pt;}
.lsa{letter-spacing:-0.290133pt;}
.ls14{letter-spacing:-0.256533pt;}
.ls1f{letter-spacing:-0.095467pt;}
.ls21{letter-spacing:-0.094933pt;}
.ls16{letter-spacing:-0.047360pt;}
.ls1d{letter-spacing:-0.046720pt;}
.ls1e{letter-spacing:-0.034560pt;}
.ls12{letter-spacing:-0.032000pt;}
.lsb{letter-spacing:-0.009600pt;}
.ls6{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.011520pt;}
.ls1{letter-spacing:0.011733pt;}
.ls17{letter-spacing:0.061333pt;}
.ls7{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.187733pt;}
.lsf{letter-spacing:0.188160pt;}
.ls15{letter-spacing:0.253867pt;}
.ls10{letter-spacing:0.284160pt;}
.ls18{letter-spacing:0.292267pt;}
.lsc{letter-spacing:0.317333pt;}
.ls4{letter-spacing:0.320000pt;}
.ls1b{letter-spacing:0.390827pt;}
.ls20{letter-spacing:0.485333pt;}
.ls5{letter-spacing:0.592640pt;}
.ls0{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.650667pt;}
.ls2{letter-spacing:0.651520pt;}
.ls1c{letter-spacing:42.192640pt;}
.ls13{letter-spacing:56.912640pt;}
.ls1a{letter-spacing:72.272640pt;}
.wse{word-spacing:-53.120000pt;}
.ws13{word-spacing:-13.014933pt;}
.ws8{word-spacing:-12.953600pt;}
.wsc{word-spacing:-12.656533pt;}
.wsa{word-spacing:-12.337067pt;}
.ws6{word-spacing:-12.003733pt;}
.ws12{word-spacing:-11.978667pt;}
.ws10{word-spacing:-11.940267pt;}
.ws4{word-spacing:-11.698133pt;}
.wsd{word-spacing:-11.697920pt;}
.ws5{word-spacing:-11.686400pt;}
.wsb{word-spacing:-11.654400pt;}
.ws16{word-spacing:-11.651840pt;}
.ws15{word-spacing:-11.639680pt;}
.ws11{word-spacing:-11.639040pt;}
.ws18{word-spacing:-11.591467pt;}
.ws17{word-spacing:-11.590933pt;}
.wsf{word-spacing:-11.429867pt;}
.ws14{word-spacing:-11.363733pt;}
.ws2{word-spacing:-8.580267pt;}
.ws1{word-spacing:-8.541333pt;}
.ws0{word-spacing:-8.294400pt;}
.ws3{word-spacing:-8.166400pt;}
.ws9{word-spacing:0.000000pt;}
.ws7{word-spacing:4.188480pt;}
._f{margin-left:-3.087680pt;}
._4{margin-left:-2.171200pt;}
._0{margin-left:-1.030400pt;}
._1{width:0.938667pt;}
._5{width:2.161059pt;}
._3{width:3.318932pt;}
._8{width:4.834132pt;}
._c{width:6.359019pt;}
._a{width:7.383468pt;}
._b{width:8.286932pt;}
._d{width:9.459628pt;}
._2{width:10.411690pt;}
._9{width:12.677865pt;}
._17{width:13.966080pt;}
._e{width:15.670400pt;}
._18{width:16.573440pt;}
._19{width:17.578988pt;}
._13{width:19.503360pt;}
._12{width:20.616960pt;}
._7{width:23.125862pt;}
._6{width:24.275734pt;}
._16{width:25.978880pt;}
._15{width:26.931840pt;}
._1a{width:33.371520pt;}
._14{width:36.038613pt;}
._1c{width:36.977920pt;}
._1b{width:44.372693pt;}
._1d{width:70.596480pt;}
._11{width:72.928000pt;}
._10{width:73.953280pt;}
._1f{width:93.030613pt;}
._1e{width:205.007573pt;}
.fs0{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs3{font-size:40.320000pt;}
.fs2{font-size:48.000000pt;}
.fs1{font-size:53.120000pt;}
.fs5{font-size:58.880000pt;}
.fs7{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y6f{bottom:2.866667pt;}
.y65{bottom:2.880000pt;}
.y69{bottom:3.026667pt;}
.y61{bottom:3.040000pt;}
.y67{bottom:10.706667pt;}
.y63{bottom:10.720000pt;}
.y6c{bottom:10.880000pt;}
.y6e{bottom:18.546667pt;}
.y64{bottom:18.560000pt;}
.y68{bottom:18.586667pt;}
.y6b{bottom:18.720000pt;}
.y2{bottom:65.152000pt;}
.y2a{bottom:65.952000pt;}
.y1{bottom:90.272000pt;}
.y5a{bottom:99.232000pt;}
.y83{bottom:110.272000pt;}
.ye7{bottom:111.232000pt;}
.y28{bottom:116.512000pt;}
.y82{bottom:125.952000pt;}
.y8f{bottom:126.432000pt;}
.ye6{bottom:126.912000pt;}
.yb9{bottom:128.512000pt;}
.y59{bottom:130.912000pt;}
.y27{bottom:132.192000pt;}
.y81{bottom:141.466667pt;}
.yb8{bottom:144.186667pt;}
.y26{bottom:147.866667pt;}
.ye5{bottom:150.586667pt;}
.y8e{bottom:155.066667pt;}
.y80{bottom:157.146667pt;}
.yb7{bottom:159.866667pt;}
.y58{bottom:162.426667pt;}
.ye4{bottom:166.106667pt;}
.y25{bottom:171.386667pt;}
.yb6{bottom:175.386667pt;}
.y57{bottom:178.106667pt;}
.y7f{bottom:180.826667pt;}
.ye3{bottom:181.786667pt;}
.yb5{bottom:191.066667pt;}
.y56{bottom:193.786667pt;}
.y24{bottom:203.066667pt;}
.ye2{bottom:205.466667pt;}
.yb4{bottom:206.746667pt;}
.y55{bottom:209.306667pt;}
.y7e{bottom:212.346667pt;}
.y23{bottom:218.746667pt;}
.ye1{bottom:221.146667pt;}
.yb3{bottom:222.266667pt;}
.y54{bottom:224.986667pt;}
.y7d{bottom:228.666667pt;}
.y22{bottom:234.266667pt;}
.yb2{bottom:237.946667pt;}
.y53{bottom:240.666667pt;}
.ye0{bottom:244.666667pt;}
.y7c{bottom:245.146667pt;}
.y21{bottom:249.946667pt;}
.yb1{bottom:253.626667pt;}
.y52{bottom:256.346667pt;}
.ydf{bottom:260.346667pt;}
.y7b{bottom:261.466667pt;}
.y20{bottom:265.626667pt;}
.yb0{bottom:269.146667pt;}
.y7a{bottom:277.946667pt;}
.y51{bottom:279.866667pt;}
.y1f{bottom:281.306667pt;}
.yde{bottom:284.026667pt;}
.yaf{bottom:284.826667pt;}
.y1e{bottom:296.826667pt;}
.ydd{bottom:299.586667pt;}
.yae{bottom:308.866667pt;}
.y79{bottom:309.506667pt;}
.y50{bottom:311.586667pt;}
.y1d{bottom:312.546667pt;}
.ydc{bottom:323.266667pt;}
.y78{bottom:325.186667pt;}
.y4f{bottom:327.266667pt;}
.y1c{bottom:336.546667pt;}
.ydb{bottom:338.946667pt;}
.y77{bottom:340.866667pt;}
.y4e{bottom:342.786667pt;}
.yad{bottom:351.746667pt;}
.y76{bottom:356.386667pt;}
.y4d{bottom:358.466667pt;}
.yda{bottom:362.466667pt;}
.yac{bottom:367.266667pt;}
.y4c{bottom:374.146667pt;}
.yd9{bottom:378.146667pt;}
.y1b{bottom:379.426667pt;}
.y75{bottom:380.066667pt;}
.yab{bottom:382.946667pt;}
.y1a{bottom:395.266667pt;}
.y4b{bottom:397.666667pt;}
.yaa{bottom:398.626667pt;}
.yd8{bottom:401.826667pt;}
.ya9{bottom:414.306667pt;}
.yd7{bottom:417.506667pt;}
.y74{bottom:417.666667pt;}
.y19{bottom:428.226667pt;}
.y4a{bottom:429.666667pt;}
.ya8{bottom:429.826667pt;}
.yd6{bottom:441.026667pt;}
.y18{bottom:443.746667pt;}
.ya7{bottom:445.506667pt;}
.yd5{bottom:456.706667pt;}
.y17{bottom:459.426667pt;}
.ya6{bottom:461.186667pt;}
.y73{bottom:465.986667pt;}
.yd4{bottom:472.386667pt;}
.y49{bottom:472.546667pt;}
.y16{bottom:475.106667pt;}
.ya5{bottom:476.706667pt;}
.y48{bottom:488.226667pt;}
.y15{bottom:490.786667pt;}
.ya4{bottom:492.386667pt;}
.yd3{bottom:495.906667pt;}
.y47{bottom:503.746667pt;}
.y14{bottom:506.306667pt;}
.ya3{bottom:508.066667pt;}
.yd2{bottom:511.586667pt;}
.y72{bottom:514.306667pt;}
.y46{bottom:519.426667pt;}
.y13{bottom:521.986667pt;}
.yd1{bottom:527.266667pt;}
.ya2{bottom:532.066667pt;}
.y8d{bottom:532.546667pt;}
.y45{bottom:535.133333pt;}
.y12{bottom:537.693333pt;}
.y8c{bottom:548.093333pt;}
.y44{bottom:550.813333pt;}
.y11{bottom:553.213333pt;}
.y71{bottom:562.493333pt;}
.y8b{bottom:563.773333pt;}
.y43{bottom:566.333333pt;}
.yd0{bottom:566.493333pt;}
.y10{bottom:568.893333pt;}
.ya1{bottom:574.813333pt;}
.y8a{bottom:579.453333pt;}
.y42{bottom:582.013333pt;}
.yf{bottom:584.573333pt;}
.yf5{bottom:590.013333pt;}
.ycf{bottom:590.173333pt;}
.ya0{bottom:590.493333pt;}
.y89{bottom:594.973333pt;}
.y41{bottom:597.693333pt;}
.ye{bottom:600.093333pt;}
.yf4{bottom:605.693333pt;}
.yce{bottom:605.853333pt;}
.y9f{bottom:606.173333pt;}
.y88{bottom:610.653333pt;}
.y70{bottom:610.813333pt;}
.yd{bottom:615.773333pt;}
.y40{bottom:621.213333pt;}
.y9e{bottom:621.853333pt;}
.yf3{bottom:629.213333pt;}
.ycd{bottom:629.693333pt;}
.yc{bottom:631.453333pt;}
.y87{bottom:634.333333pt;}
.y9d{bottom:637.373333pt;}
.yf2{bottom:644.893333pt;}
.yb{bottom:647.133333pt;}
.y3f{bottom:652.893333pt;}
.y9c{bottom:653.053333pt;}
.y6d{bottom:659.146667pt;}
.yf1{bottom:660.573333pt;}
.y86{bottom:666.333333pt;}
.y3e{bottom:668.573333pt;}
.y9b{bottom:668.733333pt;}
.ya{bottom:670.973333pt;}
.ycc{bottom:672.573333pt;}
.y3d{bottom:684.093333pt;}
.ycb{bottom:688.253333pt;}
.y9a{bottom:692.733333pt;}
.y3c{bottom:699.773333pt;}
.yca{bottom:703.933333pt;}
.y6a{bottom:707.293333pt;}
.y85{bottom:709.053333pt;}
.y9{bottom:713.853333pt;}
.y3b{bottom:715.453333pt;}
.yc9{bottom:719.453333pt;}
.yf0{bottom:723.453333pt;}
.y3a{bottom:731.133333pt;}
.yc8{bottom:735.133333pt;}
.y99{bottom:735.453333pt;}
.y84{bottom:737.853333pt;}
.yef{bottom:739.133333pt;}
.y8{bottom:745.693333pt;}
.y39{bottom:746.653333pt;}
.yc7{bottom:750.813333pt;}
.y98{bottom:751.133333pt;}
.yee{bottom:754.653333pt;}
.y66{bottom:755.626667pt;}
.y38{bottom:762.333333pt;}
.y97{bottom:766.813333pt;}
.yed{bottom:770.373333pt;}
.yc6{bottom:774.373333pt;}
.y7{bottom:777.733333pt;}
.y96{bottom:782.373333pt;}
.y37{bottom:786.053333pt;}
.yec{bottom:794.053333pt;}
.y95{bottom:798.053333pt;}
.y62{bottom:803.973333pt;}
.yc5{bottom:806.053333pt;}
.yeb{bottom:809.573333pt;}
.y6{bottom:809.733333pt;}
.y94{bottom:813.733333pt;}
.y36{bottom:817.573333pt;}
.yc4{bottom:821.733333pt;}
.yea{bottom:825.253333pt;}
.y35{bottom:833.253333pt;}
.yc3{bottom:837.253333pt;}
.y93{bottom:837.733333pt;}
.y5{bottom:841.893333pt;}
.y34{bottom:848.933333pt;}
.y60{bottom:852.133333pt;}
.yc2{bottom:852.933333pt;}
.y33{bottom:864.453333pt;}
.yc1{bottom:868.613333pt;}
.y4{bottom:875.973333pt;}
.y32{bottom:880.133333pt;}
.y92{bottom:880.453333pt;}
.yc0{bottom:884.293333pt;}
.y31{bottom:895.813333pt;}
.y91{bottom:896.133333pt;}
.y3{bottom:897.893333pt;}
.ybf{bottom:899.813333pt;}
.ye9{bottom:903.813333pt;}
.y30{bottom:911.493333pt;}
.y90{bottom:911.813333pt;}
.ybe{bottom:915.493333pt;}
.ye8{bottom:919.493333pt;}
.y5f{bottom:927.493333pt;}
.ybd{bottom:931.173333pt;}
.y2f{bottom:935.013333pt;}
.y5e{bottom:943.013333pt;}
.ybc{bottom:946.693333pt;}
.y5d{bottom:958.693333pt;}
.y2e{bottom:966.693333pt;}
.ybb{bottom:970.373333pt;}
.y5c{bottom:974.373333pt;}
.y2d{bottom:982.373333pt;}
.y5b{bottom:989.893333pt;}
.y2c{bottom:997.893333pt;}
.yba{bottom:1002.373333pt;}
.y2b{bottom:1013.600000pt;}
.y29{bottom:1061.600000pt;}
.ha{height:15.666667pt;}
.h2{height:26.415625pt;}
.hb{height:31.186667pt;}
.he{height:31.200000pt;}
.hc{height:31.218667pt;}
.hf{height:31.226667pt;}
.hd{height:31.360000pt;}
.h3{height:34.138125pt;}
.h6{height:44.768125pt;}
.h7{height:44.975625pt;}
.h5{height:49.852500pt;}
.h10{height:54.598989pt;}
.h8{height:55.298750pt;}
.h9{height:61.295000pt;}
.h4{height:63.399375pt;}
.h11{height:65.781915pt;}
.h1{height:1122.000000pt;}
.h0{height:1122.240000pt;}
.w2{width:126.432000pt;}
.w3{width:266.293333pt;}
.w4{width:276.533333pt;}
.w0{width:793.920000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xa{left:7.520000pt;}
.x7{left:34.266667pt;}
.x5{left:39.232000pt;}
.x1{left:60.480000pt;}
.x4{left:61.440000pt;}
.xb{left:84.512000pt;}
.x9{left:93.146667pt;}
.xf{left:98.912000pt;}
.xe{left:138.586667pt;}
.x2{left:186.426667pt;}
.x6{left:188.840000pt;}
.x8{left:456.106667pt;}
.xc{left:617.093333pt;}
.xd{left:631.973333pt;}
.x3{left:711.520000pt;}
}




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