
    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_a060567d51da95a29fccfe1a.woff')format("woff");}.ff1{font-family:ff1;line-height:1.202148;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_e39ca1181497dea38fc65600.woff')format("woff");}.ff2{font-family:ff2;line-height:1.172852;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_16a1f5cddc1db773f59a1181.woff')format("woff");}.ff3{font-family:ff3;line-height:1.172852;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_71e2fd22fa106fb099a0cc40.woff')format("woff");}.ff4{font-family:ff4;line-height:0.940918;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_fc4f23d133bae5b629509350.woff')format("woff");}.ff5{font-family:ff5;line-height:1.053223;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_d18861fe735072766e52e0f0.woff')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_130301694ab792f9947e2b7d.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_d6deb475bc36c1b2d494ce38.woff')format("woff");}.ff8{font-family:ff8;line-height:0.901855;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-20.880000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:23.760000px;}
.lsf{letter-spacing:-0.960000px;}
.ls25{letter-spacing:-0.660000px;}
.ls14{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.504000px;}
.ls9{letter-spacing:-0.463800px;}
.ls1b{letter-spacing:-0.414000px;}
.ls1c{letter-spacing:-0.240600px;}
.lsc{letter-spacing:-0.115800px;}
.ls16{letter-spacing:-0.107400px;}
.ls24{letter-spacing:-0.078600px;}
.lsd{letter-spacing:-0.067200px;}
.ls2e{letter-spacing:-0.058320px;}
.ls6{letter-spacing:0.000000px;}
.ls7{letter-spacing:0.038880px;}
.ls13{letter-spacing:0.060480px;}
.ls15{letter-spacing:0.060600px;}
.lsb{letter-spacing:0.066000px;}
.ls2{letter-spacing:0.140400px;}
.ls1{letter-spacing:0.149760px;}
.lsa{letter-spacing:0.150000px;}
.ls17{letter-spacing:0.150240px;}
.ls1d{letter-spacing:0.174000px;}
.ls18{letter-spacing:0.174240px;}
.ls23{letter-spacing:0.175200px;}
.ls30{letter-spacing:0.179280px;}
.ls12{letter-spacing:0.180000px;}
.ls0{letter-spacing:0.216000px;}
.ls5{letter-spacing:0.243600px;}
.lse{letter-spacing:0.306000px;}
.ls4{letter-spacing:0.334800px;}
.ls2d{letter-spacing:0.360000px;}
.ls11{letter-spacing:0.479400px;}
.ls32{letter-spacing:0.479520px;}
.ls31{letter-spacing:0.599520px;}
.ls19{letter-spacing:0.604080px;}
.ls33{letter-spacing:0.660000px;}
.ls2b{letter-spacing:0.894240px;}
.ls28{letter-spacing:1.614240px;}
.ls26{letter-spacing:2.334240px;}
.ls21{letter-spacing:3.054240px;}
.ls2a{letter-spacing:3.774240px;}
.ls1a{letter-spacing:4.266720px;}
.ls29{letter-spacing:4.494240px;}
.ls2f{letter-spacing:12.186720px;}
.ls10{letter-spacing:40.410720px;}
.ls2c{letter-spacing:42.426720px;}
.ls3{letter-spacing:56.970720px;}
.ls1f{letter-spacing:64.890720px;}
.ls27{letter-spacing:65.610720px;}
.ls22{letter-spacing:66.330720px;}
.ls1e{letter-spacing:67.770720px;}
.ls20{letter-spacing:71.370720px;}
.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:-19.077120px;}
.ws2{word-spacing:-16.488000px;}
.ws1{word-spacing:-16.272000px;}
.ws3{word-spacing:-15.768000px;}
.ws4{word-spacing:-14.970240px;}
.ws5{word-spacing:-14.506440px;}
.ws14{word-spacing:-14.165760px;}
.wsa{word-spacing:-13.840560px;}
.wsc{word-spacing:-13.811760px;}
.wsb{word-spacing:-13.749360px;}
.wse{word-spacing:-13.680960px;}
.ws8{word-spacing:-13.505760px;}
.ws12{word-spacing:-13.447440px;}
.wsf{word-spacing:-13.427160px;}
.ws13{word-spacing:-13.398360px;}
.ws9{word-spacing:-13.389960px;}
.ws10{word-spacing:-13.265160px;}
.ws6{word-spacing:-9.437760px;}
.ws7{word-spacing:-8.786880px;}
.ws11{word-spacing:-0.419760px;}
.wsd{word-spacing:0.000000px;}
._1d{margin-left:-581.484000px;}
._1e{margin-left:-575.568000px;}
._1{margin-left:-487.878240px;}
._6{margin-left:-409.254240px;}
._8{margin-left:-306.459120px;}
._4{margin-left:-289.292160px;}
._5{margin-left:-287.782560px;}
._0{margin-left:-274.978080px;}
._b{margin-left:-261.792000px;}
._12{margin-left:-254.592000px;}
._18{margin-left:-248.112000px;}
._17{margin-left:-243.891840px;}
._f{margin-left:-220.728000px;}
._19{margin-left:-218.384160px;}
._21{margin-left:-211.968000px;}
._20{margin-left:-206.568000px;}
._e{margin-left:-186.336000px;}
._25{margin-left:-184.680000px;}
._d{margin-left:-179.316000px;}
._9{margin-left:-168.336000px;}
._14{margin-left:-164.547840px;}
._a{margin-left:-161.712000px;}
._24{margin-left:-158.640000px;}
._10{margin-left:-152.268000px;}
._3{margin-left:-150.014400px;}
._c{margin-left:-147.708000px;}
._1f{margin-left:-145.872000px;}
._11{margin-left:-125.136000px;}
._23{margin-left:-119.928000px;}
._1c{margin-left:-111.312000px;}
._1b{margin-left:-93.915120px;}
._7{margin-left:-91.124880px;}
._13{margin-left:-89.300160px;}
._16{margin-left:-73.224000px;}
._15{margin-left:-52.388160px;}
._22{margin-left:-38.139840px;}
._1a{margin-left:-34.983840px;}
._28{margin-left:-4.441920px;}
._26{margin-left:-2.946240px;}
._2{margin-left:-1.347840px;}
._27{width:1.317240px;}
._2b{width:2.535720px;}
._2c{width:3.944160px;}
._2d{width:5.292840px;}
._2e{width:7.093440px;}
._2f{width:8.104680px;}
._30{width:9.143280px;}
._32{width:10.289760px;}
._31{width:11.930880px;}
._29{width:13.406400px;}
._2a{width:14.562480px;}
._34{width:16.971840px;}
._33{width:18.167040px;}
._35{width:19.590360px;}
._36{width:27.131040px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(23,23,23);}
.fs2{font-size:36.000000px;}
.fs7{font-size:38.880000px;}
.fs6{font-size:41.760000px;}
.fs5{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs0{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.y96{bottom:6.660000px;}
.y94{bottom:6.690000px;}
.yb3{bottom:17.100000px;}
.yb2{bottom:27.720000px;}
.y6{bottom:61.560000px;}
.ycc{bottom:92.160000px;}
.y30{bottom:95.760000px;}
.y97{bottom:98.820000px;}
.y64{bottom:104.220000px;}
.y92{bottom:107.280000px;}
.yc8{bottom:109.800000px;}
.ycb{bottom:113.220000px;}
.y2f{bottom:116.820000px;}
.y95{bottom:122.400000px;}
.y63{bottom:125.280000px;}
.y91{bottom:128.340000px;}
.yc7{bottom:130.860000px;}
.yca{bottom:134.280000px;}
.y2e{bottom:137.880000px;}
.y93{bottom:146.160000px;}
.y62{bottom:146.340000px;}
.y90{bottom:149.400000px;}
.yc6{bottom:151.950000px;}
.yc9{bottom:155.370000px;}
.y2d{bottom:158.970000px;}
.y8f{bottom:170.490000px;}
.yc5{bottom:173.010000px;}
.y61{bottom:176.430000px;}
.y2c{bottom:180.030000px;}
.y8e{bottom:191.550000px;}
.yc4{bottom:194.070000px;}
.y60{bottom:197.490000px;}
.y2b{bottom:201.090000px;}
.y8d{bottom:212.610000px;}
.yc3{bottom:215.130000px;}
.y5f{bottom:218.550000px;}
.y2a{bottom:222.150000px;}
.y8c{bottom:233.670000px;}
.yc2{bottom:236.190000px;}
.y5e{bottom:239.610000px;}
.y29{bottom:243.210000px;}
.y8b{bottom:254.730000px;}
.yc1{bottom:257.250000px;}
.y5d{bottom:260.670000px;}
.y28{bottom:264.270000px;}
.y8a{bottom:275.790000px;}
.yc0{bottom:278.310000px;}
.y5c{bottom:281.730000px;}
.y27{bottom:285.330000px;}
.y89{bottom:296.850000px;}
.ybf{bottom:299.370000px;}
.y5b{bottom:302.790000px;}
.y26{bottom:306.390000px;}
.y88{bottom:317.910000px;}
.y5a{bottom:323.850000px;}
.y25{bottom:327.450000px;}
.ybe{bottom:329.430000px;}
.y87{bottom:338.970000px;}
.y59{bottom:344.910000px;}
.y24{bottom:348.510000px;}
.ybd{bottom:350.490000px;}
.y86{bottom:360.030000px;}
.y58{bottom:365.970000px;}
.y23{bottom:369.570000px;}
.ybc{bottom:371.550000px;}
.y85{bottom:381.090000px;}
.y57{bottom:387.030000px;}
.y22{bottom:390.630000px;}
.ybb{bottom:392.610000px;}
.y84{bottom:402.195000px;}
.y56{bottom:408.135000px;}
.y21{bottom:411.735000px;}
.yba{bottom:413.715000px;}
.y83{bottom:423.255000px;}
.y55{bottom:429.195000px;}
.y20{bottom:432.795000px;}
.yb9{bottom:434.775000px;}
.y82{bottom:444.315000px;}
.y54{bottom:450.255000px;}
.y1f{bottom:453.855000px;}
.yb8{bottom:455.655000px;}
.y81{bottom:465.375000px;}
.y53{bottom:471.315000px;}
.y1e{bottom:474.915000px;}
.yb7{bottom:476.715000px;}
.y80{bottom:486.435000px;}
.y52{bottom:492.375000px;}
.y1d{bottom:495.975000px;}
.yb6{bottom:497.775000px;}
.y7f{bottom:507.495000px;}
.y51{bottom:513.435000px;}
.y1c{bottom:517.035000px;}
.yb5{bottom:518.835000px;}
.y7e{bottom:528.555000px;}
.yb4{bottom:534.135000px;}
.y50{bottom:534.495000px;}
.y1b{bottom:538.095000px;}
.y7d{bottom:549.615000px;}
.y4f{bottom:555.555000px;}
.y1a{bottom:559.155000px;}
.y7c{bottom:570.675000px;}
.y4e{bottom:576.615000px;}
.yb1{bottom:578.055000px;}
.y19{bottom:580.215000px;}
.y7b{bottom:591.735000px;}
.y4d{bottom:597.675000px;}
.y18{bottom:601.275000px;}
.y7a{bottom:612.795000px;}
.y4c{bottom:618.735000px;}
.yb0{bottom:621.975000px;}
.y17{bottom:624.675000px;}
.y79{bottom:633.855000px;}
.y4b{bottom:639.795000px;}
.yaf{bottom:652.425000px;}
.y16{bottom:654.585000px;}
.y78{bottom:654.945000px;}
.y4a{bottom:660.885000px;}
.yae{bottom:673.485000px;}
.y15{bottom:675.645000px;}
.y77{bottom:676.005000px;}
.y49{bottom:681.945000px;}
.yad{bottom:694.545000px;}
.y14{bottom:696.705000px;}
.y76{bottom:697.065000px;}
.y48{bottom:703.005000px;}
.yac{bottom:715.605000px;}
.y13{bottom:717.765000px;}
.y75{bottom:718.125000px;}
.y47{bottom:724.065000px;}
.yab{bottom:736.665000px;}
.y12{bottom:738.825000px;}
.y74{bottom:739.005000px;}
.y46{bottom:745.125000px;}
.yaa{bottom:757.725000px;}
.y11{bottom:759.885000px;}
.y73{bottom:760.065000px;}
.y45{bottom:766.005000px;}
.ya9{bottom:778.785000px;}
.y10{bottom:780.945000px;}
.y72{bottom:781.125000px;}
.y44{bottom:787.065000px;}
.ya8{bottom:799.665000px;}
.yf{bottom:802.005000px;}
.y71{bottom:802.185000px;}
.y43{bottom:808.125000px;}
.ya7{bottom:820.725000px;}
.ye{bottom:823.065000px;}
.y42{bottom:829.185000px;}
.y70{bottom:832.245000px;}
.ya6{bottom:841.785000px;}
.yd{bottom:844.305000px;}
.y41{bottom:850.245000px;}
.y6f{bottom:853.305000px;}
.ya5{bottom:862.845000px;}
.y40{bottom:871.305000px;}
.yc{bottom:872.745000px;}
.y6e{bottom:874.365000px;}
.ya4{bottom:883.905000px;}
.y3f{bottom:892.365000px;}
.yb{bottom:893.805000px;}
.y6d{bottom:895.425000px;}
.ya3{bottom:905.010000px;}
.ya{bottom:910.410000px;}
.y3e{bottom:913.470000px;}
.y6c{bottom:916.530000px;}
.ya2{bottom:926.070000px;}
.y9{bottom:932.730000px;}
.y3d{bottom:934.530000px;}
.y6b{bottom:937.590000px;}
.ya1{bottom:947.130000px;}
.y3c{bottom:955.590000px;}
.y8{bottom:957.930000px;}
.y6a{bottom:967.650000px;}
.ya0{bottom:968.190000px;}
.y3b{bottom:976.650000px;}
.y69{bottom:988.710000px;}
.y9f{bottom:989.250000px;}
.y7{bottom:991.770000px;}
.y3a{bottom:997.710000px;}
.y68{bottom:1009.770000px;}
.y9e{bottom:1010.310000px;}
.y39{bottom:1018.770000px;}
.y67{bottom:1030.830000px;}
.y9d{bottom:1031.370000px;}
.y38{bottom:1039.830000px;}
.y5{bottom:1041.270000px;}
.y66{bottom:1051.890000px;}
.y9c{bottom:1052.430000px;}
.y37{bottom:1060.890000px;}
.y65{bottom:1072.950000px;}
.y9b{bottom:1073.490000px;}
.y4{bottom:1075.650000px;}
.y36{bottom:1081.950000px;}
.y9a{bottom:1088.610000px;}
.y35{bottom:1103.010000px;}
.y3{bottom:1110.030000px;}
.y99{bottom:1112.370000px;}
.y34{bottom:1124.070000px;}
.y98{bottom:1135.950000px;}
.y2{bottom:1144.230000px;}
.y33{bottom:1145.130000px;}
.y32{bottom:1173.060000px;}
.y1{bottom:1179.720000px;}
.y31{bottom:1193.220000px;}
.hc{height:21.780000px;}
.hb{height:21.816000px;}
.h8{height:38.671172px;}
.hd{height:42.120000px;}
.ha{height:45.578672px;}
.he{height:52.260820px;}
.h6{height:59.439023px;}
.h9{height:61.189805px;}
.h4{height:65.884219px;}
.h7{height:67.824844px;}
.h3{height:71.613281px;}
.h2{height:86.255508px;}
.h5{height:98.051133px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wa{width:62.640000px;}
.w6{width:84.240000px;}
.w5{width:95.076000px;}
.w9{width:116.136000px;}
.w4{width:127.116000px;}
.w8{width:158.970000px;}
.w7{width:254.010000px;}
.w3{width:285.870000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:53.999987px;}
.x7{left:59.759987px;}
.x11{left:64.619987px;}
.x12{left:80.999987px;}
.xe{left:86.075987px;}
.x9{left:96.515987px;}
.x8{left:107.135987px;}
.xa{left:149.256000px;}
.x5{left:188.129987px;}
.x3{left:292.214987px;}
.x2{left:377.894987px;}
.xf{left:404.355000px;}
.xb{left:436.035000px;}
.x4{left:452.444987px;}
.x1{left:479.444987px;}
.xc{left:563.865000px;}
.xd{left:659.670000px;}
.x10{left:680.910000px;}
.x13{left:839.339987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:21.120000pt;}
.lsf{letter-spacing:-0.853333pt;}
.ls25{letter-spacing:-0.586667pt;}
.ls14{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.448000pt;}
.ls9{letter-spacing:-0.412267pt;}
.ls1b{letter-spacing:-0.368000pt;}
.ls1c{letter-spacing:-0.213867pt;}
.lsc{letter-spacing:-0.102933pt;}
.ls16{letter-spacing:-0.095467pt;}
.ls24{letter-spacing:-0.069867pt;}
.lsd{letter-spacing:-0.059733pt;}
.ls2e{letter-spacing:-0.051840pt;}
.ls6{letter-spacing:0.000000pt;}
.ls7{letter-spacing:0.034560pt;}
.ls13{letter-spacing:0.053760pt;}
.ls15{letter-spacing:0.053867pt;}
.lsb{letter-spacing:0.058667pt;}
.ls2{letter-spacing:0.124800pt;}
.ls1{letter-spacing:0.133120pt;}
.lsa{letter-spacing:0.133333pt;}
.ls17{letter-spacing:0.133547pt;}
.ls1d{letter-spacing:0.154667pt;}
.ls18{letter-spacing:0.154880pt;}
.ls23{letter-spacing:0.155733pt;}
.ls30{letter-spacing:0.159360pt;}
.ls12{letter-spacing:0.160000pt;}
.ls0{letter-spacing:0.192000pt;}
.ls5{letter-spacing:0.216533pt;}
.lse{letter-spacing:0.272000pt;}
.ls4{letter-spacing:0.297600pt;}
.ls2d{letter-spacing:0.320000pt;}
.ls11{letter-spacing:0.426133pt;}
.ls32{letter-spacing:0.426240pt;}
.ls31{letter-spacing:0.532907pt;}
.ls19{letter-spacing:0.536960pt;}
.ls33{letter-spacing:0.586667pt;}
.ls2b{letter-spacing:0.794880pt;}
.ls28{letter-spacing:1.434880pt;}
.ls26{letter-spacing:2.074880pt;}
.ls21{letter-spacing:2.714880pt;}
.ls2a{letter-spacing:3.354880pt;}
.ls1a{letter-spacing:3.792640pt;}
.ls29{letter-spacing:3.994880pt;}
.ls2f{letter-spacing:10.832640pt;}
.ls10{letter-spacing:35.920640pt;}
.ls2c{letter-spacing:37.712640pt;}
.ls3{letter-spacing:50.640640pt;}
.ls1f{letter-spacing:57.680640pt;}
.ls27{letter-spacing:58.320640pt;}
.ls22{letter-spacing:58.960640pt;}
.ls1e{letter-spacing:60.240640pt;}
.ls20{letter-spacing:63.440640pt;}
.ws0{word-spacing:-16.957440pt;}
.ws2{word-spacing:-14.656000pt;}
.ws1{word-spacing:-14.464000pt;}
.ws3{word-spacing:-14.016000pt;}
.ws4{word-spacing:-13.306880pt;}
.ws5{word-spacing:-12.894613pt;}
.ws14{word-spacing:-12.591787pt;}
.wsa{word-spacing:-12.302720pt;}
.wsc{word-spacing:-12.277120pt;}
.wsb{word-spacing:-12.221653pt;}
.wse{word-spacing:-12.160853pt;}
.ws8{word-spacing:-12.005120pt;}
.ws12{word-spacing:-11.953280pt;}
.wsf{word-spacing:-11.935253pt;}
.ws13{word-spacing:-11.909653pt;}
.ws9{word-spacing:-11.902187pt;}
.ws10{word-spacing:-11.791253pt;}
.ws6{word-spacing:-8.389120pt;}
.ws7{word-spacing:-7.810560pt;}
.ws11{word-spacing:-0.373120pt;}
.wsd{word-spacing:0.000000pt;}
._1d{margin-left:-516.874667pt;}
._1e{margin-left:-511.616000pt;}
._1{margin-left:-433.669547pt;}
._6{margin-left:-363.781547pt;}
._8{margin-left:-272.408107pt;}
._4{margin-left:-257.148587pt;}
._5{margin-left:-255.806720pt;}
._0{margin-left:-244.424960pt;}
._b{margin-left:-232.704000pt;}
._12{margin-left:-226.304000pt;}
._18{margin-left:-220.544000pt;}
._17{margin-left:-216.792747pt;}
._f{margin-left:-196.202667pt;}
._19{margin-left:-194.119253pt;}
._21{margin-left:-188.416000pt;}
._20{margin-left:-183.616000pt;}
._e{margin-left:-165.632000pt;}
._25{margin-left:-164.160000pt;}
._d{margin-left:-159.392000pt;}
._9{margin-left:-149.632000pt;}
._14{margin-left:-146.264747pt;}
._a{margin-left:-143.744000pt;}
._24{margin-left:-141.013333pt;}
._10{margin-left:-135.349333pt;}
._3{margin-left:-133.346133pt;}
._c{margin-left:-131.296000pt;}
._1f{margin-left:-129.664000pt;}
._11{margin-left:-111.232000pt;}
._23{margin-left:-106.602667pt;}
._1c{margin-left:-98.944000pt;}
._1b{margin-left:-83.480107pt;}
._7{margin-left:-80.999893pt;}
._13{margin-left:-79.377920pt;}
._16{margin-left:-65.088000pt;}
._15{margin-left:-46.567253pt;}
._22{margin-left:-33.902080pt;}
._1a{margin-left:-31.096747pt;}
._28{margin-left:-3.948373pt;}
._26{margin-left:-2.618880pt;}
._2{margin-left:-1.198080pt;}
._27{width:1.170880pt;}
._2b{width:2.253973pt;}
._2c{width:3.505920pt;}
._2d{width:4.704747pt;}
._2e{width:6.305280pt;}
._2f{width:7.204160pt;}
._30{width:8.127360pt;}
._32{width:9.146453pt;}
._31{width:10.605227pt;}
._29{width:11.916800pt;}
._2a{width:12.944427pt;}
._34{width:15.086080pt;}
._33{width:16.148480pt;}
._35{width:17.413653pt;}
._36{width:24.116480pt;}
.fs2{font-size:32.000000pt;}
.fs7{font-size:34.560000pt;}
.fs6{font-size:37.120000pt;}
.fs5{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs0{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.y96{bottom:5.920000pt;}
.y94{bottom:5.946667pt;}
.yb3{bottom:15.200000pt;}
.yb2{bottom:24.640000pt;}
.y6{bottom:54.720000pt;}
.ycc{bottom:81.920000pt;}
.y30{bottom:85.120000pt;}
.y97{bottom:87.840000pt;}
.y64{bottom:92.640000pt;}
.y92{bottom:95.360000pt;}
.yc8{bottom:97.600000pt;}
.ycb{bottom:100.640000pt;}
.y2f{bottom:103.840000pt;}
.y95{bottom:108.800000pt;}
.y63{bottom:111.360000pt;}
.y91{bottom:114.080000pt;}
.yc7{bottom:116.320000pt;}
.yca{bottom:119.360000pt;}
.y2e{bottom:122.560000pt;}
.y93{bottom:129.920000pt;}
.y62{bottom:130.080000pt;}
.y90{bottom:132.800000pt;}
.yc6{bottom:135.066667pt;}
.yc9{bottom:138.106667pt;}
.y2d{bottom:141.306667pt;}
.y8f{bottom:151.546667pt;}
.yc5{bottom:153.786667pt;}
.y61{bottom:156.826667pt;}
.y2c{bottom:160.026667pt;}
.y8e{bottom:170.266667pt;}
.yc4{bottom:172.506667pt;}
.y60{bottom:175.546667pt;}
.y2b{bottom:178.746667pt;}
.y8d{bottom:188.986667pt;}
.yc3{bottom:191.226667pt;}
.y5f{bottom:194.266667pt;}
.y2a{bottom:197.466667pt;}
.y8c{bottom:207.706667pt;}
.yc2{bottom:209.946667pt;}
.y5e{bottom:212.986667pt;}
.y29{bottom:216.186667pt;}
.y8b{bottom:226.426667pt;}
.yc1{bottom:228.666667pt;}
.y5d{bottom:231.706667pt;}
.y28{bottom:234.906667pt;}
.y8a{bottom:245.146667pt;}
.yc0{bottom:247.386667pt;}
.y5c{bottom:250.426667pt;}
.y27{bottom:253.626667pt;}
.y89{bottom:263.866667pt;}
.ybf{bottom:266.106667pt;}
.y5b{bottom:269.146667pt;}
.y26{bottom:272.346667pt;}
.y88{bottom:282.586667pt;}
.y5a{bottom:287.866667pt;}
.y25{bottom:291.066667pt;}
.ybe{bottom:292.826667pt;}
.y87{bottom:301.306667pt;}
.y59{bottom:306.586667pt;}
.y24{bottom:309.786667pt;}
.ybd{bottom:311.546667pt;}
.y86{bottom:320.026667pt;}
.y58{bottom:325.306667pt;}
.y23{bottom:328.506667pt;}
.ybc{bottom:330.266667pt;}
.y85{bottom:338.746667pt;}
.y57{bottom:344.026667pt;}
.y22{bottom:347.226667pt;}
.ybb{bottom:348.986667pt;}
.y84{bottom:357.506667pt;}
.y56{bottom:362.786667pt;}
.y21{bottom:365.986667pt;}
.yba{bottom:367.746667pt;}
.y83{bottom:376.226667pt;}
.y55{bottom:381.506667pt;}
.y20{bottom:384.706667pt;}
.yb9{bottom:386.466667pt;}
.y82{bottom:394.946667pt;}
.y54{bottom:400.226667pt;}
.y1f{bottom:403.426667pt;}
.yb8{bottom:405.026667pt;}
.y81{bottom:413.666667pt;}
.y53{bottom:418.946667pt;}
.y1e{bottom:422.146667pt;}
.yb7{bottom:423.746667pt;}
.y80{bottom:432.386667pt;}
.y52{bottom:437.666667pt;}
.y1d{bottom:440.866667pt;}
.yb6{bottom:442.466667pt;}
.y7f{bottom:451.106667pt;}
.y51{bottom:456.386667pt;}
.y1c{bottom:459.586667pt;}
.yb5{bottom:461.186667pt;}
.y7e{bottom:469.826667pt;}
.yb4{bottom:474.786667pt;}
.y50{bottom:475.106667pt;}
.y1b{bottom:478.306667pt;}
.y7d{bottom:488.546667pt;}
.y4f{bottom:493.826667pt;}
.y1a{bottom:497.026667pt;}
.y7c{bottom:507.266667pt;}
.y4e{bottom:512.546667pt;}
.yb1{bottom:513.826667pt;}
.y19{bottom:515.746667pt;}
.y7b{bottom:525.986667pt;}
.y4d{bottom:531.266667pt;}
.y18{bottom:534.466667pt;}
.y7a{bottom:544.706667pt;}
.y4c{bottom:549.986667pt;}
.yb0{bottom:552.866667pt;}
.y17{bottom:555.266667pt;}
.y79{bottom:563.426667pt;}
.y4b{bottom:568.706667pt;}
.yaf{bottom:579.933333pt;}
.y16{bottom:581.853333pt;}
.y78{bottom:582.173333pt;}
.y4a{bottom:587.453333pt;}
.yae{bottom:598.653333pt;}
.y15{bottom:600.573333pt;}
.y77{bottom:600.893333pt;}
.y49{bottom:606.173333pt;}
.yad{bottom:617.373333pt;}
.y14{bottom:619.293333pt;}
.y76{bottom:619.613333pt;}
.y48{bottom:624.893333pt;}
.yac{bottom:636.093333pt;}
.y13{bottom:638.013333pt;}
.y75{bottom:638.333333pt;}
.y47{bottom:643.613333pt;}
.yab{bottom:654.813333pt;}
.y12{bottom:656.733333pt;}
.y74{bottom:656.893333pt;}
.y46{bottom:662.333333pt;}
.yaa{bottom:673.533333pt;}
.y11{bottom:675.453333pt;}
.y73{bottom:675.613333pt;}
.y45{bottom:680.893333pt;}
.ya9{bottom:692.253333pt;}
.y10{bottom:694.173333pt;}
.y72{bottom:694.333333pt;}
.y44{bottom:699.613333pt;}
.ya8{bottom:710.813333pt;}
.yf{bottom:712.893333pt;}
.y71{bottom:713.053333pt;}
.y43{bottom:718.333333pt;}
.ya7{bottom:729.533333pt;}
.ye{bottom:731.613333pt;}
.y42{bottom:737.053333pt;}
.y70{bottom:739.773333pt;}
.ya6{bottom:748.253333pt;}
.yd{bottom:750.493333pt;}
.y41{bottom:755.773333pt;}
.y6f{bottom:758.493333pt;}
.ya5{bottom:766.973333pt;}
.y40{bottom:774.493333pt;}
.yc{bottom:775.773333pt;}
.y6e{bottom:777.213333pt;}
.ya4{bottom:785.693333pt;}
.y3f{bottom:793.213333pt;}
.yb{bottom:794.493333pt;}
.y6d{bottom:795.933333pt;}
.ya3{bottom:804.453333pt;}
.ya{bottom:809.253333pt;}
.y3e{bottom:811.973333pt;}
.y6c{bottom:814.693333pt;}
.ya2{bottom:823.173333pt;}
.y9{bottom:829.093333pt;}
.y3d{bottom:830.693333pt;}
.y6b{bottom:833.413333pt;}
.ya1{bottom:841.893333pt;}
.y3c{bottom:849.413333pt;}
.y8{bottom:851.493333pt;}
.y6a{bottom:860.133333pt;}
.ya0{bottom:860.613333pt;}
.y3b{bottom:868.133333pt;}
.y69{bottom:878.853333pt;}
.y9f{bottom:879.333333pt;}
.y7{bottom:881.573333pt;}
.y3a{bottom:886.853333pt;}
.y68{bottom:897.573333pt;}
.y9e{bottom:898.053333pt;}
.y39{bottom:905.573333pt;}
.y67{bottom:916.293333pt;}
.y9d{bottom:916.773333pt;}
.y38{bottom:924.293333pt;}
.y5{bottom:925.573333pt;}
.y66{bottom:935.013333pt;}
.y9c{bottom:935.493333pt;}
.y37{bottom:943.013333pt;}
.y65{bottom:953.733333pt;}
.y9b{bottom:954.213333pt;}
.y4{bottom:956.133333pt;}
.y36{bottom:961.733333pt;}
.y9a{bottom:967.653333pt;}
.y35{bottom:980.453333pt;}
.y3{bottom:986.693333pt;}
.y99{bottom:988.773333pt;}
.y34{bottom:999.173333pt;}
.y98{bottom:1009.733333pt;}
.y2{bottom:1017.093333pt;}
.y33{bottom:1017.893333pt;}
.y32{bottom:1042.720000pt;}
.y1{bottom:1048.640000pt;}
.y31{bottom:1060.640000pt;}
.hc{height:19.360000pt;}
.hb{height:19.392000pt;}
.h8{height:34.374375pt;}
.hd{height:37.440000pt;}
.ha{height:40.514375pt;}
.he{height:46.454062pt;}
.h6{height:52.834688pt;}
.h9{height:54.390938pt;}
.h4{height:58.563750pt;}
.h7{height:60.288750pt;}
.h3{height:63.656250pt;}
.h2{height:76.671562pt;}
.h5{height:87.156562pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wa{width:55.680000pt;}
.w6{width:74.880000pt;}
.w5{width:84.512000pt;}
.w9{width:103.232000pt;}
.w4{width:112.992000pt;}
.w8{width:141.306667pt;}
.w7{width:225.786667pt;}
.w3{width:254.106667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:47.999988pt;}
.x7{left:53.119988pt;}
.x11{left:57.439988pt;}
.x12{left:71.999988pt;}
.xe{left:76.511988pt;}
.x9{left:85.791988pt;}
.x8{left:95.231988pt;}
.xa{left:132.672000pt;}
.x5{left:167.226655pt;}
.x3{left:259.746655pt;}
.x2{left:335.906655pt;}
.xf{left:359.426667pt;}
.xb{left:387.586667pt;}
.x4{left:402.173322pt;}
.x1{left:426.173322pt;}
.xc{left:501.213333pt;}
.xd{left:586.373333pt;}
.x10{left:605.253333pt;}
.x13{left:746.079988pt;}
}




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