
    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_f37e6357950b981644662c5c.woff')format("woff");}.ff1{font-family:ff1;line-height:0.936523;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_27a4f347b95f4c11355d993c.woff')format("woff");}.ff2{font-family:ff2;line-height:1.311035;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_d696d459980bac740ec2931b.woff')format("woff");}.ff3{font-family:ff3;line-height:0.921387;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_e0dd357e3957552fcf343742.woff')format("woff");}.ff4{font-family:ff4;line-height:1.284668;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_f1a24de5d5069b6939ee7d29.woff')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_63812a0f26d2faffb2437e13.woff')format("woff");}.ff6{font-family:ff6;line-height:0.768555;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_caa0662792d72fa56db594a0.woff')format("woff");}.ff7{font-family:ff7;line-height:0.916992;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_e1bea9277595a7963bfb645d.woff')format("woff");}.ff8{font-family:ff8;line-height:1.402354;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;}
.ls6{letter-spacing:-1.296000px;}
.ls5{letter-spacing:-0.570000px;}
.lsb{letter-spacing:-0.463800px;}
.ls4{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.120000px;}
.ls3{letter-spacing:0.180000px;}
.ls1{letter-spacing:0.360000px;}
.ls0{letter-spacing:0.720000px;}
.lsa{letter-spacing:1.440000px;}
.ls8{letter-spacing:12.240000px;}
.lsc{letter-spacing:21.421440px;}
.ls2{letter-spacing:26.640000px;}
.ls7{letter-spacing:33.840000px;}
.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;}
}
.ws0{word-spacing:-20.880000px;}
.ws3{word-spacing:-18.000000px;}
.ws2{word-spacing:-15.120000px;}
.ws5{word-spacing:-14.506440px;}
.ws4{word-spacing:-11.880000px;}
.ws1{word-spacing:0.000000px;}
._22{margin-left:-8.435520px;}
._4{margin-left:-6.016800px;}
._26{margin-left:-4.508640px;}
._1{margin-left:-2.508000px;}
._2{margin-left:-1.080000px;}
._0{width:1.296000px;}
._3{width:3.183840px;}
._1e{width:4.267200px;}
._c{width:5.443680px;}
._d{width:6.968640px;}
._11{width:8.505600px;}
._12{width:10.261440px;}
._1f{width:11.484960px;}
._25{width:12.638400px;}
._13{width:14.105760px;}
._15{width:15.230400px;}
._14{width:16.741920px;}
._1b{width:17.936160px;}
._10{width:19.200960px;}
._a{width:22.884000px;}
._9{width:24.992160px;}
._b{width:26.138400px;}
._5{width:27.215520px;}
._23{width:28.600800px;}
._6{width:30.244800px;}
._28{width:31.757760px;}
._27{width:33.361920px;}
._19{width:34.569600px;}
._24{width:36.539040px;}
._1a{width:37.620960px;}
._2a{width:38.744160px;}
._29{width:40.803840px;}
._2b{width:41.825760px;}
._21{width:43.189440px;}
._20{width:44.251200px;}
._8{width:46.057440px;}
._7{width:47.390400px;}
._2c{width:48.942720px;}
._2d{width:50.366880px;}
._3e{width:51.840000px;}
._e{width:54.155040px;}
._f{width:55.468320px;}
._3c{width:57.121920px;}
._18{width:58.164000px;}
._35{width:63.117600px;}
._16{width:64.218720px;}
._17{width:65.544480px;}
._2e{width:66.651840px;}
._3d{width:69.036000px;}
._3f{width:70.038720px;}
._39{width:71.184960px;}
._38{width:72.241440px;}
._33{width:73.969440px;}
._32{width:75.075360px;}
._40{width:79.296480px;}
._41{width:80.763360px;}
._34{width:93.279840px;}
._1c{width:98.386080px;}
._1d{width:100.477440px;}
._30{width:107.616000px;}
._31{width:109.212000px;}
._3a{width:135.816960px;}
._3b{width:137.421600px;}
._2f{width:149.748000px;}
._36{width:186.390720px;}
._37{width:187.428960px;}
.fc5{color:rgb(255,0,0);}
.fc4{color:rgb(0,0,255);}
.fc2{color:rgb(91,155,213);}
.fc1{color:rgb(0,176,240);}
.fc3{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs8{font-size:38.880000px;}
.fs6{font-size:47.520000px;}
.fs4{font-size:54.720000px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs9{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs2{font-size:83.520000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.ye{bottom:4.320000px;}
.y9{bottom:4.680000px;}
.y55{bottom:14.400000px;}
.y5b{bottom:14.760000px;}
.y61{bottom:14.790000px;}
.y66{bottom:14.805000px;}
.y69{bottom:15.120000px;}
.y8{bottom:27.720000px;}
.y5d{bottom:30.240000px;}
.y64{bottom:30.285000px;}
.y6b{bottom:30.600000px;}
.y5f{bottom:30.630000px;}
.y6d{bottom:43.920000px;}
.y73{bottom:43.965000px;}
.y6f{bottom:44.280000px;}
.y5a{bottom:45.720000px;}
.y68{bottom:46.080000px;}
.y60{bottom:46.110000px;}
.y65{bottom:46.125000px;}
.y7{bottom:54.045000px;}
.y57{bottom:61.200000px;}
.y6a{bottom:61.560000px;}
.y79{bottom:73.800000px;}
.y6e{bottom:73.830000px;}
.y72{bottom:73.845000px;}
.y11{bottom:75.276000px;}
.y59{bottom:77.040000px;}
.y6{bottom:85.005000px;}
.y5c{bottom:92.550000px;}
.y75{bottom:103.680000px;}
.y71{bottom:103.725000px;}
.y58{bottom:108.030000px;}
.y10{bottom:113.436000px;}
.y5{bottom:115.605000px;}
.y78{bottom:133.590000px;}
.yf{bottom:133.596000px;}
.y4{bottom:146.565000px;}
.yd{bottom:154.830000px;}
.y77{bottom:163.110000px;}
.y3{bottom:177.525000px;}
.y3a{bottom:183.990000px;}
.y50{bottom:184.710000px;}
.y2{bottom:186.915000px;}
.y39{bottom:187.590000px;}
.y90{bottom:191.550000px;}
.y76{bottom:192.990000px;}
.y4b{bottom:197.715000px;}
.y4a{bottom:201.315000px;}
.y4f{bottom:201.675000px;}
.y38{bottom:202.035000px;}
.y4e{bottom:207.075000px;}
.y51{bottom:215.355000px;}
.y49{bottom:216.075000px;}
.y98{bottom:220.395000px;}
.y4d{bottom:222.915000px;}
.y8f{bottom:227.955000px;}
.y24{bottom:230.475000px;}
.ya5{bottom:239.475000px;}
.y37{bottom:245.955000px;}
.y83{bottom:248.115000px;}
.y6c{bottom:248.475000px;}
.y48{bottom:251.715000px;}
.y97{bottom:256.755000px;}
.ya4{bottom:263.595000px;}
.y8e{bottom:264.315000px;}
.y23{bottom:266.835000px;}
.y36{bottom:281.955000px;}
.y82{bottom:284.115000px;}
.y47{bottom:287.715000px;}
.y96{bottom:292.755000px;}
.y8d{bottom:300.315000px;}
.y22{bottom:302.835000px;}
.ya3{bottom:311.835000px;}
.y35{bottom:318.315000px;}
.y81{bottom:320.505000px;}
.y9a{bottom:323.745000px;}
.y46{bottom:324.105000px;}
.y95{bottom:329.145000px;}
.ya2{bottom:335.985000px;}
.y8c{bottom:336.705000px;}
.y67{bottom:338.505000px;}
.y21{bottom:339.225000px;}
.y34{bottom:354.345000px;}
.y80{bottom:356.865000px;}
.y45{bottom:360.105000px;}
.y94{bottom:365.145000px;}
.y8b{bottom:373.065000px;}
.y20{bottom:375.585000px;}
.ya1{bottom:384.225000px;}
.y33{bottom:390.705000px;}
.y7f{bottom:392.865000px;}
.y44{bottom:396.465000px;}
.y93{bottom:401.505000px;}
.ya0{bottom:408.705000px;}
.y8a{bottom:409.065000px;}
.y1f{bottom:411.585000px;}
.y32{bottom:427.065000px;}
.y7e{bottom:429.225000px;}
.y63{bottom:432.465000px;}
.y43{bottom:432.825000px;}
.y92{bottom:437.865000px;}
.y89{bottom:445.425000px;}
.y1e{bottom:447.990000px;}
.y9f{bottom:456.990000px;}
.y31{bottom:463.110000px;}
.y7d{bottom:465.270000px;}
.y42{bottom:468.870000px;}
.y91{bottom:469.230000px;}
.y9e{bottom:481.110000px;}
.y88{bottom:481.470000px;}
.y1d{bottom:484.350000px;}
.y62{bottom:495.510000px;}
.y2f{bottom:499.470000px;}
.y7c{bottom:501.630000px;}
.y9d{bottom:504.870000px;}
.y41{bottom:505.230000px;}
.y30{bottom:507.030000px;}
.y87{bottom:517.830000px;}
.y1c{bottom:520.350000px;}
.y2e{bottom:535.470000px;}
.y7b{bottom:537.990000px;}
.y40{bottom:541.230000px;}
.y86{bottom:554.190000px;}
.y1b{bottom:556.710000px;}
.y5e{bottom:558.150000px;}
.y2d{bottom:571.830000px;}
.y7a{bottom:574.020000px;}
.y3f{bottom:577.620000px;}
.y85{bottom:590.220000px;}
.y1a{bottom:592.740000px;}
.y74{bottom:593.820000px;}
.y2c{bottom:608.220000px;}
.y99{bottom:613.620000px;}
.y3e{bottom:613.980000px;}
.y56{bottom:621.180000px;}
.y84{bottom:621.900000px;}
.y19{bottom:629.100000px;}
.y2b{bottom:644.220000px;}
.y3d{bottom:649.980000px;}
.y2a{bottom:680.580000px;}
.y18{bottom:686.340000px;}
.y29{bottom:716.970000px;}
.y9c{bottom:722.370000px;}
.y17{bottom:722.730000px;}
.y3c{bottom:730.290000px;}
.y54{bottom:746.130000px;}
.y16{bottom:758.730000px;}
.y9b{bottom:766.290000px;}
.y28{bottom:773.850000px;}
.y15{bottom:794.730000px;}
.y3b{bottom:795.090000px;}
.y53{bottom:802.650000px;}
.y70{bottom:803.010000px;}
.y27{bottom:810.210000px;}
.y52{bottom:830.775000px;}
.y14{bottom:831.135000px;}
.y13{bottom:867.135000px;}
.y26{bottom:867.495000px;}
.y12{bottom:903.495000px;}
.y25{bottom:903.855000px;}
.ya6{bottom:907.095000px;}
.y4c{bottom:911.415000px;}
.yc{bottom:945.255000px;}
.yb{bottom:983.445000px;}
.ya{bottom:1003.605000px;}
.y1{bottom:1023.765000px;}
.h8{height:19.800000px;}
.he{height:29.678906px;}
.h12{height:30.960000px;}
.h10{height:38.158594px;}
.hf{height:46.638281px;}
.h3{height:50.229844px;}
.hd{height:53.704687px;}
.h7{height:54.738281px;}
.hc{height:58.561875px;}
.h9{height:58.928906px;}
.h11{height:59.357813px;}
.h17{height:61.920000px;}
.h16{height:62.316000px;}
.h6{height:63.781875px;}
.h1a{height:67.837500px;}
.h15{height:70.664062px;}
.h13{height:72.562500px;}
.hb{height:81.970312px;}
.ha{height:84.172500px;}
.h1d{height:85.845399px;}
.h19{height:89.316000px;}
.h18{height:93.240000px;}
.h5{height:105.996094px;}
.h4{height:108.843750px;}
.h1b{height:119.196000px;}
.h14{height:124.236000px;}
.h2{height:202.755000px;}
.h1c{height:208.470000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w2{width:19.440000px;}
.w8{width:33.516000px;}
.w6{width:71.676000px;}
.w9{width:302.865000px;}
.wa{width:367.350000px;}
.w3{width:611.175000px;}
.w5{width:647.535000px;}
.w1{width:892.500000px;}
.w7{width:892.799973px;}
.w4{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x1f{left:7.560000px;}
.x2{left:8.640000px;}
.x22{left:11.880000px;}
.x1{left:84.996000px;}
.x3{left:104.436000px;}
.x5{left:118.836000px;}
.x1e{left:119.916000px;}
.x4{left:127.475987px;}
.x13{left:131.435987px;}
.x23{left:133.595987px;}
.x18{left:139.751987px;}
.x1a{left:145.151987px;}
.x24{left:148.751987px;}
.x20{left:154.155000px;}
.x26{left:159.554987px;}
.xf{left:169.994987px;}
.x2b{left:181.514987px;}
.x8{left:188.354987px;}
.xd{left:264.344987px;}
.xc{left:313.664987px;}
.x9{left:333.509987px;}
.x12{left:343.589987px;}
.xe{left:367.349987px;}
.x2a{left:377.429987px;}
.xb{left:390.389987px;}
.x1b{left:408.389987px;}
.x21{left:457.740000px;}
.xa{left:499.499987px;}
.x6{left:524.379000px;}
.x1c{left:541.649973px;}
.x1d{left:548.489987px;}
.x16{left:587.729973px;}
.x10{left:592.049973px;}
.x17{left:594.569987px;}
.x11{left:598.889987px;}
.x14{left:633.494973px;}
.x15{left:640.334987px;}
.x28{left:648.254973px;}
.x29{left:655.094987px;}
.x19{left:728.924987px;}
.x7{left:766.365000px;}
.x25{left:786.524987px;}
.x27{left:827.609987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls6{letter-spacing:-1.152000pt;}
.ls5{letter-spacing:-0.506667pt;}
.lsb{letter-spacing:-0.412267pt;}
.ls4{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.106667pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1{letter-spacing:0.320000pt;}
.ls0{letter-spacing:0.640000pt;}
.lsa{letter-spacing:1.280000pt;}
.ls8{letter-spacing:10.880000pt;}
.lsc{letter-spacing:19.041280pt;}
.ls2{letter-spacing:23.680000pt;}
.ls7{letter-spacing:30.080000pt;}
.ws0{word-spacing:-18.560000pt;}
.ws3{word-spacing:-16.000000pt;}
.ws2{word-spacing:-13.440000pt;}
.ws5{word-spacing:-12.894613pt;}
.ws4{word-spacing:-10.560000pt;}
.ws1{word-spacing:0.000000pt;}
._22{margin-left:-7.498240pt;}
._4{margin-left:-5.348267pt;}
._26{margin-left:-4.007680pt;}
._1{margin-left:-2.229333pt;}
._2{margin-left:-0.960000pt;}
._0{width:1.152000pt;}
._3{width:2.830080pt;}
._1e{width:3.793067pt;}
._c{width:4.838827pt;}
._d{width:6.194347pt;}
._11{width:7.560533pt;}
._12{width:9.121280pt;}
._1f{width:10.208853pt;}
._25{width:11.234133pt;}
._13{width:12.538453pt;}
._15{width:13.538133pt;}
._14{width:14.881707pt;}
._1b{width:15.943253pt;}
._10{width:17.067520pt;}
._a{width:20.341333pt;}
._9{width:22.215253pt;}
._b{width:23.234133pt;}
._5{width:24.191573pt;}
._23{width:25.422933pt;}
._6{width:26.884267pt;}
._28{width:28.229120pt;}
._27{width:29.655040pt;}
._19{width:30.728533pt;}
._24{width:32.479147pt;}
._1a{width:33.440853pt;}
._2a{width:34.439253pt;}
._29{width:36.270080pt;}
._2b{width:37.178453pt;}
._21{width:38.390613pt;}
._20{width:39.334400pt;}
._8{width:40.939947pt;}
._7{width:42.124800pt;}
._2c{width:43.504640pt;}
._2d{width:44.770560pt;}
._3e{width:46.080000pt;}
._e{width:48.137813pt;}
._f{width:49.305173pt;}
._3c{width:50.775040pt;}
._18{width:51.701333pt;}
._35{width:56.104533pt;}
._16{width:57.083307pt;}
._17{width:58.261760pt;}
._2e{width:59.246080pt;}
._3d{width:61.365333pt;}
._3f{width:62.256640pt;}
._39{width:63.275520pt;}
._38{width:64.214613pt;}
._33{width:65.750613pt;}
._32{width:66.733653pt;}
._40{width:70.485760pt;}
._41{width:71.789653pt;}
._34{width:82.915413pt;}
._1c{width:87.454293pt;}
._1d{width:89.313280pt;}
._30{width:95.658667pt;}
._31{width:97.077333pt;}
._3a{width:120.726187pt;}
._3b{width:122.152533pt;}
._2f{width:133.109333pt;}
._36{width:165.680640pt;}
._37{width:166.603520pt;}
.fs5{font-size:26.880000pt;}
.fs8{font-size:34.560000pt;}
.fs6{font-size:42.240000pt;}
.fs4{font-size:48.640000pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs9{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs2{font-size:74.240000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.ye{bottom:3.840000pt;}
.y9{bottom:4.160000pt;}
.y55{bottom:12.800000pt;}
.y5b{bottom:13.120000pt;}
.y61{bottom:13.146667pt;}
.y66{bottom:13.160000pt;}
.y69{bottom:13.440000pt;}
.y8{bottom:24.640000pt;}
.y5d{bottom:26.880000pt;}
.y64{bottom:26.920000pt;}
.y6b{bottom:27.200000pt;}
.y5f{bottom:27.226667pt;}
.y6d{bottom:39.040000pt;}
.y73{bottom:39.080000pt;}
.y6f{bottom:39.360000pt;}
.y5a{bottom:40.640000pt;}
.y68{bottom:40.960000pt;}
.y60{bottom:40.986667pt;}
.y65{bottom:41.000000pt;}
.y7{bottom:48.040000pt;}
.y57{bottom:54.400000pt;}
.y6a{bottom:54.720000pt;}
.y79{bottom:65.600000pt;}
.y6e{bottom:65.626667pt;}
.y72{bottom:65.640000pt;}
.y11{bottom:66.912000pt;}
.y59{bottom:68.480000pt;}
.y6{bottom:75.560000pt;}
.y5c{bottom:82.266667pt;}
.y75{bottom:92.160000pt;}
.y71{bottom:92.200000pt;}
.y58{bottom:96.026667pt;}
.y10{bottom:100.832000pt;}
.y5{bottom:102.760000pt;}
.y78{bottom:118.746667pt;}
.yf{bottom:118.752000pt;}
.y4{bottom:130.280000pt;}
.yd{bottom:137.626667pt;}
.y77{bottom:144.986667pt;}
.y3{bottom:157.800000pt;}
.y3a{bottom:163.546667pt;}
.y50{bottom:164.186667pt;}
.y2{bottom:166.146667pt;}
.y39{bottom:166.746667pt;}
.y90{bottom:170.266667pt;}
.y76{bottom:171.546667pt;}
.y4b{bottom:175.746667pt;}
.y4a{bottom:178.946667pt;}
.y4f{bottom:179.266667pt;}
.y38{bottom:179.586667pt;}
.y4e{bottom:184.066667pt;}
.y51{bottom:191.426667pt;}
.y49{bottom:192.066667pt;}
.y98{bottom:195.906667pt;}
.y4d{bottom:198.146667pt;}
.y8f{bottom:202.626667pt;}
.y24{bottom:204.866667pt;}
.ya5{bottom:212.866667pt;}
.y37{bottom:218.626667pt;}
.y83{bottom:220.546667pt;}
.y6c{bottom:220.866667pt;}
.y48{bottom:223.746667pt;}
.y97{bottom:228.226667pt;}
.ya4{bottom:234.306667pt;}
.y8e{bottom:234.946667pt;}
.y23{bottom:237.186667pt;}
.y36{bottom:250.626667pt;}
.y82{bottom:252.546667pt;}
.y47{bottom:255.746667pt;}
.y96{bottom:260.226667pt;}
.y8d{bottom:266.946667pt;}
.y22{bottom:269.186667pt;}
.ya3{bottom:277.186667pt;}
.y35{bottom:282.946667pt;}
.y81{bottom:284.893333pt;}
.y9a{bottom:287.773333pt;}
.y46{bottom:288.093333pt;}
.y95{bottom:292.573333pt;}
.ya2{bottom:298.653333pt;}
.y8c{bottom:299.293333pt;}
.y67{bottom:300.893333pt;}
.y21{bottom:301.533333pt;}
.y34{bottom:314.973333pt;}
.y80{bottom:317.213333pt;}
.y45{bottom:320.093333pt;}
.y94{bottom:324.573333pt;}
.y8b{bottom:331.613333pt;}
.y20{bottom:333.853333pt;}
.ya1{bottom:341.533333pt;}
.y33{bottom:347.293333pt;}
.y7f{bottom:349.213333pt;}
.y44{bottom:352.413333pt;}
.y93{bottom:356.893333pt;}
.ya0{bottom:363.293333pt;}
.y8a{bottom:363.613333pt;}
.y1f{bottom:365.853333pt;}
.y32{bottom:379.613333pt;}
.y7e{bottom:381.533333pt;}
.y63{bottom:384.413333pt;}
.y43{bottom:384.733333pt;}
.y92{bottom:389.213333pt;}
.y89{bottom:395.933333pt;}
.y1e{bottom:398.213333pt;}
.y9f{bottom:406.213333pt;}
.y31{bottom:411.653333pt;}
.y7d{bottom:413.573333pt;}
.y42{bottom:416.773333pt;}
.y91{bottom:417.093333pt;}
.y9e{bottom:427.653333pt;}
.y88{bottom:427.973333pt;}
.y1d{bottom:430.533333pt;}
.y62{bottom:440.453333pt;}
.y2f{bottom:443.973333pt;}
.y7c{bottom:445.893333pt;}
.y9d{bottom:448.773333pt;}
.y41{bottom:449.093333pt;}
.y30{bottom:450.693333pt;}
.y87{bottom:460.293333pt;}
.y1c{bottom:462.533333pt;}
.y2e{bottom:475.973333pt;}
.y7b{bottom:478.213333pt;}
.y40{bottom:481.093333pt;}
.y86{bottom:492.613333pt;}
.y1b{bottom:494.853333pt;}
.y5e{bottom:496.133333pt;}
.y2d{bottom:508.293333pt;}
.y7a{bottom:510.240000pt;}
.y3f{bottom:513.440000pt;}
.y85{bottom:524.640000pt;}
.y1a{bottom:526.880000pt;}
.y74{bottom:527.840000pt;}
.y2c{bottom:540.640000pt;}
.y99{bottom:545.440000pt;}
.y3e{bottom:545.760000pt;}
.y56{bottom:552.160000pt;}
.y84{bottom:552.800000pt;}
.y19{bottom:559.200000pt;}
.y2b{bottom:572.640000pt;}
.y3d{bottom:577.760000pt;}
.y2a{bottom:604.960000pt;}
.y18{bottom:610.080000pt;}
.y29{bottom:637.306667pt;}
.y9c{bottom:642.106667pt;}
.y17{bottom:642.426667pt;}
.y3c{bottom:649.146667pt;}
.y54{bottom:663.226667pt;}
.y16{bottom:674.426667pt;}
.y9b{bottom:681.146667pt;}
.y28{bottom:687.866667pt;}
.y15{bottom:706.426667pt;}
.y3b{bottom:706.746667pt;}
.y53{bottom:713.466667pt;}
.y70{bottom:713.786667pt;}
.y27{bottom:720.186667pt;}
.y52{bottom:738.466667pt;}
.y14{bottom:738.786667pt;}
.y13{bottom:770.786667pt;}
.y26{bottom:771.106667pt;}
.y12{bottom:803.106667pt;}
.y25{bottom:803.426667pt;}
.ya6{bottom:806.306667pt;}
.y4c{bottom:810.146667pt;}
.yc{bottom:840.226667pt;}
.yb{bottom:874.173333pt;}
.ya{bottom:892.093333pt;}
.y1{bottom:910.013333pt;}
.h8{height:17.600000pt;}
.he{height:26.381250pt;}
.h12{height:27.520000pt;}
.h10{height:33.918750pt;}
.hf{height:41.456250pt;}
.h3{height:44.648750pt;}
.hd{height:47.737500pt;}
.h7{height:48.656250pt;}
.hc{height:52.055000pt;}
.h9{height:52.381250pt;}
.h11{height:52.762500pt;}
.h17{height:55.040000pt;}
.h16{height:55.392000pt;}
.h6{height:56.695000pt;}
.h1a{height:60.300000pt;}
.h15{height:62.812500pt;}
.h13{height:64.500000pt;}
.hb{height:72.862500pt;}
.ha{height:74.820000pt;}
.h1d{height:76.307021pt;}
.h19{height:79.392000pt;}
.h18{height:82.880000pt;}
.h5{height:94.218750pt;}
.h4{height:96.750000pt;}
.h1b{height:105.952000pt;}
.h14{height:110.432000pt;}
.h2{height:180.226667pt;}
.h1c{height:185.306667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w2{width:17.280000pt;}
.w8{width:29.792000pt;}
.w6{width:63.712000pt;}
.w9{width:269.213333pt;}
.wa{width:326.533333pt;}
.w3{width:543.266667pt;}
.w5{width:575.586667pt;}
.w1{width:793.333333pt;}
.w7{width:793.599976pt;}
.w4{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x1f{left:6.720000pt;}
.x2{left:7.680000pt;}
.x22{left:10.560000pt;}
.x1{left:75.552000pt;}
.x3{left:92.832000pt;}
.x5{left:105.632000pt;}
.x1e{left:106.592000pt;}
.x4{left:113.311988pt;}
.x13{left:116.831988pt;}
.x23{left:118.751988pt;}
.x18{left:124.223988pt;}
.x1a{left:129.023988pt;}
.x24{left:132.223988pt;}
.x20{left:137.026667pt;}
.x26{left:141.826655pt;}
.xf{left:151.106655pt;}
.x2b{left:161.346655pt;}
.x8{left:167.426655pt;}
.xd{left:234.973322pt;}
.xc{left:278.813322pt;}
.x9{left:296.453322pt;}
.x12{left:305.413322pt;}
.xe{left:326.533322pt;}
.x2a{left:335.493322pt;}
.xb{left:347.013322pt;}
.x1b{left:363.013322pt;}
.x21{left:406.880000pt;}
.xa{left:443.999988pt;}
.x6{left:466.114667pt;}
.x1c{left:481.466643pt;}
.x1d{left:487.546655pt;}
.x16{left:522.426643pt;}
.x10{left:526.266643pt;}
.x17{left:528.506655pt;}
.x11{left:532.346655pt;}
.x14{left:563.106643pt;}
.x15{left:569.186655pt;}
.x28{left:576.226643pt;}
.x29{left:582.306655pt;}
.x19{left:647.933322pt;}
.x7{left:681.213333pt;}
.x25{left:699.133322pt;}
.x27{left:735.653322pt;}
}




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