
    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_911209d8cb301c3e25b2ed8b.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.432129;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_122598231fc2790061363316.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.432129;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_4c14832c25f24596d4f231ef.woff2')format("woff");}.ff3{font-family:ff3;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;}
.m2{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);}
.m4{transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250142,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250146,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250424,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250424,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250424,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250428,0.000000,0.000000,0.250000,0,0);}
.va{vertical-align:-47.359800px;}
.v3{vertical-align:-34.739400px;}
.v1{vertical-align:-31.588200px;}
.v4{vertical-align:-24.436200px;}
.v7{vertical-align:-23.194200px;}
.v5{vertical-align:-15.899372px;}
.v2{vertical-align:-11.857200px;}
.v6{vertical-align:-7.591212px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:1.138682px;}
.v9{vertical-align:4.090820px;}
.ls0{letter-spacing:0.000000px;}
.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;}
}
.ws4{word-spacing:0.000000px;}
.ws0{word-spacing:17.189776px;}
.ws8{word-spacing:171.783999px;}
.ws7{word-spacing:202.837108px;}
.wsc{word-spacing:210.078304px;}
.ws3{word-spacing:258.910202px;}
.ws9{word-spacing:501.694766px;}
.ws6{word-spacing:518.521953px;}
.ws5{word-spacing:521.642785px;}
.wsb{word-spacing:523.709281px;}
.wsa{word-spacing:556.478013px;}
.ws1{word-spacing:896.111130px;}
.ws2{word-spacing:959.793830px;}
.fc0{color:rgb(0,0,0);}
.fs1{font-size:31.546800px;}
.fs4{font-size:31.630200px;}
.fs0{font-size:42.062400px;}
.fs3{font-size:42.173400px;}
.fs2{font-size:65.880000px;}
.y0{bottom:0.000000px;}
.yb8{bottom:3.859950px;}
.ya7{bottom:6.963965px;}
.y81{bottom:9.547985px;}
.y8c{bottom:10.242014px;}
.y86{bottom:10.294592px;}
.ybb{bottom:12.004950px;}
.y87{bottom:13.018133px;}
.ye3{bottom:16.777350px;}
.yea{bottom:17.087250px;}
.ye6{bottom:17.119376px;}
.y44{bottom:24.352650px;}
.yef{bottom:24.824700px;}
.y8e{bottom:30.230850px;}
.y43{bottom:32.736000px;}
.y8d{bottom:32.956950px;}
.ye0{bottom:35.212500px;}
.y3d{bottom:45.147450px;}
.y3c{bottom:47.873700px;}
.ye8{bottom:50.290800px;}
.y77{bottom:51.496650px;}
.y91{bottom:52.065450px;}
.ye7{bottom:53.024250px;}
.yba{bottom:54.786900px;}
.y70{bottom:54.960300px;}
.ye2{bottom:55.178700px;}
.yb9{bottom:57.520200px;}
.y6f{bottom:57.686550px;}
.ye1{bottom:57.912150px;}
.y7d{bottom:59.307150px;}
.yb7{bottom:61.898100px;}
.y76{bottom:62.907750px;}
.yb6{bottom:64.631550px;}
.y40{bottom:66.982500px;}
.yec{bottom:67.817550px;}
.yeb{bottom:70.551000px;}
.y8f{bottom:71.150250px;}
.y90{bottom:71.402624px;}
.y7a{bottom:73.342050px;}
.y73{bottom:76.805700px;}
.y93{bottom:82.067700px;}
.yed{bottom:85.680600px;}
.y3e{bottom:86.067000px;}
.y3f{bottom:86.319374px;}
.y78{bottom:92.416050px;}
.y79{bottom:92.668424px;}
.y71{bottom:95.879700px;}
.y72{bottom:96.132074px;}
.y42{bottom:96.984600px;}
.y92{bottom:97.230750px;}
.y7c{bottom:103.344300px;}
.y75{bottom:106.807950px;}
.yee{bottom:108.116700px;}
.y41{bottom:112.147650px;}
.y7b{bottom:118.507350px;}
.y74{bottom:121.971000px;}
.ye9{bottom:143.707200px;}
.ybc{bottom:148.203150px;}
.y82{bottom:150.814555px;}
.y7f{bottom:151.855600px;}
.y89{bottom:152.381380px;}
.y1c{bottom:153.439800px;}
.y85{bottom:153.874595px;}
.y66{bottom:154.433100px;}
.y5d{bottom:156.234000px;}
.yd8{bottom:176.953500px;}
.yde{bottom:177.817350px;}
.ydb{bottom:181.323300px;}
.ye5{bottom:182.049000px;}
.y2c{bottom:183.719550px;}
.y36{bottom:195.796500px;}
.y26{bottom:196.244700px;}
.y5f{bottom:197.243250px;}
.y35{bottom:198.522750px;}
.y25{bottom:198.970800px;}
.y57{bottom:199.044150px;}
.y5e{bottom:199.969500px;}
.y56{bottom:201.770400px;}
.y68{bottom:202.498500px;}
.y65{bottom:205.044300px;}
.y67{bottom:205.224750px;}
.y6e{bottom:210.308700px;}
.y39{bottom:217.631400px;}
.y29{bottom:218.079450px;}
.ye4{bottom:218.142450px;}
.ydd{bottom:218.295900px;}
.y62{bottom:219.078150px;}
.ycc{bottom:219.380400px;}
.yda{bottom:219.724800px;}
.y5a{bottom:220.878900px;}
.ydc{bottom:221.029500px;}
.ycb{bottom:222.113850px;}
.yd9{bottom:222.458250px;}
.yc9{bottom:223.597800px;}
.y6b{bottom:224.343900px;}
.yc8{bottom:226.331100px;}
.yb5{bottom:230.758050px;}
.yb4{bottom:233.491500px;}
.y37{bottom:236.716050px;}
.y38{bottom:236.968424px;}
.y27{bottom:237.164250px;}
.y28{bottom:237.416624px;}
.y60{bottom:238.162800px;}
.y61{bottom:238.415174px;}
.y58{bottom:239.953200px;}
.y59{bottom:240.205574px;}
.y69{bottom:243.418200px;}
.y6a{bottom:243.670574px;}
.y3b{bottom:247.633650px;}
.y2b{bottom:248.081850px;}
.y64{bottom:249.080250px;}
.y5c{bottom:250.881150px;}
.y6d{bottom:254.346300px;}
.y3a{bottom:262.796700px;}
.y2a{bottom:263.244900px;}
.y63{bottom:264.243300px;}
.y5b{bottom:266.044350px;}
.y6c{bottom:269.509350px;}
.y88{bottom:299.242249px;}
.y83{bottom:299.557717px;}
.yb0{bottom:299.708250px;}
.y8b{bottom:300.094013px;}
.y80{bottom:300.504121px;}
.ydf{bottom:311.965350px;}
.ycd{bottom:313.049850px;}
.yca{bottom:317.267250px;}
.y4c{bottom:331.502850px;}
.y24{bottom:332.580750px;}
.y54{bottom:333.760800px;}
.yc4{bottom:338.814450px;}
.yd7{bottom:339.421800px;}
.yc0{bottom:340.509750px;}
.yd1{bottom:340.842000px;}
.yd3{bottom:343.347150px;}
.y46{bottom:344.164950px;}
.yce{bottom:345.221850px;}
.y1e{bottom:345.242850px;}
.ya9{bottom:345.441450px;}
.y4e{bottom:346.423200px;}
.y2e{bottom:346.678500px;}
.y45{bottom:346.891050px;}
.y1d{bottom:347.969100px;}
.ya8{bottom:348.167700px;}
.ybd{bottom:348.792600px;}
.y2d{bottom:349.404600px;}
.y4d{bottom:352.113750px;}
.yaf{bottom:353.495250px;}
.y55{bottom:354.234900px;}
.y34{bottom:354.615150px;}
.y49{bottom:366.010200px;}
.y21{bottom:367.077750px;}
.yac{bottom:367.276350px;}
.y51{bottom:368.268450px;}
.y31{bottom:368.513550px;}
.yd0{bottom:379.243350px;}
.yc6{bottom:381.723000px;}
.ycf{bottom:381.976800px;}
.yc2{bottom:383.418150px;}
.yc5{bottom:384.456450px;}
.y47{bottom:385.084350px;}
.y48{bottom:385.336724px;}
.yc1{bottom:386.151600px;}
.y1f{bottom:386.162250px;}
.yd5{bottom:386.255700px;}
.yaa{bottom:386.361150px;}
.y20{bottom:386.414624px;}
.yab{bottom:386.613524px;}
.y4f{bottom:387.342750px;}
.y50{bottom:387.595124px;}
.y2f{bottom:387.598050px;}
.y30{bottom:387.850424px;}
.yd4{bottom:388.989000px;}
.ybf{bottom:391.701150px;}
.ybe{bottom:394.434600px;}
.y4b{bottom:396.012300px;}
.y23{bottom:397.080000px;}
.yae{bottom:397.278750px;}
.y53{bottom:398.270700px;}
.y33{bottom:398.515800px;}
.y4a{bottom:411.175500px;}
.y22{bottom:412.243050px;}
.yad{bottom:412.441800px;}
.y52{bottom:413.433750px;}
.y32{bottom:413.678850px;}
.yd6{bottom:434.378100px;}
.yd2{bottom:436.037907px;}
.y8a{bottom:450.330390px;}
.y84{bottom:450.540702px;}
.y7e{bottom:451.381950px;}
.ya6{bottom:452.215500px;}
.y1a{bottom:457.464600px;}
.y9{bottom:457.722300px;}
.ya3{bottom:458.071350px;}
.y11{bottom:458.233350px;}
.y94{bottom:462.623850px;}
.yb2{bottom:471.419280px;}
.yc7{bottom:475.139400px;}
.yc3{bottom:477.087450px;}
.y14{bottom:500.413650px;}
.y1{bottom:500.655000px;}
.yb1{bottom:500.670000px;}
.y3{bottom:500.671050px;}
.y9c{bottom:501.020100px;}
.yb{bottom:501.181800px;}
.y13{bottom:503.139750px;}
.y2{bottom:503.397300px;}
.y9b{bottom:503.746500px;}
.ya{bottom:503.908050px;}
.y96{bottom:505.421550px;}
.y95{bottom:508.147800px;}
.y1b{bottom:508.362300px;}
.y12{bottom:509.237550px;}
.y17{bottom:522.258750px;}
.y6{bottom:522.505800px;}
.y9f{bottom:522.855150px;}
.ye{bottom:523.016700px;}
.ya0{bottom:523.107900px;}
.y99{bottom:527.193300px;}
.y9a{bottom:536.100450px;}
.y15{bottom:541.333050px;}
.y4{bottom:541.579950px;}
.y16{bottom:541.585424px;}
.y5{bottom:541.832324px;}
.y9d{bottom:541.939800px;}
.yc{bottom:542.101200px;}
.y9e{bottom:542.192174px;}
.yd{bottom:542.353574px;}
.y97{bottom:546.204000px;}
.y98{bottom:546.456374px;}
.y19{bottom:552.261000px;}
.y8{bottom:552.508050px;}
.ya2{bottom:552.857400px;}
.y10{bottom:553.019100px;}
.ya4{bottom:553.259100px;}
.y18{bottom:567.424050px;}
.y7{bottom:567.671100px;}
.ya1{bottom:568.020450px;}
.yf{bottom:568.182000px;}
.ya5{bottom:571.545900px;}
.yb3{bottom:595.458000px;}
.yf0{bottom:595.530000px;}
.h3{height:32.902327px;}
.h7{height:32.989310px;}
.h2{height:43.869769px;}
.h4{height:43.909277px;}
.h6{height:43.985538px;}
.h8{height:45.124220px;}
.h9{height:48.076358px;}
.h5{height:486.214500px;}
.h1{height:580.950000px;}
.h0{height:1188.000000px;}
.w1{width:725.167500px;}
.w2{width:748.795500px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x4e{left:2.153100px;}
.x20{left:10.970400px;}
.x8{left:12.547200px;}
.x7f{left:14.748900px;}
.x4d{left:37.594800px;}
.x55{left:54.022800px;}
.x1f{left:55.260150px;}
.x7{left:56.837100px;}
.x60{left:62.420727px;}
.x4c{left:66.474000px;}
.x4b{left:69.539186px;}
.x5b{left:73.512450px;}
.x1e{left:84.139350px;}
.x6{left:85.716300px;}
.x1d{left:87.204386px;}
.x5{left:88.770836px;}
.x8a{left:92.143200px;}
.x1{left:95.745000px;}
.x54{left:99.448350px;}
.x1c{left:102.056550px;}
.x4{left:103.623000px;}
.x4a{left:119.216850px;}
.x1a{left:121.058850px;}
.x2{left:122.635950px;}
.x7b{left:124.034700px;}
.x53{left:128.327550px;}
.x52{left:131.382085px;}
.x1b{left:136.882050px;}
.x3{left:138.459150px;}
.x7c{left:139.881750px;}
.x51{left:146.234250px;}
.x18{left:154.279950px;}
.x17{left:155.415300px;}
.x80{left:161.656500px;}
.x4f{left:165.236700px;}
.x43{left:177.646500px;}
.x7e{left:179.341500px;}
.x50{left:181.059900px;}
.x19{left:189.347700px;}
.x16{left:199.705350px;}
.x42{left:206.515200px;}
.x41{left:209.580236px;}
.x5f{left:217.831248px;}
.x5a{left:218.881950px;}
.x40{left:224.432400px;}
.x15{left:228.584550px;}
.x14{left:231.639085px;}
.x88{left:234.388200px;}
.x3e{left:243.434700px;}
.x83{left:244.721250px;}
.x13{left:246.491250px;}
.x59{left:254.334150px;}
.x3f{left:259.257900px;}
.x86{left:261.210150px;}
.x11{left:265.493550px;}
.x3d{left:266.532900px;}
.x61{left:268.897414px;}
.x81{left:271.543050px;}
.x7d{left:274.161600px;}
.x87{left:277.057200px;}
.x12{left:281.316750px;}
.x58{left:283.213350px;}
.x56{left:286.267885px;}
.x82{left:287.390100px;}
.xf{left:295.583850px;}
.x49{left:300.619650px;}
.x10{left:304.420200px;}
.x84{left:315.399000px;}
.x57{left:320.238600px;}
.x48{left:336.071700px;}
.xe{left:339.873600px;}
.x62{left:354.302627px;}
.x63{left:358.979478px;}
.x47{left:364.940250px;}
.xd{left:368.752800px;}
.x3b{left:369.785550px;}
.xc{left:371.807336px;}
.x46{left:382.857600px;}
.xb{left:386.659500px;}
.x3a{left:390.747000px;}
.x9f{left:394.232700px;}
.x3c{left:398.707050px;}
.x44{left:401.859900px;}
.x9{left:405.672300px;}
.x45{left:417.683100px;}
.x39{left:419.626200px;}
.xa{left:421.495500px;}
.x38{left:422.680586px;}
.x85{left:425.285550px;}
.x9d{left:431.718000px;}
.x89{left:433.146900px;}
.x37{left:437.532750px;}
.x2e{left:440.163000px;}
.x27{left:443.732700px;}
.x9e{left:447.565050px;}
.x92{left:453.898800px;}
.x35{left:456.545700px;}
.x36{left:472.368900px;}
.x6f{left:483.390000px;}
.x2d{left:485.588550px;}
.x26{left:497.995650px;}
.x5e{left:502.487201px;}
.x71{left:507.908550px;}
.x70{left:509.583300px;}
.x5c{left:511.461701px;}
.x2c{left:514.457100px;}
.x2b{left:517.522135px;}
.x67{left:519.443400px;}
.x25{left:526.874850px;}
.x24{left:529.939886px;}
.x2a{left:532.374300px;}
.x9c{left:533.830350px;}
.x8d{left:537.494078px;}
.x95{left:542.467950px;}
.x23{left:544.792050px;}
.x66{left:548.322600px;}
.x28{left:551.376450px;}
.x72{left:555.877881px;}
.x21{left:563.794200px;}
.x9a{left:565.136250px;}
.x29{left:567.199800px;}
.x93{left:573.773850px;}
.x8b{left:575.709900px;}
.x22{left:579.617550px;}
.x9b{left:580.983450px;}
.x64{left:585.242250px;}
.x79{left:588.305850px;}
.x94{left:589.620900px;}
.x8c{left:591.556950px;}
.x65{left:601.065450px;}
.x8e{left:605.041350px;}
.xa3{left:614.470500px;}
.x6e{left:624.770550px;}
.x78{left:626.700150px;}
.x6c{left:629.658000px;}
.x34{left:637.040850px;}
.x5d{left:648.933757px;}
.x6d{left:653.649750px;}
.x77{left:655.579350px;}
.x6b{left:656.714636px;}
.x76{left:658.633585px;}
.x33{left:665.919900px;}
.x32{left:668.974286px;}
.x6a{left:671.566800px;}
.x75{left:673.485750px;}
.x31{left:683.826450px;}
.xa2{left:684.849300px;}
.x91{left:688.105800px;}
.x68{left:690.569100px;}
.x73{left:692.498700px;}
.x98{left:695.117700px;}
.x99{left:699.601800px;}
.x2f{left:702.828600px;}
.x69{left:706.392150px;}
.x74{left:708.321900px;}
.x8f{left:714.927900px;}
.x30{left:718.651800px;}
.xa0{left:724.494000px;}
.x96{left:726.423600px;}
.x90{left:730.774800px;}
.xa1{left:740.340900px;}
.x97{left:742.270650px;}
.x7a{left:820.890000px;}
.xa4{left:833.850000px;}
@media print{
.va{vertical-align:-42.097600pt;}
.v3{vertical-align:-30.879467pt;}
.v1{vertical-align:-28.078400pt;}
.v4{vertical-align:-21.721067pt;}
.v7{vertical-align:-20.617067pt;}
.v5{vertical-align:-14.132775pt;}
.v2{vertical-align:-10.539733pt;}
.v6{vertical-align:-6.747744pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:1.012162pt;}
.v9{vertical-align:3.636284pt;}
.ls0{letter-spacing:0.000000pt;}
.ws4{word-spacing:0.000000pt;}
.ws0{word-spacing:15.279801pt;}
.ws8{word-spacing:152.696888pt;}
.ws7{word-spacing:180.299651pt;}
.wsc{word-spacing:186.736270pt;}
.ws3{word-spacing:230.142402pt;}
.ws9{word-spacing:445.950903pt;}
.ws6{word-spacing:460.908403pt;}
.ws5{word-spacing:463.682475pt;}
.wsb{word-spacing:465.519361pt;}
.wsa{word-spacing:494.647123pt;}
.ws1{word-spacing:796.543227pt;}
.ws2{word-spacing:853.150071pt;}
.fs1{font-size:28.041600pt;}
.fs4{font-size:28.115733pt;}
.fs0{font-size:37.388800pt;}
.fs3{font-size:37.487467pt;}
.fs2{font-size:58.560000pt;}
.y0{bottom:0.000000pt;}
.yb8{bottom:3.431067pt;}
.ya7{bottom:6.190191pt;}
.y81{bottom:8.487098pt;}
.y8c{bottom:9.104013pt;}
.y86{bottom:9.150749pt;}
.ybb{bottom:10.671067pt;}
.y87{bottom:11.571674pt;}
.ye3{bottom:14.913200pt;}
.yea{bottom:15.188667pt;}
.ye6{bottom:15.217223pt;}
.y44{bottom:21.646800pt;}
.yef{bottom:22.066400pt;}
.y8e{bottom:26.871867pt;}
.y43{bottom:29.098667pt;}
.y8d{bottom:29.295067pt;}
.ye0{bottom:31.300000pt;}
.y3d{bottom:40.131067pt;}
.y3c{bottom:42.554400pt;}
.ye8{bottom:44.702933pt;}
.y77{bottom:45.774800pt;}
.y91{bottom:46.280400pt;}
.ye7{bottom:47.132667pt;}
.yba{bottom:48.699467pt;}
.y70{bottom:48.853600pt;}
.ye2{bottom:49.047733pt;}
.yb9{bottom:51.129067pt;}
.y6f{bottom:51.276933pt;}
.ye1{bottom:51.477467pt;}
.y7d{bottom:52.717467pt;}
.yb7{bottom:55.020533pt;}
.y76{bottom:55.918000pt;}
.yb6{bottom:57.450267pt;}
.y40{bottom:59.540000pt;}
.yec{bottom:60.282267pt;}
.yeb{bottom:62.712000pt;}
.y8f{bottom:63.244667pt;}
.y90{bottom:63.468999pt;}
.y7a{bottom:65.192933pt;}
.y73{bottom:68.271733pt;}
.y93{bottom:72.949067pt;}
.yed{bottom:76.160533pt;}
.y3e{bottom:76.504000pt;}
.y3f{bottom:76.728333pt;}
.y78{bottom:82.147600pt;}
.y79{bottom:82.371933pt;}
.y71{bottom:85.226400pt;}
.y72{bottom:85.450733pt;}
.y42{bottom:86.208533pt;}
.y92{bottom:86.427333pt;}
.y7c{bottom:91.861600pt;}
.y75{bottom:94.940400pt;}
.yee{bottom:96.103733pt;}
.y41{bottom:99.686800pt;}
.y7b{bottom:105.339867pt;}
.y74{bottom:108.418667pt;}
.ye9{bottom:127.739733pt;}
.ybc{bottom:131.736133pt;}
.y82{bottom:134.057382pt;}
.y7f{bottom:134.982755pt;}
.y89{bottom:135.450115pt;}
.y1c{bottom:136.390933pt;}
.y85{bottom:136.777418pt;}
.y66{bottom:137.273867pt;}
.y5d{bottom:138.874667pt;}
.yd8{bottom:157.292000pt;}
.yde{bottom:158.059867pt;}
.ydb{bottom:161.176267pt;}
.ye5{bottom:161.821333pt;}
.y2c{bottom:163.306267pt;}
.y36{bottom:174.041333pt;}
.y26{bottom:174.439733pt;}
.y5f{bottom:175.327333pt;}
.y35{bottom:176.464667pt;}
.y25{bottom:176.862933pt;}
.y57{bottom:176.928133pt;}
.y5e{bottom:177.750667pt;}
.y56{bottom:179.351467pt;}
.y68{bottom:179.998667pt;}
.y65{bottom:182.261600pt;}
.y67{bottom:182.422000pt;}
.y6e{bottom:186.941067pt;}
.y39{bottom:193.450133pt;}
.y29{bottom:193.848400pt;}
.ye4{bottom:193.904400pt;}
.ydd{bottom:194.040800pt;}
.y62{bottom:194.736133pt;}
.ycc{bottom:195.004800pt;}
.yda{bottom:195.310933pt;}
.y5a{bottom:196.336800pt;}
.ydc{bottom:196.470667pt;}
.ycb{bottom:197.434533pt;}
.yd9{bottom:197.740667pt;}
.yc9{bottom:198.753600pt;}
.y6b{bottom:199.416800pt;}
.yc8{bottom:201.183200pt;}
.yb5{bottom:205.118267pt;}
.yb4{bottom:207.548000pt;}
.y37{bottom:210.414267pt;}
.y38{bottom:210.638599pt;}
.y27{bottom:210.812667pt;}
.y28{bottom:211.036999pt;}
.y60{bottom:211.700267pt;}
.y61{bottom:211.924599pt;}
.y58{bottom:213.291733pt;}
.y59{bottom:213.516066pt;}
.y69{bottom:216.371733pt;}
.y6a{bottom:216.596066pt;}
.y3b{bottom:220.118800pt;}
.y2b{bottom:220.517200pt;}
.y64{bottom:221.404667pt;}
.y5c{bottom:223.005467pt;}
.y6d{bottom:226.085600pt;}
.y3a{bottom:233.597067pt;}
.y2a{bottom:233.995467pt;}
.y63{bottom:234.882933pt;}
.y5b{bottom:236.483867pt;}
.y6c{bottom:239.563867pt;}
.y88{bottom:265.993110pt;}
.y83{bottom:266.273526pt;}
.yb0{bottom:266.407333pt;}
.y8b{bottom:266.750234pt;}
.y80{bottom:267.114774pt;}
.ydf{bottom:277.302533pt;}
.ycd{bottom:278.266533pt;}
.yca{bottom:282.015333pt;}
.y4c{bottom:294.669200pt;}
.y24{bottom:295.627333pt;}
.y54{bottom:296.676267pt;}
.yc4{bottom:301.168400pt;}
.yd7{bottom:301.708267pt;}
.yc0{bottom:302.675333pt;}
.yd1{bottom:302.970667pt;}
.yd3{bottom:305.197467pt;}
.y46{bottom:305.924400pt;}
.yce{bottom:306.863867pt;}
.y1e{bottom:306.882533pt;}
.ya9{bottom:307.059067pt;}
.y4e{bottom:307.931733pt;}
.y2e{bottom:308.158667pt;}
.y45{bottom:308.347600pt;}
.y1d{bottom:309.305867pt;}
.ya8{bottom:309.482400pt;}
.ybd{bottom:310.037867pt;}
.y2d{bottom:310.581867pt;}
.y4d{bottom:312.990000pt;}
.yaf{bottom:314.218000pt;}
.y55{bottom:314.875467pt;}
.y34{bottom:315.213467pt;}
.y49{bottom:325.342400pt;}
.y21{bottom:326.291333pt;}
.yac{bottom:326.467867pt;}
.y51{bottom:327.349733pt;}
.y31{bottom:327.567600pt;}
.yd0{bottom:337.105200pt;}
.yc6{bottom:339.309333pt;}
.ycf{bottom:339.534933pt;}
.yc2{bottom:340.816133pt;}
.yc5{bottom:341.739067pt;}
.y47{bottom:342.297200pt;}
.y48{bottom:342.521533pt;}
.yc1{bottom:343.245867pt;}
.y1f{bottom:343.255333pt;}
.yd5{bottom:343.338400pt;}
.yaa{bottom:343.432133pt;}
.y20{bottom:343.479666pt;}
.yab{bottom:343.656466pt;}
.y4f{bottom:344.304667pt;}
.y50{bottom:344.528999pt;}
.y2f{bottom:344.531600pt;}
.y30{bottom:344.755933pt;}
.yd4{bottom:345.768000pt;}
.ybf{bottom:348.178800pt;}
.ybe{bottom:350.608533pt;}
.y4b{bottom:352.010933pt;}
.y23{bottom:352.960000pt;}
.yae{bottom:353.136667pt;}
.y53{bottom:354.018400pt;}
.y33{bottom:354.236267pt;}
.y4a{bottom:365.489333pt;}
.y22{bottom:366.438267pt;}
.yad{bottom:366.614933pt;}
.y52{bottom:367.496667pt;}
.y32{bottom:367.714533pt;}
.yd6{bottom:386.113867pt;}
.yd2{bottom:387.589251pt;}
.y8a{bottom:400.293680pt;}
.y84{bottom:400.480624pt;}
.y7e{bottom:401.228400pt;}
.ya6{bottom:401.969333pt;}
.y1a{bottom:406.635200pt;}
.y9{bottom:406.864267pt;}
.ya3{bottom:407.174533pt;}
.y11{bottom:407.318533pt;}
.y94{bottom:411.221200pt;}
.yb2{bottom:419.039360pt;}
.yc7{bottom:422.346133pt;}
.yc3{bottom:424.077733pt;}
.y14{bottom:444.812133pt;}
.y1{bottom:445.026667pt;}
.yb1{bottom:445.040000pt;}
.y3{bottom:445.040933pt;}
.y9c{bottom:445.351200pt;}
.yb{bottom:445.494933pt;}
.y13{bottom:447.235333pt;}
.y2{bottom:447.464267pt;}
.y9b{bottom:447.774667pt;}
.ya{bottom:447.918267pt;}
.y96{bottom:449.263600pt;}
.y95{bottom:451.686933pt;}
.y1b{bottom:451.877600pt;}
.y12{bottom:452.655600pt;}
.y17{bottom:464.230000pt;}
.y6{bottom:464.449600pt;}
.y9f{bottom:464.760133pt;}
.ye{bottom:464.903733pt;}
.ya0{bottom:464.984800pt;}
.y99{bottom:468.616267pt;}
.y9a{bottom:476.533733pt;}
.y15{bottom:481.184933pt;}
.y4{bottom:481.404400pt;}
.y16{bottom:481.409266pt;}
.y5{bottom:481.628733pt;}
.y9d{bottom:481.724267pt;}
.yc{bottom:481.867733pt;}
.y9e{bottom:481.948599pt;}
.yd{bottom:482.092066pt;}
.y97{bottom:485.514667pt;}
.y98{bottom:485.738999pt;}
.y19{bottom:490.898667pt;}
.y8{bottom:491.118267pt;}
.ya2{bottom:491.428800pt;}
.y10{bottom:491.572533pt;}
.ya4{bottom:491.785867pt;}
.y18{bottom:504.376933pt;}
.y7{bottom:504.596533pt;}
.ya1{bottom:504.907067pt;}
.yf{bottom:505.050667pt;}
.ya5{bottom:508.040800pt;}
.yb3{bottom:529.296000pt;}
.yf0{bottom:529.360000pt;}
.h3{height:29.246512pt;}
.h7{height:29.323831pt;}
.h2{height:38.995350pt;}
.h4{height:39.030469pt;}
.h6{height:39.098256pt;}
.h8{height:40.110418pt;}
.h9{height:42.734541pt;}
.h5{height:432.190667pt;}
.h1{height:516.400000pt;}
.h0{height:1056.000000pt;}
.w1{width:644.593333pt;}
.w2{width:665.596000pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x4e{left:1.913867pt;}
.x20{left:9.751467pt;}
.x8{left:11.153067pt;}
.x7f{left:13.110133pt;}
.x4d{left:33.417600pt;}
.x55{left:48.020267pt;}
.x1f{left:49.120133pt;}
.x7{left:50.521867pt;}
.x60{left:55.485091pt;}
.x4c{left:59.088000pt;}
.x4b{left:61.812609pt;}
.x5b{left:65.344400pt;}
.x1e{left:74.790533pt;}
.x6{left:76.192267pt;}
.x1d{left:77.515009pt;}
.x5{left:78.907409pt;}
.x8a{left:81.905067pt;}
.x1{left:85.106667pt;}
.x54{left:88.398533pt;}
.x1c{left:90.716933pt;}
.x4{left:92.109333pt;}
.x4a{left:105.970533pt;}
.x1a{left:107.607867pt;}
.x2{left:109.009733pt;}
.x7b{left:110.253067pt;}
.x53{left:114.068933pt;}
.x52{left:116.784076pt;}
.x1b{left:121.672933pt;}
.x3{left:123.074800pt;}
.x7c{left:124.339333pt;}
.x51{left:129.986000pt;}
.x18{left:137.137733pt;}
.x17{left:138.146933pt;}
.x80{left:143.694667pt;}
.x4f{left:146.877067pt;}
.x43{left:157.908000pt;}
.x7e{left:159.414667pt;}
.x50{left:160.942133pt;}
.x19{left:168.309067pt;}
.x16{left:177.515867pt;}
.x42{left:183.569067pt;}
.x41{left:186.293543pt;}
.x5f{left:193.627776pt;}
.x5a{left:194.561733pt;}
.x40{left:199.495467pt;}
.x15{left:203.186267pt;}
.x14{left:205.901409pt;}
.x88{left:208.345067pt;}
.x3e{left:216.386400pt;}
.x83{left:217.530000pt;}
.x13{left:219.103333pt;}
.x59{left:226.074800pt;}
.x3f{left:230.451467pt;}
.x86{left:232.186800pt;}
.x11{left:235.994267pt;}
.x3d{left:236.918133pt;}
.x61{left:239.019924pt;}
.x81{left:241.371600pt;}
.x7d{left:243.699200pt;}
.x87{left:246.273067pt;}
.x12{left:250.059333pt;}
.x58{left:251.745200pt;}
.x56{left:254.460343pt;}
.x82{left:255.457867pt;}
.xf{left:262.741200pt;}
.x49{left:267.217467pt;}
.x10{left:270.595733pt;}
.x84{left:280.354667pt;}
.x57{left:284.656533pt;}
.x48{left:298.730400pt;}
.xe{left:302.109867pt;}
.x62{left:314.935668pt;}
.x63{left:319.092870pt;}
.x47{left:324.391333pt;}
.xd{left:327.780267pt;}
.x3b{left:328.698267pt;}
.xc{left:330.495409pt;}
.x46{left:340.317867pt;}
.xb{left:343.697333pt;}
.x3a{left:347.330667pt;}
.x9f{left:350.429067pt;}
.x3c{left:354.406267pt;}
.x44{left:357.208800pt;}
.x9{left:360.597600pt;}
.x45{left:371.273867pt;}
.x39{left:373.001067pt;}
.xa{left:374.662667pt;}
.x38{left:375.716076pt;}
.x85{left:378.031600pt;}
.x9d{left:383.749333pt;}
.x89{left:385.019467pt;}
.x37{left:388.918000pt;}
.x2e{left:391.256000pt;}
.x27{left:394.429067pt;}
.x9e{left:397.835600pt;}
.x92{left:403.465600pt;}
.x35{left:405.818400pt;}
.x36{left:419.883467pt;}
.x6f{left:429.680000pt;}
.x2d{left:431.634267pt;}
.x26{left:442.662800pt;}
.x5e{left:446.655290pt;}
.x71{left:451.474267pt;}
.x70{left:452.962933pt;}
.x5c{left:454.632623pt;}
.x2c{left:457.295200pt;}
.x2b{left:460.019676pt;}
.x67{left:461.727467pt;}
.x25{left:468.333200pt;}
.x24{left:471.057676pt;}
.x2a{left:473.221600pt;}
.x9c{left:474.515867pt;}
.x8d{left:477.772513pt;}
.x95{left:482.193733pt;}
.x23{left:484.259600pt;}
.x66{left:487.397867pt;}
.x28{left:490.112400pt;}
.x72{left:494.113672pt;}
.x21{left:501.150400pt;}
.x9a{left:502.343333pt;}
.x29{left:504.177600pt;}
.x93{left:510.021200pt;}
.x8b{left:511.742133pt;}
.x22{left:515.215600pt;}
.x9b{left:516.429733pt;}
.x64{left:520.215333pt;}
.x79{left:522.938533pt;}
.x94{left:524.107467pt;}
.x8c{left:525.828400pt;}
.x65{left:534.280400pt;}
.x8e{left:537.814533pt;}
.xa3{left:546.196000pt;}
.x6e{left:555.351600pt;}
.x78{left:557.066800pt;}
.x6c{left:559.696000pt;}
.x34{left:566.258533pt;}
.x5d{left:576.830006pt;}
.x6d{left:581.022000pt;}
.x77{left:582.737200pt;}
.x6b{left:583.746343pt;}
.x76{left:585.452076pt;}
.x33{left:591.928800pt;}
.x32{left:594.643809pt;}
.x6a{left:596.948267pt;}
.x75{left:598.654000pt;}
.x31{left:607.845733pt;}
.xa2{left:608.754933pt;}
.x91{left:611.649600pt;}
.x68{left:613.839200pt;}
.x73{left:615.554400pt;}
.x98{left:617.882400pt;}
.x99{left:621.868267pt;}
.x2f{left:624.736533pt;}
.x69{left:627.904133pt;}
.x74{left:629.619467pt;}
.x8f{left:635.491467pt;}
.x30{left:638.801600pt;}
.xa0{left:643.994667pt;}
.x96{left:645.709867pt;}
.x90{left:649.577600pt;}
.xa1{left:658.080800pt;}
.x97{left:659.796133pt;}
.x7a{left:729.680000pt;}
.xa4{left:741.200000pt;}
}




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