
    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_ba20963fdae78f780c0c8540.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_dfa4076fc6f11616ac3fc789.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_47357e4c61fc400115db8cf5.woff2')format("woff");}.ff3{font-family:ff3;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;}
.m4{transform:matrix(0.222243,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.222243,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.222243,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.233143,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.233143,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.233143,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.240852,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.240852,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.240852,0.000000,0.000000,0.250000,0,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:-24.000000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:24.000000px;}
.ls0{letter-spacing:0.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:-15.000000px;}
.ws3{word-spacing:-12.000000px;}
.ws4{word-spacing:-9.000000px;}
.ws1{word-spacing:-7.500000px;}
.ws2{word-spacing:0.000000px;}
._21{margin-left:-8.298000px;}
._13{margin-left:-7.218000px;}
._9{margin-left:-6.114000px;}
._1{margin-left:-4.788000px;}
._2{margin-left:-3.264000px;}
._0{margin-left:-2.220000px;}
._4{margin-left:-1.116000px;}
._14{width:1.008000px;}
._3{width:2.058000px;}
._f{width:3.126000px;}
._e{width:4.260000px;}
._8{width:5.814000px;}
._b{width:6.906000px;}
._7{width:8.004000px;}
._c{width:9.984000px;}
._5{width:11.892000px;}
._1d{width:12.906000px;}
._d{width:13.944000px;}
._11{width:16.872000px;}
._16{width:18.090000px;}
._12{width:19.962000px;}
._a{width:21.912000px;}
._1e{width:22.914000px;}
._1c{width:24.318000px;}
._1b{width:25.758000px;}
._10{width:27.606000px;}
._17{width:28.740000px;}
._6{width:30.360000px;}
._15{width:31.956000px;}
._26{width:32.957400px;}
._18{width:33.972000px;}
._19{width:35.604000px;}
._1a{width:37.116000px;}
._25{width:39.229800px;}
._20{width:40.242000px;}
._24{width:42.276000px;}
._22{width:43.878000px;}
._23{width:52.050000px;}
._1f{width:54.000000px;}
.fc1{color:rgb(0,128,128);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:30.000000px;}
.fs3{font-size:36.000000px;}
.fs0{font-size:48.000000px;}
.fs1{font-size:60.000000px;}
.fs2{font-size:96.000000px;}
.y0{bottom:0.000000px;}
.ye2{bottom:76.200000px;}
.ydc{bottom:79.800000px;}
.y34{bottom:82.500000px;}
.y96{bottom:83.400000px;}
.yb9{bottom:85.200000px;}
.y11d{bottom:88.800000px;}
.y3f{bottom:89.295150px;}
.ye1{bottom:94.200000px;}
.yee{bottom:96.000000px;}
.y76{bottom:97.800000px;}
.y43{bottom:98.295150px;}
.y132{bottom:99.600000px;}
.y95{bottom:101.400000px;}
.yb8{bottom:103.200000px;}
.y11c{bottom:106.800000px;}
.y3e{bottom:107.295150px;}
.ye0{bottom:112.200000px;}
.yed{bottom:114.000000px;}
.y14b{bottom:114.300000px;}
.y75{bottom:115.800000px;}
.y42{bottom:116.295150px;}
.y131{bottom:117.600000px;}
.y94{bottom:119.400000px;}
.y153{bottom:120.000000px;}
.yb7{bottom:121.200000px;}
.y11b{bottom:124.800000px;}
.y3d{bottom:125.295150px;}
.y33{bottom:127.200000px;}
.yf9{bottom:130.200000px;}
.yec{bottom:132.000000px;}
.y14a{bottom:132.300000px;}
.y74{bottom:133.800000px;}
.y41{bottom:134.295150px;}
.y130{bottom:135.600000px;}
.y93{bottom:137.400000px;}
.yd3{bottom:139.200000px;}
.y152{bottom:141.000000px;}
.y11a{bottom:142.800000px;}
.y3c{bottom:143.295150px;}
.y32{bottom:145.200000px;}
.yb6{bottom:148.200000px;}
.yeb{bottom:150.000000px;}
.y149{bottom:150.300000px;}
.y73{bottom:151.800000px;}
.y40{bottom:152.295150px;}
.y12f{bottom:153.600000px;}
.y92{bottom:155.400000px;}
.yd2{bottom:157.200000px;}
.y151{bottom:159.000000px;}
.y119{bottom:160.800000px;}
.y31{bottom:163.200000px;}
.yb5{bottom:166.200000px;}
.yea{bottom:168.000000px;}
.y72{bottom:169.800000px;}
.y3b{bottom:170.295150px;}
.y12e{bottom:171.600000px;}
.y91{bottom:173.400000px;}
.yd1{bottom:175.200000px;}
.y14f{bottom:177.000000px;}
.y148{bottom:177.300000px;}
.y118{bottom:178.800000px;}
.y30{bottom:181.200000px;}
.yb4{bottom:184.200000px;}
.ye9{bottom:186.000000px;}
.ydb{bottom:187.800000px;}
.y3a{bottom:188.295150px;}
.y12d{bottom:189.600000px;}
.y90{bottom:191.400000px;}
.ydf{bottom:193.200000px;}
.y14e{bottom:195.000000px;}
.y147{bottom:195.300000px;}
.y71{bottom:196.800000px;}
.y2f{bottom:199.200000px;}
.yb3{bottom:202.200000px;}
.yd0{bottom:204.000000px;}
.yda{bottom:205.800000px;}
.y39{bottom:206.295150px;}
.y12c{bottom:207.600000px;}
.y8f{bottom:209.400000px;}
.y120{bottom:211.200000px;}
.y14d{bottom:213.000000px;}
.y146{bottom:213.300000px;}
.y70{bottom:214.800000px;}
.y2e{bottom:217.200000px;}
.yb2{bottom:220.200000px;}
.ycf{bottom:222.000000px;}
.yd9{bottom:223.800000px;}
.y38{bottom:224.295150px;}
.y12b{bottom:225.600000px;}
.y11f{bottom:229.200000px;}
.ye8{bottom:231.000000px;}
.y145{bottom:231.300000px;}
.y6f{bottom:232.800000px;}
.y8e{bottom:238.200000px;}
.yce{bottom:240.000000px;}
.y37{bottom:242.295150px;}
.y12a{bottom:243.600000px;}
.y2d{bottom:244.200000px;}
.ye7{bottom:249.000000px;}
.y6e{bottom:250.800000px;}
.yd8{bottom:252.600000px;}
.y8d{bottom:256.200000px;}
.ycd{bottom:258.000000px;}
.y144{bottom:258.300000px;}
.y36{bottom:260.295150px;}
.y129{bottom:261.600000px;}
.y2c{bottom:262.200000px;}
.ye6{bottom:267.000000px;}
.y6d{bottom:268.800000px;}
.yd7{bottom:270.600000px;}
.y8c{bottom:274.200000px;}
.ycc{bottom:276.000000px;}
.y143{bottom:276.300000px;}
.y128{bottom:279.600000px;}
.y2b{bottom:280.200000px;}
.ye5{bottom:285.000000px;}
.y6c{bottom:286.800000px;}
.y8b{bottom:292.200000px;}
.ycb{bottom:294.000000px;}
.y142{bottom:294.300000px;}
.y127{bottom:297.600000px;}
.y2a{bottom:298.200000px;}
.yb1{bottom:303.000000px;}
.y6b{bottom:304.800000px;}
.y8a{bottom:310.200000px;}
.yca{bottom:312.000000px;}
.y141{bottom:312.300000px;}
.y126{bottom:315.600000px;}
.y29{bottom:316.200000px;}
.yb0{bottom:321.000000px;}
.y6a{bottom:322.800000px;}
.y89{bottom:328.200000px;}
.yc9{bottom:330.000000px;}
.y125{bottom:333.600000px;}
.y28{bottom:334.200000px;}
.yaf{bottom:339.000000px;}
.y140{bottom:339.300000px;}
.y69{bottom:340.800000px;}
.y88{bottom:346.200000px;}
.yc8{bottom:348.000000px;}
.y124{bottom:351.600000px;}
.y27{bottom:352.200000px;}
.yae{bottom:357.000000px;}
.y13f{bottom:357.300000px;}
.y68{bottom:358.800000px;}
.y87{bottom:364.200000px;}
.yc7{bottom:366.000000px;}
.y123{bottom:369.600000px;}
.y26{bottom:370.200000px;}
.yad{bottom:375.000000px;}
.y13e{bottom:375.300000px;}
.y67{bottom:376.800000px;}
.y86{bottom:382.200000px;}
.yc6{bottom:384.000000px;}
.y122{bottom:387.600000px;}
.y25{bottom:388.200000px;}
.yac{bottom:393.000000px;}
.y13d{bottom:393.300000px;}
.y66{bottom:394.800000px;}
.y85{bottom:400.200000px;}
.yc5{bottom:402.000000px;}
.y121{bottom:405.600000px;}
.y24{bottom:406.200000px;}
.yab{bottom:411.000000px;}
.y65{bottom:412.800000px;}
.y84{bottom:418.200000px;}
.yc4{bottom:420.000000px;}
.y13c{bottom:420.300000px;}
.y23{bottom:424.200000px;}
.yaa{bottom:429.000000px;}
.y64{bottom:430.800000px;}
.y83{bottom:436.200000px;}
.yc3{bottom:438.000000px;}
.y13b{bottom:438.300000px;}
.y117{bottom:439.800000px;}
.y22{bottom:442.200000px;}
.yf8{bottom:445.200000px;}
.y1f{bottom:446.700000px;}
.yd6{bottom:447.000000px;}
.y63{bottom:448.800000px;}
.ya9{bottom:456.000000px;}
.y116{bottom:457.800000px;}
.y21{bottom:460.200000px;}
.y82{bottom:463.200000px;}
.yd5{bottom:465.000000px;}
.y13a{bottom:465.300000px;}
.y62{bottom:466.800000px;}
.ya8{bottom:474.000000px;}
.y115{bottom:475.800000px;}
.y20{bottom:478.200000px;}
.y81{bottom:481.200000px;}
.yd4{bottom:483.000000px;}
.y139{bottom:483.300000px;}
.y61{bottom:484.800000px;}
.y1e{bottom:487.200000px;}
.ya7{bottom:492.000000px;}
.y114{bottom:493.800000px;}
.y80{bottom:499.200000px;}
.yc2{bottom:501.000000px;}
.y60{bottom:502.800000px;}
.y1d{bottom:505.200000px;}
.ya6{bottom:510.000000px;}
.y138{bottom:510.300000px;}
.y113{bottom:511.800000px;}
.y7f{bottom:517.200000px;}
.yc1{bottom:519.000000px;}
.y5f{bottom:520.800000px;}
.y1c{bottom:523.200000px;}
.ya5{bottom:528.000000px;}
.y137{bottom:528.300000px;}
.y112{bottom:529.800000px;}
.y7e{bottom:535.200000px;}
.yc0{bottom:537.000000px;}
.y5e{bottom:538.800000px;}
.y1b{bottom:541.200000px;}
.ya4{bottom:546.000000px;}
.y136{bottom:546.300000px;}
.y111{bottom:547.800000px;}
.y7d{bottom:553.200000px;}
.ybf{bottom:555.000000px;}
.y1a{bottom:559.200000px;}
.ya3{bottom:564.000000px;}
.y135{bottom:564.300000px;}
.y110{bottom:565.800000px;}
.y5d{bottom:567.600000px;}
.y7c{bottom:571.200000px;}
.ybe{bottom:573.000000px;}
.y19{bottom:577.200000px;}
.ya2{bottom:582.000000px;}
.y10f{bottom:583.800000px;}
.y7b{bottom:589.200000px;}
.ybd{bottom:591.000000px;}
.y18{bottom:595.200000px;}
.y5c{bottom:600.000000px;}
.y10e{bottom:601.800000px;}
.y7a{bottom:607.200000px;}
.ybc{bottom:609.000000px;}
.y17{bottom:613.200000px;}
.y5b{bottom:618.000000px;}
.y10d{bottom:619.800000px;}
.y79{bottom:625.200000px;}
.ybb{bottom:627.000000px;}
.y16{bottom:631.200000px;}
.y5a{bottom:636.000000px;}
.y10c{bottom:637.800000px;}
.yf7{bottom:643.200000px;}
.yde{bottom:645.000000px;}
.y15{bottom:649.200000px;}
.y59{bottom:654.000000px;}
.y10b{bottom:655.800000px;}
.ydd{bottom:663.000000px;}
.y14{bottom:667.200000px;}
.yf6{bottom:670.200000px;}
.y58{bottom:672.000000px;}
.y10a{bottom:673.800000px;}
.y11e{bottom:681.000000px;}
.y13{bottom:685.200000px;}
.yf5{bottom:688.200000px;}
.y57{bottom:690.000000px;}
.y109{bottom:691.800000px;}
.ya1{bottom:699.000000px;}
.y12{bottom:703.200000px;}
.yf4{bottom:706.200000px;}
.y56{bottom:708.000000px;}
.y108{bottom:709.800000px;}
.y134{bottom:712.200000px;}
.ya0{bottom:717.000000px;}
.yf3{bottom:724.200000px;}
.y55{bottom:726.000000px;}
.y107{bottom:727.800000px;}
.y9f{bottom:735.000000px;}
.yf2{bottom:742.200000px;}
.y54{bottom:744.000000px;}
.y106{bottom:745.800000px;}
.y11{bottom:752.700000px;}
.y9e{bottom:753.000000px;}
.yf1{bottom:760.200000px;}
.y53{bottom:762.000000px;}
.y105{bottom:763.800000px;}
.y9d{bottom:771.000000px;}
.yf0{bottom:778.200000px;}
.y10{bottom:779.700000px;}
.y52{bottom:780.000000px;}
.y9c{bottom:789.000000px;}
.y104{bottom:792.600000px;}
.yef{bottom:796.200000px;}
.yf{bottom:797.700000px;}
.y51{bottom:798.000000px;}
.y9b{bottom:807.000000px;}
.y103{bottom:810.600000px;}
.y154{bottom:813.000000px;}
.y133{bottom:814.200000px;}
.ye{bottom:815.700000px;}
.y50{bottom:816.000000px;}
.y9a{bottom:825.000000px;}
.y102{bottom:828.600000px;}
.yd{bottom:833.700000px;}
.y4f{bottom:834.000000px;}
.y99{bottom:843.000000px;}
.y101{bottom:846.600000px;}
.yc{bottom:851.700000px;}
.y4e{bottom:852.000000px;}
.y98{bottom:861.000000px;}
.y100{bottom:864.600000px;}
.yb{bottom:869.700000px;}
.y4d{bottom:870.000000px;}
.ye4{bottom:879.000000px;}
.yff{bottom:882.600000px;}
.ya{bottom:887.700000px;}
.y4c{bottom:888.000000px;}
.ye3{bottom:897.000000px;}
.yfe{bottom:900.600000px;}
.y9{bottom:905.700000px;}
.y4b{bottom:906.000000px;}
.yba{bottom:915.000000px;}
.yfd{bottom:918.600000px;}
.y8{bottom:923.700000px;}
.y4a{bottom:924.000000px;}
.y97{bottom:933.000000px;}
.yfc{bottom:936.600000px;}
.y49{bottom:942.000000px;}
.y78{bottom:951.000000px;}
.yfb{bottom:954.600000px;}
.y48{bottom:960.000000px;}
.y77{bottom:969.000000px;}
.y7{bottom:970.200000px;}
.yfa{bottom:972.600000px;}
.y14c{bottom:978.000000px;}
.y47{bottom:987.000000px;}
.y150{bottom:996.000000px;}
.y6{bottom:997.200000px;}
.y46{bottom:1005.000000px;}
.y45{bottom:1023.000000px;}
.y5{bottom:1026.000000px;}
.y35{bottom:1033.500000px;}
.y44{bottom:1041.000000px;}
.y4{bottom:1044.000000px;}
.y3{bottom:1105.800000px;}
.y2{bottom:1120.200000px;}
.y1{bottom:1134.600000px;}
.h6{height:29.443359px;}
.ha{height:35.332031px;}
.h1{height:47.109375px;}
.h7{height:48.375000px;}
.h9{height:58.857422px;}
.h2{height:58.886719px;}
.h4{height:59.314453px;}
.h8{height:59.332031px;}
.h5{height:60.468750px;}
.h3{height:96.750000px;}
.h0{height:1186.500000px;}
.w0{width:918.000000px;}
.x0{left:0.000000px;}
.x1{left:81.000000px;}
.x5{left:110.160000px;}
.x2{left:472.500000px;}
.x6{left:501.660000px;}
.x4{left:587.004000px;}
.x3{left:690.348000px;}
@media print{
.v2{vertical-align:-21.333333pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.333333pt;}
.ls0{letter-spacing:0.000000pt;}
.ws0{word-spacing:-13.333333pt;}
.ws3{word-spacing:-10.666667pt;}
.ws4{word-spacing:-8.000000pt;}
.ws1{word-spacing:-6.666667pt;}
.ws2{word-spacing:0.000000pt;}
._21{margin-left:-7.376000pt;}
._13{margin-left:-6.416000pt;}
._9{margin-left:-5.434667pt;}
._1{margin-left:-4.256000pt;}
._2{margin-left:-2.901333pt;}
._0{margin-left:-1.973333pt;}
._4{margin-left:-0.992000pt;}
._14{width:0.896000pt;}
._3{width:1.829333pt;}
._f{width:2.778667pt;}
._e{width:3.786667pt;}
._8{width:5.168000pt;}
._b{width:6.138667pt;}
._7{width:7.114667pt;}
._c{width:8.874667pt;}
._5{width:10.570667pt;}
._1d{width:11.472000pt;}
._d{width:12.394667pt;}
._11{width:14.997333pt;}
._16{width:16.080000pt;}
._12{width:17.744000pt;}
._a{width:19.477333pt;}
._1e{width:20.368000pt;}
._1c{width:21.616000pt;}
._1b{width:22.896000pt;}
._10{width:24.538667pt;}
._17{width:25.546667pt;}
._6{width:26.986667pt;}
._15{width:28.405333pt;}
._26{width:29.295467pt;}
._18{width:30.197333pt;}
._19{width:31.648000pt;}
._1a{width:32.992000pt;}
._25{width:34.870933pt;}
._20{width:35.770667pt;}
._24{width:37.578667pt;}
._22{width:39.002667pt;}
._23{width:46.266667pt;}
._1f{width:48.000000pt;}
.fs4{font-size:26.666667pt;}
.fs3{font-size:32.000000pt;}
.fs0{font-size:42.666667pt;}
.fs1{font-size:53.333333pt;}
.fs2{font-size:85.333333pt;}
.y0{bottom:0.000000pt;}
.ye2{bottom:67.733333pt;}
.ydc{bottom:70.933333pt;}
.y34{bottom:73.333333pt;}
.y96{bottom:74.133333pt;}
.yb9{bottom:75.733333pt;}
.y11d{bottom:78.933333pt;}
.y3f{bottom:79.373467pt;}
.ye1{bottom:83.733333pt;}
.yee{bottom:85.333333pt;}
.y76{bottom:86.933333pt;}
.y43{bottom:87.373467pt;}
.y132{bottom:88.533333pt;}
.y95{bottom:90.133333pt;}
.yb8{bottom:91.733333pt;}
.y11c{bottom:94.933333pt;}
.y3e{bottom:95.373467pt;}
.ye0{bottom:99.733333pt;}
.yed{bottom:101.333333pt;}
.y14b{bottom:101.600000pt;}
.y75{bottom:102.933333pt;}
.y42{bottom:103.373467pt;}
.y131{bottom:104.533333pt;}
.y94{bottom:106.133333pt;}
.y153{bottom:106.666667pt;}
.yb7{bottom:107.733333pt;}
.y11b{bottom:110.933333pt;}
.y3d{bottom:111.373467pt;}
.y33{bottom:113.066667pt;}
.yf9{bottom:115.733333pt;}
.yec{bottom:117.333333pt;}
.y14a{bottom:117.600000pt;}
.y74{bottom:118.933333pt;}
.y41{bottom:119.373467pt;}
.y130{bottom:120.533333pt;}
.y93{bottom:122.133333pt;}
.yd3{bottom:123.733333pt;}
.y152{bottom:125.333333pt;}
.y11a{bottom:126.933333pt;}
.y3c{bottom:127.373467pt;}
.y32{bottom:129.066667pt;}
.yb6{bottom:131.733333pt;}
.yeb{bottom:133.333333pt;}
.y149{bottom:133.600000pt;}
.y73{bottom:134.933333pt;}
.y40{bottom:135.373467pt;}
.y12f{bottom:136.533333pt;}
.y92{bottom:138.133333pt;}
.yd2{bottom:139.733333pt;}
.y151{bottom:141.333333pt;}
.y119{bottom:142.933333pt;}
.y31{bottom:145.066667pt;}
.yb5{bottom:147.733333pt;}
.yea{bottom:149.333333pt;}
.y72{bottom:150.933333pt;}
.y3b{bottom:151.373467pt;}
.y12e{bottom:152.533333pt;}
.y91{bottom:154.133333pt;}
.yd1{bottom:155.733333pt;}
.y14f{bottom:157.333333pt;}
.y148{bottom:157.600000pt;}
.y118{bottom:158.933333pt;}
.y30{bottom:161.066667pt;}
.yb4{bottom:163.733333pt;}
.ye9{bottom:165.333333pt;}
.ydb{bottom:166.933333pt;}
.y3a{bottom:167.373467pt;}
.y12d{bottom:168.533333pt;}
.y90{bottom:170.133333pt;}
.ydf{bottom:171.733333pt;}
.y14e{bottom:173.333333pt;}
.y147{bottom:173.600000pt;}
.y71{bottom:174.933333pt;}
.y2f{bottom:177.066667pt;}
.yb3{bottom:179.733333pt;}
.yd0{bottom:181.333333pt;}
.yda{bottom:182.933333pt;}
.y39{bottom:183.373467pt;}
.y12c{bottom:184.533333pt;}
.y8f{bottom:186.133333pt;}
.y120{bottom:187.733333pt;}
.y14d{bottom:189.333333pt;}
.y146{bottom:189.600000pt;}
.y70{bottom:190.933333pt;}
.y2e{bottom:193.066667pt;}
.yb2{bottom:195.733333pt;}
.ycf{bottom:197.333333pt;}
.yd9{bottom:198.933333pt;}
.y38{bottom:199.373467pt;}
.y12b{bottom:200.533333pt;}
.y11f{bottom:203.733333pt;}
.ye8{bottom:205.333333pt;}
.y145{bottom:205.600000pt;}
.y6f{bottom:206.933333pt;}
.y8e{bottom:211.733333pt;}
.yce{bottom:213.333333pt;}
.y37{bottom:215.373467pt;}
.y12a{bottom:216.533333pt;}
.y2d{bottom:217.066667pt;}
.ye7{bottom:221.333333pt;}
.y6e{bottom:222.933333pt;}
.yd8{bottom:224.533333pt;}
.y8d{bottom:227.733333pt;}
.ycd{bottom:229.333333pt;}
.y144{bottom:229.600000pt;}
.y36{bottom:231.373467pt;}
.y129{bottom:232.533333pt;}
.y2c{bottom:233.066667pt;}
.ye6{bottom:237.333333pt;}
.y6d{bottom:238.933333pt;}
.yd7{bottom:240.533333pt;}
.y8c{bottom:243.733333pt;}
.ycc{bottom:245.333333pt;}
.y143{bottom:245.600000pt;}
.y128{bottom:248.533333pt;}
.y2b{bottom:249.066667pt;}
.ye5{bottom:253.333333pt;}
.y6c{bottom:254.933333pt;}
.y8b{bottom:259.733333pt;}
.ycb{bottom:261.333333pt;}
.y142{bottom:261.600000pt;}
.y127{bottom:264.533333pt;}
.y2a{bottom:265.066667pt;}
.yb1{bottom:269.333333pt;}
.y6b{bottom:270.933333pt;}
.y8a{bottom:275.733333pt;}
.yca{bottom:277.333333pt;}
.y141{bottom:277.600000pt;}
.y126{bottom:280.533333pt;}
.y29{bottom:281.066667pt;}
.yb0{bottom:285.333333pt;}
.y6a{bottom:286.933333pt;}
.y89{bottom:291.733333pt;}
.yc9{bottom:293.333333pt;}
.y125{bottom:296.533333pt;}
.y28{bottom:297.066667pt;}
.yaf{bottom:301.333333pt;}
.y140{bottom:301.600000pt;}
.y69{bottom:302.933333pt;}
.y88{bottom:307.733333pt;}
.yc8{bottom:309.333333pt;}
.y124{bottom:312.533333pt;}
.y27{bottom:313.066667pt;}
.yae{bottom:317.333333pt;}
.y13f{bottom:317.600000pt;}
.y68{bottom:318.933333pt;}
.y87{bottom:323.733333pt;}
.yc7{bottom:325.333333pt;}
.y123{bottom:328.533333pt;}
.y26{bottom:329.066667pt;}
.yad{bottom:333.333333pt;}
.y13e{bottom:333.600000pt;}
.y67{bottom:334.933333pt;}
.y86{bottom:339.733333pt;}
.yc6{bottom:341.333333pt;}
.y122{bottom:344.533333pt;}
.y25{bottom:345.066667pt;}
.yac{bottom:349.333333pt;}
.y13d{bottom:349.600000pt;}
.y66{bottom:350.933333pt;}
.y85{bottom:355.733333pt;}
.yc5{bottom:357.333333pt;}
.y121{bottom:360.533333pt;}
.y24{bottom:361.066667pt;}
.yab{bottom:365.333333pt;}
.y65{bottom:366.933333pt;}
.y84{bottom:371.733333pt;}
.yc4{bottom:373.333333pt;}
.y13c{bottom:373.600000pt;}
.y23{bottom:377.066667pt;}
.yaa{bottom:381.333333pt;}
.y64{bottom:382.933333pt;}
.y83{bottom:387.733333pt;}
.yc3{bottom:389.333333pt;}
.y13b{bottom:389.600000pt;}
.y117{bottom:390.933333pt;}
.y22{bottom:393.066667pt;}
.yf8{bottom:395.733333pt;}
.y1f{bottom:397.066667pt;}
.yd6{bottom:397.333333pt;}
.y63{bottom:398.933333pt;}
.ya9{bottom:405.333333pt;}
.y116{bottom:406.933333pt;}
.y21{bottom:409.066667pt;}
.y82{bottom:411.733333pt;}
.yd5{bottom:413.333333pt;}
.y13a{bottom:413.600000pt;}
.y62{bottom:414.933333pt;}
.ya8{bottom:421.333333pt;}
.y115{bottom:422.933333pt;}
.y20{bottom:425.066667pt;}
.y81{bottom:427.733333pt;}
.yd4{bottom:429.333333pt;}
.y139{bottom:429.600000pt;}
.y61{bottom:430.933333pt;}
.y1e{bottom:433.066667pt;}
.ya7{bottom:437.333333pt;}
.y114{bottom:438.933333pt;}
.y80{bottom:443.733333pt;}
.yc2{bottom:445.333333pt;}
.y60{bottom:446.933333pt;}
.y1d{bottom:449.066667pt;}
.ya6{bottom:453.333333pt;}
.y138{bottom:453.600000pt;}
.y113{bottom:454.933333pt;}
.y7f{bottom:459.733333pt;}
.yc1{bottom:461.333333pt;}
.y5f{bottom:462.933333pt;}
.y1c{bottom:465.066667pt;}
.ya5{bottom:469.333333pt;}
.y137{bottom:469.600000pt;}
.y112{bottom:470.933333pt;}
.y7e{bottom:475.733333pt;}
.yc0{bottom:477.333333pt;}
.y5e{bottom:478.933333pt;}
.y1b{bottom:481.066667pt;}
.ya4{bottom:485.333333pt;}
.y136{bottom:485.600000pt;}
.y111{bottom:486.933333pt;}
.y7d{bottom:491.733333pt;}
.ybf{bottom:493.333333pt;}
.y1a{bottom:497.066667pt;}
.ya3{bottom:501.333333pt;}
.y135{bottom:501.600000pt;}
.y110{bottom:502.933333pt;}
.y5d{bottom:504.533333pt;}
.y7c{bottom:507.733333pt;}
.ybe{bottom:509.333333pt;}
.y19{bottom:513.066667pt;}
.ya2{bottom:517.333333pt;}
.y10f{bottom:518.933333pt;}
.y7b{bottom:523.733333pt;}
.ybd{bottom:525.333333pt;}
.y18{bottom:529.066667pt;}
.y5c{bottom:533.333333pt;}
.y10e{bottom:534.933333pt;}
.y7a{bottom:539.733333pt;}
.ybc{bottom:541.333333pt;}
.y17{bottom:545.066667pt;}
.y5b{bottom:549.333333pt;}
.y10d{bottom:550.933333pt;}
.y79{bottom:555.733333pt;}
.ybb{bottom:557.333333pt;}
.y16{bottom:561.066667pt;}
.y5a{bottom:565.333333pt;}
.y10c{bottom:566.933333pt;}
.yf7{bottom:571.733333pt;}
.yde{bottom:573.333333pt;}
.y15{bottom:577.066667pt;}
.y59{bottom:581.333333pt;}
.y10b{bottom:582.933333pt;}
.ydd{bottom:589.333333pt;}
.y14{bottom:593.066667pt;}
.yf6{bottom:595.733333pt;}
.y58{bottom:597.333333pt;}
.y10a{bottom:598.933333pt;}
.y11e{bottom:605.333333pt;}
.y13{bottom:609.066667pt;}
.yf5{bottom:611.733333pt;}
.y57{bottom:613.333333pt;}
.y109{bottom:614.933333pt;}
.ya1{bottom:621.333333pt;}
.y12{bottom:625.066667pt;}
.yf4{bottom:627.733333pt;}
.y56{bottom:629.333333pt;}
.y108{bottom:630.933333pt;}
.y134{bottom:633.066667pt;}
.ya0{bottom:637.333333pt;}
.yf3{bottom:643.733333pt;}
.y55{bottom:645.333333pt;}
.y107{bottom:646.933333pt;}
.y9f{bottom:653.333333pt;}
.yf2{bottom:659.733333pt;}
.y54{bottom:661.333333pt;}
.y106{bottom:662.933333pt;}
.y11{bottom:669.066667pt;}
.y9e{bottom:669.333333pt;}
.yf1{bottom:675.733333pt;}
.y53{bottom:677.333333pt;}
.y105{bottom:678.933333pt;}
.y9d{bottom:685.333333pt;}
.yf0{bottom:691.733333pt;}
.y10{bottom:693.066667pt;}
.y52{bottom:693.333333pt;}
.y9c{bottom:701.333333pt;}
.y104{bottom:704.533333pt;}
.yef{bottom:707.733333pt;}
.yf{bottom:709.066667pt;}
.y51{bottom:709.333333pt;}
.y9b{bottom:717.333333pt;}
.y103{bottom:720.533333pt;}
.y154{bottom:722.666667pt;}
.y133{bottom:723.733333pt;}
.ye{bottom:725.066667pt;}
.y50{bottom:725.333333pt;}
.y9a{bottom:733.333333pt;}
.y102{bottom:736.533333pt;}
.yd{bottom:741.066667pt;}
.y4f{bottom:741.333333pt;}
.y99{bottom:749.333333pt;}
.y101{bottom:752.533333pt;}
.yc{bottom:757.066667pt;}
.y4e{bottom:757.333333pt;}
.y98{bottom:765.333333pt;}
.y100{bottom:768.533333pt;}
.yb{bottom:773.066667pt;}
.y4d{bottom:773.333333pt;}
.ye4{bottom:781.333333pt;}
.yff{bottom:784.533333pt;}
.ya{bottom:789.066667pt;}
.y4c{bottom:789.333333pt;}
.ye3{bottom:797.333333pt;}
.yfe{bottom:800.533333pt;}
.y9{bottom:805.066667pt;}
.y4b{bottom:805.333333pt;}
.yba{bottom:813.333333pt;}
.yfd{bottom:816.533333pt;}
.y8{bottom:821.066667pt;}
.y4a{bottom:821.333333pt;}
.y97{bottom:829.333333pt;}
.yfc{bottom:832.533333pt;}
.y49{bottom:837.333333pt;}
.y78{bottom:845.333333pt;}
.yfb{bottom:848.533333pt;}
.y48{bottom:853.333333pt;}
.y77{bottom:861.333333pt;}
.y7{bottom:862.400000pt;}
.yfa{bottom:864.533333pt;}
.y14c{bottom:869.333333pt;}
.y47{bottom:877.333333pt;}
.y150{bottom:885.333333pt;}
.y6{bottom:886.400000pt;}
.y46{bottom:893.333333pt;}
.y45{bottom:909.333333pt;}
.y5{bottom:912.000000pt;}
.y35{bottom:918.666667pt;}
.y44{bottom:925.333333pt;}
.y4{bottom:928.000000pt;}
.y3{bottom:982.933333pt;}
.y2{bottom:995.733333pt;}
.y1{bottom:1008.533333pt;}
.h6{height:26.171875pt;}
.ha{height:31.406250pt;}
.h1{height:41.875000pt;}
.h7{height:43.000000pt;}
.h9{height:52.317708pt;}
.h2{height:52.343750pt;}
.h4{height:52.723958pt;}
.h8{height:52.739583pt;}
.h5{height:53.750000pt;}
.h3{height:86.000000pt;}
.h0{height:1054.666667pt;}
.w0{width:816.000000pt;}
.x0{left:0.000000pt;}
.x1{left:72.000000pt;}
.x5{left:97.920000pt;}
.x2{left:420.000000pt;}
.x6{left:445.920000pt;}
.x4{left:521.781333pt;}
.x3{left:613.642667pt;}
}




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