
    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_2ceb3e5925f9143d3f890505.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.971500;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_122ef8efcfccd1cf796763c5.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.925781;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_ca36cd3a12b93b4f6823bcf7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.064500;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_21c54c3b83bc743cc3f81365.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ff01a5297f692e86c2c57852.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_6e67be8ac669d5794feef634.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.958000;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_e32d423c4eac1a414c6cffdb.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.908000;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_63d55fc76c717f8b4c856719.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.678223;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_8655021e5f87776ad730459f.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.903000;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_0ad2fd72b88d134ecdc417bc.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.745000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v3{vertical-align:-36.000001px;}
.v5{vertical-align:-31.500001px;}
.v4{vertical-align:-27.000001px;}
.v1{vertical-align:-11.818566px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:12.897630px;}
.v9{vertical-align:32.220006px;}
.v7{vertical-align:36.000001px;}
.v8{vertical-align:48.780002px;}
.v6{vertical-align:58.446857px;}
.ls1{letter-spacing:0.000000px;}
.lsa{letter-spacing:0.000045px;}
.ls7{letter-spacing:0.000054px;}
.lsc{letter-spacing:0.014111px;}
.ls2{letter-spacing:0.022201px;}
.lsb{letter-spacing:0.033598px;}
.lsf{letter-spacing:0.036689px;}
.ls12{letter-spacing:0.087300px;}
.ls0{letter-spacing:0.087454px;}
.ls8{letter-spacing:7.513200px;}
.ls5{letter-spacing:7.513290px;}
.lse{letter-spacing:8.264626px;}
.ls9{letter-spacing:53.972020px;}
.ls3{letter-spacing:53.986251px;}
.ls4{letter-spacing:53.986260px;}
.ls6{letter-spacing:54.000353px;}
.lsd{letter-spacing:247.454596px;}
.ls10{letter-spacing:257.903304px;}
.ls11{letter-spacing:553.708061px;}
.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;}
}
.ws5{word-spacing:-18.528001px;}
.ws9{word-spacing:-17.370001px;}
.wsb{word-spacing:-16.212000px;}
.wsd{word-spacing:-15.054001px;}
.ws7{word-spacing:-13.896000px;}
.wsa{word-spacing:-12.738001px;}
.ws6{word-spacing:-12.352001px;}
.ws2{word-spacing:-11.580000px;}
.wsc{word-spacing:-10.808001px;}
.ws8{word-spacing:-0.096000px;}
.ws3{word-spacing:-0.090000px;}
.ws0{word-spacing:-0.089117px;}
.wse{word-spacing:-0.078000px;}
.ws1{word-spacing:0.000000px;}
.wsf{word-spacing:201.612781px;}
.ws4{word-spacing:2433.964066px;}
._8{margin-left:-17.478721px;}
._e{margin-left:-12.000000px;}
._2{margin-left:-8.532000px;}
._f{margin-left:-7.423646px;}
._4{margin-left:-6.264000px;}
._5{margin-left:-4.428000px;}
._0{margin-left:-3.360000px;}
._3{margin-left:-1.944000px;}
._6{width:2.808000px;}
._a{width:37.167256px;}
._10{width:85.503603px;}
._1{width:98.605120px;}
._b{width:105.168333px;}
._9{width:112.207594px;}
._d{width:582.144954px;}
._7{width:620.397282px;}
._c{width:1098.359147px;}
.fc4{color:rgb(11,83,148);}
.fc3{color:transparent;}
.fc2{color:rgb(255,153,0);}
.fc5{color:rgb(89,89,89);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs3{font-size:28.058999px;}
.fs8{font-size:48.000003px;}
.fs10{font-size:54.000002px;}
.fs12{font-size:56.000003px;}
.fs7{font-size:60.000000px;}
.fsf{font-size:64.000007px;}
.fsa{font-size:66.000004px;}
.fs4{font-size:70.059008px;}
.fs11{font-size:72.000002px;}
.fsb{font-size:78.000005px;}
.fs16{font-size:82.059006px;}
.fs6{font-size:84.000000px;}
.fs2{font-size:89.117404px;}
.fsd{font-size:90.000003px;}
.fs17{font-size:93.970205px;}
.fsc{font-size:96.000006px;}
.fs5{font-size:108.000003px;}
.fse{font-size:118.800004px;}
.fs15{font-size:123.000007px;}
.fs1{font-size:141.000008px;}
.fs18{font-size:144.000005px;}
.fs0{font-size:167.999999px;}
.fs9{font-size:240.840008px;}
.fs13{font-size:267.599979px;}
.fs14{font-size:600.000004px;}
.y0{bottom:0.000000px;}
.yd{bottom:10.574981px;}
.y51{bottom:11.232881px;}
.yc{bottom:13.190527px;}
.y76{bottom:49.053087px;}
.y69{bottom:51.500536px;}
.y2a{bottom:53.612802px;}
.y5b{bottom:57.250726px;}
.y4e{bottom:57.730705px;}
.y62{bottom:60.551195px;}
.y1c{bottom:63.569311px;}
.y4c{bottom:69.289300px;}
.y42{bottom:71.265437px;}
.y34{bottom:72.494983px;}
.y4d{bottom:73.930708px;}
.y61{bottom:77.831196px;}
.y5a{bottom:82.090727px;}
.y75{bottom:82.173099px;}
.y22{bottom:86.288552px;}
.y21{bottom:87.161316px;}
.y37{bottom:87.209320px;}
.y20{bottom:90.296916px;}
.ya{bottom:90.562641px;}
.y3d{bottom:92.266836px;}
.y41{bottom:92.865437px;}
.y33{bottom:94.094984px;}
.y68{bottom:95.300534px;}
.y5e{bottom:96.178787px;}
.y1b{bottom:96.689312px;}
.y59{bottom:106.930728px;}
.y4b{bottom:113.227785px;}
.y40{bottom:114.465435px;}
.y60{bottom:117.674651px;}
.y1f{bottom:120.822509px;}
.y7d{bottom:123.263568px;}
.y7{bottom:124.927635px;}
.y3c{bottom:125.386826px;}
.y1a{bottom:129.809313px;}
.y58{bottom:131.770729px;}
.y5c{bottom:131.835697px;}
.y7a{bottom:139.094996px;}
.y5d{bottom:142.978789px;}
.y48{bottom:143.416790px;}
.y3f{bottom:151.065435px;}
.y57{bottom:156.610729px;}
.y19{bottom:162.929315px;}
.y31{bottom:165.329322px;}
.y6{bottom:167.047636px;}
.y7c{bottom:171.196411px;}
.y79{bottom:172.215003px;}
.y49{bottom:172.836486px;}
.y29{bottom:174.689334px;}
.y63{bottom:180.168646px;}
.y5f{bottom:180.703224px;}
.y6b{bottom:185.549652px;}
.y18{bottom:196.049338px;}
.y30{bottom:198.449312px;}
.y28{bottom:199.169312px;}
.y50{bottom:199.503662px;}
.y3b{bottom:203.506828px;}
.y78{bottom:205.334994px;}
.y4a{bottom:210.689396px;}
.y4f{bottom:216.063662px;}
.y6a{bottom:218.669646px;}
.y5{bottom:233.476469px;}
.y74{bottom:238.413093px;}
.y77{bottom:238.454988px;}
.y56{bottom:244.413112px;}
.y7f{bottom:252.452284px;}
.y17{bottom:255.389321px;}
.y27{bottom:258.509306px;}
.y4{bottom:263.658240px;}
.y2f{bottom:272.789303px;}
.y47{bottom:274.413106px;}
.y16{bottom:276.089322px;}
.y36{bottom:280.934990px;}
.y3a{bottom:281.626831px;}
.y26{bottom:282.989296px;}
.y9{bottom:300.521573px;}
.y15{bottom:300.569311px;}
.y73{bottom:301.533076px;}
.y7e{bottom:301.952292px;}
.y3{bottom:306.196415px;}
.y6d{bottom:306.494990px;}
.y46{bottom:307.533095px;}
.y55{bottom:315.033099px;}
.y2e{bottom:319.769293px;}
.y8{bottom:323.741569px;}
.y6c{bottom:324.494991px;}
.y35{bottom:330.614991px;}
.y14{bottom:333.689301px;}
.y25{bottom:342.329290px;}
.y54{bottom:348.153089px;}
.y6f{bottom:352.214990px;}
.y2d{bottom:352.889300px;}
.y45{bottom:363.153080px;}
.y72{bottom:364.653071px;}
.y24{bottom:366.809287px;}
.y6e{bottom:368.414992px;}
.y39{bottom:392.175000px;}
.y13{bottom:393.029296px;}
.y65{bottom:396.361763px;}
.y71{bottom:397.773078px;}
.y64{bottom:404.416764px;}
.y10{bottom:406.796326px;}
.y7b{bottom:406.797642px;}
.y2c{bottom:408.509292px;}
.y12{bottom:417.509292px;}
.y2{bottom:417.950661px;}
.y44{bottom:418.773072px;}
.y38{bottom:425.294994px;}
.y23{bottom:426.149292px;}
.yf{bottom:430.196327px;}
.y2b{bottom:441.629286px;}
.y67{bottom:444.651610px;}
.y1e{bottom:446.163771px;}
.y11{bottom:450.629286px;}
.y43{bottom:451.893066px;}
.y70{bottom:460.893067px;}
.y66{bottom:461.931610px;}
.y32{bottom:462.363768px;}
.y1d{bottom:466.863768px;}
.y53{bottom:474.765352px;}
.ye{bottom:484.332285px;}
.y1{bottom:493.325668px;}
.y3e{bottom:511.334997px;}
.yb{bottom:532.011390px;}
.y52{bottom:533.033122px;}
.h8{height:37.224002px;}
.hf{height:41.877001px;}
.ha{height:46.530000px;}
.h4{height:46.694603px;}
.he{height:50.121633px;}
.h14{height:51.183003px;}
.h7{height:53.040000px;}
.h11{height:55.836002px;}
.hc{height:57.447004px;}
.h3{height:59.397098px;}
.hb{height:60.489004px;}
.h13{height:61.866000px;}
.h17{height:68.952005px;}
.h1b{height:72.873894px;}
.h6{height:74.256000px;}
.hd{height:74.448005px;}
.h12{height:76.128005px;}
.h5{height:83.754003px;}
.h10{height:84.864005px;}
.h19{height:94.086005px;}
.h18{height:97.389004px;}
.h1c{height:114.192004px;}
.h15{height:120.312857px;}
.h2{height:124.644007px;}
.h1{height:133.224000px;}
.h9{height:190.986126px;}
.h16{height:212.206783px;}
.h1a{height:475.800003px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.x33{left:10.125000px;}
.x9{left:25.372422px;}
.x40{left:29.382438px;}
.x2f{left:34.643778px;}
.xc{left:37.393265px;}
.x48{left:42.439963px;}
.x30{left:44.836327px;}
.x7{left:46.939963px;}
.x28{left:49.938457px;}
.x18{left:51.435506px;}
.x31{left:53.813976px;}
.x35{left:58.938457px;}
.x1{left:60.151859px;}
.xd{left:65.385829px;}
.x3{left:69.439963px;}
.xe{left:71.143264px;}
.x16{left:74.385002px;}
.x29{left:77.028545px;}
.x19{left:78.525594px;}
.x3b{left:81.857658px;}
.x36{left:86.028546px;}
.x2b{left:90.346979px;}
.x2d{left:91.919040px;}
.xf{left:99.135830px;}
.x23{left:104.544456px;}
.x2e{left:123.301051px;}
.x42{left:126.985268px;}
.x49{left:128.451562px;}
.x24{left:130.721460px;}
.x47{left:133.774632px;}
.x21{left:136.189321px;}
.x17{left:147.212604px;}
.x20{left:171.109328px;}
.x22{left:184.309234px;}
.x41{left:196.201683px;}
.x3f{left:202.181286px;}
.x3e{left:209.357658px;}
.x2c{left:211.482727px;}
.x1a{left:214.835526px;}
.x8{left:219.375007px;}
.x2{left:220.423473px;}
.x2a{left:229.311428px;}
.x44{left:241.364114px;}
.x4a{left:265.920534px;}
.x43{left:274.763439px;}
.x12{left:299.769692px;}
.x32{left:313.875010px;}
.x15{left:326.259685px;}
.x3d{left:373.758193px;}
.x26{left:415.564978px;}
.x45{left:437.237294px;}
.x46{left:447.429844px;}
.x27{left:456.064980px;}
.x39{left:574.054173px;}
.x14{left:628.551695px;}
.x1f{left:644.085021px;}
.x1b{left:650.768230px;}
.x1c{left:659.925021px;}
.x34{left:759.496074px;}
.x4{left:787.749668px;}
.x5{left:790.037580px;}
.x3a{left:795.496075px;}
.xa{left:828.752303px;}
.x37{left:860.450821px;}
.x11{left:862.810419px;}
.x1d{left:877.725028px;}
.x1e{left:885.645028px;}
.xb{left:899.356304px;}
.x13{left:901.474949px;}
.x10{left:918.273337px;}
.x25{left:921.285029px;}
.x3c{left:932.604555px;}
.x6{left:960.859572px;}
.x38{left:976.725031px;}
@media print{
.v3{vertical-align:-32.000001pt;}
.v5{vertical-align:-28.000001pt;}
.v4{vertical-align:-24.000001pt;}
.v1{vertical-align:-10.505392pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:11.464560pt;}
.v9{vertical-align:28.640005pt;}
.v7{vertical-align:32.000001pt;}
.v8{vertical-align:43.360001pt;}
.v6{vertical-align:51.952762pt;}
.ls1{letter-spacing:0.000000pt;}
.lsa{letter-spacing:0.000040pt;}
.ls7{letter-spacing:0.000048pt;}
.lsc{letter-spacing:0.012543pt;}
.ls2{letter-spacing:0.019734pt;}
.lsb{letter-spacing:0.029865pt;}
.lsf{letter-spacing:0.032612pt;}
.ls12{letter-spacing:0.077600pt;}
.ls0{letter-spacing:0.077737pt;}
.ls8{letter-spacing:6.678400pt;}
.ls5{letter-spacing:6.678480pt;}
.lse{letter-spacing:7.346334pt;}
.ls9{letter-spacing:47.975128pt;}
.ls3{letter-spacing:47.987779pt;}
.ls4{letter-spacing:47.987787pt;}
.ls6{letter-spacing:48.000314pt;}
.lsd{letter-spacing:219.959641pt;}
.ls10{letter-spacing:229.247381pt;}
.ls11{letter-spacing:492.184943pt;}
.ws5{word-spacing:-16.469334pt;}
.ws9{word-spacing:-15.440000pt;}
.wsb{word-spacing:-14.410667pt;}
.wsd{word-spacing:-13.381334pt;}
.ws7{word-spacing:-12.352000pt;}
.wsa{word-spacing:-11.322667pt;}
.ws6{word-spacing:-10.979557pt;}
.ws2{word-spacing:-10.293333pt;}
.wsc{word-spacing:-9.607112pt;}
.ws8{word-spacing:-0.085333pt;}
.ws3{word-spacing:-0.080000pt;}
.ws0{word-spacing:-0.079215pt;}
.wse{word-spacing:-0.069333pt;}
.ws1{word-spacing:0.000000pt;}
.wsf{word-spacing:179.211360pt;}
.ws4{word-spacing:2163.523614pt;}
._8{margin-left:-15.536640pt;}
._e{margin-left:-10.666667pt;}
._2{margin-left:-7.584000pt;}
._f{margin-left:-6.598797pt;}
._4{margin-left:-5.568000pt;}
._5{margin-left:-3.936000pt;}
._0{margin-left:-2.986667pt;}
._3{margin-left:-1.728000pt;}
._6{width:2.496000pt;}
._a{width:33.037561pt;}
._10{width:76.003202pt;}
._1{width:87.648995pt;}
._b{width:93.482963pt;}
._9{width:99.740083pt;}
._d{width:517.462181pt;}
._7{width:551.464250pt;}
._c{width:976.319242pt;}
.fs3{font-size:24.941333pt;}
.fs8{font-size:42.666669pt;}
.fs10{font-size:48.000002pt;}
.fs12{font-size:49.777780pt;}
.fs7{font-size:53.333334pt;}
.fsf{font-size:56.888895pt;}
.fsa{font-size:58.666670pt;}
.fs4{font-size:62.274674pt;}
.fs11{font-size:64.000002pt;}
.fsb{font-size:69.333338pt;}
.fs16{font-size:72.941338pt;}
.fs6{font-size:74.666666pt;}
.fs2{font-size:79.215471pt;}
.fsd{font-size:80.000003pt;}
.fs17{font-size:83.529071pt;}
.fsc{font-size:85.333339pt;}
.fs5{font-size:96.000003pt;}
.fse{font-size:105.600003pt;}
.fs15{font-size:109.333339pt;}
.fs1{font-size:125.333340pt;}
.fs18{font-size:128.000004pt;}
.fs0{font-size:149.333333pt;}
.fs9{font-size:214.080007pt;}
.fs13{font-size:237.866648pt;}
.fs14{font-size:533.333337pt;}
.y0{bottom:0.000000pt;}
.yd{bottom:9.399983pt;}
.y51{bottom:9.984783pt;}
.yc{bottom:11.724913pt;}
.y76{bottom:43.602744pt;}
.y69{bottom:45.778254pt;}
.y2a{bottom:47.655824pt;}
.y5b{bottom:50.889534pt;}
.y4e{bottom:51.316182pt;}
.y62{bottom:53.823284pt;}
.y1c{bottom:56.506055pt;}
.y4c{bottom:61.590489pt;}
.y42{bottom:63.347055pt;}
.y34{bottom:64.439985pt;}
.y4d{bottom:65.716185pt;}
.y61{bottom:69.183285pt;}
.y5a{bottom:72.969535pt;}
.y75{bottom:73.042755pt;}
.y22{bottom:76.700935pt;}
.y21{bottom:77.476725pt;}
.y37{bottom:77.519395pt;}
.y20{bottom:80.263925pt;}
.ya{bottom:80.500125pt;}
.y3d{bottom:82.014965pt;}
.y41{bottom:82.547055pt;}
.y33{bottom:83.639985pt;}
.y68{bottom:84.711585pt;}
.y5e{bottom:85.492255pt;}
.y1b{bottom:85.946055pt;}
.y59{bottom:95.049536pt;}
.y4b{bottom:100.646920pt;}
.y40{bottom:101.747053pt;}
.y60{bottom:104.599690pt;}
.y1f{bottom:107.397786pt;}
.y7d{bottom:109.567616pt;}
.y7{bottom:111.046786pt;}
.y3c{bottom:111.454956pt;}
.y1a{bottom:115.386056pt;}
.y58{bottom:117.129536pt;}
.y5c{bottom:117.187286pt;}
.y7a{bottom:123.639997pt;}
.y5d{bottom:127.092257pt;}
.y48{bottom:127.481591pt;}
.y3f{bottom:134.280387pt;}
.y57{bottom:139.209537pt;}
.y19{bottom:144.826057pt;}
.y31{bottom:146.959397pt;}
.y6{bottom:148.486787pt;}
.y7c{bottom:152.174588pt;}
.y79{bottom:153.080003pt;}
.y49{bottom:153.632432pt;}
.y29{bottom:155.279408pt;}
.y63{bottom:160.149908pt;}
.y5f{bottom:160.625088pt;}
.y6b{bottom:164.933024pt;}
.y18{bottom:174.266078pt;}
.y30{bottom:176.399388pt;}
.y28{bottom:177.039388pt;}
.y50{bottom:177.336588pt;}
.y3b{bottom:180.894959pt;}
.y78{bottom:182.519995pt;}
.y4a{bottom:187.279463pt;}
.y4f{bottom:192.056589pt;}
.y6a{bottom:194.373019pt;}
.y5{bottom:207.534639pt;}
.y74{bottom:211.922750pt;}
.y77{bottom:211.959990pt;}
.y56{bottom:217.256100pt;}
.y7f{bottom:224.402030pt;}
.y17{bottom:227.012730pt;}
.y27{bottom:229.786050pt;}
.y4{bottom:234.362880pt;}
.y2f{bottom:242.479380pt;}
.y47{bottom:243.922761pt;}
.y16{bottom:245.412731pt;}
.y36{bottom:249.719991pt;}
.y3a{bottom:250.334961pt;}
.y26{bottom:251.546041pt;}
.y9{bottom:267.130287pt;}
.y15{bottom:267.172721pt;}
.y73{bottom:268.029401pt;}
.y7e{bottom:268.402037pt;}
.y3{bottom:272.174591pt;}
.y6d{bottom:272.439991pt;}
.y46{bottom:273.362751pt;}
.y55{bottom:280.029422pt;}
.y2e{bottom:284.239372pt;}
.y8{bottom:287.770284pt;}
.y6c{bottom:288.439992pt;}
.y35{bottom:293.879992pt;}
.y14{bottom:296.612712pt;}
.y25{bottom:304.292702pt;}
.y54{bottom:309.469413pt;}
.y6f{bottom:313.079991pt;}
.y2d{bottom:313.679378pt;}
.y45{bottom:322.802738pt;}
.y72{bottom:324.136063pt;}
.y24{bottom:326.052699pt;}
.y6e{bottom:327.479993pt;}
.y39{bottom:348.600000pt;}
.y13{bottom:349.359374pt;}
.y65{bottom:352.321567pt;}
.y71{bottom:353.576069pt;}
.y64{bottom:359.481568pt;}
.y10{bottom:361.596734pt;}
.y7b{bottom:361.597904pt;}
.y2c{bottom:363.119370pt;}
.y12{bottom:371.119371pt;}
.y2{bottom:371.511699pt;}
.y44{bottom:372.242731pt;}
.y38{bottom:378.039995pt;}
.y23{bottom:378.799371pt;}
.yf{bottom:382.396735pt;}
.y2b{bottom:392.559365pt;}
.y67{bottom:395.245875pt;}
.y1e{bottom:396.590018pt;}
.y11{bottom:400.559366pt;}
.y43{bottom:401.682726pt;}
.y70{bottom:409.682726pt;}
.y66{bottom:410.605876pt;}
.y32{bottom:410.990016pt;}
.y1d{bottom:414.990016pt;}
.y53{bottom:422.013646pt;}
.ye{bottom:430.517586pt;}
.y1{bottom:438.511705pt;}
.y3e{bottom:454.519997pt;}
.yb{bottom:472.899013pt;}
.y52{bottom:473.807220pt;}
.h8{height:33.088002pt;}
.hf{height:37.224001pt;}
.ha{height:41.360000pt;}
.h4{height:41.506313pt;}
.he{height:44.552562pt;}
.h14{height:45.496002pt;}
.h7{height:47.146667pt;}
.h11{height:49.632002pt;}
.hc{height:51.064004pt;}
.h3{height:52.797421pt;}
.hb{height:53.768004pt;}
.h13{height:54.992000pt;}
.h17{height:61.290671pt;}
.h1b{height:64.776794pt;}
.h6{height:66.005333pt;}
.hd{height:66.176004pt;}
.h12{height:67.669338pt;}
.h5{height:74.448002pt;}
.h10{height:75.434671pt;}
.h19{height:83.632005pt;}
.h18{height:86.568004pt;}
.h1c{height:101.504003pt;}
.h15{height:106.944761pt;}
.h2{height:110.794673pt;}
.h1{height:118.421333pt;}
.h9{height:169.765445pt;}
.h16{height:188.628252pt;}
.h1a{height:422.933336pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.x33{left:9.000000pt;}
.x9{left:22.553264pt;}
.x40{left:26.117723pt;}
.x2f{left:30.794469pt;}
.xc{left:33.238458pt;}
.x48{left:37.724411pt;}
.x30{left:39.854513pt;}
.x7{left:41.724411pt;}
.x28{left:44.389739pt;}
.x18{left:45.720449pt;}
.x31{left:47.834646pt;}
.x35{left:52.389740pt;}
.x1{left:53.468319pt;}
.xd{left:58.120737pt;}
.x3{left:61.724412pt;}
.xe{left:63.238457pt;}
.x16{left:66.120002pt;}
.x29{left:68.469818pt;}
.x19{left:69.800528pt;}
.x3b{left:72.762362pt;}
.x36{left:76.469818pt;}
.x2b{left:80.308426pt;}
.x2d{left:81.705814pt;}
.xf{left:88.120738pt;}
.x23{left:92.928405pt;}
.x2e{left:109.600935pt;}
.x42{left:112.875794pt;}
.x49{left:114.179167pt;}
.x24{left:116.196854pt;}
.x47{left:118.910784pt;}
.x21{left:121.057174pt;}
.x17{left:130.855648pt;}
.x20{left:152.097181pt;}
.x22{left:163.830430pt;}
.x41{left:174.401496pt;}
.x3f{left:179.716699pt;}
.x3e{left:186.095696pt;}
.x2c{left:187.984646pt;}
.x1a{left:190.964912pt;}
.x8{left:195.000006pt;}
.x2{left:195.931976pt;}
.x2a{left:203.832381pt;}
.x44{left:214.545879pt;}
.x4a{left:236.373808pt;}
.x43{left:244.234168pt;}
.x12{left:266.461949pt;}
.x32{left:279.000009pt;}
.x15{left:290.008609pt;}
.x3d{left:332.229505pt;}
.x26{left:369.391092pt;}
.x45{left:388.655372pt;}
.x46{left:397.715417pt;}
.x27{left:405.391093pt;}
.x39{left:510.270376pt;}
.x14{left:558.712618pt;}
.x1f{left:572.520018pt;}
.x1b{left:578.460649pt;}
.x1c{left:586.600019pt;}
.x34{left:675.107622pt;}
.x4{left:700.221927pt;}
.x5{left:702.255626pt;}
.x3a{left:707.107623pt;}
.xa{left:736.668714pt;}
.x37{left:764.845174pt;}
.x11{left:766.942595pt;}
.x1d{left:780.200025pt;}
.x1e{left:787.240025pt;}
.xb{left:799.427826pt;}
.x13{left:801.311066pt;}
.x10{left:816.242966pt;}
.x25{left:818.920026pt;}
.x3c{left:828.981827pt;}
.x6{left:854.097397pt;}
.x38{left:868.200028pt;}
}




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