
    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_7c85f544b3217a361b7672cd.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_41b03eaeee4a8e586d32951c.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_76e096ae6d51dfa77988a130.woff')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_38a288f02fbb4afa6e055420.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_971441567bb774937c16e289.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_bed77b9788536875e5c34255.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_40122fc0c116b0e519762e18.woff')format("woff");}.ff7{font-family:ff7;line-height:1.372070;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_8588defea83e8e36630d713c.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);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:20.880000px;}
.v1{vertical-align:23.760000px;}
.lsd{letter-spacing:-1.956000px;}
.lsb{letter-spacing:-1.548000px;}
.lsf{letter-spacing:-1.386000px;}
.lsc{letter-spacing:-1.080000px;}
.lse{letter-spacing:-0.828000px;}
.ls12{letter-spacing:-0.774000px;}
.ls10{letter-spacing:-0.666000px;}
.ls9{letter-spacing:-0.540000px;}
.ls15{letter-spacing:-0.460200px;}
.ls8{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.305400px;}
.ls5{letter-spacing:-0.208200px;}
.ls13{letter-spacing:-0.106800px;}
.ls3{letter-spacing:0.000000px;}
.ls11{letter-spacing:0.106800px;}
.ls14{letter-spacing:0.153600px;}
.ls1{letter-spacing:0.180000px;}
.ls7{letter-spacing:0.259800px;}
.lsa{letter-spacing:0.262200px;}
.ls6{letter-spacing:0.360000px;}
.ls17{letter-spacing:0.612000px;}
.ls2{letter-spacing:0.900000px;}
.ls0{letter-spacing:1.512000px;}
.ls18{letter-spacing:11.466720px;}
.ls16{letter-spacing:41.706720px;}
.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:-16.254600px;}
.wse{word-spacing:-15.552000px;}
.ws3{word-spacing:-15.300000px;}
.ws4{word-spacing:-14.940000px;}
.wsc{word-spacing:-14.833200px;}
.wsd{word-spacing:-14.479800px;}
.wsb{word-spacing:-14.274000px;}
.ws9{word-spacing:-14.112000px;}
.ws7{word-spacing:-13.860000px;}
.wsa{word-spacing:-13.554000px;}
.ws6{word-spacing:-13.392000px;}
.ws8{word-spacing:-12.984000px;}
.ws1{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws5{word-spacing:0.000000px;}
._5{margin-left:-2770.303440px;}
._9{margin-left:-1578.070080px;}
._6{margin-left:-1402.905600px;}
._8{margin-left:-930.967920px;}
._d{margin-left:-721.224720px;}
._e{margin-left:-693.074160px;}
._18{margin-left:-595.620000px;}
._19{margin-left:-579.160800px;}
._a{margin-left:-574.927920px;}
._15{margin-left:-538.679640px;}
._1c{margin-left:-490.134240px;}
._1b{margin-left:-475.320000px;}
._16{margin-left:-428.114160px;}
._f{margin-left:-215.280000px;}
._13{margin-left:-174.240000px;}
._14{margin-left:-159.687360px;}
._b{margin-left:-149.040000px;}
._c{margin-left:-143.400000px;}
._10{margin-left:-132.480000px;}
._12{margin-left:-130.625280px;}
._11{margin-left:-129.600000px;}
._17{margin-left:-66.240000px;}
._1a{margin-left:-49.680000px;}
._7{margin-left:-8.213760px;}
._2a{margin-left:-6.691680px;}
._4{margin-left:-5.071200px;}
._20{margin-left:-3.638880px;}
._1{margin-left:-2.445840px;}
._2{margin-left:-1.080720px;}
._0{width:1.365120px;}
._3{width:2.673360px;}
._21{width:4.305600px;}
._1f{width:5.671200px;}
._28{width:7.182720px;}
._1e{width:8.262720px;}
._1d{width:9.384480px;}
._25{width:10.517760px;}
._22{width:11.832480px;}
._2b{width:12.914640px;}
._26{width:13.976640px;}
._27{width:15.103680px;}
._2c{width:16.646400px;}
._29{width:18.180000px;}
._23{width:19.840320px;}
._24{width:21.096240px;}
.fc3{color:rgb(0,29,53);}
.fc2{color:transparent;}
.fc1{color:rgb(47,84,150);}
.fc0{color:rgb(0,0,0);}
.fs6{font-size:38.880000px;}
.fs5{font-size:41.760000px;}
.fs1{font-size:56.880000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs3{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y58{bottom:3.600000px;}
.y57{bottom:20.880000px;}
.y6{bottom:59.940000px;}
.yb1{bottom:92.160000px;}
.y6d{bottom:97.920000px;}
.y34{bottom:107.460000px;}
.yb0{bottom:111.960000px;}
.y6c{bottom:117.720000px;}
.y97{bottom:124.740000px;}
.y33{bottom:127.296000px;}
.yaf{bottom:131.796000px;}
.y6b{bottom:137.556000px;}
.y96{bottom:144.576000px;}
.y32{bottom:147.096000px;}
.yae{bottom:151.770000px;}
.y6a{bottom:157.350000px;}
.y95{bottom:164.370000px;}
.y31{bottom:166.890000px;}
.yad{bottom:171.570000px;}
.y69{bottom:177.150000px;}
.y94{bottom:184.170000px;}
.y30{bottom:186.690000px;}
.yac{bottom:191.370000px;}
.y68{bottom:197.130000px;}
.y93{bottom:203.970000px;}
.y2f{bottom:206.490000px;}
.yab{bottom:211.170000px;}
.y67{bottom:216.930000px;}
.y92{bottom:223.950000px;}
.y2e{bottom:226.470000px;}
.yaa{bottom:230.970000px;}
.y66{bottom:236.730000px;}
.y91{bottom:243.750000px;}
.y2d{bottom:246.270000px;}
.ya9{bottom:250.950000px;}
.y65{bottom:256.170000px;}
.y90{bottom:263.550000px;}
.y2c{bottom:266.070000px;}
.ya8{bottom:270.750000px;}
.y8f{bottom:283.350000px;}
.y64{bottom:285.330000px;}
.y2b{bottom:285.870000px;}
.ya7{bottom:290.550000px;}
.y8e{bottom:303.150000px;}
.y63{bottom:305.310000px;}
.y2a{bottom:305.670000px;}
.ya6{bottom:310.350000px;}
.y8d{bottom:323.130000px;}
.y62{bottom:325.110000px;}
.y29{bottom:325.650000px;}
.ya5{bottom:329.790000px;}
.y8c{bottom:342.930000px;}
.y61{bottom:344.910000px;}
.y28{bottom:345.450000px;}
.ya4{bottom:350.130000px;}
.y8b{bottom:362.370000px;}
.y60{bottom:364.710000px;}
.y27{bottom:365.250000px;}
.ya3{bottom:369.930000px;}
.y8a{bottom:382.575000px;}
.y5f{bottom:384.555000px;}
.y26{bottom:385.095000px;}
.ya2{bottom:389.775000px;}
.y5e{bottom:399.135000px;}
.y89{bottom:402.375000px;}
.y25{bottom:404.895000px;}
.ya1{bottom:409.575000px;}
.y5d{bottom:417.135000px;}
.y88{bottom:422.355000px;}
.y24{bottom:424.875000px;}
.ya0{bottom:429.375000px;}
.y5c{bottom:435.135000px;}
.y87{bottom:442.155000px;}
.y23{bottom:444.675000px;}
.y9f{bottom:448.995000px;}
.y5b{bottom:453.135000px;}
.y86{bottom:461.955000px;}
.y22{bottom:464.475000px;}
.y9e{bottom:469.155000px;}
.y5a{bottom:471.135000px;}
.y85{bottom:481.755000px;}
.y21{bottom:484.275000px;}
.y9d{bottom:488.955000px;}
.y59{bottom:489.135000px;}
.y84{bottom:501.555000px;}
.y20{bottom:504.075000px;}
.y56{bottom:507.135000px;}
.y9c{bottom:508.755000px;}
.y83{bottom:521.535000px;}
.y1f{bottom:524.055000px;}
.y9b{bottom:528.195000px;}
.y82{bottom:541.335000px;}
.y1e{bottom:543.495000px;}
.y55{bottom:548.175000px;}
.y9a{bottom:548.535000px;}
.y81{bottom:561.135000px;}
.y1d{bottom:563.655000px;}
.y54{bottom:568.335000px;}
.y80{bottom:580.575000px;}
.y1c{bottom:585.795000px;}
.y53{bottom:588.135000px;}
.y52{bottom:607.935000px;}
.y7f{bottom:609.735000px;}
.y1b{bottom:614.595000px;}
.y99{bottom:627.375000px;}
.y51{bottom:627.735000px;}
.y7e{bottom:629.715000px;}
.y1a{bottom:634.425000px;}
.y50{bottom:647.745000px;}
.y7d{bottom:649.545000px;}
.y19{bottom:654.225000px;}
.y4f{bottom:667.185000px;}
.y98{bottom:667.545000px;}
.y7c{bottom:669.345000px;}
.y18{bottom:674.205000px;}
.y4e{bottom:687.345000px;}
.y7b{bottom:689.145000px;}
.y17{bottom:694.005000px;}
.y4d{bottom:707.145000px;}
.y7a{bottom:708.945000px;}
.y16{bottom:713.805000px;}
.y4c{bottom:726.945000px;}
.y79{bottom:728.925000px;}
.y15{bottom:733.605000px;}
.y4b{bottom:746.925000px;}
.y78{bottom:748.365000px;}
.y14{bottom:753.405000px;}
.y4a{bottom:766.725000px;}
.y13{bottom:773.385000px;}
.y77{bottom:777.525000px;}
.y49{bottom:786.525000px;}
.y12{bottom:793.185000px;}
.y76{bottom:797.325000px;}
.y48{bottom:806.325000px;}
.y11{bottom:812.985000px;}
.y75{bottom:817.125000px;}
.y47{bottom:826.125000px;}
.y10{bottom:832.785000px;}
.y74{bottom:837.105000px;}
.y46{bottom:846.105000px;}
.yf{bottom:852.585000px;}
.y73{bottom:856.905000px;}
.y45{bottom:865.905000px;}
.ye{bottom:872.565000px;}
.y72{bottom:876.705000px;}
.y44{bottom:885.750000px;}
.yd{bottom:892.410000px;}
.y71{bottom:896.550000px;}
.y43{bottom:905.550000px;}
.yc{bottom:914.370000px;}
.y70{bottom:916.350000px;}
.y42{bottom:925.350000px;}
.y6f{bottom:935.970000px;}
.yb{bottom:939.570000px;}
.y41{bottom:945.330000px;}
.ya{bottom:954.510000px;}
.y40{bottom:965.130000px;}
.y9{bottom:975.930000px;}
.y3f{bottom:984.570000px;}
.y6e{bottom:984.930000px;}
.y8{bottom:998.970000px;}
.y3e{bottom:1004.730000px;}
.y3d{bottom:1024.530000px;}
.y7{bottom:1030.830000px;}
.y3c{bottom:1044.510000px;}
.y3b{bottom:1064.310000px;}
.y5{bottom:1069.710000px;}
.y3a{bottom:1084.110000px;}
.y4{bottom:1100.490000px;}
.y39{bottom:1103.910000px;}
.y38{bottom:1123.710000px;}
.y3{bottom:1131.450000px;}
.y37{bottom:1143.720000px;}
.y2{bottom:1162.260000px;}
.y36{bottom:1172.880000px;}
.y1{bottom:1193.220000px;}
.y35{bottom:1194.660000px;}
.hf{height:17.100000px;}
.he{height:34.380000px;}
.h8{height:37.771172px;}
.ha{height:41.726953px;}
.h9{height:42.164648px;}
.hd{height:46.736719px;}
.hc{height:48.027656px;}
.h10{height:49.255313px;}
.h6{height:58.651172px;}
.h11{height:59.614102px;}
.hb{height:60.226875px;}
.h12{height:61.423863px;}
.h3{height:65.010937px;}
.h7{height:66.757500px;}
.h4{height:67.565039px;}
.h2{height:72.562500px;}
.h5{height:96.508125px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w5{width:41.796000px;}
.w3{width:62.676000px;}
.w4{width:95.040000px;}
.w8{width:121.716000px;}
.w7{width:125.316000px;}
.w6{width:127.800000px;}
.w9{width:140.436000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x9{left:-9.000000px;}
.xc{left:-7.920000px;}
.x0{left:0.000000px;}
.xf{left:5.939987px;}
.x1{left:54.179987px;}
.xd{left:80.999987px;}
.x4{left:86.760000px;}
.x3{left:96.515987px;}
.xe{left:108.035987px;}
.x5{left:150.150000px;}
.x6{left:245.910000px;}
.x7{left:288.435000px;}
.x8{left:416.955000px;}
.xa{left:542.985000px;}
.xb{left:665.430000px;}
.x2{left:795.779987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:18.560000pt;}
.v1{vertical-align:21.120000pt;}
.lsd{letter-spacing:-1.738667pt;}
.lsb{letter-spacing:-1.376000pt;}
.lsf{letter-spacing:-1.232000pt;}
.lsc{letter-spacing:-0.960000pt;}
.lse{letter-spacing:-0.736000pt;}
.ls12{letter-spacing:-0.688000pt;}
.ls10{letter-spacing:-0.592000pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls15{letter-spacing:-0.409067pt;}
.ls8{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.271467pt;}
.ls5{letter-spacing:-0.185067pt;}
.ls13{letter-spacing:-0.094933pt;}
.ls3{letter-spacing:0.000000pt;}
.ls11{letter-spacing:0.094933pt;}
.ls14{letter-spacing:0.136533pt;}
.ls1{letter-spacing:0.160000pt;}
.ls7{letter-spacing:0.230933pt;}
.lsa{letter-spacing:0.233067pt;}
.ls6{letter-spacing:0.320000pt;}
.ls17{letter-spacing:0.544000pt;}
.ls2{letter-spacing:0.800000pt;}
.ls0{letter-spacing:1.344000pt;}
.ls18{letter-spacing:10.192640pt;}
.ls16{letter-spacing:37.072640pt;}
.ws0{word-spacing:-14.448533pt;}
.wse{word-spacing:-13.824000pt;}
.ws3{word-spacing:-13.600000pt;}
.ws4{word-spacing:-13.280000pt;}
.wsc{word-spacing:-13.185067pt;}
.wsd{word-spacing:-12.870933pt;}
.wsb{word-spacing:-12.688000pt;}
.ws9{word-spacing:-12.544000pt;}
.ws7{word-spacing:-12.320000pt;}
.wsa{word-spacing:-12.048000pt;}
.ws6{word-spacing:-11.904000pt;}
.ws8{word-spacing:-11.541333pt;}
.ws1{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws5{word-spacing:0.000000pt;}
._5{margin-left:-2462.491947pt;}
._9{margin-left:-1402.728960pt;}
._6{margin-left:-1247.027200pt;}
._8{margin-left:-827.527040pt;}
._d{margin-left:-641.088640pt;}
._e{margin-left:-616.065920pt;}
._18{margin-left:-529.440000pt;}
._19{margin-left:-514.809600pt;}
._a{margin-left:-511.047040pt;}
._15{margin-left:-478.826347pt;}
._1c{margin-left:-435.674880pt;}
._1b{margin-left:-422.506667pt;}
._16{margin-left:-380.545920pt;}
._f{margin-left:-191.360000pt;}
._13{margin-left:-154.880000pt;}
._14{margin-left:-141.944320pt;}
._b{margin-left:-132.480000pt;}
._c{margin-left:-127.466667pt;}
._10{margin-left:-117.760000pt;}
._12{margin-left:-116.111360pt;}
._11{margin-left:-115.200000pt;}
._17{margin-left:-58.880000pt;}
._1a{margin-left:-44.160000pt;}
._7{margin-left:-7.301120pt;}
._2a{margin-left:-5.948160pt;}
._4{margin-left:-4.507733pt;}
._20{margin-left:-3.234560pt;}
._1{margin-left:-2.174080pt;}
._2{margin-left:-0.960640pt;}
._0{width:1.213440pt;}
._3{width:2.376320pt;}
._21{width:3.827200pt;}
._1f{width:5.041067pt;}
._28{width:6.384640pt;}
._1e{width:7.344640pt;}
._1d{width:8.341760pt;}
._25{width:9.349120pt;}
._22{width:10.517760pt;}
._2b{width:11.479680pt;}
._26{width:12.423680pt;}
._27{width:13.425493pt;}
._2c{width:14.796800pt;}
._29{width:16.160000pt;}
._23{width:17.635840pt;}
._24{width:18.752213pt;}
.fs6{font-size:34.560000pt;}
.fs5{font-size:37.120000pt;}
.fs1{font-size:50.560000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs3{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y58{bottom:3.200000pt;}
.y57{bottom:18.560000pt;}
.y6{bottom:53.280000pt;}
.yb1{bottom:81.920000pt;}
.y6d{bottom:87.040000pt;}
.y34{bottom:95.520000pt;}
.yb0{bottom:99.520000pt;}
.y6c{bottom:104.640000pt;}
.y97{bottom:110.880000pt;}
.y33{bottom:113.152000pt;}
.yaf{bottom:117.152000pt;}
.y6b{bottom:122.272000pt;}
.y96{bottom:128.512000pt;}
.y32{bottom:130.752000pt;}
.yae{bottom:134.906667pt;}
.y6a{bottom:139.866667pt;}
.y95{bottom:146.106667pt;}
.y31{bottom:148.346667pt;}
.yad{bottom:152.506667pt;}
.y69{bottom:157.466667pt;}
.y94{bottom:163.706667pt;}
.y30{bottom:165.946667pt;}
.yac{bottom:170.106667pt;}
.y68{bottom:175.226667pt;}
.y93{bottom:181.306667pt;}
.y2f{bottom:183.546667pt;}
.yab{bottom:187.706667pt;}
.y67{bottom:192.826667pt;}
.y92{bottom:199.066667pt;}
.y2e{bottom:201.306667pt;}
.yaa{bottom:205.306667pt;}
.y66{bottom:210.426667pt;}
.y91{bottom:216.666667pt;}
.y2d{bottom:218.906667pt;}
.ya9{bottom:223.066667pt;}
.y65{bottom:227.706667pt;}
.y90{bottom:234.266667pt;}
.y2c{bottom:236.506667pt;}
.ya8{bottom:240.666667pt;}
.y8f{bottom:251.866667pt;}
.y64{bottom:253.626667pt;}
.y2b{bottom:254.106667pt;}
.ya7{bottom:258.266667pt;}
.y8e{bottom:269.466667pt;}
.y63{bottom:271.386667pt;}
.y2a{bottom:271.706667pt;}
.ya6{bottom:275.866667pt;}
.y8d{bottom:287.226667pt;}
.y62{bottom:288.986667pt;}
.y29{bottom:289.466667pt;}
.ya5{bottom:293.146667pt;}
.y8c{bottom:304.826667pt;}
.y61{bottom:306.586667pt;}
.y28{bottom:307.066667pt;}
.ya4{bottom:311.226667pt;}
.y8b{bottom:322.106667pt;}
.y60{bottom:324.186667pt;}
.y27{bottom:324.666667pt;}
.ya3{bottom:328.826667pt;}
.y8a{bottom:340.066667pt;}
.y5f{bottom:341.826667pt;}
.y26{bottom:342.306667pt;}
.ya2{bottom:346.466667pt;}
.y5e{bottom:354.786667pt;}
.y89{bottom:357.666667pt;}
.y25{bottom:359.906667pt;}
.ya1{bottom:364.066667pt;}
.y5d{bottom:370.786667pt;}
.y88{bottom:375.426667pt;}
.y24{bottom:377.666667pt;}
.ya0{bottom:381.666667pt;}
.y5c{bottom:386.786667pt;}
.y87{bottom:393.026667pt;}
.y23{bottom:395.266667pt;}
.y9f{bottom:399.106667pt;}
.y5b{bottom:402.786667pt;}
.y86{bottom:410.626667pt;}
.y22{bottom:412.866667pt;}
.y9e{bottom:417.026667pt;}
.y5a{bottom:418.786667pt;}
.y85{bottom:428.226667pt;}
.y21{bottom:430.466667pt;}
.y9d{bottom:434.626667pt;}
.y59{bottom:434.786667pt;}
.y84{bottom:445.826667pt;}
.y20{bottom:448.066667pt;}
.y56{bottom:450.786667pt;}
.y9c{bottom:452.226667pt;}
.y83{bottom:463.586667pt;}
.y1f{bottom:465.826667pt;}
.y9b{bottom:469.506667pt;}
.y82{bottom:481.186667pt;}
.y1e{bottom:483.106667pt;}
.y55{bottom:487.266667pt;}
.y9a{bottom:487.586667pt;}
.y81{bottom:498.786667pt;}
.y1d{bottom:501.026667pt;}
.y54{bottom:505.186667pt;}
.y80{bottom:516.066667pt;}
.y1c{bottom:520.706667pt;}
.y53{bottom:522.786667pt;}
.y52{bottom:540.386667pt;}
.y7f{bottom:541.986667pt;}
.y1b{bottom:546.306667pt;}
.y99{bottom:557.666667pt;}
.y51{bottom:557.986667pt;}
.y7e{bottom:559.746667pt;}
.y1a{bottom:563.933333pt;}
.y50{bottom:575.773333pt;}
.y7d{bottom:577.373333pt;}
.y19{bottom:581.533333pt;}
.y4f{bottom:593.053333pt;}
.y98{bottom:593.373333pt;}
.y7c{bottom:594.973333pt;}
.y18{bottom:599.293333pt;}
.y4e{bottom:610.973333pt;}
.y7b{bottom:612.573333pt;}
.y17{bottom:616.893333pt;}
.y4d{bottom:628.573333pt;}
.y7a{bottom:630.173333pt;}
.y16{bottom:634.493333pt;}
.y4c{bottom:646.173333pt;}
.y79{bottom:647.933333pt;}
.y15{bottom:652.093333pt;}
.y4b{bottom:663.933333pt;}
.y78{bottom:665.213333pt;}
.y14{bottom:669.693333pt;}
.y4a{bottom:681.533333pt;}
.y13{bottom:687.453333pt;}
.y77{bottom:691.133333pt;}
.y49{bottom:699.133333pt;}
.y12{bottom:705.053333pt;}
.y76{bottom:708.733333pt;}
.y48{bottom:716.733333pt;}
.y11{bottom:722.653333pt;}
.y75{bottom:726.333333pt;}
.y47{bottom:734.333333pt;}
.y10{bottom:740.253333pt;}
.y74{bottom:744.093333pt;}
.y46{bottom:752.093333pt;}
.yf{bottom:757.853333pt;}
.y73{bottom:761.693333pt;}
.y45{bottom:769.693333pt;}
.ye{bottom:775.613333pt;}
.y72{bottom:779.293333pt;}
.y44{bottom:787.333333pt;}
.yd{bottom:793.253333pt;}
.y71{bottom:796.933333pt;}
.y43{bottom:804.933333pt;}
.yc{bottom:812.773333pt;}
.y70{bottom:814.533333pt;}
.y42{bottom:822.533333pt;}
.y6f{bottom:831.973333pt;}
.yb{bottom:835.173333pt;}
.y41{bottom:840.293333pt;}
.ya{bottom:848.453333pt;}
.y40{bottom:857.893333pt;}
.y9{bottom:867.493333pt;}
.y3f{bottom:875.173333pt;}
.y6e{bottom:875.493333pt;}
.y8{bottom:887.973333pt;}
.y3e{bottom:893.093333pt;}
.y3d{bottom:910.693333pt;}
.y7{bottom:916.293333pt;}
.y3c{bottom:928.453333pt;}
.y3b{bottom:946.053333pt;}
.y5{bottom:950.853333pt;}
.y3a{bottom:963.653333pt;}
.y4{bottom:978.213333pt;}
.y39{bottom:981.253333pt;}
.y38{bottom:998.853333pt;}
.y3{bottom:1005.733333pt;}
.y37{bottom:1016.640000pt;}
.y2{bottom:1033.120000pt;}
.y36{bottom:1042.560000pt;}
.y1{bottom:1060.640000pt;}
.y35{bottom:1061.920000pt;}
.hf{height:15.200000pt;}
.he{height:30.560000pt;}
.h8{height:33.574375pt;}
.ha{height:37.090625pt;}
.h9{height:37.479688pt;}
.hd{height:41.543750pt;}
.hc{height:42.691250pt;}
.h10{height:43.782500pt;}
.h6{height:52.134375pt;}
.h11{height:52.990313pt;}
.hb{height:53.535000pt;}
.h12{height:54.598989pt;}
.h3{height:57.787500pt;}
.h7{height:59.340000pt;}
.h4{height:60.057813pt;}
.h2{height:64.500000pt;}
.h5{height:85.785000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w5{width:37.152000pt;}
.w3{width:55.712000pt;}
.w4{width:84.480000pt;}
.w8{width:108.192000pt;}
.w7{width:111.392000pt;}
.w6{width:113.600000pt;}
.w9{width:124.832000pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x9{left:-8.000000pt;}
.xc{left:-7.040000pt;}
.x0{left:0.000000pt;}
.xf{left:5.279988pt;}
.x1{left:48.159988pt;}
.xd{left:71.999988pt;}
.x4{left:77.120000pt;}
.x3{left:85.791988pt;}
.xe{left:96.031988pt;}
.x5{left:133.466667pt;}
.x6{left:218.586667pt;}
.x7{left:256.386667pt;}
.x8{left:370.626667pt;}
.xa{left:482.653333pt;}
.xb{left:591.493333pt;}
.x2{left:707.359988pt;}
}




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