
    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_7f4d8dff090366a7869bf176.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.348000;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_0660abd282122824ba193ee4.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.348000;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_770bae555eb441bbb1830166.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.967000;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_95bb568f2f07b16021c5ec1f.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.965000;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_af1b7027f1ffeaafc1978b62.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.986000;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_e881f89017e5e462ff3a4783.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_c7b67501da1c52fc32de0832.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.987000;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_3c2eb57eccbad1bcaf083e67.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_e77366778e1322b1dce53959.woff2')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_b138372b75e9713f6f709cc9.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.954000;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:ffb;src:url('chunks/assets/font_c4b202a94ad2bd6e23548dab.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.963667;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:ffc;src:url('chunks/assets/font_dd3738d8f0b2362384d26a3d.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.964000;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:ffd;src:url('chunks/assets/font_098dfce8b5684c157d9b20eb.woff2')format("woff");}.ffd{font-family:ffd;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;}
.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);}
.m1{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);}
.v0{vertical-align:0.000000px;}
.ls0{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.016875px;}
.ls2{letter-spacing:107.972021px;}
.ls3{letter-spacing:107.972030px;}
.ls7{letter-spacing:107.986116px;}
.ls1{letter-spacing:108.000282px;}
.ls5{letter-spacing:108.000354px;}
.ls4{letter-spacing:108.000426px;}
.ls6{letter-spacing:108.000566px;}
.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;}
}
.ws9{word-spacing:-54.000002px;}
.ws5{word-spacing:-51.000000px;}
.ws8{word-spacing:-43.500003px;}
.wsa{word-spacing:-36.432001px;}
.ws7{word-spacing:-28.800000px;}
.ws6{word-spacing:-26.676001px;}
.ws4{word-spacing:-21.420000px;}
.ws3{word-spacing:-20.160000px;}
.ws1{word-spacing:-17.280001px;}
.ws2{word-spacing:-16.992001px;}
.wsb{word-spacing:-12.240001px;}
.wsc{word-spacing:-11.952001px;}
.ws0{word-spacing:0.000000px;}
._f{margin-left:-21.204001px;}
._4{margin-left:-17.640001px;}
._7{margin-left:-16.170001px;}
._d{margin-left:-14.094001px;}
._6{margin-left:-12.348001px;}
._e{margin-left:-11.220001px;}
._5{margin-left:-9.408001px;}
._8{margin-left:-7.446000px;}
._b{margin-left:-6.210000px;}
._2{margin-left:-4.704000px;}
._3{margin-left:-3.234000px;}
._1{margin-left:-1.470000px;}
._9{width:1.242000px;}
._0{width:2.352000px;}
._a{width:4.860000px;}
._c{width:432.276103px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,252,233);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:42.000000px;}
.fs12{font-size:48.000003px;}
.fs2{font-size:54.000002px;}
.fs11{font-size:60.000000px;}
.fse{font-size:66.000004px;}
.fs5{font-size:72.000002px;}
.fs7{font-size:84.000000px;}
.fs1{font-size:90.000003px;}
.fsa{font-size:96.000006px;}
.fs9{font-size:108.000003px;}
.fsc{font-size:120.000001px;}
.fs4{font-size:132.000007px;}
.fs10{font-size:144.000005px;}
.fsd{font-size:174.000012px;}
.fs3{font-size:180.000006px;}
.fsf{font-size:198.000006px;}
.fs6{font-size:204.000001px;}
.fs8{font-size:216.000007px;}
.fs0{font-size:294.000021px;}
.y0{bottom:0.000000px;}
.y11{bottom:28.667828px;}
.y28{bottom:31.725831px;}
.y4c{bottom:33.398824px;}
.y18{bottom:35.376507px;}
.y34{bottom:42.559474px;}
.y65{bottom:47.829312px;}
.y6{bottom:48.945976px;}
.y10{bottom:50.042828px;}
.y7a{bottom:53.793781px;}
.y17{bottom:56.751507px;}
.y6a{bottom:58.567118px;}
.y27{bottom:59.850832px;}
.y5c{bottom:63.030268px;}
.y64{bottom:65.829313px;}
.y33{bottom:67.309475px;}
.y79{bottom:68.193759px;}
.yf{bottom:71.417829px;}
.y66{bottom:75.558729px;}
.y60{bottom:76.026594px;}
.y16{bottom:78.126508px;}
.y5{bottom:80.445980px;}
.y78{bottom:82.593759px;}
.y63{bottom:83.829310px;}
.y4b{bottom:85.598819px;}
.y45{bottom:86.098798px;}
.y26{bottom:87.975833px;}
.y55{bottom:88.640297px;}
.y2f{bottom:92.059476px;}
.ye{bottom:92.792830px;}
.y77{bottom:96.993749px;}
.y15{bottom:99.501509px;}
.y8{bottom:101.462215px;}
.y62{bottom:101.829310px;}
.y76{bottom:111.393749px;}
.y4{bottom:111.945979px;}
.yd{bottom:114.167830px;}
.y44{bottom:115.348799px;}
.y25{bottom:116.100834px;}
.y2e{bottom:116.809477px;}
.y61{bottom:119.829311px;}
.y7{bottom:120.587216px;}
.y14{bottom:120.876509px;}
.y75{bottom:125.793761px;}
.y48{bottom:131.257087px;}
.yc{bottom:135.542831px;}
.y4a{bottom:137.798816px;}
.y74{bottom:140.193761px;}
.y2d{bottom:141.559478px;}
.y13{bottom:142.251510px;}
.y24{bottom:144.225835px;}
.y69{bottom:144.967125px;}
.y73{bottom:154.593762px;}
.yb{bottom:156.917832px;}
.y12{bottom:163.626511px;}
.y5b{bottom:164.773381px;}
.y54{bottom:166.220300px;}
.y32{bottom:166.309478px;}
.y47{bottom:167.257088px;}
.y72{bottom:168.993762px;}
.y23{bottom:172.350835px;}
.y43{bottom:172.903801px;}
.y71{bottom:183.393763px;}
.y2c{bottom:191.059479px;}
.y70{bottom:197.793774px;}
.y5f{bottom:200.271355px;}
.y22{bottom:200.475814px;}
.y46{bottom:203.257090px;}
.ya{bottom:204.482867px;}
.y42{bottom:205.528802px;}
.y3{bottom:211.870382px;}
.y6f{bottom:212.193775px;}
.y2b{bottom:215.809480px;}
.y53{bottom:217.970301px;}
.y6e{bottom:226.593775px;}
.y21{bottom:228.600815px;}
.y2a{bottom:240.559481px;}
.y6d{bottom:240.993793px;}
.y5e{bottom:243.021361px;}
.y6c{bottom:255.393799px;}
.y20{bottom:256.725816px;}
.y5a{bottom:266.516505px;}
.y52{bottom:269.720303px;}
.y6b{bottom:269.793788px;}
.y41{bottom:271.723804px;}
.y3a{bottom:273.397894px;}
.y2{bottom:282.745385px;}
.y1f{bottom:284.850817px;}
.y29{bottom:290.059485px;}
.y40{bottom:300.973805px;}
.y39{bottom:309.397895px;}
.y1e{bottom:312.975817px;}
.y51{bottom:321.470305px;}
.y3f{bottom:330.223806px;}
.y1d{bottom:341.100818px;}
.y68{bottom:347.559082px;}
.y59{bottom:351.950071px;}
.y1{bottom:353.620387px;}
.y3e{bottom:359.473807px;}
.y1c{bottom:369.225819px;}
.y50{bottom:373.220312px;}
.y58{bottom:384.575078px;}
.y38{bottom:387.235314px;}
.y67{bottom:390.309088px;}
.y35{bottom:395.367394px;}
.y1b{bottom:397.350820px;}
.y3d{bottom:417.028809px;}
.y37{bottom:417.457321px;}
.y4f{bottom:424.970308px;}
.y31{bottom:450.152995px;}
.y1a{bottom:453.600824px;}
.y57{bottom:463.805782px;}
.y36{bottom:478.207319px;}
.y4e{bottom:480.105783px;}
.y49{bottom:491.821416px;}
.y5d{bottom:501.084210px;}
.y30{bottom:501.902997px;}
.y3c{bottom:504.342869px;}
.y9{bottom:504.917124px;}
.y4d{bottom:521.730785px;}
.y19{bottom:524.547870px;}
.y56{bottom:524.735786px;}
.y3b{bottom:539.172873px;}
.h1c{height:35.520002px;}
.h3{height:39.960001px;}
.h19{height:44.400000px;}
.h13{height:50.028003px;}
.h6{height:54.504002px;}
.h7{height:54.576002px;}
.ha{height:61.320000px;}
.h9{height:62.160000px;}
.hb{height:63.588000px;}
.h2{height:66.600002px;}
.he{height:71.040004px;}
.hf{height:72.768005px;}
.hd{height:79.920003px;}
.h16{height:81.756003px;}
.h15{height:81.864003px;}
.h10{height:90.840001px;}
.h5{height:99.924005px;}
.h1b{height:105.120003px;}
.h18{height:106.560003px;}
.h17{height:109.008003px;}
.h1a{height:109.152003px;}
.h12{height:131.718009px;}
.h14{height:150.084005px;}
.h11{height:169.824011px;}
.h4{height:175.680006px;}
.h8{height:199.104001px;}
.hc{height:210.816007px;}
.h1{height:286.944021px;}
.h0{height:607.500000px;}
.w0{width:1080.000000px;}
.x0{left:0.000000px;}
.xb{left:26.524607px;}
.x10{left:37.125001px;}
.xc{left:40.847604px;}
.x2c{left:42.587554px;}
.x13{left:43.875001px;}
.x5{left:46.939963px;}
.x11{left:49.497048px;}
.x30{left:50.625002px;}
.x2{left:51.870662px;}
.x1{left:57.339567px;}
.x17{left:58.762799px;}
.x7{left:63.067894px;}
.x31{left:69.750002px;}
.x18{left:72.172711px;}
.x23{left:75.547881px;}
.x26{left:79.069172px;}
.x25{left:83.853648px;}
.x2d{left:91.331696px;}
.xd{left:94.847603px;}
.x8{left:100.939964px;}
.x1a{left:107.302147px;}
.x19{left:112.762800px;}
.x29{left:129.673230px;}
.xe{left:134.524611px;}
.x24{left:142.257278px;}
.x27{left:165.284353px;}
.x2a{left:222.153555px;}
.x2b{left:229.559059px;}
.x2f{left:301.916740px;}
.x1b{left:352.502826px;}
.x28{left:369.389116px;}
.xf{left:402.351380px;}
.x2e{left:426.802742px;}
.x1d{left:583.803930px;}
.x9{left:589.497024px;}
.x6{left:598.761996px;}
.x1c{left:602.171851px;}
.x22{left:623.277240px;}
.xa{left:627.369095px;}
.x1e{left:631.365298px;}
.x14{left:708.933060px;}
.x15{left:728.803639px;}
.x12{left:755.202737px;}
.x16{left:772.111746px;}
.x3{left:791.089023px;}
.x20{left:824.675809px;}
.x1f{left:851.770327px;}
.x21{left:859.326980px;}
.x4{left:915.559916px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.015000pt;}
.ls2{letter-spacing:95.975130pt;}
.ls3{letter-spacing:95.975138pt;}
.ls7{letter-spacing:95.987659pt;}
.ls1{letter-spacing:96.000251pt;}
.ls5{letter-spacing:96.000315pt;}
.ls4{letter-spacing:96.000379pt;}
.ls6{letter-spacing:96.000503pt;}
.ws9{word-spacing:-48.000002pt;}
.ws5{word-spacing:-45.333333pt;}
.ws8{word-spacing:-38.666669pt;}
.wsa{word-spacing:-32.384001pt;}
.ws7{word-spacing:-25.600000pt;}
.ws6{word-spacing:-23.712001pt;}
.ws4{word-spacing:-19.040000pt;}
.ws3{word-spacing:-17.920000pt;}
.ws1{word-spacing:-15.360000pt;}
.ws2{word-spacing:-15.104000pt;}
.wsb{word-spacing:-10.880001pt;}
.wsc{word-spacing:-10.624001pt;}
.ws0{word-spacing:0.000000pt;}
._f{margin-left:-18.848001pt;}
._4{margin-left:-15.680001pt;}
._7{margin-left:-14.373334pt;}
._d{margin-left:-12.528001pt;}
._6{margin-left:-10.976001pt;}
._e{margin-left:-9.973334pt;}
._5{margin-left:-8.362667pt;}
._8{margin-left:-6.618667pt;}
._b{margin-left:-5.520000pt;}
._2{margin-left:-4.181334pt;}
._3{margin-left:-2.874667pt;}
._1{margin-left:-1.306667pt;}
._9{width:1.104000pt;}
._0{width:2.090667pt;}
._a{width:4.320000pt;}
._c{width:384.245425pt;}
.fsb{font-size:37.333333pt;}
.fs12{font-size:42.666669pt;}
.fs2{font-size:48.000002pt;}
.fs11{font-size:53.333334pt;}
.fse{font-size:58.666670pt;}
.fs5{font-size:64.000002pt;}
.fs7{font-size:74.666666pt;}
.fs1{font-size:80.000003pt;}
.fsa{font-size:85.333339pt;}
.fs9{font-size:96.000003pt;}
.fsc{font-size:106.666667pt;}
.fs4{font-size:117.333340pt;}
.fs10{font-size:128.000004pt;}
.fsd{font-size:154.666677pt;}
.fs3{font-size:160.000005pt;}
.fsf{font-size:176.000006pt;}
.fs6{font-size:181.333334pt;}
.fs8{font-size:192.000006pt;}
.fs0{font-size:261.333352pt;}
.y0{bottom:0.000000pt;}
.y11{bottom:25.482514pt;}
.y28{bottom:28.200739pt;}
.y4c{bottom:29.687844pt;}
.y18{bottom:31.445784pt;}
.y34{bottom:37.830644pt;}
.y65{bottom:42.514944pt;}
.y6{bottom:43.507534pt;}
.y10{bottom:44.482514pt;}
.y7a{bottom:47.816694pt;}
.y17{bottom:50.445784pt;}
.y6a{bottom:52.059660pt;}
.y27{bottom:53.200739pt;}
.y5c{bottom:56.026905pt;}
.y64{bottom:58.514945pt;}
.y33{bottom:59.830645pt;}
.y79{bottom:60.616675pt;}
.yf{bottom:63.482515pt;}
.y66{bottom:67.163315pt;}
.y60{bottom:67.579195pt;}
.y16{bottom:69.445785pt;}
.y5{bottom:71.507538pt;}
.y78{bottom:73.416675pt;}
.y63{bottom:74.514942pt;}
.y4b{bottom:76.087839pt;}
.y45{bottom:76.532265pt;}
.y26{bottom:78.200740pt;}
.y55{bottom:78.791375pt;}
.y2f{bottom:81.830645pt;}
.ye{bottom:82.482515pt;}
.y77{bottom:86.216665pt;}
.y15{bottom:88.445786pt;}
.y8{bottom:90.188636pt;}
.y62{bottom:90.514943pt;}
.y76{bottom:99.016666pt;}
.y4{bottom:99.507537pt;}
.yd{bottom:101.482516pt;}
.y44{bottom:102.532266pt;}
.y25{bottom:103.200741pt;}
.y2e{bottom:103.830646pt;}
.y61{bottom:106.514943pt;}
.y7{bottom:107.188636pt;}
.y14{bottom:107.445786pt;}
.y75{bottom:111.816676pt;}
.y48{bottom:116.672966pt;}
.yc{bottom:120.482517pt;}
.y4a{bottom:122.487837pt;}
.y74{bottom:124.616677pt;}
.y2d{bottom:125.830647pt;}
.y13{bottom:126.445787pt;}
.y24{bottom:128.200742pt;}
.y69{bottom:128.859667pt;}
.y73{bottom:137.416677pt;}
.yb{bottom:139.482517pt;}
.y12{bottom:145.445787pt;}
.y5b{bottom:146.465227pt;}
.y54{bottom:147.751377pt;}
.y32{bottom:147.830647pt;}
.y47{bottom:148.672967pt;}
.y72{bottom:150.216678pt;}
.y23{bottom:153.200743pt;}
.y43{bottom:153.692268pt;}
.y71{bottom:163.016678pt;}
.y2c{bottom:169.830648pt;}
.y70{bottom:175.816688pt;}
.y5f{bottom:178.018982pt;}
.y22{bottom:178.200723pt;}
.y46{bottom:180.672969pt;}
.ya{bottom:181.762549pt;}
.y42{bottom:182.692269pt;}
.y3{bottom:188.329229pt;}
.y6f{bottom:188.616689pt;}
.y2b{bottom:191.830649pt;}
.y53{bottom:193.751379pt;}
.y6e{bottom:201.416689pt;}
.y21{bottom:203.200724pt;}
.y2a{bottom:213.830650pt;}
.y6d{bottom:214.216705pt;}
.y5e{bottom:216.018988pt;}
.y6c{bottom:227.016710pt;}
.y20{bottom:228.200725pt;}
.y5a{bottom:236.903560pt;}
.y52{bottom:239.751380pt;}
.y6b{bottom:239.816700pt;}
.y41{bottom:241.532270pt;}
.y3a{bottom:243.020350pt;}
.y2{bottom:251.329231pt;}
.y1f{bottom:253.200726pt;}
.y29{bottom:257.830653pt;}
.y40{bottom:267.532271pt;}
.y39{bottom:275.020352pt;}
.y1e{bottom:278.200727pt;}
.y51{bottom:285.751382pt;}
.y3f{bottom:293.532272pt;}
.y1d{bottom:303.200727pt;}
.y68{bottom:308.941407pt;}
.y59{bottom:312.844508pt;}
.y1{bottom:314.329233pt;}
.y3e{bottom:319.532273pt;}
.y1c{bottom:328.200728pt;}
.y50{bottom:331.751388pt;}
.y58{bottom:341.844514pt;}
.y38{bottom:344.209168pt;}
.y67{bottom:346.941412pt;}
.y35{bottom:351.437684pt;}
.y1b{bottom:353.200729pt;}
.y3d{bottom:370.692275pt;}
.y37{bottom:371.073175pt;}
.y4f{bottom:377.751385pt;}
.y31{bottom:400.135996pt;}
.y1a{bottom:403.200733pt;}
.y57{bottom:412.271806pt;}
.y36{bottom:425.073172pt;}
.y4e{bottom:426.760696pt;}
.y49{bottom:437.174592pt;}
.y5d{bottom:445.408187pt;}
.y30{bottom:446.135997pt;}
.y3c{bottom:448.304772pt;}
.y9{bottom:448.815221pt;}
.y4d{bottom:463.760698pt;}
.y19{bottom:466.264773pt;}
.y56{bottom:466.431810pt;}
.y3b{bottom:479.264776pt;}
.h1c{height:31.573335pt;}
.h3{height:35.520001pt;}
.h19{height:39.466667pt;}
.h13{height:44.469336pt;}
.h6{height:48.448002pt;}
.h7{height:48.512002pt;}
.ha{height:54.506666pt;}
.h9{height:55.253333pt;}
.hb{height:56.522666pt;}
.h2{height:59.200002pt;}
.he{height:63.146671pt;}
.hf{height:64.682671pt;}
.hd{height:71.040002pt;}
.h16{height:72.672002pt;}
.h15{height:72.768002pt;}
.h10{height:80.746667pt;}
.h5{height:88.821338pt;}
.h1b{height:93.440003pt;}
.h18{height:94.720003pt;}
.h17{height:96.896003pt;}
.h1a{height:97.024003pt;}
.h12{height:117.082674pt;}
.h14{height:133.408004pt;}
.h11{height:150.954677pt;}
.h4{height:156.160005pt;}
.h8{height:176.981334pt;}
.hc{height:187.392006pt;}
.h1{height:255.061352pt;}
.h0{height:540.000000pt;}
.w0{width:960.000000pt;}
.x0{left:0.000000pt;}
.xb{left:23.577429pt;}
.x10{left:33.000001pt;}
.xc{left:36.308981pt;}
.x2c{left:37.855603pt;}
.x13{left:39.000001pt;}
.x5{left:41.724411pt;}
.x11{left:43.997376pt;}
.x30{left:45.000001pt;}
.x2{left:46.107255pt;}
.x1{left:50.968504pt;}
.x17{left:52.233599pt;}
.x7{left:56.060350pt;}
.x31{left:62.000002pt;}
.x18{left:64.153521pt;}
.x23{left:67.153672pt;}
.x26{left:70.283708pt;}
.x25{left:74.536576pt;}
.x2d{left:81.183730pt;}
.xd{left:84.308981pt;}
.x8{left:89.724413pt;}
.x1a{left:95.379686pt;}
.x19{left:100.233600pt;}
.x29{left:115.265094pt;}
.xe{left:119.577432pt;}
.x24{left:126.450914pt;}
.x27{left:146.919425pt;}
.x2a{left:197.469826pt;}
.x2b{left:204.052497pt;}
.x2f{left:268.370436pt;}
.x1b{left:313.335845pt;}
.x28{left:328.345881pt;}
.xf{left:357.645671pt;}
.x2e{left:379.380215pt;}
.x1d{left:518.936827pt;}
.x9{left:523.997355pt;}
.x6{left:532.232885pt;}
.x1c{left:535.263867pt;}
.x22{left:554.024214pt;}
.xa{left:557.661418pt;}
.x1e{left:561.213598pt;}
.x14{left:630.162720pt;}
.x15{left:647.825457pt;}
.x12{left:671.291321pt;}
.x16{left:686.321552pt;}
.x3{left:703.190243pt;}
.x20{left:733.045163pt;}
.x1f{left:757.129179pt;}
.x21{left:763.846204pt;}
.x4{left:813.831036pt;}
}




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