
    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_d49b7b53cbdc87ccbaaf94aa.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.823730;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_7e942606d85fb8d184ceccd2.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.093262;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_f5b1bfbe91281d3d0304fa15.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.104004;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_798d481c087a5b68f24c51a6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_f92b0cc3ba05a74cbb92286e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.910156;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_73761d1b67c098425382164b.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.914062;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_0df1f035dbe228d137fab718.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.861328;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_41c8687dd141618552482ce7.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861328;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;}
.v1{vertical-align:12.240418px;}
.v3{vertical-align:26.640198px;}
.v2{vertical-align:30.960022px;}
.ls0{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.015964px;}
.ls7{letter-spacing:0.030450px;}
.ls8{letter-spacing:0.030454px;}
.lsb{letter-spacing:0.030522px;}
.ls9{letter-spacing:0.060967px;}
.ls1{letter-spacing:0.094301px;}
.lsc{letter-spacing:0.312950px;}
.ls5{letter-spacing:1.095645px;}
.ls6{letter-spacing:3.599109px;}
.ls3{letter-spacing:7.919073px;}
.ls4{letter-spacing:7.919140px;}
.ls2{letter-spacing:12.239100px;}
.lsa{letter-spacing:537.839114px;}
.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:-79.204500px;}
.ws4{word-spacing:-23.855201px;}
.ws0{word-spacing:-23.761125px;}
.ws3{word-spacing:-23.760900px;}
.ws8{word-spacing:-19.800788px;}
.ws6{word-spacing:-15.840563px;}
.ws5{word-spacing:-13.860563px;}
.ws7{word-spacing:-11.520450px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:649.469509px;}
.ws9{word-spacing:1640.184258px;}
._1e{margin-left:-19.474354px;}
._42{margin-left:-14.169387px;}
._15{margin-left:-11.148286px;}
._10{margin-left:-8.744011px;}
._3{margin-left:-6.843204px;}
._12{margin-left:-5.824743px;}
._2{margin-left:-4.751940px;}
._d{margin-left:-3.484874px;}
._4{margin-left:-2.393570px;}
._1{margin-left:-1.252782px;}
._0{width:1.048595px;}
._7{width:2.173697px;}
._8{width:3.446280px;}
._f{width:4.980861px;}
._13{width:5.995605px;}
._a{width:7.603750px;}
._c{width:9.203539px;}
._b{width:10.644889px;}
._6{width:12.017626px;}
._5{width:13.180296px;}
._9{width:14.223687px;}
._11{width:16.095713px;}
._36{width:17.347723px;}
._17{width:30.471301px;}
._19{width:35.793742px;}
._1b{width:42.384014px;}
._1a{width:46.756020px;}
._41{width:81.221619px;}
._34{width:88.675270px;}
._22{width:115.125087px;}
._23{width:124.736816px;}
._33{width:133.839401px;}
._2b{width:150.380175px;}
._30{width:174.246930px;}
._1f{width:183.499230px;}
._2e{width:185.536688px;}
._26{width:188.560965px;}
._25{width:192.291945px;}
._20{width:194.694646px;}
._35{width:196.636052px;}
._2f{width:199.750344px;}
._21{width:201.286065px;}
._32{width:214.719740px;}
._2d{width:219.277212px;}
._29{width:227.933362px;}
._31{width:238.480685px;}
._2c{width:242.928746px;}
._28{width:251.694307px;}
._2a{width:257.319621px;}
._1c{width:282.694037px;}
._3a{width:366.941910px;}
._3c{width:369.719604px;}
._37{width:379.181383px;}
._24{width:388.887467px;}
._3d{width:398.683228px;}
._38{width:402.487419px;}
._39{width:406.604496px;}
._3b{width:416.096289px;}
._1d{width:437.589740px;}
._18{width:553.911337px;}
._3f{width:585.926876px;}
._27{width:592.736816px;}
._3e{width:597.052992px;}
._14{width:688.129695px;}
._40{width:836.887486px;}
._16{width:1545.798596px;}
._e{width:1695.568988px;}
.fc2{color:rgb(192,25,19);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:46.081800px;}
.fs7{font-size:55.442250px;}
.fs5{font-size:63.362250px;}
.fs1{font-size:63.364500px;}
.fs4{font-size:71.282700px;}
.fs0{font-size:71.284500px;}
.fs8{font-size:79.203150px;}
.fs3{font-size:79.204500px;}
.fs6{font-size:95.043600px;}
.fs2{font-size:95.044500px;}
.fs9{font-size:102.964046px;}
.y0{bottom:0.000000px;}
.y1{bottom:37.980000px;}
.y1b{bottom:37.980011px;}
.y2{bottom:41.040000px;}
.y32{bottom:41.040115px;}
.y3f{bottom:97.920043px;}
.y42{bottom:121.320099px;}
.y19{bottom:121.860000px;}
.y31{bottom:130.140060px;}
.y3e{bottom:149.940033px;}
.y18{bottom:150.300000px;}
.y7f{bottom:150.300041px;}
.y4c{bottom:154.980079px;}
.y83{bottom:178.380066px;}
.y3d{bottom:178.560036px;}
.y6a{bottom:178.920043px;}
.y4b{bottom:183.420043px;}
.y30{bottom:187.200096px;}
.y41{bottom:207.000068px;}
.y4a{bottom:207.180039px;}
.y82{bottom:235.440033px;}
.y40{bottom:235.620072px;}
.y69{bottom:235.980079px;}
.y17{bottom:235.980150px;}
.y2f{bottom:244.260064px;}
.y5b{bottom:256.320099px;}
.y3c{bottom:264.060036px;}
.y7e{bottom:264.420043px;}
.y16{bottom:264.420150px;}
.y49{bottom:278.640060px;}
.y5a{bottom:284.760064px;}
.y84{bottom:292.680039px;}
.y15{bottom:293.040150px;}
.y59{bottom:313.380066px;}
.y3b{bottom:321.120072px;}
.y68{bottom:321.480079px;}
.y14{bottom:321.480150px;}
.y48{bottom:330.480079px;}
.y58{bottom:341.820099px;}
.y3a{bottom:349.740074px;}
.y77{bottom:350.100083px;}
.y13{bottom:350.100150px;}
.y47{bottom:358.920043px;}
.y2e{bottom:378.180039px;}
.y76{bottom:378.540047px;}
.y57{bottom:398.880066px;}
.y6d{bottom:406.620072px;}
.y2d{bottom:406.800041px;}
.y67{bottom:407.160049px;}
.y12{bottom:407.160150px;}
.y39{bottom:435.240074px;}
.y75{bottom:435.600083px;}
.y11{bottom:435.600150px;}
.y46{bottom:463.680039px;}
.y2c{bottom:463.860077px;}
.y66{bottom:464.220085px;}
.y38{bottom:492.300041px;}
.y7d{bottom:492.660049px;}
.y56{bottom:513.000068px;}
.y6c{bottom:520.740074px;}
.y2b{bottom:520.920043px;}
.y7c{bottom:521.280052px;}
.y2a{bottom:549.360077px;}
.y65{bottom:549.720085px;}
.y10{bottom:549.720150px;}
.y29{bottom:577.980079px;}
.y64{bottom:578.340088px;}
.yf{bottom:578.340150px;}
.y28{bottom:606.420043px;}
.ye{bottom:606.780000px;}
.y7b{bottom:606.780052px;}
.y6b{bottom:634.860077px;}
.y27{bottom:635.040047px;}
.y74{bottom:635.400055px;}
.y55{bottom:659.160049px;}
.y45{bottom:663.480079px;}
.y63{bottom:663.840088px;}
.yd{bottom:663.840150px;}
.y81{bottom:691.920078px;}
.y26{bottom:692.100083px;}
.y62{bottom:692.460056px;}
.y54{bottom:709.920078px;}
.y37{bottom:720.540081px;}
.yc{bottom:720.900000px;}
.y61{bottom:720.900055px;}
.y80{bottom:748.980079px;}
.y36{bottom:749.160049px;}
.yb{bottom:749.520000px;}
.y60{bottom:749.520058px;}
.y53{bottom:769.320065px;}
.y25{bottom:777.600083px;}
.ya{bottom:777.960000px;}
.y73{bottom:777.960056px;}
.y52{bottom:798.840054px;}
.y44{bottom:806.040081px;}
.y24{bottom:806.220051px;}
.y9{bottom:806.580000px;}
.y5f{bottom:806.580059px;}
.y51{bottom:828.360077px;}
.y23{bottom:834.660049px;}
.y50{bottom:858.060070px;}
.y22{bottom:863.280052px;}
.y5e{bottom:863.640060px;}
.y4f{bottom:887.580059px;}
.y21{bottom:891.720051px;}
.y7a{bottom:892.080059px;}
.y4e{bottom:917.100083px;}
.y35{bottom:920.340054px;}
.y8{bottom:920.700000px;}
.y72{bottom:920.700061px;}
.y4d{bottom:946.800076px;}
.y34{bottom:948.780053px;}
.y7{bottom:949.140000px;}
.y71{bottom:949.140060px;}
.y33{bottom:977.400072px;}
.y70{bottom:977.760064px;}
.y43{bottom:1005.840070px;}
.y6{bottom:1006.200000px;}
.y6f{bottom:1006.200061px;}
.y20{bottom:1034.460074px;}
.y6e{bottom:1034.820065px;}
.y1f{bottom:1062.900072px;}
.y5{bottom:1063.260000px;}
.y79{bottom:1063.260064px;}
.y1e{bottom:1091.520058px;}
.y5d{bottom:1091.880066px;}
.y1a{bottom:1098.720000px;}
.y1d{bottom:1119.960065px;}
.y4{bottom:1120.320000px;}
.y78{bottom:1120.320065px;}
.y1c{bottom:1148.580068px;}
.y3{bottom:1148.940000px;}
.y5c{bottom:1148.940067px;}
.h11{height:54.993593px;}
.h7{height:55.303923px;}
.he{height:55.596662px;}
.h3{height:55.598636px;}
.hd{height:57.534328px;}
.h2{height:57.535781px;}
.hc{height:65.992187px;}
.h6{height:65.992812px;}
.h8{height:67.837080px;}
.hf{height:69.496123px;}
.hb{height:82.931110px;}
.ha{height:83.395190px;}
.h5{height:83.395980px;}
.h9{height:84.416166px;}
.h4{height:84.416966px;}
.h10{height:90.344917px;}
.h0{height:1262.880060px;}
.h1{height:1263.000000px;}
.w0{width:892.980015px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:89.820000px;}
.x3{left:116.460000px;}
.x6{left:117.540000px;}
.xd{left:140.939999px;}
.x1d{left:149.219999px;}
.x12{left:174.060001px;}
.x15{left:202.680005px;}
.x19{left:209.879998px;}
.x4{left:220.140000px;}
.x11{left:224.819996px;}
.xf{left:227.520006px;}
.x30{left:240.120002px;}
.x1e{left:241.740006px;}
.x5{left:243.360000px;}
.xc{left:257.940000px;}
.x17{left:272.699993px;}
.x2c{left:274.319996px;}
.x8{left:281.520000px;}
.xa{left:288.180000px;}
.x1c{left:293.220017px;}
.x1a{left:314.459988px;}
.x7{left:320.220000px;}
.x21{left:350.819996px;}
.x14{left:364.680005px;}
.x9{left:369.000000px;}
.x2d{left:386.639992px;}
.x10{left:389.160015px;}
.xe{left:410.939999px;}
.x32{left:427.860008px;}
.x2e{left:435.959988px;}
.x25{left:470.519989px;}
.x28{left:485.279983px;}
.x1f{left:486.540012px;}
.x23{left:511.560001px;}
.x1{left:532.800000px;}
.x31{left:542.339985px;}
.x18{left:554.579990px;}
.x26{left:565.019989px;}
.x2f{left:596.879998px;}
.x13{left:624.779983px;}
.x2a{left:661.500000px;}
.x1b{left:663.299973px;}
.x20{left:666.179970px;}
.x24{left:689.580025px;}
.x29{left:707.580025px;}
.xb{left:716.940000px;}
.x2b{left:719.820030px;}
.x16{left:768.779983px;}
.x27{left:788.580025px;}
.x22{left:797.220017px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:10.880372pt;}
.v3{vertical-align:23.680176pt;}
.v2{vertical-align:27.520020pt;}
.ls0{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.014191pt;}
.ls7{letter-spacing:0.027066pt;}
.ls8{letter-spacing:0.027070pt;}
.lsb{letter-spacing:0.027130pt;}
.ls9{letter-spacing:0.054193pt;}
.ls1{letter-spacing:0.083823pt;}
.lsc{letter-spacing:0.278178pt;}
.ls5{letter-spacing:0.973906pt;}
.ls6{letter-spacing:3.199208pt;}
.ls3{letter-spacing:7.039176pt;}
.ls4{letter-spacing:7.039236pt;}
.ls2{letter-spacing:10.879200pt;}
.lsa{letter-spacing:478.079212pt;}
.ws1{word-spacing:-70.404000pt;}
.ws4{word-spacing:-21.204623pt;}
.ws0{word-spacing:-21.121000pt;}
.ws3{word-spacing:-21.120800pt;}
.ws8{word-spacing:-17.600700pt;}
.ws6{word-spacing:-14.080500pt;}
.ws5{word-spacing:-12.320500pt;}
.ws7{word-spacing:-10.240400pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:577.306230pt;}
.ws9{word-spacing:1457.941562pt;}
._1e{margin-left:-17.310537pt;}
._42{margin-left:-12.595010pt;}
._15{margin-left:-9.909588pt;}
._10{margin-left:-7.772454pt;}
._3{margin-left:-6.082848pt;}
._12{margin-left:-5.177549pt;}
._2{margin-left:-4.223947pt;}
._d{margin-left:-3.097666pt;}
._4{margin-left:-2.127618pt;}
._1{margin-left:-1.113584pt;}
._0{width:0.932084pt;}
._7{width:1.932175pt;}
._8{width:3.063360pt;}
._f{width:4.427432pt;}
._13{width:5.329427pt;}
._a{width:6.758889pt;}
._c{width:8.180924pt;}
._b{width:9.462124pt;}
._6{width:10.682335pt;}
._5{width:11.715819pt;}
._9{width:12.643277pt;}
._11{width:14.307300pt;}
._36{width:15.420198pt;}
._17{width:27.085601pt;}
._19{width:31.816660pt;}
._1b{width:37.674679pt;}
._1a{width:41.560906pt;}
._41{width:72.196995pt;}
._34{width:78.822462pt;}
._22{width:102.333411pt;}
._23{width:110.877170pt;}
._33{width:118.968356pt;}
._2b{width:133.671266pt;}
._30{width:154.886160pt;}
._1f{width:163.110426pt;}
._2e{width:164.921500pt;}
._26{width:167.609747pt;}
._25{width:170.926173pt;}
._20{width:173.061908pt;}
._35{width:174.787601pt;}
._2f{width:177.555862pt;}
._21{width:178.920947pt;}
._32{width:190.861991pt;}
._2d{width:194.913078pt;}
._29{width:202.607433pt;}
._31{width:211.982831pt;}
._2c{width:215.936663pt;}
._28{width:223.728273pt;}
._2a{width:228.728552pt;}
._1c{width:251.283588pt;}
._3a{width:326.170587pt;}
._3c{width:328.639648pt;}
._37{width:337.050118pt;}
._24{width:345.677748pt;}
._3d{width:354.385091pt;}
._38{width:357.766595pt;}
._39{width:361.426219pt;}
._3b{width:369.863368pt;}
._1d{width:388.968658pt;}
._18{width:492.365633pt;}
._3f{width:520.823890pt;}
._27{width:526.877170pt;}
._3e{width:530.713771pt;}
._14{width:611.670840pt;}
._40{width:743.899988pt;}
._16{width:1374.043197pt;}
._e{width:1507.172434pt;}
.fsa{font-size:40.961600pt;}
.fs7{font-size:49.282000pt;}
.fs5{font-size:56.322000pt;}
.fs1{font-size:56.324000pt;}
.fs4{font-size:63.362400pt;}
.fs0{font-size:63.364000pt;}
.fs8{font-size:70.402800pt;}
.fs3{font-size:70.404000pt;}
.fs6{font-size:84.483200pt;}
.fs2{font-size:84.484000pt;}
.fs9{font-size:91.523596pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:33.760000pt;}
.y1b{bottom:33.760010pt;}
.y2{bottom:36.480000pt;}
.y32{bottom:36.480103pt;}
.y3f{bottom:87.040039pt;}
.y42{bottom:107.840088pt;}
.y19{bottom:108.320000pt;}
.y31{bottom:115.680054pt;}
.y3e{bottom:133.280030pt;}
.y18{bottom:133.600000pt;}
.y7f{bottom:133.600037pt;}
.y4c{bottom:137.760071pt;}
.y83{bottom:158.560059pt;}
.y3d{bottom:158.720032pt;}
.y6a{bottom:159.040039pt;}
.y4b{bottom:163.040039pt;}
.y30{bottom:166.400086pt;}
.y41{bottom:184.000061pt;}
.y4a{bottom:184.160035pt;}
.y82{bottom:209.280030pt;}
.y40{bottom:209.440064pt;}
.y69{bottom:209.760071pt;}
.y17{bottom:209.760133pt;}
.y2f{bottom:217.120057pt;}
.y5b{bottom:227.840088pt;}
.y3c{bottom:234.720032pt;}
.y7e{bottom:235.040039pt;}
.y16{bottom:235.040133pt;}
.y49{bottom:247.680054pt;}
.y5a{bottom:253.120057pt;}
.y84{bottom:260.160035pt;}
.y15{bottom:260.480133pt;}
.y59{bottom:278.560059pt;}
.y3b{bottom:285.440064pt;}
.y68{bottom:285.760071pt;}
.y14{bottom:285.760133pt;}
.y48{bottom:293.760071pt;}
.y58{bottom:303.840088pt;}
.y3a{bottom:310.880066pt;}
.y77{bottom:311.200074pt;}
.y13{bottom:311.200133pt;}
.y47{bottom:319.040039pt;}
.y2e{bottom:336.160035pt;}
.y76{bottom:336.480042pt;}
.y57{bottom:354.560059pt;}
.y6d{bottom:361.440064pt;}
.y2d{bottom:361.600037pt;}
.y67{bottom:361.920044pt;}
.y12{bottom:361.920133pt;}
.y39{bottom:386.880066pt;}
.y75{bottom:387.200074pt;}
.y11{bottom:387.200133pt;}
.y46{bottom:412.160035pt;}
.y2c{bottom:412.320069pt;}
.y66{bottom:412.640076pt;}
.y38{bottom:437.600037pt;}
.y7d{bottom:437.920044pt;}
.y56{bottom:456.000061pt;}
.y6c{bottom:462.880066pt;}
.y2b{bottom:463.040039pt;}
.y7c{bottom:463.360047pt;}
.y2a{bottom:488.320069pt;}
.y65{bottom:488.640076pt;}
.y10{bottom:488.640133pt;}
.y29{bottom:513.760071pt;}
.y64{bottom:514.080079pt;}
.yf{bottom:514.080133pt;}
.y28{bottom:539.040039pt;}
.ye{bottom:539.360000pt;}
.y7b{bottom:539.360047pt;}
.y6b{bottom:564.320069pt;}
.y27{bottom:564.480042pt;}
.y74{bottom:564.800049pt;}
.y55{bottom:585.920044pt;}
.y45{bottom:589.760071pt;}
.y63{bottom:590.080079pt;}
.yd{bottom:590.080133pt;}
.y81{bottom:615.040070pt;}
.y26{bottom:615.200074pt;}
.y62{bottom:615.520050pt;}
.y54{bottom:631.040070pt;}
.y37{bottom:640.480072pt;}
.yc{bottom:640.800000pt;}
.y61{bottom:640.800049pt;}
.y80{bottom:665.760071pt;}
.y36{bottom:665.920044pt;}
.yb{bottom:666.240000pt;}
.y60{bottom:666.240052pt;}
.y53{bottom:683.840058pt;}
.y25{bottom:691.200074pt;}
.ya{bottom:691.520000pt;}
.y73{bottom:691.520050pt;}
.y52{bottom:710.080048pt;}
.y44{bottom:716.480072pt;}
.y24{bottom:716.640046pt;}
.y9{bottom:716.960000pt;}
.y5f{bottom:716.960053pt;}
.y51{bottom:736.320069pt;}
.y23{bottom:741.920044pt;}
.y50{bottom:762.720063pt;}
.y22{bottom:767.360047pt;}
.y5e{bottom:767.680054pt;}
.y4f{bottom:788.960053pt;}
.y21{bottom:792.640046pt;}
.y7a{bottom:792.960053pt;}
.y4e{bottom:815.200074pt;}
.y35{bottom:818.080048pt;}
.y8{bottom:818.400000pt;}
.y72{bottom:818.400055pt;}
.y4d{bottom:841.600068pt;}
.y34{bottom:843.360047pt;}
.y7{bottom:843.680000pt;}
.y71{bottom:843.680054pt;}
.y33{bottom:868.800064pt;}
.y70{bottom:869.120057pt;}
.y43{bottom:894.080063pt;}
.y6{bottom:894.400000pt;}
.y6f{bottom:894.400055pt;}
.y20{bottom:919.520066pt;}
.y6e{bottom:919.840058pt;}
.y1f{bottom:944.800064pt;}
.y5{bottom:945.120000pt;}
.y79{bottom:945.120057pt;}
.y1e{bottom:970.240052pt;}
.y5d{bottom:970.560059pt;}
.y1a{bottom:976.640000pt;}
.y1d{bottom:995.520058pt;}
.y4{bottom:995.840000pt;}
.y78{bottom:995.840058pt;}
.y1c{bottom:1020.960061pt;}
.y3{bottom:1021.280000pt;}
.y5c{bottom:1021.280060pt;}
.h11{height:48.883194pt;}
.h7{height:49.159043pt;}
.he{height:49.419255pt;}
.h3{height:49.421010pt;}
.hd{height:51.141625pt;}
.h2{height:51.142916pt;}
.hc{height:58.659722pt;}
.h6{height:58.660277pt;}
.h8{height:60.299627pt;}
.hf{height:61.774332pt;}
.hb{height:73.716542pt;}
.ha{height:74.129058pt;}
.h5{height:74.129760pt;}
.h9{height:75.036592pt;}
.h4{height:75.037303pt;}
.h10{height:80.306593pt;}
.h0{height:1122.560053pt;}
.h1{height:1122.666667pt;}
.w0{width:793.760013pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:79.840000pt;}
.x3{left:103.520000pt;}
.x6{left:104.480000pt;}
.xd{left:125.279999pt;}
.x1d{left:132.639999pt;}
.x12{left:154.720001pt;}
.x15{left:180.160004pt;}
.x19{left:186.559998pt;}
.x4{left:195.680000pt;}
.x11{left:199.839996pt;}
.xf{left:202.240005pt;}
.x30{left:213.440002pt;}
.x1e{left:214.880005pt;}
.x5{left:216.320000pt;}
.xc{left:229.280000pt;}
.x17{left:242.399994pt;}
.x2c{left:243.839996pt;}
.x8{left:250.240000pt;}
.xa{left:256.160000pt;}
.x1c{left:260.640015pt;}
.x1a{left:279.519989pt;}
.x7{left:284.640000pt;}
.x21{left:311.839996pt;}
.x14{left:324.160004pt;}
.x9{left:328.000000pt;}
.x2d{left:343.679993pt;}
.x10{left:345.920013pt;}
.xe{left:365.279999pt;}
.x32{left:380.320007pt;}
.x2e{left:387.519989pt;}
.x25{left:418.239990pt;}
.x28{left:431.359985pt;}
.x1f{left:432.480011pt;}
.x23{left:454.720001pt;}
.x1{left:473.600000pt;}
.x31{left:482.079987pt;}
.x18{left:492.959991pt;}
.x26{left:502.239990pt;}
.x2f{left:530.559998pt;}
.x13{left:555.359985pt;}
.x2a{left:588.000000pt;}
.x1b{left:589.599976pt;}
.x20{left:592.159973pt;}
.x24{left:612.960022pt;}
.x29{left:628.960022pt;}
.xb{left:637.280000pt;}
.x2b{left:639.840027pt;}
.x16{left:683.359985pt;}
.x27{left:700.960022pt;}
.x22{left:708.640015pt;}
}




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