
    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_b935afa15e49bac033501ac2.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_068cf5a4b47abb7ed9d8f7fc.woff')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_cb831bfc45030f6d94299355.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;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_359bedf802ebca0b61152ee7.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_616ac7f1f757af4cb1745cff.woff')format("woff");}.ff5{font-family:ff5;line-height:1.040039;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_f1dc113ae7343b214544c61b.woff')format("woff");}.ff6{font-family:ff6;line-height:1.284180;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_87a2c83f2bc1bdfc8f086596.woff')format("woff");}.ff7{font-family:ff7;line-height:1.080566;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_915baf686d919b6aae7addbe.woff')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_649e5c3eb16b2e1dcfbe5698.woff')format("woff");}.ff9{font-family:ff9;line-height:1.284180;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_54f5e880d99b5704f9049222.woff')format("woff");}.ffa{font-family:ffa;line-height:0.960449;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;}
.ls18{letter-spacing:-1.044000px;}
.ls25{letter-spacing:-0.696000px;}
.ls8{letter-spacing:-0.428400px;}
.ls4{letter-spacing:-0.360000px;}
.ls14{letter-spacing:-0.341400px;}
.ls3{letter-spacing:-0.180000px;}
.ls10{letter-spacing:-0.093000px;}
.lsd{letter-spacing:-0.043920px;}
.ls2{letter-spacing:-0.018720px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.028080px;}
.ls17{letter-spacing:0.037440px;}
.ls7{letter-spacing:0.099600px;}
.ls20{letter-spacing:0.120960px;}
.lsf{letter-spacing:0.291600px;}
.ls9{letter-spacing:0.360000px;}
.lse{letter-spacing:0.480000px;}
.ls13{letter-spacing:4.140000px;}
.ls19{letter-spacing:4.860000px;}
.ls1b{letter-spacing:10.620000px;}
.ls15{letter-spacing:12.756000px;}
.lsa{letter-spacing:13.500000px;}
.lsc{letter-spacing:16.380000px;}
.ls1a{letter-spacing:17.820000px;}
.ls16{letter-spacing:19.260000px;}
.lsb{letter-spacing:19.980000px;}
.ls6{letter-spacing:20.100000px;}
.ls12{letter-spacing:23.580000px;}
.ls1c{letter-spacing:27.180000px;}
.ls24{letter-spacing:27.900000px;}
.ls11{letter-spacing:45.900000px;}
.ls5{letter-spacing:48.780000px;}
.ls1f{letter-spacing:53.100000px;}
.ls21{letter-spacing:75.420000px;}
.ls22{letter-spacing:76.140000px;}
.ls23{letter-spacing:76.260000px;}
.ls1e{letter-spacing:128.700000px;}
.ls1d{letter-spacing:170.460000px;}
.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;}
}
.ws8{word-spacing:-21.420000px;}
.wsc{word-spacing:-21.351600px;}
.ws7{word-spacing:-21.159600px;}
.wse{word-spacing:-21.097440px;}
.ws1{word-spacing:-21.060000px;}
.ws2{word-spacing:-21.041280px;}
.ws9{word-spacing:-21.016080px;}
.wsa{word-spacing:-20.967000px;}
.ws3{word-spacing:-20.880000px;}
.wsb{word-spacing:-20.718600px;}
.ws4{word-spacing:-20.700000px;}
.wsf{word-spacing:-20.364000px;}
.wsd{word-spacing:-20.016000px;}
.ws0{word-spacing:-18.000000px;}
.ws6{word-spacing:-0.084240px;}
.ws5{word-spacing:0.000000px;}
._2d{margin-left:-6.570720px;}
._17{margin-left:-5.559840px;}
._18{margin-left:-4.212000px;}
._e{margin-left:-2.243520px;}
._0{margin-left:-1.126080px;}
._4{width:1.041696px;}
._6{width:2.633760px;}
._5{width:3.737520px;}
._12{width:5.675040px;}
._15{width:7.044768px;}
._14{width:8.298720px;}
._26{width:9.603360px;}
._3e{width:10.655424px;}
._27{width:12.130560px;}
._28{width:13.509360px;}
._24{width:14.511744px;}
._d{width:15.868080px;}
._40{width:16.878960px;}
._4f{width:18.041184px;}
._22{width:19.122480px;}
._29{width:22.155120px;}
._2c{width:23.494464px;}
._2b{width:24.797520px;}
._2f{width:26.313840px;}
._16{width:27.389952px;}
._25{width:29.147040px;}
._23{width:30.831840px;}
._2e{width:32.241600px;}
._3d{width:33.757920px;}
._32{width:34.791120px;}
._10{width:36.506880px;}
._f{width:37.877040px;}
._4d{width:39.029424px;}
._39{width:40.075920px;}
._3f{width:41.446080px;}
._31{width:43.453872px;}
._30{width:44.501184px;}
._7{width:46.009920px;}
._8{width:47.122320px;}
._19{width:48.721680px;}
._3a{width:50.336064px;}
._2a{width:52.149312px;}
._4e{width:54.303984px;}
._9{width:56.188080px;}
._a{width:57.314160px;}
._38{width:58.914720px;}
._37{width:59.978880px;}
._3b{width:63.348480px;}
._44{width:66.496320px;}
._43{width:68.318640px;}
._21{width:69.865920px;}
._4a{width:71.182800px;}
._47{width:73.036080px;}
._46{width:75.510480px;}
._4c{width:77.447520px;}
._50{width:79.893600px;}
._b{width:81.350400px;}
._34{width:82.892160px;}
._33{width:83.987280px;}
._35{width:85.703040px;}
._36{width:87.157440px;}
._1d{width:89.487120px;}
._1c{width:91.316160px;}
._42{width:101.149920px;}
._41{width:102.320640px;}
._3c{width:105.552720px;}
._48{width:107.658720px;}
._49{width:109.037520px;}
._c{width:113.282112px;}
._51{width:120.999744px;}
._13{width:122.032800px;}
._1e{width:129.277584px;}
._1b{width:133.542864px;}
._1a{width:134.814960px;}
._4b{width:136.162800px;}
._20{width:137.164896px;}
._1f{width:138.750624px;}
._52{width:154.021680px;}
._45{width:162.498960px;}
._53{width:169.920000px;}
._11{width:177.010704px;}
._1{width:430.638720px;}
._2{width:612.782880px;}
._3{width:915.300000px;}
.fc6{color:rgb(31,77,120);}
.fc4{color:rgb(5,99,193);}
.fc3{color:rgb(31,78,121);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(237,125,49);}
.fc5{color:transparent;}
.fc0{color:rgb(196,89,17);}
.fs1{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.fs4{font-size:84.240000px;}
.fs3{font-size:84.384000px;}
.y4{bottom:-6.840000px;}
.y0{bottom:0.000000px;}
.y6{bottom:4.500000px;}
.y28{bottom:4.680000px;}
.y53{bottom:8.640000px;}
.y77{bottom:8.670000px;}
.y4c{bottom:8.820000px;}
.y1f{bottom:15.480000px;}
.y6e{bottom:22.500000px;}
.y4e{bottom:22.680000px;}
.y52{bottom:36.360000px;}
.y4a{bottom:36.540000px;}
.y58{bottom:50.220000px;}
.y48{bottom:50.400000px;}
.y27{bottom:59.220000px;}
.y50{bottom:64.080000px;}
.y49{bottom:64.260000px;}
.y7{bottom:71.280000px;}
.y4d{bottom:78.120000px;}
.y26{bottom:83.340000px;}
.y4b{bottom:91.980000px;}
.y56{bottom:92.025000px;}
.y5{bottom:97.560000px;}
.y25{bottom:107.460000px;}
.y51{bottom:119.730000px;}
.y3{bottom:129.060000px;}
.y24{bottom:131.370000px;}
.y5e{bottom:141.480000px;}
.y1d{bottom:151.770000px;}
.y74{bottom:153.750000px;}
.y23{bottom:155.490000px;}
.y69{bottom:164.910000px;}
.y44{bottom:174.630000px;}
.y8d{bottom:176.250000px;}
.y5d{bottom:177.870000px;}
.y22{bottom:179.610000px;}
.y1c{bottom:187.950000px;}
.y73{bottom:189.930000px;}
.y47{bottom:190.470000px;}
.y68{bottom:201.090000px;}
.y21{bottom:203.730000px;}
.y43{bottom:210.810000px;}
.y8c{bottom:212.430000px;}
.y5c{bottom:214.050000px;}
.y1b{bottom:224.130000px;}
.y72{bottom:226.110000px;}
.y67{bottom:237.270000px;}
.y42{bottom:246.990000px;}
.y8b{bottom:248.610000px;}
.y5b{bottom:250.230000px;}
.y1a{bottom:260.310000px;}
.y71{bottom:262.290000px;}
.y66{bottom:273.630000px;}
.y5a{bottom:281.370000px;}
.y70{bottom:282.090000px;}
.y8f{bottom:282.450000px;}
.y41{bottom:283.350000px;}
.y8a{bottom:284.970000px;}
.y19{bottom:296.670000px;}
.y65{bottom:309.810000px;}
.y40{bottom:319.530000px;}
.y89{bottom:321.150000px;}
.y18{bottom:332.850000px;}
.y6f{bottom:338.430000px;}
.y64{bottom:345.990000px;}
.y3f{bottom:355.710000px;}
.y88{bottom:357.330000px;}
.y17{bottom:369.030000px;}
.y63{bottom:382.170000px;}
.y3e{bottom:391.890000px;}
.y87{bottom:393.555000px;}
.y6d{bottom:394.815000px;}
.y16{bottom:405.255000px;}
.y7c{bottom:415.695000px;}
.y62{bottom:418.575000px;}
.y3d{bottom:428.295000px;}
.y86{bottom:429.735000px;}
.y7b{bottom:435.495000px;}
.y15{bottom:441.615000px;}
.y6c{bottom:451.155000px;}
.y61{bottom:454.755000px;}
.y3c{bottom:464.475000px;}
.y85{bottom:466.095000px;}
.y14{bottom:477.795000px;}
.y6b{bottom:479.595000px;}
.y60{bottom:490.935000px;}
.y3b{bottom:500.655000px;}
.y84{bottom:502.275000px;}
.y6a{bottom:508.035000px;}
.y13{bottom:513.975000px;}
.y7a{bottom:519.555000px;}
.y5f{bottom:522.255000px;}
.y3a{bottom:536.835000px;}
.y83{bottom:538.455000px;}
.y79{bottom:548.175000px;}
.y12{bottom:550.155000px;}
.y39{bottom:573.015000px;}
.y82{bottom:574.635000px;}
.y11{bottom:586.515000px;}
.y78{bottom:604.335000px;}
.y38{bottom:609.375000px;}
.y81{bottom:610.995000px;}
.y10{bottom:622.695000px;}
.y76{bottom:632.955000px;}
.y37{bottom:645.555000px;}
.y46{bottom:645.585000px;}
.y80{bottom:647.205000px;}
.yf{bottom:658.905000px;}
.y75{bottom:661.425000px;}
.y59{bottom:676.905000px;}
.y36{bottom:681.765000px;}
.y7f{bottom:683.385000px;}
.ye{bottom:695.085000px;}
.y57{bottom:696.705000px;}
.y35{bottom:717.945000px;}
.y7e{bottom:719.565000px;}
.yd{bottom:731.445000px;}
.y7d{bottom:750.885000px;}
.y45{bottom:753.945000px;}
.y34{bottom:754.305000px;}
.yc{bottom:767.625000px;}
.y33{bottom:790.485000px;}
.yb{bottom:803.805000px;}
.y55{bottom:808.485000px;}
.y32{bottom:826.665000px;}
.ya{bottom:839.985000px;}
.y31{bottom:862.845000px;}
.y9{bottom:876.165000px;}
.y30{bottom:899.250000px;}
.y8{bottom:912.570000px;}
.y54{bottom:920.310000px;}
.y1e{bottom:931.650000px;}
.y20{bottom:931.680000px;}
.y2f{bottom:935.430000px;}
.y2e{bottom:971.610000px;}
.y2d{bottom:1007.790000px;}
.y4f{bottom:1032.270000px;}
.y2c{bottom:1043.970000px;}
.y2b{bottom:1080.330000px;}
.y8e{bottom:1116.150000px;}
.y2a{bottom:1116.510000px;}
.y29{bottom:1152.720000px;}
.y2{bottom:1175.580000px;}
.y1{bottom:1194.480000px;}
.h3{height:6.660000px;}
.h5{height:20.700000px;}
.h16{height:27.720000px;}
.h1a{height:27.756000px;}
.h1b{height:27.900000px;}
.h17{height:55.440000px;}
.h19{height:55.620000px;}
.h18{height:55.656000px;}
.h4{height:58.651172px;}
.h11{height:59.066719px;}
.h7{height:65.884219px;}
.h2{height:66.757500px;}
.h9{height:69.432187px;}
.h8{height:69.550875px;}
.h6{height:70.664062px;}
.he{height:72.846211px;}
.h1c{height:80.208984px;}
.ha{height:82.635820px;}
.hf{height:82.676953px;}
.h10{height:82.777078px;}
.h15{height:83.340000px;}
.hc{height:84.898125px;}
.h12{height:111.060000px;}
.h14{height:111.096000px;}
.h13{height:138.816000px;}
.hd{height:223.200000px;}
.hb{height:223.230000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:77.400000px;}
.w15{width:111.096000px;}
.w12{width:111.600000px;}
.wc{width:112.320000px;}
.wa{width:115.956000px;}
.wb{width:124.416000px;}
.w11{width:137.736000px;}
.w10{width:139.176000px;}
.wf{width:139.356000px;}
.we{width:141.660000px;}
.wd{width:142.050000px;}
.w13{width:145.476000px;}
.w16{width:146.916000px;}
.w5{width:164.730000px;}
.w14{width:182.370000px;}
.w8{width:188.850000px;}
.w4{width:302.115000px;}
.w3{width:392.295000px;}
.w6{width:559.260000px;}
.w7{width:559.365000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.640000px;}
.x41{left:10.260000px;}
.x37{left:11.385000px;}
.x1f{left:12.420000px;}
.x18{left:13.860000px;}
.xa{left:16.635000px;}
.x24{left:18.540000px;}
.x26{left:19.620000px;}
.x1c{left:21.060000px;}
.x3b{left:23.214000px;}
.x15{left:25.380000px;}
.x20{left:26.460000px;}
.x21{left:27.900000px;}
.x22{left:29.880000px;}
.xe{left:31.320000px;}
.x1e{left:33.120000px;}
.x29{left:35.280000px;}
.x13{left:37.074000px;}
.x2a{left:38.520000px;}
.x1a{left:40.500000px;}
.x27{left:43.740000px;}
.x2d{left:44.820000px;}
.xb{left:47.415000px;}
.x42{left:50.760000px;}
.x19{left:51.840000px;}
.x23{left:53.460000px;}
.x3c{left:56.550000px;}
.xf{left:59.040000px;}
.x25{left:60.840000px;}
.x28{left:63.354000px;}
.x2c{left:69.834000px;}
.x44{left:75.990000px;}
.xd{left:84.060000px;}
.x2b{left:86.430000px;}
.x9{left:93.675000px;}
.xc{left:112.935000px;}
.x1{left:127.655987px;}
.x7{left:156.639000px;}
.x46{left:159.509987px;}
.x6{left:170.129987px;}
.x48{left:180.749987px;}
.x35{left:197.309987px;}
.x3d{left:207.389987px;}
.x32{left:216.029987px;}
.x2f{left:220.709987px;}
.x3e{left:240.690000px;}
.x36{left:270.750000px;}
.x12{left:274.934987px;}
.x5{left:276.885000px;}
.x10{left:279.750000px;}
.x8{left:292.320000px;}
.x4{left:293.475000px;}
.x14{left:317.955000px;}
.x30{left:356.294987px;}
.x47{left:384.014987px;}
.x3f{left:386.895000px;}
.x16{left:396.075000px;}
.x38{left:410.835000px;}
.x33{left:420.194987px;}
.x17{left:512.745000px;}
.x3{left:519.945000px;}
.x39{left:550.905000px;}
.x40{left:569.985000px;}
.x1b{left:637.890000px;}
.x43{left:681.810000px;}
.x3a{left:690.990000px;}
.x11{left:733.109987px;}
.x1d{left:750.930000px;}
.x2e{left:789.089987px;}
.x45{left:813.959987px;}
.x34{left:829.439987px;}
.x31{left:834.299987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls18{letter-spacing:-0.928000pt;}
.ls25{letter-spacing:-0.618667pt;}
.ls8{letter-spacing:-0.380800pt;}
.ls4{letter-spacing:-0.320000pt;}
.ls14{letter-spacing:-0.303467pt;}
.ls3{letter-spacing:-0.160000pt;}
.ls10{letter-spacing:-0.082667pt;}
.lsd{letter-spacing:-0.039040pt;}
.ls2{letter-spacing:-0.016640pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.024960pt;}
.ls17{letter-spacing:0.033280pt;}
.ls7{letter-spacing:0.088533pt;}
.ls20{letter-spacing:0.107520pt;}
.lsf{letter-spacing:0.259200pt;}
.ls9{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.426667pt;}
.ls13{letter-spacing:3.680000pt;}
.ls19{letter-spacing:4.320000pt;}
.ls1b{letter-spacing:9.440000pt;}
.ls15{letter-spacing:11.338667pt;}
.lsa{letter-spacing:12.000000pt;}
.lsc{letter-spacing:14.560000pt;}
.ls1a{letter-spacing:15.840000pt;}
.ls16{letter-spacing:17.120000pt;}
.lsb{letter-spacing:17.760000pt;}
.ls6{letter-spacing:17.866667pt;}
.ls12{letter-spacing:20.960000pt;}
.ls1c{letter-spacing:24.160000pt;}
.ls24{letter-spacing:24.800000pt;}
.ls11{letter-spacing:40.800000pt;}
.ls5{letter-spacing:43.360000pt;}
.ls1f{letter-spacing:47.200000pt;}
.ls21{letter-spacing:67.040000pt;}
.ls22{letter-spacing:67.680000pt;}
.ls23{letter-spacing:67.786667pt;}
.ls1e{letter-spacing:114.400000pt;}
.ls1d{letter-spacing:151.520000pt;}
.ws8{word-spacing:-19.040000pt;}
.wsc{word-spacing:-18.979200pt;}
.ws7{word-spacing:-18.808533pt;}
.wse{word-spacing:-18.753280pt;}
.ws1{word-spacing:-18.720000pt;}
.ws2{word-spacing:-18.703360pt;}
.ws9{word-spacing:-18.680960pt;}
.wsa{word-spacing:-18.637333pt;}
.ws3{word-spacing:-18.560000pt;}
.wsb{word-spacing:-18.416533pt;}
.ws4{word-spacing:-18.400000pt;}
.wsf{word-spacing:-18.101333pt;}
.wsd{word-spacing:-17.792000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws6{word-spacing:-0.074880pt;}
.ws5{word-spacing:0.000000pt;}
._2d{margin-left:-5.840640pt;}
._17{margin-left:-4.942080pt;}
._18{margin-left:-3.744000pt;}
._e{margin-left:-1.994240pt;}
._0{margin-left:-1.000960pt;}
._4{width:0.925952pt;}
._6{width:2.341120pt;}
._5{width:3.322240pt;}
._12{width:5.044480pt;}
._15{width:6.262016pt;}
._14{width:7.376640pt;}
._26{width:8.536320pt;}
._3e{width:9.471488pt;}
._27{width:10.782720pt;}
._28{width:12.008320pt;}
._24{width:12.899328pt;}
._d{width:14.104960pt;}
._40{width:15.003520pt;}
._4f{width:16.036608pt;}
._22{width:16.997760pt;}
._29{width:19.693440pt;}
._2c{width:20.883968pt;}
._2b{width:22.042240pt;}
._2f{width:23.390080pt;}
._16{width:24.346624pt;}
._25{width:25.908480pt;}
._23{width:27.406080pt;}
._2e{width:28.659200pt;}
._3d{width:30.007040pt;}
._32{width:30.925440pt;}
._10{width:32.450560pt;}
._f{width:33.668480pt;}
._4d{width:34.692821pt;}
._39{width:35.623040pt;}
._3f{width:36.840960pt;}
._31{width:38.625664pt;}
._30{width:39.556608pt;}
._7{width:40.897707pt;}
._8{width:41.886507pt;}
._19{width:43.308160pt;}
._3a{width:44.743168pt;}
._2a{width:46.354944pt;}
._4e{width:48.270208pt;}
._9{width:49.944960pt;}
._a{width:50.945920pt;}
._38{width:52.368640pt;}
._37{width:53.314560pt;}
._3b{width:56.309760pt;}
._44{width:59.107840pt;}
._43{width:60.727680pt;}
._21{width:62.103040pt;}
._4a{width:63.273600pt;}
._47{width:64.920960pt;}
._46{width:67.120427pt;}
._4c{width:68.842240pt;}
._50{width:71.016533pt;}
._b{width:72.311467pt;}
._34{width:73.681920pt;}
._33{width:74.655360pt;}
._35{width:76.180480pt;}
._36{width:77.473280pt;}
._1d{width:79.544107pt;}
._1c{width:81.169920pt;}
._42{width:89.911040pt;}
._41{width:90.951680pt;}
._3c{width:93.824640pt;}
._48{width:95.696640pt;}
._49{width:96.922240pt;}
._c{width:100.695211pt;}
._51{width:107.555328pt;}
._13{width:108.473600pt;}
._1e{width:114.913408pt;}
._1b{width:118.704768pt;}
._1a{width:119.835520pt;}
._4b{width:121.033600pt;}
._20{width:121.924352pt;}
._1f{width:123.333888pt;}
._52{width:136.908160pt;}
._45{width:144.443520pt;}
._53{width:151.040000pt;}
._11{width:157.342848pt;}
._1{width:382.789973pt;}
._2{width:544.695893pt;}
._3{width:813.600000pt;}
.fs1{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.fs4{font-size:74.880000pt;}
.fs3{font-size:75.008000pt;}
.y4{bottom:-6.080000pt;}
.y0{bottom:0.000000pt;}
.y6{bottom:4.000000pt;}
.y28{bottom:4.160000pt;}
.y53{bottom:7.680000pt;}
.y77{bottom:7.706667pt;}
.y4c{bottom:7.840000pt;}
.y1f{bottom:13.760000pt;}
.y6e{bottom:20.000000pt;}
.y4e{bottom:20.160000pt;}
.y52{bottom:32.320000pt;}
.y4a{bottom:32.480000pt;}
.y58{bottom:44.640000pt;}
.y48{bottom:44.800000pt;}
.y27{bottom:52.640000pt;}
.y50{bottom:56.960000pt;}
.y49{bottom:57.120000pt;}
.y7{bottom:63.360000pt;}
.y4d{bottom:69.440000pt;}
.y26{bottom:74.080000pt;}
.y4b{bottom:81.760000pt;}
.y56{bottom:81.800000pt;}
.y5{bottom:86.720000pt;}
.y25{bottom:95.520000pt;}
.y51{bottom:106.426667pt;}
.y3{bottom:114.720000pt;}
.y24{bottom:116.773333pt;}
.y5e{bottom:125.760000pt;}
.y1d{bottom:134.906667pt;}
.y74{bottom:136.666667pt;}
.y23{bottom:138.213333pt;}
.y69{bottom:146.586667pt;}
.y44{bottom:155.226667pt;}
.y8d{bottom:156.666667pt;}
.y5d{bottom:158.106667pt;}
.y22{bottom:159.653333pt;}
.y1c{bottom:167.066667pt;}
.y73{bottom:168.826667pt;}
.y47{bottom:169.306667pt;}
.y68{bottom:178.746667pt;}
.y21{bottom:181.093333pt;}
.y43{bottom:187.386667pt;}
.y8c{bottom:188.826667pt;}
.y5c{bottom:190.266667pt;}
.y1b{bottom:199.226667pt;}
.y72{bottom:200.986667pt;}
.y67{bottom:210.906667pt;}
.y42{bottom:219.546667pt;}
.y8b{bottom:220.986667pt;}
.y5b{bottom:222.426667pt;}
.y1a{bottom:231.386667pt;}
.y71{bottom:233.146667pt;}
.y66{bottom:243.226667pt;}
.y5a{bottom:250.106667pt;}
.y70{bottom:250.746667pt;}
.y8f{bottom:251.066667pt;}
.y41{bottom:251.866667pt;}
.y8a{bottom:253.306667pt;}
.y19{bottom:263.706667pt;}
.y65{bottom:275.386667pt;}
.y40{bottom:284.026667pt;}
.y89{bottom:285.466667pt;}
.y18{bottom:295.866667pt;}
.y6f{bottom:300.826667pt;}
.y64{bottom:307.546667pt;}
.y3f{bottom:316.186667pt;}
.y88{bottom:317.626667pt;}
.y17{bottom:328.026667pt;}
.y63{bottom:339.706667pt;}
.y3e{bottom:348.346667pt;}
.y87{bottom:349.826667pt;}
.y6d{bottom:350.946667pt;}
.y16{bottom:360.226667pt;}
.y7c{bottom:369.506667pt;}
.y62{bottom:372.066667pt;}
.y3d{bottom:380.706667pt;}
.y86{bottom:381.986667pt;}
.y7b{bottom:387.106667pt;}
.y15{bottom:392.546667pt;}
.y6c{bottom:401.026667pt;}
.y61{bottom:404.226667pt;}
.y3c{bottom:412.866667pt;}
.y85{bottom:414.306667pt;}
.y14{bottom:424.706667pt;}
.y6b{bottom:426.306667pt;}
.y60{bottom:436.386667pt;}
.y3b{bottom:445.026667pt;}
.y84{bottom:446.466667pt;}
.y6a{bottom:451.586667pt;}
.y13{bottom:456.866667pt;}
.y7a{bottom:461.826667pt;}
.y5f{bottom:464.226667pt;}
.y3a{bottom:477.186667pt;}
.y83{bottom:478.626667pt;}
.y79{bottom:487.266667pt;}
.y12{bottom:489.026667pt;}
.y39{bottom:509.346667pt;}
.y82{bottom:510.786667pt;}
.y11{bottom:521.346667pt;}
.y78{bottom:537.186667pt;}
.y38{bottom:541.666667pt;}
.y81{bottom:543.106667pt;}
.y10{bottom:553.506667pt;}
.y76{bottom:562.626667pt;}
.y37{bottom:573.826667pt;}
.y46{bottom:573.853333pt;}
.y80{bottom:575.293333pt;}
.yf{bottom:585.693333pt;}
.y75{bottom:587.933333pt;}
.y59{bottom:601.693333pt;}
.y36{bottom:606.013333pt;}
.y7f{bottom:607.453333pt;}
.ye{bottom:617.853333pt;}
.y57{bottom:619.293333pt;}
.y35{bottom:638.173333pt;}
.y7e{bottom:639.613333pt;}
.yd{bottom:650.173333pt;}
.y7d{bottom:667.453333pt;}
.y45{bottom:670.173333pt;}
.y34{bottom:670.493333pt;}
.yc{bottom:682.333333pt;}
.y33{bottom:702.653333pt;}
.yb{bottom:714.493333pt;}
.y55{bottom:718.653333pt;}
.y32{bottom:734.813333pt;}
.ya{bottom:746.653333pt;}
.y31{bottom:766.973333pt;}
.y9{bottom:778.813333pt;}
.y30{bottom:799.333333pt;}
.y8{bottom:811.173333pt;}
.y54{bottom:818.053333pt;}
.y1e{bottom:828.133333pt;}
.y20{bottom:828.160000pt;}
.y2f{bottom:831.493333pt;}
.y2e{bottom:863.653333pt;}
.y2d{bottom:895.813333pt;}
.y4f{bottom:917.573333pt;}
.y2c{bottom:927.973333pt;}
.y2b{bottom:960.293333pt;}
.y8e{bottom:992.133333pt;}
.y2a{bottom:992.453333pt;}
.y29{bottom:1024.640000pt;}
.y2{bottom:1044.960000pt;}
.y1{bottom:1061.760000pt;}
.h3{height:5.920000pt;}
.h5{height:18.400000pt;}
.h16{height:24.640000pt;}
.h1a{height:24.672000pt;}
.h1b{height:24.800000pt;}
.h17{height:49.280000pt;}
.h19{height:49.440000pt;}
.h18{height:49.472000pt;}
.h4{height:52.134375pt;}
.h11{height:52.503750pt;}
.h7{height:58.563750pt;}
.h2{height:59.340000pt;}
.h9{height:61.717500pt;}
.h8{height:61.823000pt;}
.h6{height:62.812500pt;}
.he{height:64.752187pt;}
.h1c{height:71.296875pt;}
.ha{height:73.454062pt;}
.hf{height:73.490625pt;}
.h10{height:73.579625pt;}
.h15{height:74.080000pt;}
.hc{height:75.465000pt;}
.h12{height:98.720000pt;}
.h14{height:98.752000pt;}
.h13{height:123.392000pt;}
.hd{height:198.400000pt;}
.hb{height:198.426667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.800000pt;}
.w15{width:98.752000pt;}
.w12{width:99.200000pt;}
.wc{width:99.840000pt;}
.wa{width:103.072000pt;}
.wb{width:110.592000pt;}
.w11{width:122.432000pt;}
.w10{width:123.712000pt;}
.wf{width:123.872000pt;}
.we{width:125.920000pt;}
.wd{width:126.266667pt;}
.w13{width:129.312000pt;}
.w16{width:130.592000pt;}
.w5{width:146.426667pt;}
.w14{width:162.106667pt;}
.w8{width:167.866667pt;}
.w4{width:268.546667pt;}
.w3{width:348.706667pt;}
.w6{width:497.120000pt;}
.w7{width:497.213333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.680000pt;}
.x41{left:9.120000pt;}
.x37{left:10.120000pt;}
.x1f{left:11.040000pt;}
.x18{left:12.320000pt;}
.xa{left:14.786667pt;}
.x24{left:16.480000pt;}
.x26{left:17.440000pt;}
.x1c{left:18.720000pt;}
.x3b{left:20.634667pt;}
.x15{left:22.560000pt;}
.x20{left:23.520000pt;}
.x21{left:24.800000pt;}
.x22{left:26.560000pt;}
.xe{left:27.840000pt;}
.x1e{left:29.440000pt;}
.x29{left:31.360000pt;}
.x13{left:32.954667pt;}
.x2a{left:34.240000pt;}
.x1a{left:36.000000pt;}
.x27{left:38.880000pt;}
.x2d{left:39.840000pt;}
.xb{left:42.146667pt;}
.x42{left:45.120000pt;}
.x19{left:46.080000pt;}
.x23{left:47.520000pt;}
.x3c{left:50.266667pt;}
.xf{left:52.480000pt;}
.x25{left:54.080000pt;}
.x28{left:56.314667pt;}
.x2c{left:62.074667pt;}
.x44{left:67.546667pt;}
.xd{left:74.720000pt;}
.x2b{left:76.826667pt;}
.x9{left:83.266667pt;}
.xc{left:100.386667pt;}
.x1{left:113.471988pt;}
.x7{left:139.234667pt;}
.x46{left:141.786655pt;}
.x6{left:151.226655pt;}
.x48{left:160.666655pt;}
.x35{left:175.386655pt;}
.x3d{left:184.346655pt;}
.x32{left:192.026655pt;}
.x2f{left:196.186655pt;}
.x3e{left:213.946667pt;}
.x36{left:240.666667pt;}
.x12{left:244.386655pt;}
.x5{left:246.120000pt;}
.x10{left:248.666667pt;}
.x8{left:259.840000pt;}
.x4{left:260.866667pt;}
.x14{left:282.626667pt;}
.x30{left:316.706655pt;}
.x47{left:341.346655pt;}
.x3f{left:343.906667pt;}
.x16{left:352.066667pt;}
.x38{left:365.186667pt;}
.x33{left:373.506655pt;}
.x17{left:455.773333pt;}
.x3{left:462.173333pt;}
.x39{left:489.693333pt;}
.x40{left:506.653333pt;}
.x1b{left:567.013333pt;}
.x43{left:606.053333pt;}
.x3a{left:614.213333pt;}
.x11{left:651.653322pt;}
.x1d{left:667.493333pt;}
.x2e{left:701.413322pt;}
.x45{left:723.519988pt;}
.x34{left:737.279988pt;}
.x31{left:741.599988pt;}
}




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