
    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_b96cd3315ad3aeb5dc0bc0ef.woff2')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_ee797f0263bb00120bf37761.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_65d5e2ff9e743c908ec5920f.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.120605;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_fb98a134b92f69f15d8cf47c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_ceb282f5cd2581ee6523e573.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_7781b615dc5238e80daa3233.woff2')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_9ba0bf2354f7b713f011ec1b.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.739746;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;}
.lsb{letter-spacing:-0.648000px;}
.ls5{letter-spacing:-0.600000px;}
.lsa{letter-spacing:-0.552000px;}
.ls4{letter-spacing:0.000000px;}
.ls1{letter-spacing:0.138000px;}
.ls8{letter-spacing:0.492000px;}
.ls10{letter-spacing:0.504000px;}
.ls2{letter-spacing:0.600000px;}
.lsd{letter-spacing:0.660000px;}
.ls0{letter-spacing:0.732000px;}
.ls11{letter-spacing:1.200000px;}
.lsf{letter-spacing:1.800000px;}
.ls3{letter-spacing:3.000000px;}
.lse{letter-spacing:16.452000px;}
.ls7{letter-spacing:23.460000px;}
.ls9{letter-spacing:25.860000px;}
.ls6{letter-spacing:59.580000px;}
.lsc{letter-spacing:95.652000px;}
.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;}
}
.ws6{word-spacing:-22.200000px;}
.ws0{word-spacing:-21.000000px;}
.ws2{word-spacing:-20.448000px;}
.ws3{word-spacing:-20.352000px;}
.ws5{word-spacing:-15.054000px;}
.ws4{word-spacing:-15.000000px;}
.ws1{word-spacing:0.000000px;}
._1a{margin-left:-4.854000px;}
._17{margin-left:-3.852000px;}
._f{margin-left:-2.664000px;}
._1{margin-left:-1.344000px;}
._0{width:1.092000px;}
._2{width:2.280000px;}
._3{width:3.300000px;}
._5{width:4.368000px;}
._4{width:5.544000px;}
._24{width:6.720000px;}
._19{width:7.728000px;}
._14{width:9.240000px;}
._2e{width:10.254000px;}
._13{width:11.256000px;}
._18{width:13.104000px;}
._1e{width:14.184000px;}
._1d{width:15.372000px;}
._11{width:16.380000px;}
._12{width:17.706000px;}
._7{width:18.750000px;}
._6{width:19.824000px;}
._d{width:22.812000px;}
._c{width:24.036000px;}
._8{width:25.044000px;}
._a{width:26.088000px;}
._9{width:27.132000px;}
._1b{width:28.140000px;}
._b{width:30.240000px;}
._16{width:31.416000px;}
._1c{width:33.096000px;}
._22{width:34.356000px;}
._15{width:35.448000px;}
._30{width:37.044000px;}
._10{width:38.472000px;}
._23{width:40.236000px;}
._1f{width:41.496000px;}
._20{width:43.344000px;}
._21{width:45.324000px;}
._2a{width:46.704000px;}
._2b{width:47.712000px;}
._2d{width:48.804000px;}
._28{width:51.744000px;}
._29{width:52.836000px;}
._34{width:54.966000px;}
._35{width:56.022000px;}
._27{width:57.174000px;}
._e{width:59.040000px;}
._25{width:60.648000px;}
._31{width:72.408000px;}
._26{width:75.012000px;}
._2f{width:80.808000px;}
._32{width:92.904000px;}
._33{width:93.990000px;}
._2c{width:124.068000px;}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:39.600000px;}
.fs2{font-size:54.000000px;}
.fs4{font-size:60.000000px;}
.fs1{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y7{bottom:58.837500px;}
.y6{bottom:80.737500px;}
.y58{bottom:100.837500px;}
.y78{bottom:101.737500px;}
.y7c{bottom:106.237500px;}
.y77{bottom:107.137500px;}
.y3a{bottom:109.837500px;}
.y57{bottom:119.437500px;}
.y65{bottom:120.337500px;}
.y80{bottom:120.937500px;}
.y76{bottom:122.137500px;}
.y56{bottom:124.837500px;}
.y64{bottom:125.737500px;}
.y95{bottom:131.137500px;}
.y55{bottom:138.037500px;}
.y63{bottom:140.737500px;}
.y39{bottom:146.137500px;}
.y54{bottom:156.630000px;}
.y20{bottom:169.275000px;}
.y75{bottom:170.175000px;}
.y53{bottom:175.275000px;}
.y52{bottom:180.675000px;}
.y62{bottom:182.175000px;}
.y38{bottom:182.475000px;}
.y94{bottom:188.475000px;}
.y51{bottom:193.875000px;}
.y1f{bottom:205.275000px;}
.y74{bottom:206.475000px;}
.y50{bottom:212.475000px;}
.y61{bottom:218.475000px;}
.y93{bottom:224.775000px;}
.y98{bottom:227.775000px;}
.y37{bottom:230.775000px;}
.y4f{bottom:231.975000px;}
.y4e{bottom:237.375000px;}
.y73{bottom:242.775000px;}
.y4d{bottom:252.375000px;}
.y1e{bottom:253.575000px;}
.y60{bottom:254.775000px;}
.y92{bottom:260.775000px;}
.y36{bottom:266.775000px;}
.y97{bottom:275.775000px;}
.y72{bottom:278.775000px;}
.y1d{bottom:289.875000px;}
.y4c{bottom:290.775000px;}
.y91{bottom:297.075000px;}
.y35{bottom:303.075000px;}
.y71{bottom:315.075000px;}
.y1c{bottom:326.175000px;}
.y4a{bottom:327.075000px;}
.y90{bottom:333.375000px;}
.y4b{bottom:334.575000px;}
.y34{bottom:339.405000px;}
.y70{bottom:351.405000px;}
.y1b{bottom:362.220000px;}
.y49{bottom:363.405000px;}
.y8f{bottom:369.705000px;}
.y33{bottom:375.720000px;}
.y6f{bottom:387.705000px;}
.y48{bottom:399.705000px;}
.y8e{bottom:405.705000px;}
.y5f{bottom:407.205000px;}
.y1a{bottom:410.505000px;}
.y32{bottom:411.705000px;}
.y6d{bottom:423.705000px;}
.y6e{bottom:431.205000px;}
.y47{bottom:435.705000px;}
.y8d{bottom:442.005000px;}
.y19{bottom:446.820000px;}
.y31{bottom:448.005000px;}
.y6c{bottom:460.005000px;}
.y46{bottom:472.005000px;}
.y8c{bottom:478.320000px;}
.y30{bottom:484.320000px;}
.y18{bottom:495.105000px;}
.y6b{bottom:496.320000px;}
.y45{bottom:508.350000px;}
.y8b{bottom:514.350000px;}
.y2f{bottom:520.350000px;}
.y17{bottom:531.150000px;}
.y6a{bottom:532.350000px;}
.y7b{bottom:539.850000px;}
.y43{bottom:544.350000px;}
.y44{bottom:551.850000px;}
.y7f{bottom:556.350000px;}
.y2e{bottom:556.650000px;}
.y16{bottom:567.450000px;}
.y69{bottom:568.650000px;}
.y8a{bottom:571.650000px;}
.y42{bottom:580.650000px;}
.y7e{bottom:592.650000px;}
.y2d{bottom:592.950000px;}
.y15{bottom:603.750000px;}
.y7a{bottom:604.950000px;}
.y89{bottom:607.950000px;}
.y5e{bottom:616.950000px;}
.y41{bottom:628.950000px;}
.y2c{bottom:629.250000px;}
.y14{bottom:640.050000px;}
.y88{bottom:644.250000px;}
.y5d{bottom:653.250000px;}
.y2b{bottom:665.250000px;}
.y13{bottom:676.380000px;}
.y87{bottom:680.280000px;}
.y5c{bottom:689.280000px;}
.y40{bottom:701.280000px;}
.y2a{bottom:701.580000px;}
.y12{bottom:714.195000px;}
.y86{bottom:716.580000px;}
.y5b{bottom:725.595000px;}
.y3f{bottom:737.595000px;}
.y29{bottom:749.880000px;}
.y11{bottom:750.495000px;}
.y85{bottom:752.880000px;}
.y5a{bottom:761.880000px;}
.y3e{bottom:773.880000px;}
.y10{bottom:786.795000px;}
.y84{bottom:789.195000px;}
.y28{bottom:798.195000px;}
.y3d{bottom:810.195000px;}
.y7d{bottom:817.695000px;}
.yf{bottom:822.780000px;}
.y83{bottom:825.195000px;}
.y27{bottom:834.195000px;}
.y3c{bottom:846.225000px;}
.ye{bottom:859.125000px;}
.y82{bottom:861.525000px;}
.y59{bottom:870.525000px;}
.y79{bottom:878.025000px;}
.y26{bottom:882.525000px;}
.yd{bottom:895.125000px;}
.y81{bottom:897.825000px;}
.y68{bottom:906.825000px;}
.y25{bottom:918.825000px;}
.yc{bottom:931.425000px;}
.y67{bottom:943.125000px;}
.y24{bottom:955.125000px;}
.yb{bottom:967.425000px;}
.y66{bottom:979.125000px;}
.y23{bottom:991.125000px;}
.y3b{bottom:998.625000px;}
.ya{bottom:1003.725000px;}
.y96{bottom:1015.455000px;}
.y22{bottom:1027.455000px;}
.y9{bottom:1039.755000px;}
.y21{bottom:1063.755000px;}
.y8{bottom:1064.070000px;}
.y5{bottom:1089.570000px;}
.y4{bottom:1111.455000px;}
.y3{bottom:1137.570000px;}
.y2{bottom:1163.655000px;}
.y1{bottom:1189.800000px;}
.ha{height:27.766406px;}
.h6{height:37.863281px;}
.h7{height:39.387305px;}
.h9{height:42.070312px;}
.hb{height:49.453125px;}
.h4{height:58.898438px;}
.h2{height:59.267578px;}
.h8{height:59.677734px;}
.h3{height:65.645508px;}
.h5{height:69.234375px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w3{width:893.099973px;}
.w2{width:893.099987px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x5{left:127.537487px;}
.x19{left:132.637487px;}
.x11{left:170.129987px;}
.x1{left:246.074987px;}
.x6{left:286.574987px;}
.x12{left:288.674987px;}
.x24{left:324.404987px;}
.xf{left:336.719987px;}
.x20{left:339.119973px;}
.x18{left:343.619987px;}
.x21{left:346.019987px;}
.xa{left:384.119987px;}
.x2{left:412.904987px;}
.x13{left:417.749973px;}
.x9{left:423.749987px;}
.xb{left:428.849987px;}
.x16{left:449.249973px;}
.x17{left:456.149987px;}
.x4{left:465.749987px;}
.x7{left:471.149987px;}
.x22{left:482.549973px;}
.x23{left:489.449987px;}
.x1a{left:491.849973px;}
.x10{left:493.049987px;}
.x1b{left:498.749987px;}
.xc{left:501.149987px;}
.x8{left:513.749987px;}
.xd{left:517.349987px;}
.x3{left:537.794987px;}
.xe{left:553.379987px;}
.x1c{left:570.779973px;}
.x1d{left:577.694987px;}
.x1e{left:747.824973px;}
.x1f{left:754.724987px;}
.x14{left:822.254973px;}
.x15{left:829.169987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.lsb{letter-spacing:-0.576000pt;}
.ls5{letter-spacing:-0.533333pt;}
.lsa{letter-spacing:-0.490667pt;}
.ls4{letter-spacing:0.000000pt;}
.ls1{letter-spacing:0.122667pt;}
.ls8{letter-spacing:0.437333pt;}
.ls10{letter-spacing:0.448000pt;}
.ls2{letter-spacing:0.533333pt;}
.lsd{letter-spacing:0.586667pt;}
.ls0{letter-spacing:0.650667pt;}
.ls11{letter-spacing:1.066667pt;}
.lsf{letter-spacing:1.600000pt;}
.ls3{letter-spacing:2.666667pt;}
.lse{letter-spacing:14.624000pt;}
.ls7{letter-spacing:20.853333pt;}
.ls9{letter-spacing:22.986667pt;}
.ls6{letter-spacing:52.960000pt;}
.lsc{letter-spacing:85.024000pt;}
.ws6{word-spacing:-19.733333pt;}
.ws0{word-spacing:-18.666667pt;}
.ws2{word-spacing:-18.176000pt;}
.ws3{word-spacing:-18.090667pt;}
.ws5{word-spacing:-13.381333pt;}
.ws4{word-spacing:-13.333333pt;}
.ws1{word-spacing:0.000000pt;}
._1a{margin-left:-4.314667pt;}
._17{margin-left:-3.424000pt;}
._f{margin-left:-2.368000pt;}
._1{margin-left:-1.194667pt;}
._0{width:0.970667pt;}
._2{width:2.026667pt;}
._3{width:2.933333pt;}
._5{width:3.882667pt;}
._4{width:4.928000pt;}
._24{width:5.973333pt;}
._19{width:6.869333pt;}
._14{width:8.213333pt;}
._2e{width:9.114667pt;}
._13{width:10.005333pt;}
._18{width:11.648000pt;}
._1e{width:12.608000pt;}
._1d{width:13.664000pt;}
._11{width:14.560000pt;}
._12{width:15.738667pt;}
._7{width:16.666667pt;}
._6{width:17.621333pt;}
._d{width:20.277333pt;}
._c{width:21.365333pt;}
._8{width:22.261333pt;}
._a{width:23.189333pt;}
._9{width:24.117333pt;}
._1b{width:25.013333pt;}
._b{width:26.880000pt;}
._16{width:27.925333pt;}
._1c{width:29.418667pt;}
._22{width:30.538667pt;}
._15{width:31.509333pt;}
._30{width:32.928000pt;}
._10{width:34.197333pt;}
._23{width:35.765333pt;}
._1f{width:36.885333pt;}
._20{width:38.528000pt;}
._21{width:40.288000pt;}
._2a{width:41.514667pt;}
._2b{width:42.410667pt;}
._2d{width:43.381333pt;}
._28{width:45.994667pt;}
._29{width:46.965333pt;}
._34{width:48.858667pt;}
._35{width:49.797333pt;}
._27{width:50.821333pt;}
._e{width:52.480000pt;}
._25{width:53.909333pt;}
._31{width:64.362667pt;}
._26{width:66.677333pt;}
._2f{width:71.829333pt;}
._32{width:82.581333pt;}
._33{width:83.546667pt;}
._2c{width:110.282667pt;}
.fs3{font-size:35.200000pt;}
.fs2{font-size:48.000000pt;}
.fs4{font-size:53.333333pt;}
.fs1{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:52.300000pt;}
.y6{bottom:71.766667pt;}
.y58{bottom:89.633333pt;}
.y78{bottom:90.433333pt;}
.y7c{bottom:94.433333pt;}
.y77{bottom:95.233333pt;}
.y3a{bottom:97.633333pt;}
.y57{bottom:106.166667pt;}
.y65{bottom:106.966667pt;}
.y80{bottom:107.500000pt;}
.y76{bottom:108.566667pt;}
.y56{bottom:110.966667pt;}
.y64{bottom:111.766667pt;}
.y95{bottom:116.566667pt;}
.y55{bottom:122.700000pt;}
.y63{bottom:125.100000pt;}
.y39{bottom:129.900000pt;}
.y54{bottom:139.226667pt;}
.y20{bottom:150.466667pt;}
.y75{bottom:151.266667pt;}
.y53{bottom:155.800000pt;}
.y52{bottom:160.600000pt;}
.y62{bottom:161.933333pt;}
.y38{bottom:162.200000pt;}
.y94{bottom:167.533333pt;}
.y51{bottom:172.333333pt;}
.y1f{bottom:182.466667pt;}
.y74{bottom:183.533333pt;}
.y50{bottom:188.866667pt;}
.y61{bottom:194.200000pt;}
.y93{bottom:199.800000pt;}
.y98{bottom:202.466667pt;}
.y37{bottom:205.133333pt;}
.y4f{bottom:206.200000pt;}
.y4e{bottom:211.000000pt;}
.y73{bottom:215.800000pt;}
.y4d{bottom:224.333333pt;}
.y1e{bottom:225.400000pt;}
.y60{bottom:226.466667pt;}
.y92{bottom:231.800000pt;}
.y36{bottom:237.133333pt;}
.y97{bottom:245.133333pt;}
.y72{bottom:247.800000pt;}
.y1d{bottom:257.666667pt;}
.y4c{bottom:258.466667pt;}
.y91{bottom:264.066667pt;}
.y35{bottom:269.400000pt;}
.y71{bottom:280.066667pt;}
.y1c{bottom:289.933333pt;}
.y4a{bottom:290.733333pt;}
.y90{bottom:296.333333pt;}
.y4b{bottom:297.400000pt;}
.y34{bottom:301.693333pt;}
.y70{bottom:312.360000pt;}
.y1b{bottom:321.973333pt;}
.y49{bottom:323.026667pt;}
.y8f{bottom:328.626667pt;}
.y33{bottom:333.973333pt;}
.y6f{bottom:344.626667pt;}
.y48{bottom:355.293333pt;}
.y8e{bottom:360.626667pt;}
.y5f{bottom:361.960000pt;}
.y1a{bottom:364.893333pt;}
.y32{bottom:365.960000pt;}
.y6d{bottom:376.626667pt;}
.y6e{bottom:383.293333pt;}
.y47{bottom:387.293333pt;}
.y8d{bottom:392.893333pt;}
.y19{bottom:397.173333pt;}
.y31{bottom:398.226667pt;}
.y6c{bottom:408.893333pt;}
.y46{bottom:419.560000pt;}
.y8c{bottom:425.173333pt;}
.y30{bottom:430.506667pt;}
.y18{bottom:440.093333pt;}
.y6b{bottom:441.173333pt;}
.y45{bottom:451.866667pt;}
.y8b{bottom:457.200000pt;}
.y2f{bottom:462.533333pt;}
.y17{bottom:472.133333pt;}
.y6a{bottom:473.200000pt;}
.y7b{bottom:479.866667pt;}
.y43{bottom:483.866667pt;}
.y44{bottom:490.533333pt;}
.y7f{bottom:494.533333pt;}
.y2e{bottom:494.800000pt;}
.y16{bottom:504.400000pt;}
.y69{bottom:505.466667pt;}
.y8a{bottom:508.133333pt;}
.y42{bottom:516.133333pt;}
.y7e{bottom:526.800000pt;}
.y2d{bottom:527.066667pt;}
.y15{bottom:536.666667pt;}
.y7a{bottom:537.733333pt;}
.y89{bottom:540.400000pt;}
.y5e{bottom:548.400000pt;}
.y41{bottom:559.066667pt;}
.y2c{bottom:559.333333pt;}
.y14{bottom:568.933333pt;}
.y88{bottom:572.666667pt;}
.y5d{bottom:580.666667pt;}
.y2b{bottom:591.333333pt;}
.y13{bottom:601.226667pt;}
.y87{bottom:604.693333pt;}
.y5c{bottom:612.693333pt;}
.y40{bottom:623.360000pt;}
.y2a{bottom:623.626667pt;}
.y12{bottom:634.840000pt;}
.y86{bottom:636.960000pt;}
.y5b{bottom:644.973333pt;}
.y3f{bottom:655.640000pt;}
.y29{bottom:666.560000pt;}
.y11{bottom:667.106667pt;}
.y85{bottom:669.226667pt;}
.y5a{bottom:677.226667pt;}
.y3e{bottom:687.893333pt;}
.y10{bottom:699.373333pt;}
.y84{bottom:701.506667pt;}
.y28{bottom:709.506667pt;}
.y3d{bottom:720.173333pt;}
.y7d{bottom:726.840000pt;}
.yf{bottom:731.360000pt;}
.y83{bottom:733.506667pt;}
.y27{bottom:741.506667pt;}
.y3c{bottom:752.200000pt;}
.ye{bottom:763.666667pt;}
.y82{bottom:765.800000pt;}
.y59{bottom:773.800000pt;}
.y79{bottom:780.466667pt;}
.y26{bottom:784.466667pt;}
.yd{bottom:795.666667pt;}
.y81{bottom:798.066667pt;}
.y68{bottom:806.066667pt;}
.y25{bottom:816.733333pt;}
.yc{bottom:827.933333pt;}
.y67{bottom:838.333333pt;}
.y24{bottom:849.000000pt;}
.yb{bottom:859.933333pt;}
.y66{bottom:870.333333pt;}
.y23{bottom:881.000000pt;}
.y3b{bottom:887.666667pt;}
.ya{bottom:892.200000pt;}
.y96{bottom:902.626667pt;}
.y22{bottom:913.293333pt;}
.y9{bottom:924.226667pt;}
.y21{bottom:945.560000pt;}
.y8{bottom:945.840000pt;}
.y5{bottom:968.506667pt;}
.y4{bottom:987.960000pt;}
.y3{bottom:1011.173333pt;}
.y2{bottom:1034.360000pt;}
.y1{bottom:1057.600000pt;}
.ha{height:24.681250pt;}
.h6{height:33.656250pt;}
.h7{height:35.010937pt;}
.h9{height:37.395833pt;}
.hb{height:43.958333pt;}
.h4{height:52.354167pt;}
.h2{height:52.682292pt;}
.h8{height:53.046875pt;}
.h3{height:58.351562pt;}
.h5{height:61.541667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w3{width:793.866643pt;}
.w2{width:793.866655pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x5{left:113.366655pt;}
.x19{left:117.899988pt;}
.x11{left:151.226655pt;}
.x1{left:218.733322pt;}
.x6{left:254.733322pt;}
.x12{left:256.599988pt;}
.x24{left:288.359988pt;}
.xf{left:299.306655pt;}
.x20{left:301.439976pt;}
.x18{left:305.439988pt;}
.x21{left:307.573322pt;}
.xa{left:341.439988pt;}
.x2{left:367.026655pt;}
.x13{left:371.333310pt;}
.x9{left:376.666655pt;}
.xb{left:381.199988pt;}
.x16{left:399.333310pt;}
.x17{left:405.466655pt;}
.x4{left:413.999988pt;}
.x7{left:418.799988pt;}
.x22{left:428.933310pt;}
.x23{left:435.066655pt;}
.x1a{left:437.199976pt;}
.x10{left:438.266655pt;}
.x1b{left:443.333322pt;}
.xc{left:445.466655pt;}
.x8{left:456.666655pt;}
.xd{left:459.866655pt;}
.x3{left:478.039988pt;}
.xe{left:491.893322pt;}
.x1c{left:507.359976pt;}
.x1d{left:513.506655pt;}
.x1e{left:664.733310pt;}
.x1f{left:670.866655pt;}
.x14{left:730.893310pt;}
.x15{left:737.039988pt;}
}




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