
    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_967a6f4789a3facc1bdd4a21.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.956000;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_e38a84a6d5ece961d771bc91.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.946000;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_75de1a3de46aacc2944e4993.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.938477;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_5022b3df2add4c33c3811bec.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;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_3291d429c7123a5ebfeb8617.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.944000;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_32707f776659575f0ad99b97.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.031738;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_6674f0cc207f1281f6abbeae.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.729000;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_0546c8b749302d0cafd4c8df.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.973633;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_00ad3c93ce4ccdd845a35028.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.918945;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_bb5f922dd1d3f1cccf999f32.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.013672;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_2aa2b20046074c6de330a73e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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:ffc;src:url('chunks/assets/font_5b0a068cd2fdd1345372de07.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.666504;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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.005715px;}
.ls5{letter-spacing:0.010170px;}
.ls4{letter-spacing:107.963730px;}
.ls3{letter-spacing:107.983528px;}
.ls2{letter-spacing:107.983533px;}
.ls7{letter-spacing:107.986325px;}
.ls1{letter-spacing:108.000566px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(54,63,73),0 0.015em rgb(54,63,73),0.015em 0 rgb(54,63,73),0 -0.015em  rgb(54,63,73);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(54,63,73);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-68.400004px;}
.ws6{word-spacing:-33.600000px;}
.ws1{word-spacing:-28.800001px;}
.ws3{word-spacing:-21.873598px;}
.ws2{word-spacing:-20.400000px;}
.ws4{word-spacing:-14.400000px;}
.ws0{word-spacing:0.000000px;}
._4{margin-left:-896.315654px;}
._c{margin-left:-16.170001px;}
._b{margin-left:-10.584000px;}
._9{margin-left:-9.360000px;}
._1{margin-left:-7.452000px;}
._5{margin-left:-6.264000px;}
._2{margin-left:-5.184000px;}
._0{margin-left:-3.240000px;}
._3{margin-left:-1.440000px;}
._6{width:1.440000px;}
._7{width:3.168000px;}
._a{width:4.536000px;}
._8{width:6.768000px;}
.fc3{color:rgb(24,128,56);}
.fc2{color:rgb(0,90,143);}
.fc1{color:transparent;}
.fc0{color:rgb(54,63,73);}
.fs10{font-size:34.500000px;}
.fsf{font-size:58.500002px;}
.fs6{font-size:72.000002px;}
.fs14{font-size:84.000000px;}
.fsc{font-size:88.199994px;}
.fsd{font-size:90.000003px;}
.fs5{font-size:96.000006px;}
.fs9{font-size:102.000000px;}
.fs11{font-size:107.250006px;}
.fs12{font-size:114.000007px;}
.fs15{font-size:119.026804px;}
.fs8{font-size:122.100011px;}
.fsb{font-size:128.100006px;}
.fs7{font-size:133.200013px;}
.fsa{font-size:138.000001px;}
.fs1{font-size:144.000005px;}
.fse{font-size:149.999999px;}
.fs3{font-size:167.999999px;}
.fs2{font-size:192.000012px;}
.fs16{font-size:294.000021px;}
.fs13{font-size:312.000022px;}
.fs0{font-size:324.000010px;}
.fs4{font-size:720.000023px;}
.y0{bottom:0.000000px;}
.y44{bottom:19.862700px;}
.y1b{bottom:21.474904px;}
.y19{bottom:37.730052px;}
.y5c{bottom:40.860436px;}
.y90{bottom:58.571319px;}
.y5b{bottom:66.060435px;}
.y18{bottom:66.530044px;}
.y3e{bottom:69.372815px;}
.y6b{bottom:80.123214px;}
.y7c{bottom:80.437764px;}
.y81{bottom:84.640652px;}
.y65{bottom:87.389365px;}
.y72{bottom:87.821342px;}
.y17{bottom:95.330042px;}
.ye{bottom:96.461365px;}
.y3d{bottom:98.573350px;}
.y24{bottom:99.006587px;}
.y8f{bottom:102.221286px;}
.y56{bottom:109.048259px;}
.y5a{bottom:114.950268px;}
.y52{bottom:115.378274px;}
.y15{bottom:115.901321px;}
.y7b{bottom:118.399754px;}
.y80{bottom:122.602642px;}
.y4{bottom:124.499043px;}
.y8e{bottom:127.871276px;}
.y64{bottom:128.429343px;}
.y27{bottom:133.091366px;}
.y71{bottom:133.181344px;}
.y3c{bottom:133.245862px;}
.y25{bottom:140.404825px;}
.yd{bottom:141.821378px;}
.y31{bottom:144.955774px;}
.y55{bottom:148.378260px;}
.y23{bottom:152.437767px;}
.y8d{bottom:153.521265px;}
.y51{bottom:154.708264px;}
.y7f{bottom:160.564654px;}
.y48{bottom:160.713998px;}
.y14{bottom:165.581322px;}
.y3b{bottom:167.918330px;}
.y63{bottom:169.469322px;}
.y8c{bottom:179.171289px;}
.y76{bottom:179.261334px;}
.y30{bottom:186.592757px;}
.yc{bottom:187.181345px;}
.y54{bottom:187.708250px;}
.y22{bottom:190.399757px;}
.y6a{bottom:192.509312px;}
.y3{bottom:193.455943px;}
.y50{bottom:194.038266px;}
.y70{bottom:196.541346px;}
.y7e{bottom:198.526644px;}
.y26{bottom:198.701334px;}
.y3a{bottom:202.590820px;}
.y47{bottom:203.913995px;}
.y8b{bottom:204.821312px;}
.y59{bottom:208.550293px;}
.y62{bottom:210.509346px;}
.y2f{bottom:211.729746px;}
.y13{bottom:215.261335px;}
.y53{bottom:227.038240px;}
.y21{bottom:228.361747px;}
.y7a{bottom:230.323735px;}
.yb{bottom:232.541347px;}
.y4f{bottom:233.368256px;}
.y69{bottom:233.549324px;}
.y7d{bottom:236.488646px;}
.y2e{bottom:236.866747px;}
.y39{bottom:237.263332px;}
.y75{bottom:246.941347px;}
.y46{bottom:247.114001px;}
.y8a{bottom:248.471325px;}
.y61{bottom:251.549359px;}
.y6f{bottom:259.901325px;}
.y1a{bottom:260.082023px;}
.y2d{bottom:262.003736px;}
.y12{bottom:264.941348px;}
.y20{bottom:266.323737px;}
.y4d{bottom:266.368230px;}
.y38{bottom:271.935844px;}
.y89{bottom:274.121348px;}
.y68{bottom:274.589326px;}
.ya{bottom:277.901326px;}
.y79{bottom:286.285726px;}
.y2c{bottom:287.140726px;}
.y4e{bottom:289.198227px;}
.y45{bottom:290.314002px;}
.y2{bottom:290.655935px;}
.y60{bottom:292.589326px;}
.y74{bottom:296.621326px;}
.y88{bottom:299.771360px;}
.y58{bottom:302.150308px;}
.y1f{bottom:304.285727px;}
.y6e{bottom:305.261327px;}
.y4c{bottom:305.698220px;}
.y42{bottom:305.759285px;}
.y6c{bottom:305.969998px;}
.yf{bottom:306.098630px;}
.y37{bottom:306.608334px;}
.y33{bottom:310.211338px;}
.y2b{bottom:312.277727px;}
.y11{bottom:314.621327px;}
.y67{bottom:315.629338px;}
.y9{bottom:323.261327px;}
.y78{bottom:324.247738px;}
.y87{bottom:325.421350px;}
.y5f{bottom:333.629339px;}
.y2a{bottom:337.414722px;}
.y36{bottom:341.280824px;}
.y1e{bottom:342.247739px;}
.y4b{bottom:345.028222px;}
.y73{bottom:346.301328px;}
.y41{bottom:348.959282px;}
.y6d{bottom:350.621328px;}
.y86{bottom:351.071346px;}
.y66{bottom:356.669335px;}
.y82{bottom:359.228377px;}
.y32{bottom:359.261340px;}
.y77{bottom:362.209728px;}
.y10{bottom:364.301328px;}
.y8{bottom:368.621329px;}
.y5e{bottom:374.669336px;}
.y35{bottom:375.953336px;}
.y85{bottom:376.721340px;}
.y1d{bottom:380.209729px;}
.y29{bottom:382.826023px;}
.y4a{bottom:384.358223px;}
.y1{bottom:387.855927px;}
.y40{bottom:392.159288px;}
.y57{bottom:395.750304px;}
.y84{bottom:402.371338px;}
.y7{bottom:413.981330px;}
.y34{bottom:414.341332px;}
.y5d{bottom:415.709330px;}
.y1c{bottom:418.171730px;}
.y28{bottom:419.334530px;}
.y83{bottom:428.021333px;}
.y3f{bottom:435.359289px;}
.y49{bottom:440.188228px;}
.y43{bottom:441.808228px;}
.y16{bottom:442.624360px;}
.y5{bottom:484.674919px;}
.y6{bottom:536.255788px;}
.h12{height:27.677491px;}
.h11{height:46.931398px;}
.h7{height:52.128002px;}
.h15{height:52.704002px;}
.h1b{height:61.154297px;}
.h22{height:65.160002px;}
.h21{height:65.880002px;}
.he{height:67.054390px;}
.hf{height:68.422854px;}
.h6{height:69.504004px;}
.ha{height:74.664000px;}
.h14{height:78.507005px;}
.h19{height:81.738005px;}
.h17{height:83.448005px;}
.h1c{height:86.175406px;}
.h9{height:88.400408px;}
.h18{height:91.456060px;}
.hd{height:93.769204px;}
.h13{height:95.976566px;}
.h8{height:97.502410px;}
.h1f{height:97.902010px;}
.hc{height:98.946001px;}
.h1e{height:104.256003px;}
.h2{height:105.408003px;}
.h16{height:105.840003px;}
.h10{height:109.799999px;}
.hb{height:110.709962px;}
.h4{height:123.480000px;}
.h3{height:140.544009px;}
.h20{height:216.090016px;}
.h1d{height:228.384016px;}
.h1a{height:229.320016px;}
.h1{height:237.168008px;}
.h5{height:479.882828px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x17{left:24.652559px;}
.x15{left:33.401576px;}
.x1d{left:42.283466px;}
.x6{left:46.939963px;}
.x7{left:52.195822px;}
.xf{left:53.830879px;}
.x18{left:56.729382px;}
.x2{left:59.791288px;}
.xa{left:100.939964px;}
.x8{left:106.195824px;}
.x10{left:107.830882px;}
.x19{left:110.729384px;}
.x1b{left:121.913104px;}
.x20{left:136.615825px;}
.xd{left:154.939966px;}
.x1e{left:160.195826px;}
.x5{left:185.639766px;}
.x1f{left:208.939968px;}
.x1a{left:211.138128px;}
.x3{left:261.319351px;}
.x1{left:271.201385px;}
.x4{left:297.383338px;}
.x21{left:359.682334px;}
.x1c{left:403.354374px;}
.x16{left:550.125018px;}
.x13{left:574.567916px;}
.x12{left:579.823775px;}
.x14{left:665.279526px;}
.xb{left:678.915359px;}
.x11{left:685.405484px;}
.xc{left:688.228380px;}
.x9{left:780.841555px;}
.xe{left:930.685080px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.005080pt;}
.ls5{letter-spacing:0.009040pt;}
.ls4{letter-spacing:95.967760pt;}
.ls3{letter-spacing:95.985358pt;}
.ls2{letter-spacing:95.985362pt;}
.ls7{letter-spacing:95.987844pt;}
.ls1{letter-spacing:96.000503pt;}
.ws5{word-spacing:-60.800004pt;}
.ws6{word-spacing:-29.866667pt;}
.ws1{word-spacing:-25.600001pt;}
.ws3{word-spacing:-19.443199pt;}
.ws2{word-spacing:-18.133333pt;}
.ws4{word-spacing:-12.800000pt;}
.ws0{word-spacing:0.000000pt;}
._4{margin-left:-796.725025pt;}
._c{margin-left:-14.373334pt;}
._b{margin-left:-9.408000pt;}
._9{margin-left:-8.320000pt;}
._1{margin-left:-6.624000pt;}
._5{margin-left:-5.568000pt;}
._2{margin-left:-4.608000pt;}
._0{margin-left:-2.880000pt;}
._3{margin-left:-1.280000pt;}
._6{width:1.280000pt;}
._7{width:2.816000pt;}
._a{width:4.032000pt;}
._8{width:6.016000pt;}
.fs10{font-size:30.666667pt;}
.fsf{font-size:52.000002pt;}
.fs6{font-size:64.000002pt;}
.fs14{font-size:74.666666pt;}
.fsc{font-size:78.399995pt;}
.fsd{font-size:80.000003pt;}
.fs5{font-size:85.333339pt;}
.fs9{font-size:90.666667pt;}
.fs11{font-size:95.333339pt;}
.fs12{font-size:101.333339pt;}
.fs15{font-size:105.801603pt;}
.fs8{font-size:108.533343pt;}
.fsb{font-size:113.866672pt;}
.fs7{font-size:118.400012pt;}
.fsa{font-size:122.666668pt;}
.fs1{font-size:128.000004pt;}
.fse{font-size:133.333332pt;}
.fs3{font-size:149.333333pt;}
.fs2{font-size:170.666677pt;}
.fs16{font-size:261.333352pt;}
.fs13{font-size:277.333353pt;}
.fs0{font-size:288.000009pt;}
.fs4{font-size:640.000020pt;}
.y0{bottom:0.000000pt;}
.y44{bottom:17.655733pt;}
.y1b{bottom:19.088803pt;}
.y19{bottom:33.537824pt;}
.y5c{bottom:36.320388pt;}
.y90{bottom:52.063394pt;}
.y5b{bottom:58.720387pt;}
.y18{bottom:59.137817pt;}
.y3e{bottom:61.664725pt;}
.y6b{bottom:71.220635pt;}
.y7c{bottom:71.500235pt;}
.y81{bottom:75.236135pt;}
.y65{bottom:77.679435pt;}
.y72{bottom:78.063415pt;}
.y17{bottom:84.737815pt;}
.ye{bottom:85.743435pt;}
.y3d{bottom:87.620756pt;}
.y24{bottom:88.005856pt;}
.y8f{bottom:90.863366pt;}
.y56{bottom:96.931786pt;}
.y5a{bottom:102.178016pt;}
.y52{bottom:102.558466pt;}
.y15{bottom:103.023396pt;}
.y7b{bottom:105.244226pt;}
.y80{bottom:108.980126pt;}
.y4{bottom:110.665816pt;}
.y8e{bottom:113.663356pt;}
.y64{bottom:114.159416pt;}
.y27{bottom:118.303437pt;}
.y71{bottom:118.383417pt;}
.y3c{bottom:118.440767pt;}
.y25{bottom:124.804289pt;}
.yd{bottom:126.063447pt;}
.y31{bottom:128.849577pt;}
.y55{bottom:131.891787pt;}
.y23{bottom:135.500237pt;}
.y8d{bottom:136.463347pt;}
.y51{bottom:137.518457pt;}
.y7f{bottom:142.724137pt;}
.y48{bottom:142.856887pt;}
.y14{bottom:147.183397pt;}
.y3b{bottom:149.260737pt;}
.y63{bottom:150.639398pt;}
.y8c{bottom:159.263368pt;}
.y76{bottom:159.343408pt;}
.y30{bottom:165.860228pt;}
.yc{bottom:166.383418pt;}
.y54{bottom:166.851778pt;}
.y22{bottom:169.244228pt;}
.y6a{bottom:171.119388pt;}
.y3{bottom:171.960838pt;}
.y50{bottom:172.478458pt;}
.y70{bottom:174.703418pt;}
.y7e{bottom:176.468128pt;}
.y26{bottom:176.623408pt;}
.y3a{bottom:180.080728pt;}
.y47{bottom:181.256885pt;}
.y8b{bottom:182.063389pt;}
.y59{bottom:185.378039pt;}
.y62{bottom:187.119419pt;}
.y2f{bottom:188.204219pt;}
.y13{bottom:191.343409pt;}
.y53{bottom:201.811769pt;}
.y21{bottom:202.988219pt;}
.y7a{bottom:204.732209pt;}
.yb{bottom:206.703419pt;}
.y4f{bottom:207.438449pt;}
.y69{bottom:207.599399pt;}
.y7d{bottom:210.212129pt;}
.y2e{bottom:210.548219pt;}
.y39{bottom:210.900739pt;}
.y75{bottom:219.503420pt;}
.y46{bottom:219.656890pt;}
.y8a{bottom:220.863400pt;}
.y61{bottom:223.599430pt;}
.y6f{bottom:231.023400pt;}
.y1a{bottom:231.184020pt;}
.y2d{bottom:232.892210pt;}
.y12{bottom:235.503420pt;}
.y20{bottom:236.732210pt;}
.y4d{bottom:236.771760pt;}
.y38{bottom:241.720750pt;}
.y89{bottom:243.663421pt;}
.y68{bottom:244.079401pt;}
.ya{bottom:247.023401pt;}
.y79{bottom:254.476201pt;}
.y2c{bottom:255.236201pt;}
.y4e{bottom:257.065091pt;}
.y45{bottom:258.056891pt;}
.y2{bottom:258.360831pt;}
.y60{bottom:260.079401pt;}
.y74{bottom:263.663401pt;}
.y88{bottom:266.463431pt;}
.y58{bottom:268.578051pt;}
.y1f{bottom:270.476201pt;}
.y6e{bottom:271.343401pt;}
.y4c{bottom:271.731751pt;}
.y42{bottom:271.786031pt;}
.y6c{bottom:271.973331pt;}
.yf{bottom:272.087671pt;}
.y37{bottom:272.540741pt;}
.y33{bottom:275.743412pt;}
.y2b{bottom:277.580202pt;}
.y11{bottom:279.663402pt;}
.y67{bottom:280.559412pt;}
.y9{bottom:287.343402pt;}
.y78{bottom:288.220212pt;}
.y87{bottom:289.263422pt;}
.y5f{bottom:296.559412pt;}
.y2a{bottom:299.924197pt;}
.y36{bottom:303.360732pt;}
.y1e{bottom:304.220212pt;}
.y4b{bottom:306.691753pt;}
.y73{bottom:307.823403pt;}
.y41{bottom:310.186029pt;}
.y6d{bottom:311.663403pt;}
.y86{bottom:312.063419pt;}
.y66{bottom:317.039409pt;}
.y82{bottom:319.314113pt;}
.y32{bottom:319.343413pt;}
.y77{bottom:321.964203pt;}
.y10{bottom:323.823403pt;}
.y8{bottom:327.663403pt;}
.y5e{bottom:333.039409pt;}
.y35{bottom:334.180743pt;}
.y85{bottom:334.863413pt;}
.y1d{bottom:337.964204pt;}
.y29{bottom:340.289799pt;}
.y4a{bottom:341.651754pt;}
.y1{bottom:344.760824pt;}
.y40{bottom:348.586034pt;}
.y57{bottom:351.778048pt;}
.y84{bottom:357.663411pt;}
.y7{bottom:367.983404pt;}
.y34{bottom:368.303407pt;}
.y5d{bottom:369.519405pt;}
.y1c{bottom:371.708205pt;}
.y28{bottom:372.741805pt;}
.y83{bottom:380.463407pt;}
.y3f{bottom:386.986035pt;}
.y49{bottom:391.278425pt;}
.y43{bottom:392.718425pt;}
.y16{bottom:393.443875pt;}
.y5{bottom:430.822151pt;}
.y6{bottom:476.671812pt;}
.h12{height:24.602214pt;}
.h11{height:41.716798pt;}
.h7{height:46.336001pt;}
.h15{height:46.848001pt;}
.h1b{height:54.359375pt;}
.h22{height:57.920002pt;}
.h21{height:58.560002pt;}
.he{height:59.603902pt;}
.hf{height:60.820314pt;}
.h6{height:61.781337pt;}
.ha{height:66.368000pt;}
.h14{height:69.784004pt;}
.h19{height:72.656004pt;}
.h17{height:74.176004pt;}
.h1c{height:76.600361pt;}
.h9{height:78.578141pt;}
.h18{height:81.294276pt;}
.hd{height:83.350404pt;}
.h13{height:85.312503pt;}
.h8{height:86.668809pt;}
.h1f{height:87.024009pt;}
.hc{height:87.952001pt;}
.h1e{height:92.672003pt;}
.h2{height:93.696003pt;}
.h16{height:94.080003pt;}
.h10{height:97.599999pt;}
.hb{height:98.408855pt;}
.h4{height:109.760000pt;}
.h3{height:124.928008pt;}
.h20{height:192.080014pt;}
.h1d{height:203.008014pt;}
.h1a{height:203.840014pt;}
.h1{height:210.816007pt;}
.h5{height:426.562514pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x17{left:21.913386pt;}
.x15{left:29.690290pt;}
.x1d{left:37.585303pt;}
.x6{left:41.724411pt;}
.x7{left:46.396286pt;}
.xf{left:47.849671pt;}
.x18{left:50.426118pt;}
.x2{left:53.147812pt;}
.xa{left:89.724413pt;}
.x8{left:94.396288pt;}
.x10{left:95.849673pt;}
.x19{left:98.426119pt;}
.x1b{left:108.367203pt;}
.x20{left:121.436289pt;}
.xd{left:137.724414pt;}
.x1e{left:142.396290pt;}
.x5{left:165.013125pt;}
.x1f{left:185.724416pt;}
.x1a{left:187.678336pt;}
.x3{left:232.283867pt;}
.x1{left:241.067898pt;}
.x4{left:264.340744pt;}
.x21{left:319.717630pt;}
.x1c{left:358.537221pt;}
.x16{left:489.000016pt;}
.x13{left:510.727036pt;}
.x12{left:515.398911pt;}
.x14{left:591.359579pt;}
.xb{left:603.480319pt;}
.x11{left:609.249319pt;}
.xc{left:611.758560pt;}
.x9{left:694.081382pt;}
.xe{left:827.275626pt;}
}




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