
    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_b87f3e871a56dacf5003c29c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_5a1d33c97b5d8f52ac3cbfbf.woff')format("woff");}.ff2{font-family:ff2;line-height:1.128906;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_a9125ab556c9fbfea911e23e.woff')format("woff");}.ff3{font-family:ff3;line-height:0.973145;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_449220a4564151b0e8f0e943.woff')format("woff");}.ff4{font-family:ff4;line-height:0.974609;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_6ea2ce9d691f131512a3f8d8.woff')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_2c3ec0fedd2c640933973265.woff')format("woff");}.ff6{font-family:ff6;line-height:0.666000;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_bb1286995f4c5ffc56f07a07.woff')format("woff");}.ff7{font-family:ff7;line-height:0.973145;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.250130,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250130,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250135,0.000000,0.000000,0.250000,0,0);}
.m0{transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250138,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250140,0.000000,0.000000,0.250000,0,0);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.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;}
}
.ws1{word-spacing:-16.824953px;}
.ws0{word-spacing:0.000000px;}
._2{margin-left:-1.067581px;}
._1{width:1.679368px;}
._3{width:11.789365px;}
._0{width:554.085138px;}
.fca{color:rgb(255,51,0);}
.fc8{color:transparent;}
.fc6{color:rgb(0,0,153);}
.fc5{color:rgb(0,0,101);}
.fc7{color:rgb(31,56,100);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(89,0,0);}
.fc2{color:rgb(0,0,128);}
.fc1{color:rgb(17,34,136);}
.fc9{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs2{font-size:30.239988px;}
.fs6{font-size:48.239981px;}
.fs4{font-size:53.999978px;}
.fs1{font-size:59.759976px;}
.fs3{font-size:66.239974px;}
.fs0{font-size:71.999971px;}
.fs5{font-size:84.239966px;}
.fs7{font-size:120.239952px;}
.y0{bottom:0.000000px;}
.y2{bottom:23.820347px;}
.ya5{bottom:45.960339px;}
.y35{bottom:52.080336px;}
.y66{bottom:53.700336px;}
.y84{bottom:53.880335px;}
.y57{bottom:58.020334px;}
.ya4{bottom:64.680331px;}
.y34{bottom:67.380330px;}
.ybd{bottom:68.820329px;}
.y56{bottom:71.700328px;}
.y83{bottom:72.600328px;}
.y33{bottom:82.860324px;}
.ya3{bottom:83.580324px;}
.y55{bottom:85.380323px;}
.y65{bottom:88.260322px;}
.y82{bottom:91.320320px;}
.y32{bottom:98.160318px;}
.y54{bottom:99.060317px;}
.ya2{bottom:102.300316px;}
.y81{bottom:109.860313px;}
.y53{bottom:112.920312px;}
.y31{bottom:113.460312px;}
.ya1{bottom:121.020309px;}
.y52{bottom:121.380308px;}
.y64{bottom:124.800307px;}
.y30{bottom:128.760305px;}
.ya0{bottom:139.740301px;}
.y2f{bottom:144.240299px;}
.y63{bottom:148.740298px;}
.y51{bottom:153.600296px;}
.y9f{bottom:158.460294px;}
.y2e{bottom:159.540293px;}
.y50{bottom:167.280290px;}
.y2d{bottom:174.840287px;}
.y9e{bottom:177.180286px;}
.y4f{bottom:180.780285px;}
.y2c{bottom:190.140281px;}
.y62{bottom:193.560280px;}
.y4e{bottom:194.460279px;}
.y9d{bottom:195.900279px;}
.y2b{bottom:205.440275px;}
.y4d{bottom:208.140274px;}
.y9c{bottom:214.800271px;}
.ybc{bottom:218.760269px;}
.y2a{bottom:220.920269px;}
.y4c{bottom:221.820268px;}
.y9b{bottom:233.520264px;}
.y61{bottom:233.880263px;}
.y4b{bottom:235.320263px;}
.y29{bottom:236.220263px;}
.ybb{bottom:237.480262px;}
.y4a{bottom:249.000257px;}
.y28{bottom:251.520256px;}
.y9a{bottom:252.240256px;}
.yba{bottom:256.200255px;}
.y49{bottom:262.680252px;}
.y27{bottom:266.820250px;}
.y99{bottom:270.960249px;}
.yb9{bottom:274.920247px;}
.y48{bottom:276.360246px;}
.y26{bottom:282.300244px;}
.y98{bottom:289.680241px;}
.y47{bottom:289.860241px;}
.yb8{bottom:293.640240px;}
.y25{bottom:297.600238px;}
.y46{bottom:304.080235px;}
.y97{bottom:308.400234px;}
.yb7{bottom:312.360232px;}
.y24{bottom:312.900232px;}
.y45{bottom:324.240227px;}
.y80{bottom:324.960227px;}
.y96{bottom:327.300226px;}
.y23{bottom:328.200226px;}
.yb6{bottom:330.720225px;}
.y22{bottom:343.500220px;}
.y7f{bottom:343.680220px;}
.y95{bottom:346.020219px;}
.y44{bottom:346.560218px;}
.yb5{bottom:348.180218px;}
.y21{bottom:358.980213px;}
.y7e{bottom:362.400212px;}
.y94{bottom:364.740211px;}
.y43{bottom:365.460211px;}
.yb4{bottom:366.900210px;}
.y20{bottom:374.280207px;}
.y7d{bottom:381.300204px;}
.y93{bottom:383.460204px;}
.y42{bottom:384.180203px;}
.yb3{bottom:385.800203px;}
.y1f{bottom:389.580201px;}
.y7c{bottom:400.020197px;}
.y92{bottom:402.180196px;}
.y41{bottom:403.260196px;}
.yb2{bottom:404.520195px;}
.y1e{bottom:404.880195px;}
.y7b{bottom:418.740190px;}
.y1d{bottom:420.180189px;}
.y91{bottom:420.900189px;}
.yb1{bottom:423.240188px;}
.y40{bottom:424.500187px;}
.y1c{bottom:435.660183px;}
.y7a{bottom:437.460182px;}
.y90{bottom:439.620181px;}
.yb0{bottom:441.960180px;}
.y3f{bottom:444.300179px;}
.y1b{bottom:450.960177px;}
.y8f{bottom:454.920175px;}
.y79{bottom:456.180175px;}
.yaf{bottom:460.680173px;}
.y1a{bottom:466.260170px;}
.y78{bottom:474.900167px;}
.yae{bottom:479.400165px;}
.y19{bottom:481.560164px;}
.y3e{bottom:484.080163px;}
.y77{bottom:493.800159px;}
.y18{bottom:497.040158px;}
.yad{bottom:498.300158px;}
.y17{bottom:512.340152px;}
.y76{bottom:512.520152px;}
.yac{bottom:517.020150px;}
.y16{bottom:527.640146px;}
.y75{bottom:531.240145px;}
.yab{bottom:535.740143px;}
.y60{bottom:537.180142px;}
.y15{bottom:542.940140px;}
.y74{bottom:549.960137px;}
.yaa{bottom:554.460135px;}
.y14{bottom:558.240134px;}
.y5f{bottom:562.380132px;}
.y73{bottom:568.680130px;}
.ya9{bottom:573.180128px;}
.y13{bottom:573.720128px;}
.y72{bottom:587.400122px;}
.y12{bottom:589.020121px;}
.ya8{bottom:591.900120px;}
.y3d{bottom:593.160120px;}
.y5e{bottom:596.580118px;}
.y11{bottom:604.320115px;}
.y71{bottom:606.120115px;}
.ya7{bottom:610.620113px;}
.y70{bottom:625.020107px;}
.y3c{bottom:628.080106px;}
.ya6{bottom:629.520105px;}
.y5d{bottom:630.600105px;}
.y10{bottom:640.680101px;}
.y6f{bottom:643.740100px;}
.y8e{bottom:648.240098px;}
.yf{bottom:655.980095px;}
.y6e{bottom:662.460092px;}
.y5c{bottom:664.620091px;}
.y3b{bottom:666.060091px;}
.y8d{bottom:666.960090px;}
.ye{bottom:671.280088px;}
.y6d{bottom:681.180085px;}
.y8c{bottom:685.680083px;}
.yd{bottom:686.760082px;}
.y5b{bottom:689.640081px;}
.y6c{bottom:699.900077px;}
.yc{bottom:702.060076px;}
.y8b{bottom:704.400075px;}
.y5a{bottom:708.360074px;}
.y3a{bottom:711.060073px;}
.yb{bottom:717.360070px;}
.y6b{bottom:718.620070px;}
.y8a{bottom:723.120068px;}
.ya{bottom:732.660064px;}
.y39{bottom:735.000063px;}
.y6a{bottom:737.520062px;}
.y89{bottom:742.020060px;}
.y9{bottom:748.140058px;}
.y69{bottom:756.240055px;}
.y38{bottom:760.560053px;}
.y88{bottom:760.740053px;}
.y8{bottom:763.440052px;}
.y7{bottom:778.740046px;}
.y37{bottom:779.280045px;}
.y87{bottom:779.460045px;}
.y6{bottom:794.040039px;}
.y68{bottom:796.020039px;}
.y86{bottom:798.180038px;}
.y59{bottom:807.000034px;}
.y5{bottom:810.060033px;}
.y85{bottom:816.900030px;}
.y4{bottom:828.420026px;}
.y58{bottom:832.020024px;}
.y67{bottom:835.620023px;}
.y36{bottom:838.320022px;}
.y3{bottom:843.900019px;}
.y1{bottom:875.760007px;}
.h1{height:0.000000px;}
.hf{height:20.139832px;}
.h2{height:27.582176px;}
.hb{height:32.127827px;}
.he{height:35.963986px;}
.h9{height:36.486196px;}
.h6{height:40.842757px;}
.h5{height:40.921859px;}
.hd{height:44.000139px;}
.h7{height:44.115822px;}
.ha{height:45.199318px;}
.h4{height:50.100449px;}
.h13{height:50.197480px;}
.h3{height:54.507634px;}
.h12{height:60.418101px;}
.h11{height:63.714701px;}
.h8{height:63.838099px;}
.hc{height:65.671849px;}
.h10{height:91.119339px;}
.h0{height:892.500000px;}
.w0{width:1263.000000px;}
.x0{left:0.000000px;}
.x1{left:42.465883px;}
.x22{left:63.705969px;}
.x21{left:156.046699px;}
.x2{left:217.786413px;}
.x23{left:378.526349px;}
.x5{left:445.487869px;}
.x7{left:453.396022px;}
.x6{left:464.386314px;}
.xc{left:467.806313px;}
.x8{left:469.606264px;}
.x14{left:502.726458px;}
.xa{left:510.279197px;}
.xd{left:521.257291px;}
.x11{left:531.166288px;}
.x13{left:537.106313px;}
.xe{left:541.065322px;}
.xf{left:545.925292px;}
.x12{left:548.626281px;}
.x10{left:554.746278px;}
.x15{left:556.906246px;}
.x18{left:561.766502px;}
.x16{left:575.086237px;}
.x3{left:630.886448px;}
.x25{left:641.505545px;}
.x4{left:658.246237px;}
.x17{left:737.086205px;}
.xb{left:765.346194px;}
.x24{left:773.264870px;}
.x9{left:792.346183px;}
.x1b{left:863.986905px;}
.x1f{left:865.426293px;}
.x1c{left:869.566152px;}
.x28{left:870.646213px;}
.x2a{left:877.666319px;}
.x26{left:885.226146px;}
.x29{left:894.046166px;}
.x27{left:895.486057px;}
.x2c{left:931.126134px;}
.x1e{left:962.806461px;}
.x20{left:1003.296197px;}
.x2b{left:1016.985597px;}
.x19{left:1043.266083px;}
.x1a{left:1088.805898px;}
.x1d{left:1192.846023px;}
.x2d{left:1222.722794px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ws1{word-spacing:-14.955514pt;}
.ws0{word-spacing:0.000000pt;}
._2{margin-left:-0.948961pt;}
._1{width:1.492772pt;}
._3{width:10.479435pt;}
._0{width:492.520123pt;}
.fs2{font-size:26.879989pt;}
.fs6{font-size:42.879983pt;}
.fs4{font-size:47.999981pt;}
.fs1{font-size:53.119979pt;}
.fs3{font-size:58.879976pt;}
.fs0{font-size:63.999974pt;}
.fs5{font-size:74.879970pt;}
.fs7{font-size:106.879957pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:21.173642pt;}
.ya5{bottom:40.853634pt;}
.y35{bottom:46.293632pt;}
.y66{bottom:47.733632pt;}
.y84{bottom:47.893632pt;}
.y57{bottom:51.573630pt;}
.ya4{bottom:57.493628pt;}
.y34{bottom:59.893627pt;}
.ybd{bottom:61.173626pt;}
.y56{bottom:63.733625pt;}
.y83{bottom:64.533625pt;}
.y33{bottom:73.653621pt;}
.ya3{bottom:74.293621pt;}
.y55{bottom:75.893620pt;}
.y65{bottom:78.453619pt;}
.y82{bottom:81.173618pt;}
.y32{bottom:87.253616pt;}
.y54{bottom:88.053615pt;}
.ya2{bottom:90.933614pt;}
.y81{bottom:97.653612pt;}
.y53{bottom:100.373611pt;}
.y31{bottom:100.853610pt;}
.ya1{bottom:107.573608pt;}
.y52{bottom:107.893608pt;}
.y64{bottom:110.933606pt;}
.y30{bottom:114.453605pt;}
.ya0{bottom:124.213601pt;}
.y2f{bottom:128.213599pt;}
.y63{bottom:132.213598pt;}
.y51{bottom:136.533596pt;}
.y9f{bottom:140.853594pt;}
.y2e{bottom:141.813594pt;}
.y50{bottom:148.693591pt;}
.y2d{bottom:155.413589pt;}
.y9e{bottom:157.493588pt;}
.y4f{bottom:160.693586pt;}
.y2c{bottom:169.013583pt;}
.y62{bottom:172.053582pt;}
.y4e{bottom:172.853582pt;}
.y9d{bottom:174.133581pt;}
.y2b{bottom:182.613578pt;}
.y4d{bottom:185.013577pt;}
.y9c{bottom:190.933574pt;}
.ybc{bottom:194.453573pt;}
.y2a{bottom:196.373572pt;}
.y4c{bottom:197.173572pt;}
.y9b{bottom:207.573568pt;}
.y61{bottom:207.893568pt;}
.y4b{bottom:209.173567pt;}
.y29{bottom:209.973567pt;}
.ybb{bottom:211.093566pt;}
.y4a{bottom:221.333562pt;}
.y28{bottom:223.573561pt;}
.y9a{bottom:224.213561pt;}
.yba{bottom:227.733560pt;}
.y49{bottom:233.493557pt;}
.y27{bottom:237.173556pt;}
.y99{bottom:240.853554pt;}
.yb9{bottom:244.373553pt;}
.y48{bottom:245.653552pt;}
.y26{bottom:250.933550pt;}
.y98{bottom:257.493548pt;}
.y47{bottom:257.653548pt;}
.yb8{bottom:261.013546pt;}
.y25{bottom:264.533545pt;}
.y46{bottom:270.293543pt;}
.y97{bottom:274.133541pt;}
.yb7{bottom:277.653540pt;}
.y24{bottom:278.133539pt;}
.y45{bottom:288.213535pt;}
.y80{bottom:288.853535pt;}
.y96{bottom:290.933534pt;}
.y23{bottom:291.733534pt;}
.yb6{bottom:293.973533pt;}
.y22{bottom:305.333529pt;}
.y7f{bottom:305.493528pt;}
.y95{bottom:307.573528pt;}
.y44{bottom:308.053527pt;}
.yb5{bottom:309.493527pt;}
.y21{bottom:319.093523pt;}
.y7e{bottom:322.133522pt;}
.y94{bottom:324.213521pt;}
.y43{bottom:324.853521pt;}
.yb4{bottom:326.133520pt;}
.y20{bottom:332.693518pt;}
.y7d{bottom:338.933515pt;}
.y93{bottom:340.853514pt;}
.y42{bottom:341.493514pt;}
.yb3{bottom:342.933513pt;}
.y1f{bottom:346.293512pt;}
.y7c{bottom:355.573508pt;}
.y92{bottom:357.493508pt;}
.y41{bottom:358.453507pt;}
.yb2{bottom:359.573507pt;}
.y1e{bottom:359.893507pt;}
.y7b{bottom:372.213502pt;}
.y1d{bottom:373.493501pt;}
.y91{bottom:374.133501pt;}
.yb1{bottom:376.213500pt;}
.y40{bottom:377.333500pt;}
.y1c{bottom:387.253496pt;}
.y7a{bottom:388.853495pt;}
.y90{bottom:390.773494pt;}
.yb0{bottom:392.853494pt;}
.y3f{bottom:394.933493pt;}
.y1b{bottom:400.853490pt;}
.y8f{bottom:404.373489pt;}
.y79{bottom:405.493488pt;}
.yaf{bottom:409.493487pt;}
.y1a{bottom:414.453485pt;}
.y78{bottom:422.133482pt;}
.yae{bottom:426.133480pt;}
.y19{bottom:428.053479pt;}
.y3e{bottom:430.293479pt;}
.y77{bottom:438.933475pt;}
.y18{bottom:441.813474pt;}
.yad{bottom:442.933473pt;}
.y17{bottom:455.413469pt;}
.y76{bottom:455.573468pt;}
.yac{bottom:459.573467pt;}
.y16{bottom:469.013463pt;}
.y75{bottom:472.213462pt;}
.yab{bottom:476.213460pt;}
.y60{bottom:477.493460pt;}
.y15{bottom:482.613458pt;}
.y74{bottom:488.853455pt;}
.yaa{bottom:492.853454pt;}
.y14{bottom:496.213452pt;}
.y5f{bottom:499.893451pt;}
.y73{bottom:505.493448pt;}
.ya9{bottom:509.493447pt;}
.y13{bottom:509.973447pt;}
.y72{bottom:522.133442pt;}
.y12{bottom:523.573441pt;}
.ya8{bottom:526.133440pt;}
.y3d{bottom:527.253440pt;}
.y5e{bottom:530.293439pt;}
.y11{bottom:537.173436pt;}
.y71{bottom:538.773435pt;}
.ya7{bottom:542.773434pt;}
.y70{bottom:555.573428pt;}
.y3c{bottom:558.293427pt;}
.ya6{bottom:559.573427pt;}
.y5d{bottom:560.533426pt;}
.y10{bottom:569.493423pt;}
.y6f{bottom:572.213422pt;}
.y8e{bottom:576.213420pt;}
.yf{bottom:583.093417pt;}
.y6e{bottom:588.853415pt;}
.y5c{bottom:590.773414pt;}
.y3b{bottom:592.053414pt;}
.y8d{bottom:592.853414pt;}
.ye{bottom:596.693412pt;}
.y6d{bottom:605.493408pt;}
.y8c{bottom:609.493407pt;}
.yd{bottom:610.453406pt;}
.y5b{bottom:613.013405pt;}
.y6c{bottom:622.133402pt;}
.yc{bottom:624.053401pt;}
.y8b{bottom:626.133400pt;}
.y5a{bottom:629.653399pt;}
.y3a{bottom:632.053398pt;}
.yb{bottom:637.653396pt;}
.y6b{bottom:638.773395pt;}
.y8a{bottom:642.773394pt;}
.ya{bottom:651.253390pt;}
.y39{bottom:653.333389pt;}
.y6a{bottom:655.573388pt;}
.y89{bottom:659.573387pt;}
.y9{bottom:665.013385pt;}
.y69{bottom:672.213382pt;}
.y38{bottom:676.053380pt;}
.y88{bottom:676.213380pt;}
.y8{bottom:678.613379pt;}
.y7{bottom:692.213374pt;}
.y37{bottom:692.693374pt;}
.y87{bottom:692.853374pt;}
.y6{bottom:705.813368pt;}
.y68{bottom:707.573368pt;}
.y86{bottom:709.493367pt;}
.y59{bottom:717.333364pt;}
.y5{bottom:720.053363pt;}
.y85{bottom:726.133360pt;}
.y4{bottom:736.373356pt;}
.y58{bottom:739.573355pt;}
.y67{bottom:742.773354pt;}
.y36{bottom:745.173353pt;}
.y3{bottom:750.133351pt;}
.y1{bottom:778.453339pt;}
.h1{height:0.000000pt;}
.hf{height:17.902073pt;}
.h2{height:24.517490pt;}
.hb{height:28.558069pt;}
.he{height:31.967987pt;}
.h9{height:32.432175pt;}
.h6{height:36.304673pt;}
.h5{height:36.374985pt;}
.hd{height:39.111234pt;}
.h7{height:39.214064pt;}
.ha{height:40.177171pt;}
.h4{height:44.533732pt;}
.h13{height:44.619982pt;}
.h3{height:48.451231pt;}
.h12{height:53.704979pt;}
.h11{height:56.635290pt;}
.h8{height:56.744977pt;}
.hc{height:58.374977pt;}
.h10{height:80.994968pt;}
.h0{height:793.333333pt;}
.w0{width:1122.666667pt;}
.x0{left:0.000000pt;}
.x1{left:37.747452pt;}
.x22{left:56.627528pt;}
.x21{left:138.708177pt;}
.x2{left:193.587923pt;}
.x23{left:336.467865pt;}
.x5{left:395.989217pt;}
.x7{left:403.018686pt;}
.x6{left:412.787835pt;}
.xc{left:415.827834pt;}
.x8{left:417.427791pt;}
.x14{left:446.867963pt;}
.xa{left:453.581509pt;}
.xd{left:463.339815pt;}
.x11{left:472.147811pt;}
.x13{left:477.427834pt;}
.xe{left:480.946953pt;}
.xf{left:485.266926pt;}
.x12{left:487.667805pt;}
.x10{left:493.107803pt;}
.x15{left:495.027774pt;}
.x18{left:499.348002pt;}
.x16{left:511.187766pt;}
.x3{left:560.787954pt;}
.x25{left:570.227151pt;}
.x4{left:585.107766pt;}
.x17{left:655.187738pt;}
.xb{left:680.307728pt;}
.x24{left:687.346551pt;}
.x9{left:704.307718pt;}
.x1b{left:767.988360pt;}
.x1f{left:769.267816pt;}
.x1c{left:772.947691pt;}
.x28{left:773.907745pt;}
.x2a{left:780.147839pt;}
.x26{left:786.867685pt;}
.x29{left:794.707703pt;}
.x27{left:795.987606pt;}
.x2c{left:827.667675pt;}
.x1e{left:855.827965pt;}
.x20{left:891.818842pt;}
.x2b{left:903.987197pt;}
.x19{left:927.347629pt;}
.x1a{left:967.827465pt;}
.x1d{left:1060.307576pt;}
.x2d{left:1086.864706pt;}
}




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