
    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_d5ebdf6b5a2aa28e91712a5e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.948242;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_3f834cca189a8ff81ce29c07.woff')format("woff");}.ff2{font-family:ff2;line-height:0.973000;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_3984a0ee99a4bcc581bd5e53.woff')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_7c4dedb153874da711bbb024.woff')format("woff");}.ff4{font-family:ff4;line-height:0.854980;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_021887d99d2d112464867d3f.woff')format("woff");}.ff5{font-family:ff5;line-height:0.954102;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_782f9060885a480c971feeef.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_538d2375871826d91d4d2427.woff')format("woff");}.ff7{font-family:ff7;line-height:0.932129;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_b3c2b6889d3c844db6d3f188.woff')format("woff");}.ff8{font-family:ff8;line-height:0.932129;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_ee4ac08d7e3cb91428a60523.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_a093a5477b4c2564feb35865.woff')format("woff");}.ffa{font-family:ffa;line-height:1.020996;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;}
.m1{transform:matrix(0.247567,0.034793,-0.034793,0.247567,0,0);-ms-transform:matrix(0.247567,0.034793,-0.034793,0.247567,0,0);-webkit-transform:matrix(0.247567,0.034793,-0.034793,0.247567,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);}
.m2{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);}
.v2{vertical-align:-34.698000px;}
.v3{vertical-align:-29.256000px;}
.v1{vertical-align:-2.382000px;}
.v0{vertical-align:0.000000px;}
.ls9{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.129095px;}
.ls7{letter-spacing:0.143327px;}
.ls4{letter-spacing:0.143537px;}
.ls0{letter-spacing:0.168177px;}
.lsb{letter-spacing:0.240156px;}
.ls2{letter-spacing:0.318659px;}
.ls3{letter-spacing:0.334908px;}
.ls8{letter-spacing:0.418458px;}
.ls5{letter-spacing:0.631590px;}
.ls6{letter-spacing:0.658545px;}
.lsa{letter-spacing:50.596800px;}
.lsc{letter-spacing:57.039996px;}
.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;}
}
.ws7{word-spacing:-59.832000px;}
.ws3{word-spacing:-39.902958px;}
.ws2{word-spacing:-36.559014px;}
.ws8{word-spacing:-34.910310px;}
.ws4{word-spacing:-29.916000px;}
.ws0{word-spacing:-28.810800px;}
.ws5{word-spacing:-26.570394px;}
.ws6{word-spacing:-0.360234px;}
.ws9{word-spacing:-0.108000px;}
.ws1{word-spacing:0.000000px;}
._9{margin-left:-15.984000px;}
._c{margin-left:-14.593368px;}
._10{margin-left:-13.441260px;}
._12{margin-left:-10.712550px;}
._11{margin-left:-9.452250px;}
._15{margin-left:-8.314152px;}
._7{margin-left:-7.193172px;}
._a{margin-left:-5.015316px;}
._2{margin-left:-4.002216px;}
._1{margin-left:-2.487864px;}
._6{margin-left:-1.189848px;}
._0{width:1.081680px;}
._5{width:2.087508px;}
._3{width:3.888000px;}
._4{width:4.968000px;}
._1b{width:10.659996px;}
._1c{width:11.812428px;}
._18{width:13.146330px;}
._19{width:18.582966px;}
._1a{width:19.591344px;}
._d{width:21.464046px;}
._e{width:22.660752px;}
._14{width:42.518520px;}
._13{width:44.022060px;}
._1d{width:48.978360px;}
._16{width:82.975104px;}
._17{width:84.486396px;}
._1e{width:1123.696416px;}
._f{width:4103.053668px;}
._8{width:4132.652568px;}
._b{width:4133.665668px;}
.fca{color:rgb(195,65,19);}
.fc7{color:transparent;}
.fc9{color:rgb(128,128,128);}
.fc8{color:rgb(232,232,232);}
.fc6{color:rgb(204,204,204);}
.fc5{color:rgb(0,0,0);}
.fc4{color:rgb(178,178,178);}
.fc3{color:rgb(252,58,230);}
.fc2{color:rgb(102,102,102);}
.fc1{color:rgb(66,66,66);}
.fc0{color:rgb(153,153,153);}
.fs5{font-size:47.964000px;}
.fs0{font-size:54.084000px;}
.fsd{font-size:56.466000px;}
.fsa{font-size:64.800000px;}
.fs4{font-size:65.988000px;}
.fsb{font-size:95.922000px;}
.fs8{font-size:108.000000px;}
.fsc{font-size:120.078000px;}
.fs7{font-size:126.030000px;}
.fs6{font-size:131.982000px;}
.fs3{font-size:144.054000px;}
.fs2{font-size:192.018000px;}
.fs1{font-size:216.000000px;}
.fs9{font-size:228.078000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y55{bottom:6.930000px;}
.y62{bottom:7.101000px;}
.y11{bottom:7.525500px;}
.y87{bottom:7.695000px;}
.y1e{bottom:7.822500px;}
.y3{bottom:8.461500px;}
.y5b{bottom:9.183000px;}
.yb{bottom:9.354000px;}
.y72{bottom:11.310000px;}
.y44{bottom:13.222500px;}
.y13{bottom:14.286000px;}
.y57{bottom:15.178500px;}
.y2e{bottom:15.477000px;}
.y3e{bottom:17.433000px;}
.y43{bottom:17.602500px;}
.y74{bottom:17.730000px;}
.y7d{bottom:19.558500px;}
.y4d{bottom:19.855500px;}
.y2{bottom:23.598000px;}
.y10{bottom:24.022500px;}
.y7b{bottom:37.246500px;}
.y84{bottom:41.158500px;}
.y3d{bottom:47.749500px;}
.yf{bottom:53.149500px;}
.y7a{bottom:64.842000px;}
.y60{bottom:73.855500px;}
.y9{bottom:75.472500px;}
.y2d{bottom:86.611500px;}
.y2b{bottom:87.037500px;}
.y8b{bottom:89.886000px;}
.y8e{bottom:95.158500px;}
.y2c{bottom:100.090500px;}
.y2a{bottom:100.558500px;}
.y5f{bottom:104.130000px;}
.y54{bottom:104.895000px;}
.y8{bottom:111.655500px;}
.y4c{bottom:117.481500px;}
.y8a{bottom:120.202500px;}
.y83{bottom:121.222500px;}
.y5a{bottom:121.861500px;}
.y29{bottom:126.325500px;}
.y7{bottom:133.086000px;}
.y79{bottom:142.525500px;}
.y89{bottom:150.349500px;}
.y69{bottom:150.477000px;}
.y53{bottom:154.983000px;}
.y82{bottom:155.877000px;}
.y78{bottom:177.646500px;}
.y1a{bottom:178.710000px;}
.y88{bottom:180.622500px;}
.y71{bottom:185.598000px;}
.y68{bottom:190.701000px;}
.y4b{bottom:190.828500px;}
.y28{bottom:200.139000px;}
.y5d{bottom:201.501000px;}
.y19{bottom:201.798000px;}
.y77{bottom:212.725500px;}
.y70{bottom:212.895000px;}
.y81{bottom:225.354000px;}
.y52{bottom:235.261500px;}
.y27{bottom:237.046500px;}
.y3b{bottom:238.534500px;}
.y18{bottom:238.705500px;}
.y76{bottom:240.490500px;}
.y35{bottom:240.958500px;}
.y61{bottom:253.672500px;}
.y4a{bottom:264.046500px;}
.y3a{bottom:268.681500px;}
.y34{bottom:269.446500px;}
.y67{bottom:270.934500px;}
.y26{bottom:273.954000px;}
.y17{bottom:275.611500px;}
.y51{bottom:281.437500px;}
.y5e{bottom:287.730000px;}
.y6f{bottom:293.130000px;}
.ye{bottom:308.905500px;}
.y6{bottom:309.798000px;}
.y25{bottom:310.861500px;}
.y66{bottom:311.158500px;}
.y16{bottom:312.477000px;}
.y46{bottom:316.855500px;}
.y50{bottom:327.486000px;}
.y6e{bottom:333.354000px;}
.y56{bottom:334.374000px;}
.y49{bottom:337.222500px;}
.y24{bottom:347.725500px;}
.y33{bottom:349.681500px;}
.ya{bottom:350.149500px;}
.y85{bottom:351.510000px;}
.y45{bottom:357.037500px;}
.yd{bottom:364.222500px;}
.y6d{bottom:373.407000px;}
.y4f{bottom:373.705500px;}
.y5{bottom:377.277000px;}
.y23{bottom:384.802500px;}
.y1d{bottom:385.101000px;}
.y80{bottom:388.545000px;}
.y32{bottom:389.905500px;}
.y65{bottom:391.393500px;}
.y48{bottom:410.611500px;}
.y6c{bottom:413.589000px;}
.y4e{bottom:419.754000px;}
.y22{bottom:421.710000px;}
.y1c{bottom:422.007000px;}
.y15{bottom:423.198000px;}
.y7f{bottom:427.110000px;}
.y31{bottom:430.086000px;}
.y64{bottom:431.574000px;}
.y4{bottom:451.855500px;}
.y6b{bottom:453.642000px;}
.y21{bottom:458.574000px;}
.y1b{bottom:458.872500px;}
.y14{bottom:460.105500px;}
.y7e{bottom:465.505500px;}
.y30{bottom:470.139000px;}
.y63{bottom:471.628500px;}
.y40{bottom:476.602500px;}
.y39{bottom:482.002500px;}
.y47{bottom:483.789000px;}
.y36{bottom:487.233000px;}
.y6a{bottom:493.822500px;}
.y20{bottom:495.481500px;}
.y3f{bottom:506.877000px;}
.y38{bottom:512.277000px;}
.y73{bottom:527.286000px;}
.y7c{bottom:535.407000px;}
.y42{bottom:536.130000px;}
.y8c{bottom:536.301000px;}
.y12{bottom:544.378500px;}
.y37{bottom:548.121000px;}
.y59{bottom:556.242000px;}
.y5c{bottom:594.934500px;}
.yc{bottom:595.105500px;}
.y8d{bottom:596.295000px;}
.y86{bottom:596.721000px;}
.y2f{bottom:597.061500px;}
.y1f{bottom:597.189000px;}
.y75{bottom:605.011500px;}
.y41{bottom:606.033000px;}
.y3c{bottom:606.202500px;}
.y58{bottom:616.705500px;}
.hd{height:34.919104px;}
.hb{height:35.317242px;}
.h8{height:39.374631px;}
.h3{height:39.823570px;}
.h7{height:43.981260px;}
.h1e{height:62.697434px;}
.h1f{height:62.865434px;}
.h1d{height:63.543434px;}
.h1b{height:70.630066px;}
.h1a{height:71.205012px;}
.h19{height:71.373012px;}
.h15{height:79.523438px;}
.h14{height:80.156250px;}
.h21{height:87.802734px;}
.h20{height:89.120391px;}
.h13{height:92.799434px;}
.hc{height:97.182059px;}
.h1c{height:97.622007px;}
.he{height:97.955391px;}
.h18{height:104.382879px;}
.h6{height:104.875251px;}
.h10{height:106.071012px;}
.h11{height:106.915078px;}
.h9{height:109.332932px;}
.h12{height:141.388254px;}
.hf{height:142.513359px;}
.h5{height:145.165608px;}
.ha{height:160.312500px;}
.h4{height:163.296000px;}
.h16{height:167.940246px;}
.h17{height:169.276641px;}
.h2{height:669.642000px;}
.h0{height:669.685039px;}
.h1{height:669.750000px;}
.w1{width:1190.250000px;}
.w2{width:1190.508000px;}
.w0{width:1190.551181px;}
.x0{left:0.000000px;}
.x6{left:8.547000px;}
.x1{left:10.630500px;}
.x2e{left:15.136500px;}
.x2{left:16.965000px;}
.x1a{left:19.219500px;}
.x22{left:39.459000px;}
.xa{left:41.413500px;}
.x11{left:44.560500px;}
.x8{left:45.580500px;}
.x23{left:49.195500px;}
.x7{left:50.980500px;}
.x15{left:53.830500px;}
.x31{left:57.444000px;}
.xc{left:60.292500px;}
.xe{left:61.653000px;}
.xf{left:66.459000px;}
.x16{left:95.712000px;}
.x17{left:99.921000px;}
.x14{left:141.165000px;}
.x29{left:184.960500px;}
.x1f{left:239.386500px;}
.x1e{left:274.336500px;}
.x25{left:299.721000px;}
.x30{left:329.569500px;}
.x3{left:354.147000px;}
.x4{left:355.507500px;}
.x21{left:363.160500px;}
.x13{left:367.795500px;}
.x24{left:389.097000px;}
.xd{left:418.819500px;}
.x20{left:426.430500px;}
.x33{left:429.747000px;}
.x2b{left:448.200000px;}
.x10{left:466.186500px;}
.x2c{left:488.551500px;}
.x26{left:495.312000px;}
.x12{left:517.209000px;}
.x28{left:529.369500px;}
.x2f{left:557.859000px;}
.x1d{left:580.351500px;}
.x27{left:581.413500px;}
.x32{left:611.263500px;}
.x1b{left:614.409000px;}
.x19{left:652.635000px;}
.x9{left:679.209000px;}
.xb{left:699.448500px;}
.x34{left:754.639500px;}
.x5{left:816.292500px;}
.x1c{left:828.921000px;}
.x18{left:839.721000px;}
.x2a{left:941.853000px;}
.x2d{left:946.063500px;}
@media print{
.v2{vertical-align:-30.842667pt;}
.v3{vertical-align:-26.005333pt;}
.v1{vertical-align:-2.117333pt;}
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.114752pt;}
.ls7{letter-spacing:0.127402pt;}
.ls4{letter-spacing:0.127588pt;}
.ls0{letter-spacing:0.149491pt;}
.lsb{letter-spacing:0.213472pt;}
.ls2{letter-spacing:0.283252pt;}
.ls3{letter-spacing:0.297696pt;}
.ls8{letter-spacing:0.371963pt;}
.ls5{letter-spacing:0.561413pt;}
.ls6{letter-spacing:0.585373pt;}
.lsa{letter-spacing:44.974933pt;}
.lsc{letter-spacing:50.702219pt;}
.ws7{word-spacing:-53.184000pt;}
.ws3{word-spacing:-35.469296pt;}
.ws2{word-spacing:-32.496901pt;}
.ws8{word-spacing:-31.031387pt;}
.ws4{word-spacing:-26.592000pt;}
.ws0{word-spacing:-25.609600pt;}
.ws5{word-spacing:-23.618128pt;}
.ws6{word-spacing:-0.320208pt;}
.ws9{word-spacing:-0.096000pt;}
.ws1{word-spacing:0.000000pt;}
._9{margin-left:-14.208000pt;}
._c{margin-left:-12.971883pt;}
._10{margin-left:-11.947787pt;}
._12{margin-left:-9.522267pt;}
._11{margin-left:-8.402000pt;}
._15{margin-left:-7.390357pt;}
._7{margin-left:-6.393931pt;}
._a{margin-left:-4.458059pt;}
._2{margin-left:-3.557525pt;}
._1{margin-left:-2.211435pt;}
._6{margin-left:-1.057643pt;}
._0{width:0.961493pt;}
._5{width:1.855563pt;}
._3{width:3.456000pt;}
._4{width:4.416000pt;}
._1b{width:9.475552pt;}
._1c{width:10.499936pt;}
._18{width:11.685627pt;}
._19{width:16.518192pt;}
._1a{width:17.414528pt;}
._d{width:19.079152pt;}
._e{width:20.142891pt;}
._14{width:37.794240pt;}
._13{width:39.130720pt;}
._1d{width:43.536320pt;}
._16{width:73.755648pt;}
._17{width:75.099019pt;}
._1e{width:998.841259pt;}
._f{width:3647.158816pt;}
._8{width:3673.468949pt;}
._b{width:3674.369483pt;}
.fs5{font-size:42.634667pt;}
.fs0{font-size:48.074667pt;}
.fsd{font-size:50.192000pt;}
.fsa{font-size:57.600000pt;}
.fs4{font-size:58.656000pt;}
.fsb{font-size:85.264000pt;}
.fs8{font-size:96.000000pt;}
.fsc{font-size:106.736000pt;}
.fs7{font-size:112.026667pt;}
.fs6{font-size:117.317333pt;}
.fs3{font-size:128.048000pt;}
.fs2{font-size:170.682667pt;}
.fs1{font-size:192.000000pt;}
.fs9{font-size:202.736000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y55{bottom:6.160000pt;}
.y62{bottom:6.312000pt;}
.y11{bottom:6.689333pt;}
.y87{bottom:6.840000pt;}
.y1e{bottom:6.953333pt;}
.y3{bottom:7.521333pt;}
.y5b{bottom:8.162667pt;}
.yb{bottom:8.314667pt;}
.y72{bottom:10.053333pt;}
.y44{bottom:11.753333pt;}
.y13{bottom:12.698667pt;}
.y57{bottom:13.492000pt;}
.y2e{bottom:13.757333pt;}
.y3e{bottom:15.496000pt;}
.y43{bottom:15.646667pt;}
.y74{bottom:15.760000pt;}
.y7d{bottom:17.385333pt;}
.y4d{bottom:17.649333pt;}
.y2{bottom:20.976000pt;}
.y10{bottom:21.353333pt;}
.y7b{bottom:33.108000pt;}
.y84{bottom:36.585333pt;}
.y3d{bottom:42.444000pt;}
.yf{bottom:47.244000pt;}
.y7a{bottom:57.637333pt;}
.y60{bottom:65.649333pt;}
.y9{bottom:67.086667pt;}
.y2d{bottom:76.988000pt;}
.y2b{bottom:77.366667pt;}
.y8b{bottom:79.898667pt;}
.y8e{bottom:84.585333pt;}
.y2c{bottom:88.969333pt;}
.y2a{bottom:89.385333pt;}
.y5f{bottom:92.560000pt;}
.y54{bottom:93.240000pt;}
.y8{bottom:99.249333pt;}
.y4c{bottom:104.428000pt;}
.y8a{bottom:106.846667pt;}
.y83{bottom:107.753333pt;}
.y5a{bottom:108.321333pt;}
.y29{bottom:112.289333pt;}
.y7{bottom:118.298667pt;}
.y79{bottom:126.689333pt;}
.y89{bottom:133.644000pt;}
.y69{bottom:133.757333pt;}
.y53{bottom:137.762667pt;}
.y82{bottom:138.557333pt;}
.y78{bottom:157.908000pt;}
.y1a{bottom:158.853333pt;}
.y88{bottom:160.553333pt;}
.y71{bottom:164.976000pt;}
.y68{bottom:169.512000pt;}
.y4b{bottom:169.625333pt;}
.y28{bottom:177.901333pt;}
.y5d{bottom:179.112000pt;}
.y19{bottom:179.376000pt;}
.y77{bottom:189.089333pt;}
.y70{bottom:189.240000pt;}
.y81{bottom:200.314667pt;}
.y52{bottom:209.121333pt;}
.y27{bottom:210.708000pt;}
.y3b{bottom:212.030667pt;}
.y18{bottom:212.182667pt;}
.y76{bottom:213.769333pt;}
.y35{bottom:214.185333pt;}
.y61{bottom:225.486667pt;}
.y4a{bottom:234.708000pt;}
.y3a{bottom:238.828000pt;}
.y34{bottom:239.508000pt;}
.y67{bottom:240.830667pt;}
.y26{bottom:243.514667pt;}
.y17{bottom:244.988000pt;}
.y51{bottom:250.166667pt;}
.y5e{bottom:255.760000pt;}
.y6f{bottom:260.560000pt;}
.ye{bottom:274.582667pt;}
.y6{bottom:275.376000pt;}
.y25{bottom:276.321333pt;}
.y66{bottom:276.585333pt;}
.y16{bottom:277.757333pt;}
.y46{bottom:281.649333pt;}
.y50{bottom:291.098667pt;}
.y6e{bottom:296.314667pt;}
.y56{bottom:297.221333pt;}
.y49{bottom:299.753333pt;}
.y24{bottom:309.089333pt;}
.y33{bottom:310.828000pt;}
.ya{bottom:311.244000pt;}
.y85{bottom:312.453333pt;}
.y45{bottom:317.366667pt;}
.yd{bottom:323.753333pt;}
.y6d{bottom:331.917333pt;}
.y4f{bottom:332.182667pt;}
.y5{bottom:335.357333pt;}
.y23{bottom:342.046667pt;}
.y1d{bottom:342.312000pt;}
.y80{bottom:345.373333pt;}
.y32{bottom:346.582667pt;}
.y65{bottom:347.905333pt;}
.y48{bottom:364.988000pt;}
.y6c{bottom:367.634667pt;}
.y4e{bottom:373.114667pt;}
.y22{bottom:374.853333pt;}
.y1c{bottom:375.117333pt;}
.y15{bottom:376.176000pt;}
.y7f{bottom:379.653333pt;}
.y31{bottom:382.298667pt;}
.y64{bottom:383.621333pt;}
.y4{bottom:401.649333pt;}
.y6b{bottom:403.237333pt;}
.y21{bottom:407.621333pt;}
.y1b{bottom:407.886667pt;}
.y14{bottom:408.982667pt;}
.y7e{bottom:413.782667pt;}
.y30{bottom:417.901333pt;}
.y63{bottom:419.225333pt;}
.y40{bottom:423.646667pt;}
.y39{bottom:428.446667pt;}
.y47{bottom:430.034667pt;}
.y36{bottom:433.096000pt;}
.y6a{bottom:438.953333pt;}
.y20{bottom:440.428000pt;}
.y3f{bottom:450.557333pt;}
.y38{bottom:455.357333pt;}
.y73{bottom:468.698667pt;}
.y7c{bottom:475.917333pt;}
.y42{bottom:476.560000pt;}
.y8c{bottom:476.712000pt;}
.y12{bottom:483.892000pt;}
.y37{bottom:487.218667pt;}
.y59{bottom:494.437333pt;}
.y5c{bottom:528.830667pt;}
.yc{bottom:528.982667pt;}
.y8d{bottom:530.040000pt;}
.y86{bottom:530.418667pt;}
.y2f{bottom:530.721333pt;}
.y1f{bottom:530.834667pt;}
.y75{bottom:537.788000pt;}
.y41{bottom:538.696000pt;}
.y3c{bottom:538.846667pt;}
.y58{bottom:548.182667pt;}
.hd{height:31.039203pt;}
.hb{height:31.393104pt;}
.h8{height:34.999672pt;}
.h3{height:35.398729pt;}
.h7{height:39.094453pt;}
.h1e{height:55.731052pt;}
.h1f{height:55.880385pt;}
.h1d{height:56.483052pt;}
.h1b{height:62.782281pt;}
.h1a{height:63.293344pt;}
.h19{height:63.442677pt;}
.h15{height:70.687500pt;}
.h14{height:71.250000pt;}
.h21{height:78.046875pt;}
.h20{height:79.218125pt;}
.h13{height:82.488385pt;}
.hc{height:86.384052pt;}
.h1c{height:86.775117pt;}
.he{height:87.071458pt;}
.h18{height:92.784781pt;}
.h6{height:93.222445pt;}
.h10{height:94.285344pt;}
.h11{height:95.035625pt;}
.h9{height:97.184829pt;}
.h12{height:125.678448pt;}
.hf{height:126.678542pt;}
.h5{height:129.036096pt;}
.ha{height:142.500000pt;}
.h4{height:145.152000pt;}
.h16{height:149.280219pt;}
.h17{height:150.468125pt;}
.h2{height:595.237333pt;}
.h0{height:595.275591pt;}
.h1{height:595.333333pt;}
.w1{width:1058.000000pt;}
.w2{width:1058.229333pt;}
.w0{width:1058.267717pt;}
.x0{left:0.000000pt;}
.x6{left:7.597333pt;}
.x1{left:9.449333pt;}
.x2e{left:13.454667pt;}
.x2{left:15.080000pt;}
.x1a{left:17.084000pt;}
.x22{left:35.074667pt;}
.xa{left:36.812000pt;}
.x11{left:39.609333pt;}
.x8{left:40.516000pt;}
.x23{left:43.729333pt;}
.x7{left:45.316000pt;}
.x15{left:47.849333pt;}
.x31{left:51.061333pt;}
.xc{left:53.593333pt;}
.xe{left:54.802667pt;}
.xf{left:59.074667pt;}
.x16{left:85.077333pt;}
.x17{left:88.818667pt;}
.x14{left:125.480000pt;}
.x29{left:164.409333pt;}
.x1f{left:212.788000pt;}
.x1e{left:243.854667pt;}
.x25{left:266.418667pt;}
.x30{left:292.950667pt;}
.x3{left:314.797333pt;}
.x4{left:316.006667pt;}
.x21{left:322.809333pt;}
.x13{left:326.929333pt;}
.x24{left:345.864000pt;}
.xd{left:372.284000pt;}
.x20{left:379.049333pt;}
.x33{left:381.997333pt;}
.x2b{left:398.400000pt;}
.x10{left:414.388000pt;}
.x2c{left:434.268000pt;}
.x26{left:440.277333pt;}
.x12{left:459.741333pt;}
.x28{left:470.550667pt;}
.x2f{left:495.874667pt;}
.x1d{left:515.868000pt;}
.x27{left:516.812000pt;}
.x32{left:543.345333pt;}
.x1b{left:546.141333pt;}
.x19{left:580.120000pt;}
.x9{left:603.741333pt;}
.xb{left:621.732000pt;}
.x34{left:670.790667pt;}
.x5{left:725.593333pt;}
.x1c{left:736.818667pt;}
.x18{left:746.418667pt;}
.x2a{left:837.202667pt;}
.x2d{left:840.945333pt;}
}




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