
    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_2f4b1c632141ac265ccb188e.woff')format("woff");}.ff1{font-family:ff1;line-height:0.924805;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_2e51fd856762aea4d571cbb3.woff')format("woff");}.ff2{font-family:ff2;line-height:1.074219;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_5ed9253d8815b03f02ce3f87.woff')format("woff");}.ff3{font-family:ff3;line-height:0.906738;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_364d36bcb32799afc011ff2d.woff')format("woff");}.ff4{font-family:ff4;line-height:0.703613;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);}
.v3{vertical-align:-28.200000px;}
.v4{vertical-align:-25.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:25.800000px;}
.v2{vertical-align:28.200000px;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:72.000000px;}
.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:-27.000000px;}
.ws1{word-spacing:-18.000000px;}
.ws4{word-spacing:-16.500000px;}
.ws6{word-spacing:-15.000000px;}
.ws8{word-spacing:-13.500000px;}
.ws7{word-spacing:-10.500000px;}
.ws3{word-spacing:-9.600000px;}
.ws5{word-spacing:-0.066000px;}
.ws2{word-spacing:0.000000px;}
.wsa{word-spacing:27.000000px;}
.ws9{word-spacing:29.340000px;}
._2d{margin-left:-1946.820000px;}
._35{margin-left:-1836.972000px;}
._14{margin-left:-1775.952000px;}
._49{margin-left:-1615.872000px;}
._11{margin-left:-1570.692000px;}
._41{margin-left:-1558.800000px;}
._2b{margin-left:-1451.172000px;}
._37{margin-left:-1422.912000px;}
._1f{margin-left:-1372.932000px;}
._3f{margin-left:-1261.032000px;}
._39{margin-left:-1238.640000px;}
._4b{margin-left:-1224.900000px;}
._17{margin-left:-1204.572000px;}
._2f{margin-left:-1201.332000px;}
._3b{margin-left:-1161.192000px;}
._4f{margin-left:-1136.412000px;}
._29{margin-left:-1134.732000px;}
._31{margin-left:-1108.800000px;}
._c{margin-left:-1071.492000px;}
._27{margin-left:-1054.632000px;}
._19{margin-left:-1039.920000px;}
._3d{margin-left:-1034.712000px;}
._25{margin-left:-1014.672000px;}
._a{margin-left:-998.052000px;}
._43{margin-left:-967.992000px;}
._23{margin-left:-927.912000px;}
._45{margin-left:-911.532000px;}
._47{margin-left:-901.512000px;}
._1d{margin-left:-899.148000px;}
._4d{margin-left:-888.132000px;}
._21{margin-left:-818.172000px;}
._33{margin-left:-811.512000px;}
._5{margin-left:-7.272000px;}
._4{margin-left:-5.256000px;}
._1{margin-left:-4.032000px;}
._3{margin-left:-2.592000px;}
._0{margin-left:-1.368000px;}
._2{width:1.956000px;}
._1c{width:42.000000px;}
._1b{width:72.000000px;}
._13{width:99.420000px;}
._10{width:353.148000px;}
._16{width:405.618000px;}
._e{width:520.524000px;}
._7{width:542.766000px;}
._8{width:561.648000px;}
._f{width:570.192000px;}
._9{width:592.068000px;}
._6{width:709.842000px;}
._34{width:782.040000px;}
._22{width:788.640000px;}
._4e{width:858.540000px;}
._1e{width:868.440000px;}
._48{width:872.040000px;}
._46{width:881.940000px;}
._24{width:898.440000px;}
._44{width:938.340000px;}
._b{width:968.640000px;}
._26{width:985.140000px;}
._3e{width:1005.240000px;}
._1a{width:1009.740000px;}
._28{width:1025.040000px;}
._d{width:1041.840000px;}
._32{width:1079.640000px;}
._2a{width:1105.140000px;}
._50{width:1106.940000px;}
._3c{width:1131.840000px;}
._30{width:1171.740000px;}
._18{width:1175.040000px;}
._4c{width:1196.040000px;}
._3a{width:1209.540000px;}
._40{width:1230.840000px;}
._20{width:1343.640000px;}
._38{width:1393.740000px;}
._2c{width:1421.340000px;}
._42{width:1529.340000px;}
._12{width:1541.640000px;}
._4a{width:1586.640000px;}
._15{width:1746.840000px;}
._36{width:1808.340000px;}
._2e{width:1918.440000px;}
.fc1{color:rgb(0,0,128);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:38.400000px;}
.fs5{font-size:42.000000px;}
.fs6{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs2{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.042000px;}
.y23{bottom:54.841500px;}
.y50{bottom:96.166500px;}
.y4f{bottom:113.491500px;}
.y58{bottom:117.916500px;}
.y22{bottom:126.241500px;}
.y4e{bottom:130.816500px;}
.y57{bottom:139.666500px;}
.y21{bottom:146.941500px;}
.y72{bottom:148.141500px;}
.y4d{bottom:161.416500px;}
.y71{bottom:165.466500px;}
.y20{bottom:167.641500px;}
.y70{bottom:182.791500px;}
.y4c{bottom:183.166500px;}
.y1f{bottom:188.341500px;}
.y6f{bottom:200.116500px;}
.y4b{bottom:204.916500px;}
.y1e{bottom:209.041500px;}
.y6e{bottom:217.441500px;}
.y56{bottom:226.666500px;}
.y1d{bottom:229.741500px;}
.y6d{bottom:234.766500px;}
.y4a{bottom:248.416500px;}
.y1c{bottom:250.441500px;}
.y9b{bottom:251.716500px;}
.y9c{bottom:252.091500px;}
.y9a{bottom:267.616500px;}
.y6c{bottom:269.416500px;}
.y49{bottom:270.166500px;}
.y99{bottom:284.941500px;}
.y6b{bottom:286.741500px;}
.y1b{bottom:291.841500px;}
.y48{bottom:291.916500px;}
.y98{bottom:302.266500px;}
.y6a{bottom:304.066500px;}
.y1a{bottom:312.541500px;}
.y47{bottom:313.666500px;}
.y97{bottom:319.591500px;}
.y69{bottom:321.391500px;}
.y19{bottom:333.241500px;}
.y46{bottom:335.416500px;}
.y96{bottom:336.916500px;}
.y18{bottom:353.941500px;}
.y95{bottom:354.241500px;}
.y45{bottom:357.166500px;}
.y44{bottom:378.916500px;}
.y94{bottom:396.541500px;}
.y43{bottom:400.666500px;}
.y93{bottom:418.291500px;}
.y42{bottom:422.416500px;}
.y92{bottom:440.041500px;}
.y41{bottom:444.166500px;}
.y17{bottom:449.041500px;}
.y91{bottom:461.791500px;}
.y40{bottom:465.916500px;}
.y16{bottom:472.816500px;}
.y90{bottom:483.541500px;}
.y55{bottom:487.666500px;}
.y15{bottom:496.591500px;}
.y8f{bottom:505.291500px;}
.y3f{bottom:509.416500px;}
.y14{bottom:520.366500px;}
.y8e{bottom:527.041500px;}
.y3e{bottom:531.166500px;}
.y68{bottom:540.841500px;}
.y13{bottom:544.141500px;}
.y8d{bottom:548.791500px;}
.y3d{bottom:552.916500px;}
.y67{bottom:564.616500px;}
.y12{bottom:567.916500px;}
.y8c{bottom:570.541500px;}
.y3c{bottom:574.666500px;}
.y66{bottom:588.391500px;}
.y11{bottom:591.691500px;}
.y8b{bottom:592.291500px;}
.y3b{bottom:596.416500px;}
.y65{bottom:612.166500px;}
.y8a{bottom:614.041500px;}
.y10{bottom:615.466500px;}
.y3a{bottom:618.166500px;}
.y89{bottom:635.791500px;}
.yf{bottom:639.241500px;}
.y39{bottom:639.916500px;}
.y88{bottom:657.541500px;}
.y64{bottom:659.716500px;}
.y38{bottom:661.666500px;}
.y87{bottom:679.291500px;}
.y37{bottom:683.416500px;}
.y63{bottom:683.491500px;}
.ye{bottom:686.791500px;}
.y86{bottom:701.041500px;}
.y54{bottom:705.166500px;}
.y62{bottom:707.266500px;}
.y85{bottom:722.791500px;}
.y36{bottom:726.916500px;}
.y84{bottom:744.541500px;}
.y35{bottom:748.666500px;}
.y61{bottom:754.816500px;}
.yd{bottom:758.116500px;}
.y83{bottom:766.291500px;}
.y34{bottom:770.416500px;}
.yc{bottom:781.891500px;}
.y82{bottom:788.041500px;}
.y33{bottom:792.166500px;}
.yb{bottom:805.666500px;}
.y81{bottom:809.791500px;}
.y32{bottom:813.916500px;}
.ya{bottom:829.441500px;}
.y80{bottom:831.541500px;}
.y31{bottom:835.666500px;}
.y7f{bottom:853.291500px;}
.y53{bottom:857.416500px;}
.y7e{bottom:875.041500px;}
.y9{bottom:876.991500px;}
.y30{bottom:879.166500px;}
.y7d{bottom:896.791500px;}
.y8{bottom:900.766500px;}
.y2f{bottom:900.916500px;}
.y7c{bottom:918.541500px;}
.y2e{bottom:922.666500px;}
.y7{bottom:924.541500px;}
.y7b{bottom:940.291500px;}
.y60{bottom:941.116500px;}
.y2d{bottom:944.416500px;}
.y6{bottom:948.316500px;}
.y7a{bottom:962.041500px;}
.y2c{bottom:966.166500px;}
.y5f{bottom:972.166500px;}
.y2b{bottom:987.916500px;}
.y5e{bottom:1003.216500px;}
.y79{bottom:1006.441500px;}
.y2a{bottom:1009.666500px;}
.y78{bottom:1024.291500px;}
.y29{bottom:1031.416500px;}
.y5d{bottom:1034.266500px;}
.y77{bottom:1042.141500px;}
.y5{bottom:1043.416500px;}
.y28{bottom:1053.166500px;}
.y76{bottom:1059.991500px;}
.y5c{bottom:1065.316500px;}
.y4{bottom:1067.191500px;}
.y52{bottom:1074.916500px;}
.y75{bottom:1075.516500px;}
.y74{bottom:1093.366500px;}
.y5b{bottom:1096.366500px;}
.y27{bottom:1096.666500px;}
.y26{bottom:1118.416500px;}
.y5a{bottom:1127.416500px;}
.y73{bottom:1134.691500px;}
.y3{bottom:1138.141500px;}
.y25{bottom:1140.166500px;}
.y51{bottom:1161.916500px;}
.y2{bottom:1173.841500px;}
.y59{bottom:1182.241500px;}
.y24{bottom:1183.666500px;}
.h8{height:45.793945px;}
.hc{height:46.353516px;}
.h9{height:50.695312px;}
.h6{height:51.503906px;}
.h5{height:56.654297px;}
.hb{height:57.772266px;}
.h7{height:58.762500px;}
.h4{height:61.804688px;}
.ha{height:64.252734px;}
.h3{height:76.042969px;}
.h2{height:1262.791500px;}
.h0{height:1262.834646px;}
.h1{height:1263.000000px;}
.w2{width:892.912500px;}
.w0{width:892.955906px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1{left:59.700000px;}
.x5{left:76.575000px;}
.x4{left:85.200000px;}
.x2{left:102.225000px;}
.x8{left:437.625000px;}
.x3{left:442.125000px;}
.x6{left:453.000000px;}
.x7{left:469.875000px;}
@media print{
.v3{vertical-align:-25.066667pt;}
.v4{vertical-align:-22.933333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:22.933333pt;}
.v2{vertical-align:25.066667pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:64.000000pt;}
.ws0{word-spacing:-24.000000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws4{word-spacing:-14.666667pt;}
.ws6{word-spacing:-13.333333pt;}
.ws8{word-spacing:-12.000000pt;}
.ws7{word-spacing:-9.333333pt;}
.ws3{word-spacing:-8.533333pt;}
.ws5{word-spacing:-0.058667pt;}
.ws2{word-spacing:0.000000pt;}
.wsa{word-spacing:24.000000pt;}
.ws9{word-spacing:26.080000pt;}
._2d{margin-left:-1730.506667pt;}
._35{margin-left:-1632.864000pt;}
._14{margin-left:-1578.624000pt;}
._49{margin-left:-1436.330667pt;}
._11{margin-left:-1396.170667pt;}
._41{margin-left:-1385.600000pt;}
._2b{margin-left:-1289.930667pt;}
._37{margin-left:-1264.810667pt;}
._1f{margin-left:-1220.384000pt;}
._3f{margin-left:-1120.917333pt;}
._39{margin-left:-1101.013333pt;}
._4b{margin-left:-1088.800000pt;}
._17{margin-left:-1070.730667pt;}
._2f{margin-left:-1067.850667pt;}
._3b{margin-left:-1032.170667pt;}
._4f{margin-left:-1010.144000pt;}
._29{margin-left:-1008.650667pt;}
._31{margin-left:-985.600000pt;}
._c{margin-left:-952.437333pt;}
._27{margin-left:-937.450667pt;}
._19{margin-left:-924.373333pt;}
._3d{margin-left:-919.744000pt;}
._25{margin-left:-901.930667pt;}
._a{margin-left:-887.157333pt;}
._43{margin-left:-860.437333pt;}
._23{margin-left:-824.810667pt;}
._45{margin-left:-810.250667pt;}
._47{margin-left:-801.344000pt;}
._1d{margin-left:-799.242667pt;}
._4d{margin-left:-789.450667pt;}
._21{margin-left:-727.264000pt;}
._33{margin-left:-721.344000pt;}
._5{margin-left:-6.464000pt;}
._4{margin-left:-4.672000pt;}
._1{margin-left:-3.584000pt;}
._3{margin-left:-2.304000pt;}
._0{margin-left:-1.216000pt;}
._2{width:1.738667pt;}
._1c{width:37.333333pt;}
._1b{width:64.000000pt;}
._13{width:88.373333pt;}
._10{width:313.909333pt;}
._16{width:360.549333pt;}
._e{width:462.688000pt;}
._7{width:482.458667pt;}
._8{width:499.242667pt;}
._f{width:506.837333pt;}
._9{width:526.282667pt;}
._6{width:630.970667pt;}
._34{width:695.146667pt;}
._22{width:701.013333pt;}
._4e{width:763.146667pt;}
._1e{width:771.946667pt;}
._48{width:775.146667pt;}
._46{width:783.946667pt;}
._24{width:798.613333pt;}
._44{width:834.080000pt;}
._b{width:861.013333pt;}
._26{width:875.680000pt;}
._3e{width:893.546667pt;}
._1a{width:897.546667pt;}
._28{width:911.146667pt;}
._d{width:926.080000pt;}
._32{width:959.680000pt;}
._2a{width:982.346667pt;}
._50{width:983.946667pt;}
._3c{width:1006.080000pt;}
._30{width:1041.546667pt;}
._18{width:1044.480000pt;}
._4c{width:1063.146667pt;}
._3a{width:1075.146667pt;}
._40{width:1094.080000pt;}
._20{width:1194.346667pt;}
._38{width:1238.880000pt;}
._2c{width:1263.413333pt;}
._42{width:1359.413333pt;}
._12{width:1370.346667pt;}
._4a{width:1410.346667pt;}
._15{width:1552.746667pt;}
._36{width:1607.413333pt;}
._2e{width:1705.280000pt;}
.fs3{font-size:34.133333pt;}
.fs5{font-size:37.333333pt;}
.fs6{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs2{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.037333pt;}
.y23{bottom:48.748000pt;}
.y50{bottom:85.481333pt;}
.y4f{bottom:100.881333pt;}
.y58{bottom:104.814667pt;}
.y22{bottom:112.214667pt;}
.y4e{bottom:116.281333pt;}
.y57{bottom:124.148000pt;}
.y21{bottom:130.614667pt;}
.y72{bottom:131.681333pt;}
.y4d{bottom:143.481333pt;}
.y71{bottom:147.081333pt;}
.y20{bottom:149.014667pt;}
.y70{bottom:162.481333pt;}
.y4c{bottom:162.814667pt;}
.y1f{bottom:167.414667pt;}
.y6f{bottom:177.881333pt;}
.y4b{bottom:182.148000pt;}
.y1e{bottom:185.814667pt;}
.y6e{bottom:193.281333pt;}
.y56{bottom:201.481333pt;}
.y1d{bottom:204.214667pt;}
.y6d{bottom:208.681333pt;}
.y4a{bottom:220.814667pt;}
.y1c{bottom:222.614667pt;}
.y9b{bottom:223.748000pt;}
.y9c{bottom:224.081333pt;}
.y9a{bottom:237.881333pt;}
.y6c{bottom:239.481333pt;}
.y49{bottom:240.148000pt;}
.y99{bottom:253.281333pt;}
.y6b{bottom:254.881333pt;}
.y1b{bottom:259.414667pt;}
.y48{bottom:259.481333pt;}
.y98{bottom:268.681333pt;}
.y6a{bottom:270.281333pt;}
.y1a{bottom:277.814667pt;}
.y47{bottom:278.814667pt;}
.y97{bottom:284.081333pt;}
.y69{bottom:285.681333pt;}
.y19{bottom:296.214667pt;}
.y46{bottom:298.148000pt;}
.y96{bottom:299.481333pt;}
.y18{bottom:314.614667pt;}
.y95{bottom:314.881333pt;}
.y45{bottom:317.481333pt;}
.y44{bottom:336.814667pt;}
.y94{bottom:352.481333pt;}
.y43{bottom:356.148000pt;}
.y93{bottom:371.814667pt;}
.y42{bottom:375.481333pt;}
.y92{bottom:391.148000pt;}
.y41{bottom:394.814667pt;}
.y17{bottom:399.148000pt;}
.y91{bottom:410.481333pt;}
.y40{bottom:414.148000pt;}
.y16{bottom:420.281333pt;}
.y90{bottom:429.814667pt;}
.y55{bottom:433.481333pt;}
.y15{bottom:441.414667pt;}
.y8f{bottom:449.148000pt;}
.y3f{bottom:452.814667pt;}
.y14{bottom:462.548000pt;}
.y8e{bottom:468.481333pt;}
.y3e{bottom:472.148000pt;}
.y68{bottom:480.748000pt;}
.y13{bottom:483.681333pt;}
.y8d{bottom:487.814667pt;}
.y3d{bottom:491.481333pt;}
.y67{bottom:501.881333pt;}
.y12{bottom:504.814667pt;}
.y8c{bottom:507.148000pt;}
.y3c{bottom:510.814667pt;}
.y66{bottom:523.014667pt;}
.y11{bottom:525.948000pt;}
.y8b{bottom:526.481333pt;}
.y3b{bottom:530.148000pt;}
.y65{bottom:544.148000pt;}
.y8a{bottom:545.814667pt;}
.y10{bottom:547.081333pt;}
.y3a{bottom:549.481333pt;}
.y89{bottom:565.148000pt;}
.yf{bottom:568.214667pt;}
.y39{bottom:568.814667pt;}
.y88{bottom:584.481333pt;}
.y64{bottom:586.414667pt;}
.y38{bottom:588.148000pt;}
.y87{bottom:603.814667pt;}
.y37{bottom:607.481333pt;}
.y63{bottom:607.548000pt;}
.ye{bottom:610.481333pt;}
.y86{bottom:623.148000pt;}
.y54{bottom:626.814667pt;}
.y62{bottom:628.681333pt;}
.y85{bottom:642.481333pt;}
.y36{bottom:646.148000pt;}
.y84{bottom:661.814667pt;}
.y35{bottom:665.481333pt;}
.y61{bottom:670.948000pt;}
.yd{bottom:673.881333pt;}
.y83{bottom:681.148000pt;}
.y34{bottom:684.814667pt;}
.yc{bottom:695.014667pt;}
.y82{bottom:700.481333pt;}
.y33{bottom:704.148000pt;}
.yb{bottom:716.148000pt;}
.y81{bottom:719.814667pt;}
.y32{bottom:723.481333pt;}
.ya{bottom:737.281333pt;}
.y80{bottom:739.148000pt;}
.y31{bottom:742.814667pt;}
.y7f{bottom:758.481333pt;}
.y53{bottom:762.148000pt;}
.y7e{bottom:777.814667pt;}
.y9{bottom:779.548000pt;}
.y30{bottom:781.481333pt;}
.y7d{bottom:797.148000pt;}
.y8{bottom:800.681333pt;}
.y2f{bottom:800.814667pt;}
.y7c{bottom:816.481333pt;}
.y2e{bottom:820.148000pt;}
.y7{bottom:821.814667pt;}
.y7b{bottom:835.814667pt;}
.y60{bottom:836.548000pt;}
.y2d{bottom:839.481333pt;}
.y6{bottom:842.948000pt;}
.y7a{bottom:855.148000pt;}
.y2c{bottom:858.814667pt;}
.y5f{bottom:864.148000pt;}
.y2b{bottom:878.148000pt;}
.y5e{bottom:891.748000pt;}
.y79{bottom:894.614667pt;}
.y2a{bottom:897.481333pt;}
.y78{bottom:910.481333pt;}
.y29{bottom:916.814667pt;}
.y5d{bottom:919.348000pt;}
.y77{bottom:926.348000pt;}
.y5{bottom:927.481333pt;}
.y28{bottom:936.148000pt;}
.y76{bottom:942.214667pt;}
.y5c{bottom:946.948000pt;}
.y4{bottom:948.614667pt;}
.y52{bottom:955.481333pt;}
.y75{bottom:956.014667pt;}
.y74{bottom:971.881333pt;}
.y5b{bottom:974.548000pt;}
.y27{bottom:974.814667pt;}
.y26{bottom:994.148000pt;}
.y5a{bottom:1002.148000pt;}
.y73{bottom:1008.614667pt;}
.y3{bottom:1011.681333pt;}
.y25{bottom:1013.481333pt;}
.y51{bottom:1032.814667pt;}
.y2{bottom:1043.414667pt;}
.y59{bottom:1050.881333pt;}
.y24{bottom:1052.148000pt;}
.h8{height:40.705729pt;}
.hc{height:41.203125pt;}
.h9{height:45.062500pt;}
.h6{height:45.781250pt;}
.h5{height:50.359375pt;}
.hb{height:51.353125pt;}
.h7{height:52.233333pt;}
.h4{height:54.937500pt;}
.ha{height:57.113542pt;}
.h3{height:67.593750pt;}
.h2{height:1122.481333pt;}
.h0{height:1122.519685pt;}
.h1{height:1122.666667pt;}
.w2{width:793.700000pt;}
.w0{width:793.738583pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1{left:53.066667pt;}
.x5{left:68.066667pt;}
.x4{left:75.733333pt;}
.x2{left:90.866667pt;}
.x8{left:389.000000pt;}
.x3{left:393.000000pt;}
.x6{left:402.666667pt;}
.x7{left:417.666667pt;}
}




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