
    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_aa79d261a7e5032c36b86251.woff')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_7a4a162db4d1eb9eb4ecee33.woff')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_9dde357bd97ee6fce0580f06.woff')format("woff");}.ff3{font-family:ff3;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_48720a736cc3f786be1064c6.woff')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cf9f6d16430008c58f469fb1.woff')format("woff");}.ff5{font-family:ff5;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;}
@font-face{font-family:ff6;src:url('chunks/assets/font_9decbc243075b50cdc8a4a39.woff')format("woff");}.ff6{font-family:ff6;line-height:1.084961;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_b4feb020e884746ba36338c3.woff')format("woff");}.ff7{font-family:ff7;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;}
@font-face{font-family:ff8;src:url('chunks/assets/font_234e50ab9967d4efcc8044ac.woff')format("woff");}.ff8{font-family:ff8;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;}
.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;}
.ls9{letter-spacing:-0.253200px;}
.ls8{letter-spacing:-0.053280px;}
.ls3{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.106800px;}
.ls2{letter-spacing:0.119520px;}
.ls1{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls10{letter-spacing:0.298800px;}
.ls0{letter-spacing:0.360000px;}
.ls12{letter-spacing:2.340000px;}
.ls7{letter-spacing:7.380000px;}
.lsb{letter-spacing:8.100000px;}
.lse{letter-spacing:11.700000px;}
.ls4{letter-spacing:41.682720px;}
.ls6{letter-spacing:46.026720px;}
.lsc{letter-spacing:46.980000px;}
.ls11{letter-spacing:51.300000px;}
.lsa{letter-spacing:74.520000px;}
.lsf{letter-spacing:247.140000px;}
.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;}
}
.ws1{word-spacing:-15.300000px;}
.ws7{word-spacing:-15.238800px;}
.ws6{word-spacing:-15.046800px;}
.ws0{word-spacing:-14.940000px;}
.ws4{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.686800px;}
.ws2{word-spacing:-13.500000px;}
.ws3{word-spacing:0.000000px;}
._1{margin-left:-1.186320px;}
._0{width:1.322400px;}
._f{width:2.950080px;}
._2{width:3.960960px;}
._6{width:5.318640px;}
._5{width:6.394320px;}
._a{width:7.514400px;}
._8{width:8.529120px;}
._7{width:9.681120px;}
._b{width:10.715040px;}
._9{width:11.753520px;}
._12{width:12.780960px;}
._13{width:13.931760px;}
._e{width:16.008000px;}
._14{width:17.629200px;}
._c{width:19.235040px;}
._d{width:20.462160px;}
._16{width:21.900000px;}
._11{width:24.065520px;}
._10{width:25.099200px;}
._21{width:26.159520px;}
._17{width:32.270400px;}
._1b{width:46.605120px;}
._1c{width:47.886960px;}
._1e{width:50.548560px;}
._1f{width:51.991920px;}
._20{width:58.780080px;}
._15{width:63.822960px;}
._1a{width:72.611760px;}
._19{width:73.743840px;}
._4{width:85.656000px;}
._18{width:112.281360px;}
._1d{width:246.860880px;}
._22{width:318.811920px;}
._3{width:687.306000px;}
.fc3{color:rgb(5,99,193);}
.fc2{color:rgb(76,148,216);}
.fc1{color:rgb(255,0,0);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:5.760000px;}
.fs3{font-size:54.000000px;}
.fs0{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y43{bottom:5.580000px;}
.yc{bottom:36.720000px;}
.yb{bottom:55.260000px;}
.ya{bottom:70.776000px;}
.y73{bottom:115.956000px;}
.y11e{bottom:117.216000px;}
.ya4{bottom:119.016000px;}
.y115{bottom:119.196000px;}
.yc8{bottom:119.916000px;}
.y72{bottom:133.236000px;}
.y11d{bottom:134.496000px;}
.ya3{bottom:136.296000px;}
.y114{bottom:136.476000px;}
.ydc{bottom:136.656000px;}
.yc7{bottom:137.196000px;}
.y71{bottom:150.330000px;}
.y11c{bottom:151.770000px;}
.ya2{bottom:153.570000px;}
.y113{bottom:153.750000px;}
.ydb{bottom:153.930000px;}
.yc6{bottom:154.470000px;}
.y70{bottom:167.610000px;}
.y11b{bottom:169.050000px;}
.ya1{bottom:170.670000px;}
.y112{bottom:171.030000px;}
.yda{bottom:171.210000px;}
.yc5{bottom:171.570000px;}
.y3c{bottom:178.230000px;}
.y6f{bottom:184.890000px;}
.y11a{bottom:186.330000px;}
.ya0{bottom:187.950000px;}
.yd9{bottom:188.310000px;}
.yc4{bottom:188.850000px;}
.yfc{bottom:191.370000px;}
.y3b{bottom:195.510000px;}
.y6e{bottom:202.170000px;}
.y119{bottom:203.430000px;}
.y9f{bottom:205.230000px;}
.y111{bottom:205.410000px;}
.yd8{bottom:205.590000px;}
.yc3{bottom:206.130000px;}
.yfb{bottom:208.650000px;}
.y3a{bottom:212.790000px;}
.y6d{bottom:219.450000px;}
.y118{bottom:220.710000px;}
.y9e{bottom:222.510000px;}
.y110{bottom:222.690000px;}
.yd7{bottom:222.870000px;}
.yc2{bottom:223.410000px;}
.yfa{bottom:225.750000px;}
.y39{bottom:230.070000px;}
.y6c{bottom:236.730000px;}
.y117{bottom:237.990000px;}
.y9d{bottom:239.790000px;}
.y10f{bottom:239.970000px;}
.yd6{bottom:240.150000px;}
.yc1{bottom:240.690000px;}
.yf9{bottom:243.030000px;}
.y38{bottom:247.170000px;}
.y116{bottom:252.390000px;}
.y6b{bottom:253.830000px;}
.y9c{bottom:256.890000px;}
.y10e{bottom:257.250000px;}
.yd5{bottom:257.430000px;}
.yc0{bottom:257.970000px;}
.yf8{bottom:260.310000px;}
.y37{bottom:264.450000px;}
.y6a{bottom:271.110000px;}
.y9b{bottom:274.170000px;}
.y10d{bottom:274.530000px;}
.yd4{bottom:274.710000px;}
.ybf{bottom:275.070000px;}
.yf7{bottom:277.590000px;}
.y36{bottom:281.730000px;}
.y69{bottom:288.390000px;}
.y9a{bottom:291.450000px;}
.yd3{bottom:291.810000px;}
.ybe{bottom:292.350000px;}
.yf6{bottom:294.870000px;}
.y35{bottom:299.010000px;}
.y68{bottom:305.670000px;}
.y99{bottom:308.730000px;}
.y10c{bottom:308.910000px;}
.yd2{bottom:309.090000px;}
.ybd{bottom:309.630000px;}
.yf5{bottom:312.150000px;}
.y34{bottom:316.290000px;}
.y67{bottom:322.950000px;}
.y98{bottom:326.010000px;}
.y10b{bottom:326.190000px;}
.yd1{bottom:326.370000px;}
.ybc{bottom:326.910000px;}
.yf4{bottom:329.250000px;}
.y33{bottom:333.390000px;}
.y66{bottom:340.275000px;}
.y97{bottom:343.335000px;}
.y10a{bottom:343.515000px;}
.yd0{bottom:343.695000px;}
.ybb{bottom:344.235000px;}
.yf3{bottom:346.575000px;}
.y32{bottom:350.715000px;}
.y65{bottom:357.375000px;}
.y96{bottom:360.435000px;}
.y109{bottom:360.795000px;}
.ycf{bottom:360.975000px;}
.yba{bottom:361.335000px;}
.yf2{bottom:363.855000px;}
.y31{bottom:367.995000px;}
.y64{bottom:374.655000px;}
.y95{bottom:377.715000px;}
.yce{bottom:378.075000px;}
.yb9{bottom:378.615000px;}
.yf1{bottom:381.135000px;}
.y30{bottom:385.275000px;}
.y63{bottom:391.935000px;}
.y94{bottom:394.995000px;}
.ycd{bottom:395.355000px;}
.yb8{bottom:395.895000px;}
.yf0{bottom:398.415000px;}
.y2f{bottom:402.555000px;}
.y62{bottom:409.215000px;}
.y93{bottom:412.275000px;}
.y108{bottom:412.455000px;}
.ycc{bottom:412.635000px;}
.yb7{bottom:413.175000px;}
.yef{bottom:415.695000px;}
.y2e{bottom:419.835000px;}
.y61{bottom:426.495000px;}
.y92{bottom:429.555000px;}
.y107{bottom:429.735000px;}
.ycb{bottom:429.915000px;}
.yb6{bottom:430.455000px;}
.yee{bottom:432.795000px;}
.y2d{bottom:436.935000px;}
.y60{bottom:443.595000px;}
.y91{bottom:446.835000px;}
.y106{bottom:447.015000px;}
.yca{bottom:447.195000px;}
.yb5{bottom:447.735000px;}
.yed{bottom:450.075000px;}
.y2c{bottom:454.215000px;}
.y5f{bottom:460.875000px;}
.yc9{bottom:461.235000px;}
.y90{bottom:463.935000px;}
.y105{bottom:464.295000px;}
.yb4{bottom:464.835000px;}
.yec{bottom:467.355000px;}
.y2b{bottom:471.495000px;}
.y5e{bottom:478.155000px;}
.y8f{bottom:481.215000px;}
.y104{bottom:481.575000px;}
.yb3{bottom:482.115000px;}
.yeb{bottom:484.635000px;}
.y2a{bottom:488.775000px;}
.y5d{bottom:495.435000px;}
.y8e{bottom:498.495000px;}
.yb2{bottom:499.395000px;}
.yea{bottom:501.915000px;}
.y29{bottom:506.055000px;}
.y5c{bottom:512.715000px;}
.y8d{bottom:515.775000px;}
.yb1{bottom:516.675000px;}
.ye9{bottom:519.015000px;}
.y28{bottom:523.335000px;}
.y5b{bottom:529.995000px;}
.y8c{bottom:533.055000px;}
.yb0{bottom:533.955000px;}
.ye8{bottom:536.295000px;}
.y27{bottom:540.435000px;}
.y5a{bottom:547.095000px;}
.y8b{bottom:550.335000px;}
.yaf{bottom:551.235000px;}
.ye7{bottom:553.575000px;}
.y26{bottom:557.715000px;}
.y59{bottom:564.375000px;}
.y8a{bottom:567.435000px;}
.yae{bottom:568.335000px;}
.ye6{bottom:570.855000px;}
.y25{bottom:574.995000px;}
.y58{bottom:581.655000px;}
.y89{bottom:584.715000px;}
.yad{bottom:585.615000px;}
.ye5{bottom:588.135000px;}
.y24{bottom:593.355000px;}
.y57{bottom:598.935000px;}
.y88{bottom:601.995000px;}
.yac{bottom:602.895000px;}
.ye4{bottom:605.445000px;}
.y23{bottom:611.025000px;}
.y56{bottom:616.245000px;}
.y87{bottom:619.305000px;}
.yab{bottom:620.205000px;}
.ye3{bottom:622.545000px;}
.y22{bottom:630.105000px;}
.y55{bottom:633.525000px;}
.y86{bottom:636.585000px;}
.yaa{bottom:637.485000px;}
.ye2{bottom:639.825000px;}
.y21{bottom:649.005000px;}
.y54{bottom:650.625000px;}
.y85{bottom:653.685000px;}
.ya9{bottom:654.765000px;}
.ye1{bottom:657.105000px;}
.y53{bottom:667.905000px;}
.y20{bottom:668.085000px;}
.y84{bottom:670.965000px;}
.ya8{bottom:671.865000px;}
.ye0{bottom:674.385000px;}
.y52{bottom:685.185000px;}
.y1f{bottom:686.985000px;}
.y83{bottom:688.245000px;}
.ya7{bottom:689.145000px;}
.ydf{bottom:691.665000px;}
.y51{bottom:702.465000px;}
.y82{bottom:705.525000px;}
.y1e{bottom:705.885000px;}
.ya6{bottom:706.425000px;}
.y103{bottom:708.045000px;}
.yde{bottom:708.945000px;}
.y50{bottom:719.745000px;}
.ya5{bottom:720.465000px;}
.y81{bottom:722.805000px;}
.y1d{bottom:724.965000px;}
.y102{bottom:725.325000px;}
.ydd{bottom:726.045000px;}
.y4f{bottom:737.025000px;}
.y80{bottom:740.085000px;}
.y101{bottom:742.605000px;}
.y1c{bottom:743.865000px;}
.y4e{bottom:754.125000px;}
.y7f{bottom:757.185000px;}
.y100{bottom:759.885000px;}
.y1b{bottom:762.945000px;}
.y4d{bottom:771.405000px;}
.y7e{bottom:774.465000px;}
.yff{bottom:777.165000px;}
.y1a{bottom:781.845000px;}
.y4c{bottom:788.685000px;}
.y7d{bottom:791.745000px;}
.yfe{bottom:794.445000px;}
.y19{bottom:800.745000px;}
.y4b{bottom:805.965000px;}
.yfd{bottom:808.485000px;}
.y7c{bottom:809.025000px;}
.y18{bottom:819.825000px;}
.y4a{bottom:823.245000px;}
.y7b{bottom:826.305000px;}
.y17{bottom:838.725000px;}
.y49{bottom:840.345000px;}
.y7a{bottom:843.585000px;}
.y48{bottom:857.625000px;}
.y16{bottom:857.805000px;}
.y79{bottom:860.685000px;}
.y47{bottom:874.950000px;}
.y15{bottom:876.750000px;}
.y78{bottom:878.010000px;}
.y46{bottom:892.230000px;}
.y77{bottom:895.290000px;}
.y14{bottom:895.650000px;}
.y45{bottom:909.510000px;}
.y76{bottom:912.570000px;}
.y13{bottom:914.730000px;}
.y44{bottom:926.790000px;}
.y75{bottom:929.850000px;}
.y12{bottom:933.630000px;}
.y42{bottom:940.650000px;}
.y74{bottom:947.130000px;}
.y11{bottom:952.710000px;}
.y41{bottom:964.230000px;}
.y10{bottom:971.250000px;}
.y40{bottom:981.510000px;}
.yf{bottom:989.070000px;}
.y3f{bottom:998.790000px;}
.ye{bottom:1009.770000px;}
.y3e{bottom:1016.070000px;}
.yd{bottom:1030.470000px;}
.y3d{bottom:1033.350000px;}
.y9{bottom:1051.710000px;}
.y8{bottom:1070.610000px;}
.y7{bottom:1087.890000px;}
.y6{bottom:1105.890000px;}
.y5{bottom:1122.630000px;}
.y4{bottom:1163.520000px;}
.y3{bottom:1182.060000px;}
.y2{bottom:1199.160000px;}
.y1{bottom:1216.440000px;}
.hc{height:4.674375px;}
.h9{height:19.620000px;}
.h7{height:37.705078px;}
.h2{height:41.726953px;}
.h5{height:42.164648px;}
.ha{height:43.506914px;}
.h3{height:46.251562px;}
.h8{height:46.736719px;}
.hb{height:48.496641px;}
.hd{height:49.255313px;}
.h4{height:50.800781px;}
.h6{height:65.884219px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w3{width:681.045000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x13{left:106.056000px;}
.x2{left:108.035987px;}
.x8{left:111.995987px;}
.x1{left:128.015987px;}
.x9{left:132.695987px;}
.x17{left:135.035987px;}
.xf{left:142.955987px;}
.x15{left:162.029987px;}
.x5{left:167.069987px;}
.xd{left:188.129987px;}
.x2f{left:189.389987px;}
.x1c{left:206.489987px;}
.x24{left:216.929987px;}
.x26{left:218.369987px;}
.x2d{left:220.529987px;}
.x21{left:236.549987px;}
.x1d{left:238.709987px;}
.x1a{left:286.814987px;}
.x27{left:294.914987px;}
.x25{left:298.874987px;}
.x2e{left:317.054987px;}
.x20{left:322.094987px;}
.x29{left:327.134987px;}
.x2b{left:333.434987px;}
.x2a{left:337.574987px;}
.x2c{left:339.554987px;}
.x14{left:340.599000px;}
.xc{left:342.254987px;}
.x23{left:346.394987px;}
.x22{left:350.354987px;}
.xe{left:356.294987px;}
.x11{left:358.094987px;}
.x10{left:359.894987px;}
.x30{left:362.414987px;}
.xb{left:371.594987px;}
.x1e{left:373.394987px;}
.x12{left:379.334987px;}
.x18{left:384.374987px;}
.x7{left:386.354987px;}
.x31{left:395.714987px;}
.x16{left:398.954987px;}
.xa{left:410.474987px;}
.x6{left:412.274987px;}
.x3{left:446.474987px;}
.x4{left:518.504987px;}
.x1f{left:616.964987px;}
.x28{left:620.384987px;}
.x19{left:623.444987px;}
.x1b{left:628.664987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls9{letter-spacing:-0.225067pt;}
.ls8{letter-spacing:-0.047360pt;}
.ls3{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.094933pt;}
.ls2{letter-spacing:0.106240pt;}
.ls1{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls10{letter-spacing:0.265600pt;}
.ls0{letter-spacing:0.320000pt;}
.ls12{letter-spacing:2.080000pt;}
.ls7{letter-spacing:6.560000pt;}
.lsb{letter-spacing:7.200000pt;}
.lse{letter-spacing:10.400000pt;}
.ls4{letter-spacing:37.051307pt;}
.ls6{letter-spacing:40.912640pt;}
.lsc{letter-spacing:41.760000pt;}
.ls11{letter-spacing:45.600000pt;}
.lsa{letter-spacing:66.240000pt;}
.lsf{letter-spacing:219.680000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws7{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.374933pt;}
.ws0{word-spacing:-13.280000pt;}
.ws4{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.054933pt;}
.ws2{word-spacing:-12.000000pt;}
.ws3{word-spacing:0.000000pt;}
._1{margin-left:-1.054507pt;}
._0{width:1.175467pt;}
._f{width:2.622293pt;}
._2{width:3.520853pt;}
._6{width:4.727680pt;}
._5{width:5.683840pt;}
._a{width:6.679467pt;}
._8{width:7.581440pt;}
._7{width:8.605440pt;}
._b{width:9.524480pt;}
._9{width:10.447573pt;}
._12{width:11.360853pt;}
._13{width:12.383787pt;}
._e{width:14.229333pt;}
._14{width:15.670400pt;}
._c{width:17.097813pt;}
._d{width:18.188587pt;}
._16{width:19.466667pt;}
._11{width:21.391573pt;}
._10{width:22.310400pt;}
._21{width:23.252907pt;}
._17{width:28.684800pt;}
._1b{width:41.426773pt;}
._1c{width:42.566187pt;}
._1e{width:44.932053pt;}
._1f{width:46.215040pt;}
._20{width:52.248960pt;}
._15{width:56.731520pt;}
._1a{width:64.543787pt;}
._19{width:65.550080pt;}
._4{width:76.138667pt;}
._18{width:99.805653pt;}
._1d{width:219.431893pt;}
._22{width:283.388373pt;}
._3{width:610.938667pt;}
.fs4{font-size:5.120000pt;}
.fs3{font-size:48.000000pt;}
.fs0{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y43{bottom:4.960000pt;}
.yc{bottom:32.640000pt;}
.yb{bottom:49.120000pt;}
.ya{bottom:62.912000pt;}
.y73{bottom:103.072000pt;}
.y11e{bottom:104.192000pt;}
.ya4{bottom:105.792000pt;}
.y115{bottom:105.952000pt;}
.yc8{bottom:106.592000pt;}
.y72{bottom:118.432000pt;}
.y11d{bottom:119.552000pt;}
.ya3{bottom:121.152000pt;}
.y114{bottom:121.312000pt;}
.ydc{bottom:121.472000pt;}
.yc7{bottom:121.952000pt;}
.y71{bottom:133.626667pt;}
.y11c{bottom:134.906667pt;}
.ya2{bottom:136.506667pt;}
.y113{bottom:136.666667pt;}
.ydb{bottom:136.826667pt;}
.yc6{bottom:137.306667pt;}
.y70{bottom:148.986667pt;}
.y11b{bottom:150.266667pt;}
.ya1{bottom:151.706667pt;}
.y112{bottom:152.026667pt;}
.yda{bottom:152.186667pt;}
.yc5{bottom:152.506667pt;}
.y3c{bottom:158.426667pt;}
.y6f{bottom:164.346667pt;}
.y11a{bottom:165.626667pt;}
.ya0{bottom:167.066667pt;}
.yd9{bottom:167.386667pt;}
.yc4{bottom:167.866667pt;}
.yfc{bottom:170.106667pt;}
.y3b{bottom:173.786667pt;}
.y6e{bottom:179.706667pt;}
.y119{bottom:180.826667pt;}
.y9f{bottom:182.426667pt;}
.y111{bottom:182.586667pt;}
.yd8{bottom:182.746667pt;}
.yc3{bottom:183.226667pt;}
.yfb{bottom:185.466667pt;}
.y3a{bottom:189.146667pt;}
.y6d{bottom:195.066667pt;}
.y118{bottom:196.186667pt;}
.y9e{bottom:197.786667pt;}
.y110{bottom:197.946667pt;}
.yd7{bottom:198.106667pt;}
.yc2{bottom:198.586667pt;}
.yfa{bottom:200.666667pt;}
.y39{bottom:204.506667pt;}
.y6c{bottom:210.426667pt;}
.y117{bottom:211.546667pt;}
.y9d{bottom:213.146667pt;}
.y10f{bottom:213.306667pt;}
.yd6{bottom:213.466667pt;}
.yc1{bottom:213.946667pt;}
.yf9{bottom:216.026667pt;}
.y38{bottom:219.706667pt;}
.y116{bottom:224.346667pt;}
.y6b{bottom:225.626667pt;}
.y9c{bottom:228.346667pt;}
.y10e{bottom:228.666667pt;}
.yd5{bottom:228.826667pt;}
.yc0{bottom:229.306667pt;}
.yf8{bottom:231.386667pt;}
.y37{bottom:235.066667pt;}
.y6a{bottom:240.986667pt;}
.y9b{bottom:243.706667pt;}
.y10d{bottom:244.026667pt;}
.yd4{bottom:244.186667pt;}
.ybf{bottom:244.506667pt;}
.yf7{bottom:246.746667pt;}
.y36{bottom:250.426667pt;}
.y69{bottom:256.346667pt;}
.y9a{bottom:259.066667pt;}
.yd3{bottom:259.386667pt;}
.ybe{bottom:259.866667pt;}
.yf6{bottom:262.106667pt;}
.y35{bottom:265.786667pt;}
.y68{bottom:271.706667pt;}
.y99{bottom:274.426667pt;}
.y10c{bottom:274.586667pt;}
.yd2{bottom:274.746667pt;}
.ybd{bottom:275.226667pt;}
.yf5{bottom:277.466667pt;}
.y34{bottom:281.146667pt;}
.y67{bottom:287.066667pt;}
.y98{bottom:289.786667pt;}
.y10b{bottom:289.946667pt;}
.yd1{bottom:290.106667pt;}
.ybc{bottom:290.586667pt;}
.yf4{bottom:292.666667pt;}
.y33{bottom:296.346667pt;}
.y66{bottom:302.466667pt;}
.y97{bottom:305.186667pt;}
.y10a{bottom:305.346667pt;}
.yd0{bottom:305.506667pt;}
.ybb{bottom:305.986667pt;}
.yf3{bottom:308.066667pt;}
.y32{bottom:311.746667pt;}
.y65{bottom:317.666667pt;}
.y96{bottom:320.386667pt;}
.y109{bottom:320.706667pt;}
.ycf{bottom:320.866667pt;}
.yba{bottom:321.186667pt;}
.yf2{bottom:323.426667pt;}
.y31{bottom:327.106667pt;}
.y64{bottom:333.026667pt;}
.y95{bottom:335.746667pt;}
.yce{bottom:336.066667pt;}
.yb9{bottom:336.546667pt;}
.yf1{bottom:338.786667pt;}
.y30{bottom:342.466667pt;}
.y63{bottom:348.386667pt;}
.y94{bottom:351.106667pt;}
.ycd{bottom:351.426667pt;}
.yb8{bottom:351.906667pt;}
.yf0{bottom:354.146667pt;}
.y2f{bottom:357.826667pt;}
.y62{bottom:363.746667pt;}
.y93{bottom:366.466667pt;}
.y108{bottom:366.626667pt;}
.ycc{bottom:366.786667pt;}
.yb7{bottom:367.266667pt;}
.yef{bottom:369.506667pt;}
.y2e{bottom:373.186667pt;}
.y61{bottom:379.106667pt;}
.y92{bottom:381.826667pt;}
.y107{bottom:381.986667pt;}
.ycb{bottom:382.146667pt;}
.yb6{bottom:382.626667pt;}
.yee{bottom:384.706667pt;}
.y2d{bottom:388.386667pt;}
.y60{bottom:394.306667pt;}
.y91{bottom:397.186667pt;}
.y106{bottom:397.346667pt;}
.yca{bottom:397.506667pt;}
.yb5{bottom:397.986667pt;}
.yed{bottom:400.066667pt;}
.y2c{bottom:403.746667pt;}
.y5f{bottom:409.666667pt;}
.yc9{bottom:409.986667pt;}
.y90{bottom:412.386667pt;}
.y105{bottom:412.706667pt;}
.yb4{bottom:413.186667pt;}
.yec{bottom:415.426667pt;}
.y2b{bottom:419.106667pt;}
.y5e{bottom:425.026667pt;}
.y8f{bottom:427.746667pt;}
.y104{bottom:428.066667pt;}
.yb3{bottom:428.546667pt;}
.yeb{bottom:430.786667pt;}
.y2a{bottom:434.466667pt;}
.y5d{bottom:440.386667pt;}
.y8e{bottom:443.106667pt;}
.yb2{bottom:443.906667pt;}
.yea{bottom:446.146667pt;}
.y29{bottom:449.826667pt;}
.y5c{bottom:455.746667pt;}
.y8d{bottom:458.466667pt;}
.yb1{bottom:459.266667pt;}
.ye9{bottom:461.346667pt;}
.y28{bottom:465.186667pt;}
.y5b{bottom:471.106667pt;}
.y8c{bottom:473.826667pt;}
.yb0{bottom:474.626667pt;}
.ye8{bottom:476.706667pt;}
.y27{bottom:480.386667pt;}
.y5a{bottom:486.306667pt;}
.y8b{bottom:489.186667pt;}
.yaf{bottom:489.986667pt;}
.ye7{bottom:492.066667pt;}
.y26{bottom:495.746667pt;}
.y59{bottom:501.666667pt;}
.y8a{bottom:504.386667pt;}
.yae{bottom:505.186667pt;}
.ye6{bottom:507.426667pt;}
.y25{bottom:511.106667pt;}
.y58{bottom:517.026667pt;}
.y89{bottom:519.746667pt;}
.yad{bottom:520.546667pt;}
.ye5{bottom:522.786667pt;}
.y24{bottom:527.426667pt;}
.y57{bottom:532.386667pt;}
.y88{bottom:535.106667pt;}
.yac{bottom:535.906667pt;}
.ye4{bottom:538.173333pt;}
.y23{bottom:543.133333pt;}
.y56{bottom:547.773333pt;}
.y87{bottom:550.493333pt;}
.yab{bottom:551.293333pt;}
.ye3{bottom:553.373333pt;}
.y22{bottom:560.093333pt;}
.y55{bottom:563.133333pt;}
.y86{bottom:565.853333pt;}
.yaa{bottom:566.653333pt;}
.ye2{bottom:568.733333pt;}
.y21{bottom:576.893333pt;}
.y54{bottom:578.333333pt;}
.y85{bottom:581.053333pt;}
.ya9{bottom:582.013333pt;}
.ye1{bottom:584.093333pt;}
.y53{bottom:593.693333pt;}
.y20{bottom:593.853333pt;}
.y84{bottom:596.413333pt;}
.ya8{bottom:597.213333pt;}
.ye0{bottom:599.453333pt;}
.y52{bottom:609.053333pt;}
.y1f{bottom:610.653333pt;}
.y83{bottom:611.773333pt;}
.ya7{bottom:612.573333pt;}
.ydf{bottom:614.813333pt;}
.y51{bottom:624.413333pt;}
.y82{bottom:627.133333pt;}
.y1e{bottom:627.453333pt;}
.ya6{bottom:627.933333pt;}
.y103{bottom:629.373333pt;}
.yde{bottom:630.173333pt;}
.y50{bottom:639.773333pt;}
.ya5{bottom:640.413333pt;}
.y81{bottom:642.493333pt;}
.y1d{bottom:644.413333pt;}
.y102{bottom:644.733333pt;}
.ydd{bottom:645.373333pt;}
.y4f{bottom:655.133333pt;}
.y80{bottom:657.853333pt;}
.y101{bottom:660.093333pt;}
.y1c{bottom:661.213333pt;}
.y4e{bottom:670.333333pt;}
.y7f{bottom:673.053333pt;}
.y100{bottom:675.453333pt;}
.y1b{bottom:678.173333pt;}
.y4d{bottom:685.693333pt;}
.y7e{bottom:688.413333pt;}
.yff{bottom:690.813333pt;}
.y1a{bottom:694.973333pt;}
.y4c{bottom:701.053333pt;}
.y7d{bottom:703.773333pt;}
.yfe{bottom:706.173333pt;}
.y19{bottom:711.773333pt;}
.y4b{bottom:716.413333pt;}
.yfd{bottom:718.653333pt;}
.y7c{bottom:719.133333pt;}
.y18{bottom:728.733333pt;}
.y4a{bottom:731.773333pt;}
.y7b{bottom:734.493333pt;}
.y17{bottom:745.533333pt;}
.y49{bottom:746.973333pt;}
.y7a{bottom:749.853333pt;}
.y48{bottom:762.333333pt;}
.y16{bottom:762.493333pt;}
.y79{bottom:765.053333pt;}
.y47{bottom:777.733333pt;}
.y15{bottom:779.333333pt;}
.y78{bottom:780.453333pt;}
.y46{bottom:793.093333pt;}
.y77{bottom:795.813333pt;}
.y14{bottom:796.133333pt;}
.y45{bottom:808.453333pt;}
.y76{bottom:811.173333pt;}
.y13{bottom:813.093333pt;}
.y44{bottom:823.813333pt;}
.y75{bottom:826.533333pt;}
.y12{bottom:829.893333pt;}
.y42{bottom:836.133333pt;}
.y74{bottom:841.893333pt;}
.y11{bottom:846.853333pt;}
.y41{bottom:857.093333pt;}
.y10{bottom:863.333333pt;}
.y40{bottom:872.453333pt;}
.yf{bottom:879.173333pt;}
.y3f{bottom:887.813333pt;}
.ye{bottom:897.573333pt;}
.y3e{bottom:903.173333pt;}
.yd{bottom:915.973333pt;}
.y3d{bottom:918.533333pt;}
.y9{bottom:934.853333pt;}
.y8{bottom:951.653333pt;}
.y7{bottom:967.013333pt;}
.y6{bottom:983.013333pt;}
.y5{bottom:997.893333pt;}
.y4{bottom:1034.240000pt;}
.y3{bottom:1050.720000pt;}
.y2{bottom:1065.920000pt;}
.y1{bottom:1081.280000pt;}
.hc{height:4.155000pt;}
.h9{height:17.440000pt;}
.h7{height:33.515625pt;}
.h2{height:37.090625pt;}
.h5{height:37.479688pt;}
.ha{height:38.672812pt;}
.h3{height:41.112500pt;}
.h8{height:41.543750pt;}
.hb{height:43.108125pt;}
.hd{height:43.782500pt;}
.h4{height:45.156250pt;}
.h6{height:58.563750pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w3{width:605.373333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x13{left:94.272000pt;}
.x2{left:96.031988pt;}
.x8{left:99.551988pt;}
.x1{left:113.791988pt;}
.x9{left:117.951988pt;}
.x17{left:120.031988pt;}
.xf{left:127.071988pt;}
.x15{left:144.026655pt;}
.x5{left:148.506655pt;}
.xd{left:167.226655pt;}
.x2f{left:168.346655pt;}
.x1c{left:183.546655pt;}
.x24{left:192.826655pt;}
.x26{left:194.106655pt;}
.x2d{left:196.026655pt;}
.x21{left:210.266655pt;}
.x1d{left:212.186655pt;}
.x1a{left:254.946655pt;}
.x27{left:262.146655pt;}
.x25{left:265.666655pt;}
.x2e{left:281.826655pt;}
.x20{left:286.306655pt;}
.x29{left:290.786655pt;}
.x2b{left:296.386655pt;}
.x2a{left:300.066655pt;}
.x2c{left:301.826655pt;}
.x14{left:302.754667pt;}
.xc{left:304.226655pt;}
.x23{left:307.906655pt;}
.x22{left:311.426655pt;}
.xe{left:316.706655pt;}
.x11{left:318.306655pt;}
.x10{left:319.906655pt;}
.x30{left:322.146655pt;}
.xb{left:330.306655pt;}
.x1e{left:331.906655pt;}
.x12{left:337.186655pt;}
.x18{left:341.666655pt;}
.x7{left:343.426655pt;}
.x31{left:351.746655pt;}
.x16{left:354.626655pt;}
.xa{left:364.866655pt;}
.x6{left:366.466655pt;}
.x3{left:396.866655pt;}
.x4{left:460.893322pt;}
.x1f{left:548.413322pt;}
.x28{left:551.453322pt;}
.x19{left:554.173322pt;}
.x1b{left:558.813322pt;}
}




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