
    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_21335bdf8447694f9915e5f7.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.011000;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_75819f725f056dd531401fcd.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993000;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_1f2265d9b1eb1dbceed7adc1.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_bbca9403c33c50ffeca59b35.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.746094;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_972eae2957f3194b58b4ee63.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.743652;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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-ms-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,0);-webkit-transform:matrix(0.245145,0.000000,-0.049029,0.245145,0,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);}
.v4{vertical-align:-40.500001px;}
.v2{vertical-align:-31.500010px;}
.v1{vertical-align:-23.952781px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:17.279992px;}
.v5{vertical-align:40.500001px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.038496px;}
.lsb{letter-spacing:107.972030px;}
.lsa{letter-spacing:107.972093px;}
.ls1{letter-spacing:108.000426px;}
.ls4{letter-spacing:318.212512px;}
.ls8{letter-spacing:319.401304px;}
.ls9{letter-spacing:331.063757px;}
.ls7{letter-spacing:349.326413px;}
.ls2{letter-spacing:360.988861px;}
.ls3{letter-spacing:378.922761px;}
.ls6{letter-spacing:420.981716px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(202,202,202),0 0.015em rgb(202,202,202),0.015em 0 rgb(202,202,202),0 -0.015em  rgb(202,202,202);}
.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(202,202,202);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws4{word-spacing:-27.000001px;}
.ws2{word-spacing:-21.000000px;}
.ws6{word-spacing:-18.000001px;}
.ws5{word-spacing:-0.001080px;}
.ws0{word-spacing:0.000000px;}
.ws3{word-spacing:389.619552px;}
.ws1{word-spacing:1842.285393px;}
._1c{margin-left:-10.080000px;}
._3{margin-left:-8.532000px;}
._4{margin-left:-6.468000px;}
._1{margin-left:-4.704000px;}
._2{margin-left:-3.434401px;}
._0{margin-left:-2.332800px;}
._5{margin-left:-1.320000px;}
._1a{width:13.494690px;}
._19{width:37.856252px;}
._1b{width:107.999814px;}
._b{width:237.606639px;}
._e{width:243.757954px;}
._13{width:249.200607px;}
._8{width:252.339824px;}
._12{width:258.968064px;}
._10{width:268.062786px;}
._c{width:292.379056px;}
._6{width:296.916742px;}
._11{width:306.288535px;}
._16{width:325.907096px;}
._18{width:328.522171px;}
._f{width:347.630837px;}
._d{width:349.587067px;}
._a{width:375.249021px;}
._15{width:379.073733px;}
._7{width:381.481079px;}
._17{width:440.674449px;}
._9{width:467.389146px;}
._14{width:471.106967px;}
.fc5{color:rgb(255,255,0);}
.fc4{color:transparent;}
.fc3{color:rgb(255,217,102);}
.fc6{color:rgb(0,0,0);}
.fc2{color:rgb(34,34,34);}
.fc1{color:rgb(202,202,202);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:48.000003px;}
.fsa{font-size:56.000003px;}
.fs10{font-size:60.000000px;}
.fs9{font-size:66.000004px;}
.fs15{font-size:67.500002px;}
.fsc{font-size:72.000002px;}
.fs13{font-size:72.000006px;}
.fs8{font-size:78.000005px;}
.fsd{font-size:83.699994px;}
.fs6{font-size:84.000000px;}
.fse{font-size:90.000003px;}
.fs12{font-size:91.800012px;}
.fs2{font-size:96.000006px;}
.fsf{font-size:102.000000px;}
.fs4{font-size:108.000003px;}
.fs5{font-size:110.138825px;}
.fs1{font-size:126.000004px;}
.fs7{font-size:132.000007px;}
.fs11{font-size:144.000005px;}
.fs14{font-size:149.999999px;}
.fs3{font-size:162.000005px;}
.fs0{font-size:259.199986px;}
.y0{bottom:0.000000px;}
.y24{bottom:27.160946px;}
.y48{bottom:28.414939px;}
.y76{bottom:30.756345px;}
.y82{bottom:35.080947px;}
.y14{bottom:35.136375px;}
.y29{bottom:35.344085px;}
.y6d{bottom:41.504044px;}
.y2e{bottom:53.966187px;}
.y5e{bottom:55.900827px;}
.y10{bottom:56.314591px;}
.y78{bottom:57.623135px;}
.y6b{bottom:58.086725px;}
.y16{bottom:62.848693px;}
.y75{bottom:63.156353px;}
.yb{bottom:72.734495px;}
.y7c{bottom:75.395543px;}
.y6c{bottom:78.764046px;}
.y85{bottom:84.985948px;}
.y2d{bottom:86.366177px;}
.yf{bottom:93.574581px;}
.y6a{bottom:95.346726px;}
.y74{bottom:95.556359px;}
.y42{bottom:97.786559px;}
.y12{bottom:102.272103px;}
.y7b{bottom:107.795549px;}
.y23{bottom:110.426924px;}
.y97{bottom:112.415890px;}
.y77{bottom:112.883137px;}
.y69{bottom:114.998254px;}
.y2c{bottom:118.766178px;}
.y55{bottom:121.775891px;}
.y4b{bottom:122.334667px;}
.y22{bottom:125.906927px;}
.y41{bottom:128.386571px;}
.ye{bottom:130.834571px;}
.y62{bottom:136.451849px;}
.y68{bottom:140.198252px;}
.y96{bottom:149.675892px;}
.y2b{bottom:151.166186px;}
.y40{bottom:158.986549px;}
.y4{bottom:161.549673px;}
.yd{bottom:168.094583px;}
.y61{bottom:168.851855px;}
.y21{bottom:172.702192px;}
.y54{bottom:177.035915px;}
.y2a{bottom:183.566191px;}
.y95{bottom:184.415926px;}
.y3f{bottom:189.586562px;}
.y3{bottom:192.149675px;}
.y4a{bottom:193.396505px;}
.y7a{bottom:210.044154px;}
.y53{bottom:211.381187px;}
.y94{bottom:213.395916px;}
.y1f{bottom:217.338063px;}
.y3e{bottom:220.186563px;}
.yc{bottom:223.354585px;}
.y5b{bottom:225.670515px;}
.y49{bottom:225.796510px;}
.y5d{bottom:229.385051px;}
.y51{bottom:232.295905px;}
.y1e{bottom:233.898065px;}
.y20{bottom:238.218063px;}
.y8c{bottom:239.386286px;}
.y32{bottom:240.746437px;}
.y89{bottom:241.016793px;}
.y83{bottom:241.542967px;}
.y93{bottom:242.375917px;}
.y79{bottom:242.444160px;}
.y3d{bottom:250.786564px;}
.y5a{bottom:250.870513px;}
.y5c{bottom:254.585050px;}
.ya{bottom:257.519534px;}
.y44{bottom:263.507006px;}
.y31{bottom:267.746435px;}
.y8b{bottom:271.786294px;}
.y88{bottom:273.416794px;}
.y92{bottom:273.875918px;}
.y1d{bottom:279.613925px;}
.y3c{bottom:281.386553px;}
.y50{bottom:287.555896px;}
.y1c{bottom:295.093927px;}
.y8e{bottom:295.835896px;}
.y8a{bottom:304.186299px;}
.y87{bottom:305.816802px;}
.y91{bottom:308.615897px;}
.y67{bottom:309.830032px;}
.y2{bottom:311.810845px;}
.y3b{bottom:311.986554px;}
.y43{bottom:318.767008px;}
.y30{bottom:319.467384px;}
.y9{bottom:323.555897px;}
.y60{bottom:327.281976px;}
.y25{bottom:329.985242px;}
.y26{bottom:331.398256px;}
.y90{bottom:337.595898px;}
.y86{bottom:338.216808px;}
.y1b{bottom:340.809786px;}
.y3a{bottom:342.586555px;}
.y4f{bottom:342.815887px;}
.y59{bottom:344.210898px;}
.y4c{bottom:348.063055px;}
.y2f{bottom:351.867389px;}
.y1a{bottom:356.289789px;}
.y8{bottom:360.815887px;}
.y27{bottom:361.530330px;}
.y70{bottom:364.045728px;}
.y80{bottom:365.853401px;}
.y8f{bottom:366.575899px;}
.y39{bottom:373.186551px;}
.y58{bottom:375.881899px;}
.y66{bottom:376.134709px;}
.y4e{bottom:380.075899px;}
.y47{bottom:380.463056px;}
.y1{bottom:389.570825px;}
.y73{bottom:394.866595px;}
.y6f{bottom:396.445736px;}
.y7{bottom:398.075900px;}
.y7f{bottom:398.253402px;}
.y38{bottom:403.786546px;}
.y8d{bottom:403.835900px;}
.y57{bottom:407.552900px;}
.y65{bottom:408.534710px;}
.y19{bottom:412.803883px;}
.y46{bottom:412.863064px;}
.y35{bottom:417.142186px;}
.y81{bottom:419.559086px;}
.y72{bottom:427.266603px;}
.y18{bottom:428.283885px;}
.y6e{bottom:428.845742px;}
.y11{bottom:429.575901px;}
.y7e{bottom:430.653410px;}
.y37{bottom:434.386541px;}
.y6{bottom:435.335901px;}
.y56{bottom:439.223899px;}
.y64{bottom:440.934718px;}
.y45{bottom:445.263070px;}
.y34{bottom:449.542194px;}
.y71{bottom:459.666608px;}
.y7d{bottom:463.053415px;}
.y36{bottom:464.986539px;}
.y63{bottom:473.334723px;}
.y17{bottom:475.079173px;}
.y33{bottom:481.942200px;}
.y5{bottom:505.932990px;}
.y84{bottom:508.812988px;}
.y5f{bottom:520.020591px;}
.y13{bottom:525.450708px;}
.y52{bottom:526.602635px;}
.y15{bottom:537.810946px;}
.y4d{bottom:539.390670px;}
.y28{bottom:546.125905px;}
.he{height:34.945315px;}
.h13{height:43.800000px;}
.hc{height:48.049807px;}
.ha{height:48.180003px;}
.h17{height:49.275002px;}
.hf{height:52.560002px;}
.h9{height:56.940004px;}
.h10{height:61.100995px;}
.hd{height:61.154297px;}
.h7{height:61.320000px;}
.hb{height:65.329799px;}
.h11{height:65.700002px;}
.h15{height:67.014009px;}
.h3{height:70.080004px;}
.h12{height:74.460000px;}
.h5{height:78.840003px;}
.h6{height:80.401342px;}
.h2{height:91.980003px;}
.h8{height:96.360005px;}
.h14{height:105.120003px;}
.h16{height:122.549999px;}
.h4{height:132.354004px;}
.h1{height:211.766388px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x21{left:37.582643px;}
.x3b{left:39.965553px;}
.x25{left:44.849411px;}
.x5{left:46.939963px;}
.x32{left:52.810041px;}
.x36{left:56.169662px;}
.x6{left:57.631857px;}
.x1c{left:61.635830px;}
.x23{left:65.328100px;}
.x2c{left:68.125429px;}
.xc{left:70.355284px;}
.x22{left:80.890750px;}
.x1d{left:82.807567px;}
.x1{left:91.309063px;}
.x24{left:93.250402px;}
.x3d{left:100.939964px;}
.x1e{left:104.407570px;}
.xd{left:113.663391px;}
.x43{left:115.262959px;}
.x26{left:126.035439px;}
.x1f{left:128.672250px;}
.x29{left:136.804066px;}
.x27{left:139.834208px;}
.x1a{left:142.704595px;}
.x11{left:145.594584px;}
.x14{left:147.362396px;}
.x18{left:150.857026px;}
.x16{left:159.614099px;}
.x12{left:182.354822px;}
.x3a{left:188.992626px;}
.x2{left:195.949829px;}
.x3e{left:237.950794px;}
.x2d{left:273.377742px;}
.x9{left:296.595493px;}
.x3{left:300.268292px;}
.x4{left:312.798768px;}
.x10{left:315.248028px;}
.x28{left:354.996540px;}
.x8{left:363.487230px;}
.xf{left:381.186046px;}
.x3f{left:392.997073px;}
.x33{left:397.908508px;}
.xe{left:405.189080px;}
.x34{left:412.759656px;}
.xa{left:442.145444px;}
.xb{left:453.481656px;}
.x39{left:503.630904px;}
.x40{left:582.259856px;}
.x2a{left:596.539369px;}
.x3c{left:598.497094px;}
.x2f{left:636.043520px;}
.x7{left:646.905351px;}
.x2b{left:680.268329px;}
.x30{left:681.580079px;}
.x37{left:682.674243px;}
.x38{left:688.951766px;}
.x19{left:697.677082px;}
.x35{left:707.521680px;}
.x20{left:773.816987px;}
.x2e{left:811.756938px;}
.x13{left:845.288541px;}
.x41{left:851.634835px;}
.x1b{left:873.700234px;}
.x31{left:877.028878px;}
.x15{left:891.581324px;}
.x17{left:893.863761px;}
.x42{left:908.051177px;}
@media print{
.v4{vertical-align:-36.000001pt;}
.v2{vertical-align:-28.000009pt;}
.v1{vertical-align:-21.291361pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:15.359992pt;}
.v5{vertical-align:36.000001pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.034219pt;}
.lsb{letter-spacing:95.975138pt;}
.lsa{letter-spacing:95.975194pt;}
.ls1{letter-spacing:96.000379pt;}
.ls4{letter-spacing:282.855567pt;}
.ls8{letter-spacing:283.912271pt;}
.ls9{letter-spacing:294.278895pt;}
.ls7{letter-spacing:310.512367pt;}
.ls2{letter-spacing:320.878988pt;}
.ls3{letter-spacing:336.820232pt;}
.ls6{letter-spacing:374.205969pt;}
.ws4{word-spacing:-24.000001pt;}
.ws2{word-spacing:-18.666667pt;}
.ws6{word-spacing:-16.000001pt;}
.ws5{word-spacing:-0.000960pt;}
.ws0{word-spacing:0.000000pt;}
.ws3{word-spacing:346.328491pt;}
.ws1{word-spacing:1637.587016pt;}
._1c{margin-left:-8.960000pt;}
._3{margin-left:-7.584000pt;}
._4{margin-left:-5.749334pt;}
._1{margin-left:-4.181334pt;}
._2{margin-left:-3.052800pt;}
._0{margin-left:-2.073600pt;}
._5{margin-left:-1.173333pt;}
._1a{width:11.995280pt;}
._19{width:33.650001pt;}
._1b{width:95.999835pt;}
._b{width:211.205901pt;}
._e{width:216.673737pt;}
._13{width:221.511650pt;}
._8{width:224.302066pt;}
._12{width:230.193835pt;}
._10{width:238.278032pt;}
._c{width:259.892495pt;}
._6{width:263.925992pt;}
._11{width:272.256475pt;}
._16{width:289.695197pt;}
._18{width:292.019708pt;}
._f{width:309.005189pt;}
._d{width:310.744060pt;}
._a{width:333.554686pt;}
._15{width:336.954430pt;}
._7{width:339.094292pt;}
._17{width:391.710621pt;}
._9{width:415.457019pt;}
._14{width:418.761748pt;}
.fsb{font-size:42.666669pt;}
.fsa{font-size:49.777780pt;}
.fs10{font-size:53.333334pt;}
.fs9{font-size:58.666670pt;}
.fs15{font-size:60.000002pt;}
.fsc{font-size:64.000002pt;}
.fs13{font-size:64.000005pt;}
.fs8{font-size:69.333338pt;}
.fsd{font-size:74.399994pt;}
.fs6{font-size:74.666666pt;}
.fse{font-size:80.000003pt;}
.fs12{font-size:81.600011pt;}
.fs2{font-size:85.333339pt;}
.fsf{font-size:90.666667pt;}
.fs4{font-size:96.000003pt;}
.fs5{font-size:97.901178pt;}
.fs1{font-size:112.000004pt;}
.fs7{font-size:117.333340pt;}
.fs11{font-size:128.000004pt;}
.fs14{font-size:133.333332pt;}
.fs3{font-size:144.000005pt;}
.fs0{font-size:230.399987pt;}
.y0{bottom:0.000000pt;}
.y24{bottom:24.143063pt;}
.y48{bottom:25.257724pt;}
.y76{bottom:27.338974pt;}
.y82{bottom:31.183064pt;}
.y14{bottom:31.232334pt;}
.y29{bottom:31.416965pt;}
.y6d{bottom:36.892484pt;}
.y2e{bottom:47.969944pt;}
.y5e{bottom:49.689624pt;}
.y10{bottom:50.057414pt;}
.y78{bottom:51.220564pt;}
.y6b{bottom:51.632644pt;}
.y16{bottom:55.865505pt;}
.y75{bottom:56.138981pt;}
.yb{bottom:64.652885pt;}
.y7c{bottom:67.018261pt;}
.y6c{bottom:70.012485pt;}
.y85{bottom:75.543065pt;}
.y2d{bottom:76.769935pt;}
.yf{bottom:83.177405pt;}
.y6a{bottom:84.752645pt;}
.y74{bottom:84.938985pt;}
.y42{bottom:86.921386pt;}
.y12{bottom:90.908536pt;}
.y7b{bottom:95.818266pt;}
.y23{bottom:98.157266pt;}
.y97{bottom:99.925236pt;}
.y77{bottom:100.340566pt;}
.y69{bottom:102.220670pt;}
.y2c{bottom:105.569936pt;}
.y55{bottom:108.245236pt;}
.y4b{bottom:108.741926pt;}
.y22{bottom:111.917268pt;}
.y41{bottom:114.121396pt;}
.ye{bottom:116.297396pt;}
.y62{bottom:121.290533pt;}
.y68{bottom:124.620669pt;}
.y96{bottom:133.045237pt;}
.y2b{bottom:134.369943pt;}
.y40{bottom:141.321377pt;}
.y4{bottom:143.599709pt;}
.yd{bottom:149.417408pt;}
.y61{bottom:150.090538pt;}
.y21{bottom:153.513060pt;}
.y54{bottom:157.365258pt;}
.y2a{bottom:163.169948pt;}
.y95{bottom:163.925268pt;}
.y3f{bottom:168.521388pt;}
.y3{bottom:170.799711pt;}
.y4a{bottom:171.908004pt;}
.y7a{bottom:186.705915pt;}
.y53{bottom:187.894389pt;}
.y94{bottom:189.685259pt;}
.y1f{bottom:193.189389pt;}
.y3e{bottom:195.721389pt;}
.yc{bottom:198.537409pt;}
.y5b{bottom:200.596013pt;}
.y49{bottom:200.708009pt;}
.y5d{bottom:203.897823pt;}
.y51{bottom:206.485249pt;}
.y1e{bottom:207.909391pt;}
.y20{bottom:211.749389pt;}
.y8c{bottom:212.787810pt;}
.y32{bottom:213.996833pt;}
.y89{bottom:214.237150pt;}
.y83{bottom:214.704860pt;}
.y93{bottom:215.445260pt;}
.y79{bottom:215.505920pt;}
.y3d{bottom:222.921390pt;}
.y5a{bottom:222.996012pt;}
.y5c{bottom:226.297822pt;}
.ya{bottom:228.906252pt;}
.y44{bottom:234.228450pt;}
.y31{bottom:237.996831pt;}
.y8b{bottom:241.587816pt;}
.y88{bottom:243.037150pt;}
.y92{bottom:243.445261pt;}
.y1d{bottom:248.545711pt;}
.y3c{bottom:250.121381pt;}
.y50{bottom:255.605241pt;}
.y1c{bottom:262.305713pt;}
.y8e{bottom:262.965241pt;}
.y8a{bottom:270.387821pt;}
.y87{bottom:271.837157pt;}
.y91{bottom:274.325241pt;}
.y67{bottom:275.404473pt;}
.y2{bottom:277.165196pt;}
.y3b{bottom:277.321382pt;}
.y43{bottom:283.348452pt;}
.y30{bottom:283.971008pt;}
.y9{bottom:287.605242pt;}
.y60{bottom:290.917312pt;}
.y25{bottom:293.320215pt;}
.y26{bottom:294.576227pt;}
.y90{bottom:300.085242pt;}
.y86{bottom:300.637162pt;}
.y1b{bottom:302.942032pt;}
.y3a{bottom:304.521382pt;}
.y4f{bottom:304.725232pt;}
.y59{bottom:305.965243pt;}
.y4c{bottom:309.389383pt;}
.y2f{bottom:312.771013pt;}
.y1a{bottom:316.702035pt;}
.y8{bottom:320.725233pt;}
.y27{bottom:321.360293pt;}
.y70{bottom:323.596203pt;}
.y80{bottom:325.203023pt;}
.y8f{bottom:325.845243pt;}
.y39{bottom:331.721378pt;}
.y58{bottom:334.117243pt;}
.y66{bottom:334.341963pt;}
.y4e{bottom:337.845244pt;}
.y47{bottom:338.189384pt;}
.y1{bottom:346.285178pt;}
.y73{bottom:350.992529pt;}
.y6f{bottom:352.396210pt;}
.y7{bottom:353.845244pt;}
.y7f{bottom:354.003024pt;}
.y38{bottom:358.921374pt;}
.y8d{bottom:358.965244pt;}
.y57{bottom:362.269244pt;}
.y65{bottom:363.141964pt;}
.y19{bottom:366.936784pt;}
.y46{bottom:366.989390pt;}
.y35{bottom:370.793055pt;}
.y81{bottom:372.941410pt;}
.y72{bottom:379.792536pt;}
.y18{bottom:380.696787pt;}
.y6e{bottom:381.196215pt;}
.y11{bottom:381.845245pt;}
.y7e{bottom:382.803031pt;}
.y37{bottom:386.121370pt;}
.y6{bottom:386.965245pt;}
.y56{bottom:390.421243pt;}
.y64{bottom:391.941971pt;}
.y45{bottom:395.789395pt;}
.y34{bottom:399.593062pt;}
.y71{bottom:408.592541pt;}
.y7d{bottom:411.603036pt;}
.y36{bottom:413.321368pt;}
.y63{bottom:420.741976pt;}
.y17{bottom:422.292598pt;}
.y33{bottom:428.393066pt;}
.y5{bottom:449.718213pt;}
.y84{bottom:452.278211pt;}
.y5f{bottom:462.240526pt;}
.y13{bottom:467.067296pt;}
.y52{bottom:468.091231pt;}
.y15{bottom:478.054174pt;}
.y4d{bottom:479.458373pt;}
.y28{bottom:485.445249pt;}
.he{height:31.062502pt;}
.h13{height:38.933334pt;}
.hc{height:42.710940pt;}
.ha{height:42.826669pt;}
.h17{height:43.800001pt;}
.hf{height:46.720001pt;}
.h9{height:50.613337pt;}
.h10{height:54.311996pt;}
.hd{height:54.359375pt;}
.h7{height:54.506666pt;}
.hb{height:58.070932pt;}
.h11{height:58.400002pt;}
.h15{height:59.568008pt;}
.h3{height:62.293337pt;}
.h12{height:66.186667pt;}
.h5{height:70.080002pt;}
.h6{height:71.467860pt;}
.h2{height:81.760003pt;}
.h8{height:85.653338pt;}
.h14{height:93.440003pt;}
.h16{height:108.933332pt;}
.h4{height:117.648004pt;}
.h1{height:188.236790pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x21{left:33.406794pt;}
.x3b{left:35.524936pt;}
.x25{left:39.866143pt;}
.x5{left:41.724411pt;}
.x32{left:46.942259pt;}
.x36{left:49.928589pt;}
.x6{left:51.228318pt;}
.x1c{left:54.787405pt;}
.x23{left:58.069422pt;}
.x2c{left:60.555937pt;}
.xc{left:62.538030pt;}
.x22{left:71.902889pt;}
.x1d{left:73.606726pt;}
.x1{left:81.163612pt;}
.x24{left:82.889247pt;}
.x3d{left:89.724413pt;}
.x1e{left:92.806729pt;}
.xd{left:101.034125pt;}
.x43{left:102.455963pt;}
.x26{left:112.031502pt;}
.x1f{left:114.375334pt;}
.x29{left:121.603614pt;}
.x27{left:124.297074pt;}
.x1a{left:126.848529pt;}
.x11{left:129.417408pt;}
.x14{left:130.988796pt;}
.x18{left:134.095134pt;}
.x16{left:141.879200pt;}
.x12{left:162.093175pt;}
.x3a{left:167.993445pt;}
.x2{left:174.177626pt;}
.x3e{left:211.511817pt;}
.x2d{left:243.002438pt;}
.x9{left:263.640438pt;}
.x3{left:266.905149pt;}
.x4{left:278.043349pt;}
.x10{left:280.220469pt;}
.x28{left:315.552480pt;}
.x8{left:323.099760pt;}
.xf{left:338.832041pt;}
.x3f{left:349.330731pt;}
.x33{left:353.696451pt;}
.xe{left:360.168072pt;}
.x34{left:366.897472pt;}
.xa{left:393.018173pt;}
.xb{left:403.094805pt;}
.x39{left:447.671914pt;}
.x40{left:517.564317pt;}
.x2a{left:530.257217pt;}
.x3c{left:531.997417pt;}
.x2f{left:565.372018pt;}
.x7{left:575.026978pt;}
.x2b{left:604.682959pt;}
.x30{left:605.848959pt;}
.x37{left:606.821549pt;}
.x38{left:612.401570pt;}
.x19{left:620.157406pt;}
.x35{left:628.908160pt;}
.x20{left:687.837322pt;}
.x2e{left:721.561723pt;}
.x13{left:751.367592pt;}
.x41{left:757.008742pt;}
.x1b{left:776.622430pt;}
.x31{left:779.581225pt;}
.x15{left:792.516732pt;}
.x17{left:794.545565pt;}
.x42{left:807.156602pt;}
}




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