
    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_1bd7c288691d46625a858559.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_306e1ab28ab4a591c2e82c58.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.902000;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_3f3adc2377201008e229237b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.001000;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_eeed6829b934f05ede581033.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.905000;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_e4390b8739fc21af5255dc61.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.699000;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_563e90f6c81342b5acd4ae65.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.923000;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_ffb1d612d984aa82c9bd73e0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.431000;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_9f48a5a186a376795a93756d.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.899000;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);}
.v0{vertical-align:0.000000px;}
.ls3{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.777083px;}
.ls2{letter-spacing:21.638767px;}
.ls5{letter-spacing:23.013606px;}
.ls4{letter-spacing:31.382190px;}
.ls0{letter-spacing:71.730720px;}
.ls1{letter-spacing:103.112910px;}
.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;}
}
.ws3e{word-spacing:-31.382190px;}
.ws10{word-spacing:-19.092327px;}
.wsa{word-spacing:-16.605662px;}
.wse{word-spacing:-3.335478px;}
.ws29{word-spacing:-2.020415px;}
.ws3{word-spacing:-0.585801px;}
.ws1c{word-spacing:-0.526025px;}
.ws9{word-spacing:0.000000px;}
.ws26{word-spacing:0.394519px;}
.ws32{word-spacing:0.789038px;}
.ws2f{word-spacing:0.812948px;}
.ws14{word-spacing:0.872724px;}
.wsd{word-spacing:1.948685px;}
.ws1d{word-spacing:2.044326px;}
.ws37{word-spacing:2.104101px;}
.ws1e{word-spacing:2.761633px;}
.ws25{word-spacing:2.881184px;}
.ws27{word-spacing:3.084421px;}
.ws0{word-spacing:3.299613px;}
.ws2e{word-spacing:3.359389px;}
.ws22{word-spacing:3.777818px;}
.ws19{word-spacing:3.801728px;}
.ws2b{word-spacing:4.339709px;}
.wsc{word-spacing:4.435350px;}
.ws6{word-spacing:4.483200px;}
.ws38{word-spacing:4.554901px;}
.ws31{word-spacing:4.614676px;}
.ws8{word-spacing:4.674452px;}
.ws20{word-spacing:5.033106px;}
.ws5{word-spacing:5.379825px;}
.ws21{word-spacing:5.391759px;}
.ws28{word-spacing:5.571086px;}
.ws4{word-spacing:5.625237px;}
.ws13{word-spacing:5.662816px;}
.wsf{word-spacing:5.668750px;}
.ws2c{word-spacing:5.678132px;}
.ws7{word-spacing:5.869964px;}
.ws34{word-spacing:6.407944px;}
.ws24{word-spacing:6.467720px;}
.ws11{word-spacing:6.616236px;}
.ws2a{word-spacing:6.766598px;}
.ws23{word-spacing:7.005700px;}
.ws3f{word-spacing:8.048218px;}
.ws3b{word-spacing:8.201212px;}
.ws39{word-spacing:8.619642px;}
.ws1f{word-spacing:8.739193px;}
.ws3c{word-spacing:9.420635px;}
.ws2d{word-spacing:9.635827px;}
.ws35{word-spacing:10.652012px;}
.ws12{word-spacing:10.891114px;}
.ws30{word-spacing:11.309544px;}
.ws3a{word-spacing:11.548646px;}
.ws36{word-spacing:11.668197px;}
.ws33{word-spacing:21.877870px;}
.ws3d{word-spacing:24.687323px;}
.ws16{word-spacing:31.382190px;}
.ws1{word-spacing:37.316475px;}
.ws17{word-spacing:62.764380px;}
.ws2{word-spacing:69.937725px;}
.ws1a{word-spacing:71.700832px;}
.wsb{word-spacing:103.083022px;}
.ws15{word-spacing:125.528760px;}
.ws1b{word-spacing:197.229592px;}
.ws18{word-spacing:439.350660px;}
._1b{margin-left:-51.129857px;}
._6{margin-left:-48.375386px;}
._1d{margin-left:-39.934933px;}
._1c{margin-left:-37.995343px;}
._1a{margin-left:-34.550297px;}
._18{margin-left:-31.621292px;}
._3{margin-left:-29.887800px;}
._e{margin-left:-28.214083px;}
._c{margin-left:-23.252708px;}
._d{margin-left:-6.386924px;}
._2{margin-left:-4.961375px;}
._4{margin-left:-3.223350px;}
._0{margin-left:-1.673717px;}
._7{width:1.673717px;}
._5{width:3.223350px;}
._a{width:4.447334px;}
._b{width:14.704798px;}
._19{width:22.296299px;}
._13{width:24.609274px;}
._1{width:53.738264px;}
._11{width:62.764380px;}
._17{width:68.741940px;}
._9{width:80.697600px;}
._8{width:96.836850px;}
._14{width:125.528760px;}
._10{width:188.293140px;}
._f{width:251.057520px;}
._15{width:282.439710px;}
._12{width:313.821900px;}
._16{width:564.879420px;}
.fc4{color:rgb(153,102,51);}
.fc3{color:rgb(102,0,237);}
.fc1{color:rgb(0,112,33);}
.fc2{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:29.887800px;}
.fs0{font-size:59.775600px;}
.fs3{font-size:71.731200px;}
.fs2{font-size:86.077200px;}
.fs1{font-size:123.975000px;}
.y0{bottom:0.000000px;}
.y27{bottom:40.207500px;}
.y79{bottom:87.945000px;}
.y62{bottom:88.894500px;}
.y26{bottom:89.998500px;}
.y9d{bottom:99.982500px;}
.y25{bottom:107.931000px;}
.y4e{bottom:109.531500px;}
.y9c{bottom:117.916500px;}
.y24{bottom:135.514500px;}
.y9b{bottom:135.849000px;}
.y4d{bottom:149.254500px;}
.y9a{bottom:153.781500px;}
.y7e{bottom:163.152000px;}
.y4c{bottom:166.813500px;}
.y99{bottom:171.714000px;}
.y23{bottom:177.348000px;}
.y8d{bottom:179.283000px;}
.y4b{bottom:184.372500px;}
.y78{bottom:188.341500px;}
.y98{bottom:189.646500px;}
.y22{bottom:195.280500px;}
.y8c{bottom:197.215500px;}
.y4a{bottom:201.931500px;}
.y8b{bottom:215.148000px;}
.y49{bottom:219.490500px;}
.y58{bottom:220.987500px;}
.y97{bottom:222.523500px;}
.y77{bottom:225.409500px;}
.y21{bottom:228.012000px;}
.y61{bottom:232.095000px;}
.y8a{bottom:233.080500px;}
.y48{bottom:237.049500px;}
.y57{bottom:238.920000px;}
.y47{bottom:254.608500px;}
.y56{bottom:256.852500px;}
.y89{bottom:265.812000px;}
.y60{bottom:270.865500px;}
.y46{bottom:272.167500px;}
.y55{bottom:274.785000px;}
.y20{bottom:277.431000px;}
.y45{bottom:289.728000px;}
.y1f{bottom:295.363500px;}
.y44{bottom:307.287000px;}
.y54{bottom:313.557000px;}
.y88{bottom:318.967500px;}
.y43{bottom:324.846000px;}
.y1e{bottom:331.764000px;}
.y87{bottom:336.900000px;}
.y42{bottom:342.405000px;}
.y1d{bottom:349.323000px;}
.y41{bottom:359.964000px;}
.y1c{bottom:366.882000px;}
.y6c{bottom:372.966000px;}
.y40{bottom:377.523000px;}
.y1b{bottom:384.067500px;}
.y6b{bottom:390.898500px;}
.y3f{bottom:395.082000px;}
.y6a{bottom:408.832500px;}
.y7d{bottom:409.320000px;}
.y3e{bottom:412.641000px;}
.y5f{bottom:414.066000px;}
.y1a{bottom:422.428500px;}
.y7c{bottom:427.252500px;}
.y3d{bottom:430.200000px;}
.y7b{bottom:445.185000px;}
.y3c{bottom:447.385500px;}
.y69{bottom:447.603000px;}
.y5e{bottom:452.836500px;}
.y19{bottom:462.150000px;}
.y18{bottom:479.710500px;}
.y7a{bottom:483.957000px;}
.y83{bottom:485.857500px;}
.y3b{bottom:486.991500px;}
.y17{bottom:497.269500px;}
.y53{bottom:499.171500px;}
.y86{bottom:506.914500px;}
.y16{bottom:514.828500px;}
.y52{bottom:517.104000px;}
.y76{bottom:524.227500px;}
.y82{bottom:524.629500px;}
.y85{bottom:524.847000px;}
.y3a{bottom:526.341000px;}
.y15{bottom:532.387500px;}
.y51{bottom:535.036500px;}
.y75{bottom:542.161500px;}
.y14{bottom:549.946500px;}
.y50{bottom:552.969000px;}
.y96{bottom:555.217500px;}
.y74{bottom:560.094000px;}
.y84{bottom:563.619000px;}
.y39{bottom:564.700500px;}
.y13{bottom:567.505500px;}
.y95{bottom:573.151500px;}
.y73{bottom:578.026500px;}
.y12{bottom:585.064500px;}
.y94{bottom:591.084000px;}
.y4f{bottom:591.741000px;}
.y38{bottom:592.285500px;}
.y72{bottom:595.959000px;}
.y11{bottom:602.623500px;}
.y71{bottom:613.891500px;}
.y10{bottom:619.809000px;}
.y70{bottom:631.824000px;}
.y37{bottom:643.578000px;}
.y6f{bottom:649.758000px;}
.y68{bottom:651.802500px;}
.yf{bottom:658.170000px;}
.ya8{bottom:664.896000px;}
.y6e{bottom:667.690500px;}
.y67{bottom:669.735000px;}
.y36{bottom:683.184000px;}
.y66{bottom:687.667500px;}
.ya7{bottom:692.479500px;}
.ye{bottom:697.518000px;}
.y35{bottom:701.116500px;}
.y6d{bottom:704.758500px;}
.y65{bottom:726.439500px;}
.ya6{bottom:734.311500px;}
.yd{bottom:737.124000px;}
.y34{bottom:740.838000px;}
.y33{bottom:758.397000px;}
.ya5{bottom:761.896500px;}
.y32{bottom:775.957500px;}
.yc{bottom:776.472000px;}
.y31{bottom:793.516500px;}
.ya4{bottom:803.728500px;}
.y30{bottom:811.075500px;}
.yb{bottom:814.833000px;}
.y2f{bottom:828.261000px;}
.ya3{bottom:831.313500px;}
.ya{bottom:832.765500px;}
.y5d{bottom:847.939500px;}
.y9{bottom:850.698000px;}
.y5c{bottom:865.872000px;}
.y2e{bottom:866.620500px;}
.y8{bottom:868.632000px;}
.y81{bottom:870.544500px;}
.ya2{bottom:873.145500px;}
.y5b{bottom:883.806000px;}
.y80{bottom:888.478500px;}
.y7{bottom:896.215500px;}
.ya1{bottom:900.729000px;}
.y5a{bottom:901.738500px;}
.y2d{bottom:905.970000px;}
.y93{bottom:923.778000px;}
.y7f{bottom:927.249000px;}
.y6{bottom:931.935000px;}
.y59{bottom:940.509000px;}
.y92{bottom:941.710500px;}
.ya0{bottom:942.562500px;}
.y2c{bottom:944.329500px;}
.y91{bottom:959.643000px;}
.y9f{bottom:970.146000px;}
.y5{bottom:981.354000px;}
.y2b{bottom:983.679000px;}
.y90{bottom:998.992500px;}
.y4{bottom:999.286500px;}
.y9e{bottom:1005.867000px;}
.y2a{bottom:1022.038500px;}
.y3{bottom:1032.018000px;}
.y8f{bottom:1037.352000px;}
.y8e{bottom:1055.286000px;}
.y29{bottom:1061.761500px;}
.y64{bottom:1070.083500px;}
.y28{bottom:1078.947000px;}
.y2{bottom:1081.437000px;}
.y63{bottom:1088.016000px;}
.y1{bottom:1145.700000px;}
.h6{height:20.234041px;}
.h5{height:41.484266px;}
.h7{height:42.082022px;}
.h1{height:44.831700px;}
.h4{height:53.798400px;}
.h3{height:64.557900px;}
.h2{height:86.658525px;}
.h0{height:1188.000000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x5{left:67.566000px;}
.x4{left:72.651000px;}
.x1{left:85.039500px;}
.x3{left:107.455500px;}
.x10{left:142.582500px;}
.xa{left:171.702000px;}
.xc{left:195.985500px;}
.xf{left:202.897500px;}
.xe{left:205.492500px;}
.x2{left:219.222000px;}
.x14{left:228.571500px;}
.x13{left:266.181000px;}
.x8{left:274.234500px;}
.xd{left:281.001000px;}
.xb{left:285.837000px;}
.x12{left:291.192000px;}
.x9{left:295.197000px;}
.x7{left:335.047500px;}
.x6{left:339.087000px;}
.x11{left:422.968500px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.690740pt;}
.ls2{letter-spacing:19.234460pt;}
.ls5{letter-spacing:20.456539pt;}
.ls4{letter-spacing:27.895280pt;}
.ls0{letter-spacing:63.760640pt;}
.ls1{letter-spacing:91.655920pt;}
.ws3e{word-spacing:-27.895280pt;}
.ws10{word-spacing:-16.970957pt;}
.wsa{word-spacing:-14.760588pt;}
.wse{word-spacing:-2.964870pt;}
.ws29{word-spacing:-1.795925pt;}
.ws3{word-spacing:-0.520712pt;}
.ws1c{word-spacing:-0.467578pt;}
.ws9{word-spacing:0.000000pt;}
.ws26{word-spacing:0.350684pt;}
.ws32{word-spacing:0.701367pt;}
.ws2f{word-spacing:0.722621pt;}
.ws14{word-spacing:0.775754pt;}
.wsd{word-spacing:1.732164pt;}
.ws1d{word-spacing:1.817178pt;}
.ws37{word-spacing:1.870312pt;}
.ws1e{word-spacing:2.454785pt;}
.ws25{word-spacing:2.561052pt;}
.ws27{word-spacing:2.741708pt;}
.ws0{word-spacing:2.932989pt;}
.ws2e{word-spacing:2.986123pt;}
.ws22{word-spacing:3.358060pt;}
.ws19{word-spacing:3.379314pt;}
.ws2b{word-spacing:3.857519pt;}
.wsc{word-spacing:3.942533pt;}
.ws6{word-spacing:3.985067pt;}
.ws38{word-spacing:4.048801pt;}
.ws31{word-spacing:4.101935pt;}
.ws8{word-spacing:4.155068pt;}
.ws20{word-spacing:4.473872pt;}
.ws5{word-spacing:4.782067pt;}
.ws21{word-spacing:4.792675pt;}
.ws28{word-spacing:4.952076pt;}
.ws4{word-spacing:5.000211pt;}
.ws13{word-spacing:5.033614pt;}
.wsf{word-spacing:5.038889pt;}
.ws2c{word-spacing:5.047229pt;}
.ws7{word-spacing:5.217746pt;}
.ws34{word-spacing:5.695951pt;}
.ws24{word-spacing:5.749084pt;}
.ws11{word-spacing:5.881098pt;}
.ws2a{word-spacing:6.014754pt;}
.ws23{word-spacing:6.227289pt;}
.ws3f{word-spacing:7.153972pt;}
.ws3b{word-spacing:7.289967pt;}
.ws39{word-spacing:7.661904pt;}
.ws1f{word-spacing:7.768171pt;}
.ws3c{word-spacing:8.373897pt;}
.ws2d{word-spacing:8.565179pt;}
.ws35{word-spacing:9.468455pt;}
.ws12{word-spacing:9.680991pt;}
.ws30{word-spacing:10.052928pt;}
.ws3a{word-spacing:10.265463pt;}
.ws36{word-spacing:10.371731pt;}
.ws33{word-spacing:19.446995pt;}
.ws3d{word-spacing:21.944287pt;}
.ws16{word-spacing:27.895280pt;}
.ws1{word-spacing:33.170200pt;}
.ws17{word-spacing:55.790560pt;}
.ws2{word-spacing:62.166867pt;}
.ws1a{word-spacing:63.734073pt;}
.wsb{word-spacing:91.629353pt;}
.ws15{word-spacing:111.581120pt;}
.ws1b{word-spacing:175.315193pt;}
.ws18{word-spacing:390.533920pt;}
._1b{margin-left:-45.448762pt;}
._6{margin-left:-43.000343pt;}
._1d{margin-left:-35.497718pt;}
._1c{margin-left:-33.773638pt;}
._1a{margin-left:-30.711375pt;}
._18{margin-left:-28.107815pt;}
._3{margin-left:-26.566933pt;}
._e{margin-left:-25.079185pt;}
._c{margin-left:-20.669074pt;}
._d{margin-left:-5.677266pt;}
._2{margin-left:-4.410111pt;}
._4{margin-left:-2.865200pt;}
._0{margin-left:-1.487748pt;}
._7{width:1.487748pt;}
._5{width:2.865200pt;}
._a{width:3.953186pt;}
._b{width:13.070931pt;}
._19{width:19.818932pt;}
._13{width:21.874911pt;}
._1{width:47.767346pt;}
._11{width:55.790560pt;}
._17{width:61.103947pt;}
._9{width:71.731200pt;}
._8{width:86.077200pt;}
._14{width:111.581120pt;}
._10{width:167.371680pt;}
._f{width:223.162240pt;}
._15{width:251.057520pt;}
._12{width:278.952800pt;}
._16{width:502.115040pt;}
.fs4{font-size:26.566933pt;}
.fs0{font-size:53.133867pt;}
.fs3{font-size:63.761067pt;}
.fs2{font-size:76.513067pt;}
.fs1{font-size:110.200000pt;}
.y0{bottom:0.000000pt;}
.y27{bottom:35.740000pt;}
.y79{bottom:78.173333pt;}
.y62{bottom:79.017333pt;}
.y26{bottom:79.998667pt;}
.y9d{bottom:88.873333pt;}
.y25{bottom:95.938667pt;}
.y4e{bottom:97.361333pt;}
.y9c{bottom:104.814667pt;}
.y24{bottom:120.457333pt;}
.y9b{bottom:120.754667pt;}
.y4d{bottom:132.670667pt;}
.y9a{bottom:136.694667pt;}
.y7e{bottom:145.024000pt;}
.y4c{bottom:148.278667pt;}
.y99{bottom:152.634667pt;}
.y23{bottom:157.642667pt;}
.y8d{bottom:159.362667pt;}
.y4b{bottom:163.886667pt;}
.y78{bottom:167.414667pt;}
.y98{bottom:168.574667pt;}
.y22{bottom:173.582667pt;}
.y8c{bottom:175.302667pt;}
.y4a{bottom:179.494667pt;}
.y8b{bottom:191.242667pt;}
.y49{bottom:195.102667pt;}
.y58{bottom:196.433333pt;}
.y97{bottom:197.798667pt;}
.y77{bottom:200.364000pt;}
.y21{bottom:202.677333pt;}
.y61{bottom:206.306667pt;}
.y8a{bottom:207.182667pt;}
.y48{bottom:210.710667pt;}
.y57{bottom:212.373333pt;}
.y47{bottom:226.318667pt;}
.y56{bottom:228.313333pt;}
.y89{bottom:236.277333pt;}
.y60{bottom:240.769333pt;}
.y46{bottom:241.926667pt;}
.y55{bottom:244.253333pt;}
.y20{bottom:246.605333pt;}
.y45{bottom:257.536000pt;}
.y1f{bottom:262.545333pt;}
.y44{bottom:273.144000pt;}
.y54{bottom:278.717333pt;}
.y88{bottom:283.526667pt;}
.y43{bottom:288.752000pt;}
.y1e{bottom:294.901333pt;}
.y87{bottom:299.466667pt;}
.y42{bottom:304.360000pt;}
.y1d{bottom:310.509333pt;}
.y41{bottom:319.968000pt;}
.y1c{bottom:326.117333pt;}
.y6c{bottom:331.525333pt;}
.y40{bottom:335.576000pt;}
.y1b{bottom:341.393333pt;}
.y6b{bottom:347.465333pt;}
.y3f{bottom:351.184000pt;}
.y6a{bottom:363.406667pt;}
.y7d{bottom:363.840000pt;}
.y3e{bottom:366.792000pt;}
.y5f{bottom:368.058667pt;}
.y1a{bottom:375.492000pt;}
.y7c{bottom:379.780000pt;}
.y3d{bottom:382.400000pt;}
.y7b{bottom:395.720000pt;}
.y3c{bottom:397.676000pt;}
.y69{bottom:397.869333pt;}
.y5e{bottom:402.521333pt;}
.y19{bottom:410.800000pt;}
.y18{bottom:426.409333pt;}
.y7a{bottom:430.184000pt;}
.y83{bottom:431.873333pt;}
.y3b{bottom:432.881333pt;}
.y17{bottom:442.017333pt;}
.y53{bottom:443.708000pt;}
.y86{bottom:450.590667pt;}
.y16{bottom:457.625333pt;}
.y52{bottom:459.648000pt;}
.y76{bottom:465.980000pt;}
.y82{bottom:466.337333pt;}
.y85{bottom:466.530667pt;}
.y3a{bottom:467.858667pt;}
.y15{bottom:473.233333pt;}
.y51{bottom:475.588000pt;}
.y75{bottom:481.921333pt;}
.y14{bottom:488.841333pt;}
.y50{bottom:491.528000pt;}
.y96{bottom:493.526667pt;}
.y74{bottom:497.861333pt;}
.y84{bottom:500.994667pt;}
.y39{bottom:501.956000pt;}
.y13{bottom:504.449333pt;}
.y95{bottom:509.468000pt;}
.y73{bottom:513.801333pt;}
.y12{bottom:520.057333pt;}
.y94{bottom:525.408000pt;}
.y4f{bottom:525.992000pt;}
.y38{bottom:526.476000pt;}
.y72{bottom:529.741333pt;}
.y11{bottom:535.665333pt;}
.y71{bottom:545.681333pt;}
.y10{bottom:550.941333pt;}
.y70{bottom:561.621333pt;}
.y37{bottom:572.069333pt;}
.y6f{bottom:577.562667pt;}
.y68{bottom:579.380000pt;}
.yf{bottom:585.040000pt;}
.ya8{bottom:591.018667pt;}
.y6e{bottom:593.502667pt;}
.y67{bottom:595.320000pt;}
.y36{bottom:607.274667pt;}
.y66{bottom:611.260000pt;}
.ya7{bottom:615.537333pt;}
.ye{bottom:620.016000pt;}
.y35{bottom:623.214667pt;}
.y6d{bottom:626.452000pt;}
.y65{bottom:645.724000pt;}
.ya6{bottom:652.721333pt;}
.yd{bottom:655.221333pt;}
.y34{bottom:658.522667pt;}
.y33{bottom:674.130667pt;}
.ya5{bottom:677.241333pt;}
.y32{bottom:689.740000pt;}
.yc{bottom:690.197333pt;}
.y31{bottom:705.348000pt;}
.ya4{bottom:714.425333pt;}
.y30{bottom:720.956000pt;}
.yb{bottom:724.296000pt;}
.y2f{bottom:736.232000pt;}
.ya3{bottom:738.945333pt;}
.ya{bottom:740.236000pt;}
.y5d{bottom:753.724000pt;}
.y9{bottom:756.176000pt;}
.y5c{bottom:769.664000pt;}
.y2e{bottom:770.329333pt;}
.y8{bottom:772.117333pt;}
.y81{bottom:773.817333pt;}
.ya2{bottom:776.129333pt;}
.y5b{bottom:785.605333pt;}
.y80{bottom:789.758667pt;}
.y7{bottom:796.636000pt;}
.ya1{bottom:800.648000pt;}
.y5a{bottom:801.545333pt;}
.y2d{bottom:805.306667pt;}
.y93{bottom:821.136000pt;}
.y7f{bottom:824.221333pt;}
.y6{bottom:828.386667pt;}
.y59{bottom:836.008000pt;}
.y92{bottom:837.076000pt;}
.ya0{bottom:837.833333pt;}
.y2c{bottom:839.404000pt;}
.y91{bottom:853.016000pt;}
.y9f{bottom:862.352000pt;}
.y5{bottom:872.314667pt;}
.y2b{bottom:874.381333pt;}
.y90{bottom:887.993333pt;}
.y4{bottom:888.254667pt;}
.y9e{bottom:894.104000pt;}
.y2a{bottom:908.478667pt;}
.y3{bottom:917.349333pt;}
.y8f{bottom:922.090667pt;}
.y8e{bottom:938.032000pt;}
.y29{bottom:943.788000pt;}
.y64{bottom:951.185333pt;}
.y28{bottom:959.064000pt;}
.y2{bottom:961.277333pt;}
.y63{bottom:967.125333pt;}
.y1{bottom:1018.400000pt;}
.h6{height:17.985814pt;}
.h5{height:36.874903pt;}
.h7{height:37.406242pt;}
.h1{height:39.850400pt;}
.h4{height:47.820800pt;}
.h3{height:57.384800pt;}
.h2{height:77.029800pt;}
.h0{height:1056.000000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x5{left:60.058667pt;}
.x4{left:64.578667pt;}
.x1{left:75.590667pt;}
.x3{left:95.516000pt;}
.x10{left:126.740000pt;}
.xa{left:152.624000pt;}
.xc{left:174.209333pt;}
.xf{left:180.353333pt;}
.xe{left:182.660000pt;}
.x2{left:194.864000pt;}
.x14{left:203.174667pt;}
.x13{left:236.605333pt;}
.x8{left:243.764000pt;}
.xd{left:249.778667pt;}
.xb{left:254.077333pt;}
.x12{left:258.837333pt;}
.x9{left:262.397333pt;}
.x7{left:297.820000pt;}
.x6{left:301.410667pt;}
.x11{left:375.972000pt;}
}




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