
    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_b0a230209e583239edd07c0d.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.939453;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_c017459723916489e2cc3e12.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.402354;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_bca13e00815903c4cd4e8ec5.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939453;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_7203a04b5e977b90b5fd183e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.938477;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_54ad9ca57283a902b3f672fe.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.938477;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_8a17ea56c5e596e998b45976.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.938477;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_2d56b00d53c6e20aaba2c978.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.758789;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);}
.v4{vertical-align:-18.720000px;}
.v2{vertical-align:-14.400000px;}
.v3{vertical-align:-2.880000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:11.520000px;}
.v1{vertical-align:14.400000px;}
.v5{vertical-align:18.720000px;}
.lsd{letter-spacing:-1.656000px;}
.ls17{letter-spacing:-1.242000px;}
.ls7{letter-spacing:-0.828000px;}
.ls1c{letter-spacing:-0.576000px;}
.ls19{letter-spacing:-0.504000px;}
.ls6{letter-spacing:-0.472200px;}
.ls8{letter-spacing:-0.449400px;}
.ls15{letter-spacing:-0.322800px;}
.lsf{letter-spacing:-0.316800px;}
.lsc{letter-spacing:-0.219000px;}
.ls9{letter-spacing:-0.078000px;}
.ls4{letter-spacing:-0.069000px;}
.ls10{letter-spacing:-0.060600px;}
.ls3{letter-spacing:-0.012960px;}
.ls2{letter-spacing:0.000000px;}
.ls1a{letter-spacing:0.037440px;}
.ls18{letter-spacing:0.195600px;}
.lsb{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.294000px;}
.ls1b{letter-spacing:0.308400px;}
.ls14{letter-spacing:0.452400px;}
.ls5{letter-spacing:0.483600px;}
.ls1e{letter-spacing:0.576000px;}
.lsa{letter-spacing:0.612000px;}
.ls1{letter-spacing:0.684000px;}
.ls0{letter-spacing:0.685440px;}
.ls13{letter-spacing:0.737280px;}
.ls12{letter-spacing:0.768960px;}
.ls1d{letter-spacing:0.864000px;}
.lse{letter-spacing:2.050560px;}
.ls16{letter-spacing:847.896000px;}
.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;}
}
.ws13{word-spacing:-66.240000px;}
.ws1a{word-spacing:-16.992000px;}
.wsb{word-spacing:-16.704000px;}
.ws19{word-spacing:-16.416000px;}
.wsc{word-spacing:-14.401440px;}
.ws11{word-spacing:-14.241840px;}
.ws10{word-spacing:-14.083440px;}
.ws5{word-spacing:-13.789440px;}
.wsf{word-spacing:-13.728840px;}
.wsd{word-spacing:-13.570440px;}
.ws15{word-spacing:-12.784560px;}
.ws14{word-spacing:-12.547440px;}
.ws17{word-spacing:-12.476160px;}
.wse{word-spacing:-12.133440px;}
.ws3{word-spacing:-12.003960px;}
.ws6{word-spacing:-11.518560px;}
.ws2{word-spacing:-10.834560px;}
.ws0{word-spacing:-10.821600px;}
.ws1{word-spacing:-10.765560px;}
.ws12{word-spacing:-9.198480px;}
.ws18{word-spacing:-9.072000px;}
.ws4{word-spacing:-8.864640px;}
.ws9{word-spacing:-8.415240px;}
.ws16{word-spacing:-7.632000px;}
.ws1b{word-spacing:-7.506720px;}
.ws1c{word-spacing:-6.066720px;}
.ws7{word-spacing:-0.060480px;}
.ws8{word-spacing:-0.054720px;}
.wsa{word-spacing:0.000000px;}
._c{margin-left:-4.685760px;}
._9{margin-left:-3.246240px;}
._1{margin-left:-2.156640px;}
._0{margin-left:-1.039680px;}
._2{width:1.290240px;}
._3{width:2.623680px;}
._4{width:4.031520px;}
._a{width:5.038560px;}
._8{width:6.048000px;}
._5{width:7.440000px;}
._7{width:8.628000px;}
._6{width:9.777120px;}
._b{width:11.298720px;}
._d{width:12.610560px;}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(51,102,255);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:30.240000px;}
.fs8{font-size:36.000000px;}
.fs5{font-size:38.880000px;}
.fs7{font-size:41.760000px;}
.fs1{font-size:47.520000px;}
.fs0{font-size:54.720000px;}
.fs4{font-size:60.480000px;}
.fs2{font-size:66.240000px;}
.fs6{font-size:72.000000px;}
.fs3{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.yf{bottom:2.520000px;}
.y9{bottom:2.880000px;}
.y124{bottom:7.200000px;}
.y21{bottom:7.245000px;}
.y1c{bottom:7.560000px;}
.y123{bottom:10.800000px;}
.y126{bottom:11.160000px;}
.y1a{bottom:11.520000px;}
.yd{bottom:14.760000px;}
.ye{bottom:16.200000px;}
.y8{bottom:18.360000px;}
.y20{bottom:20.925000px;}
.y36{bottom:23.040000px;}
.y4{bottom:29.160000px;}
.y19{bottom:33.120000px;}
.y7{bottom:33.840000px;}
.y1f{bottom:34.605000px;}
.y6{bottom:35.280000px;}
.y35{bottom:42.840000px;}
.y3{bottom:44.640000px;}
.y1e{bottom:52.965000px;}
.y18{bottom:54.750000px;}
.y11{bottom:56.556000px;}
.y34{bottom:58.320000px;}
.y2{bottom:60.120000px;}
.y10{bottom:72.756000px;}
.y33{bottom:73.800000px;}
.y17{bottom:76.710000px;}
.yc{bottom:87.156000px;}
.y32{bottom:89.310000px;}
.y16{bottom:94.710000px;}
.y31{bottom:104.790000px;}
.y15{bottom:111.990000px;}
.yb{bottom:118.836000px;}
.y30{bottom:120.270000px;}
.y2f{bottom:135.750000px;}
.y46{bottom:139.392000px;}
.y11d{bottom:142.632000px;}
.yff{bottom:145.872000px;}
.y13b{bottom:149.112000px;}
.y2e{bottom:151.230000px;}
.ya9{bottom:151.275000px;}
.ycf{bottom:153.075000px;}
.yee{bottom:154.515000px;}
.y45{bottom:156.675000px;}
.y8b{bottom:157.395000px;}
.y11c{bottom:159.915000px;}
.y2d{bottom:166.710000px;}
.yfe{bottom:167.835000px;}
.ya8{bottom:168.555000px;}
.yce{bottom:170.355000px;}
.y13a{bottom:173.955000px;}
.y6a{bottom:175.755000px;}
.y8a{bottom:176.115000px;}
.y44{bottom:178.275000px;}
.yed{bottom:179.355000px;}
.y11b{bottom:181.515000px;}
.y2c{bottom:182.550000px;}
.yfd{bottom:186.195000px;}
.ya7{bottom:190.155000px;}
.ycd{bottom:191.955000px;}
.y69{bottom:193.035000px;}
.y2b{bottom:198.030000px;}
.yec{bottom:198.075000px;}
.y11a{bottom:198.795000px;}
.y139{bottom:199.155000px;}
.y43{bottom:200.235000px;}
.ya6{bottom:207.435000px;}
.y68{bottom:210.315000px;}
.y2a{bottom:213.510000px;}
.ycc{bottom:213.555000px;}
.y119{bottom:216.075000px;}
.y42{bottom:217.515000px;}
.y138{bottom:223.995000px;}
.ya5{bottom:224.715000px;}
.y67{bottom:227.595000px;}
.y29{bottom:229.020000px;}
.y118{bottom:233.355000px;}
.y41{bottom:234.435000px;}
.ycb{bottom:240.195000px;}
.ya4{bottom:241.995000px;}
.y28{bottom:244.500000px;}
.y66{bottom:244.875000px;}
.y137{bottom:245.595000px;}
.yd9{bottom:249.915000px;}
.y117{bottom:250.275000px;}
.y40{bottom:251.715000px;}
.yca{bottom:258.915000px;}
.ya3{bottom:259.275000px;}
.y27{bottom:259.980000px;}
.y65{bottom:262.155000px;}
.y136{bottom:262.875000px;}
.y3f{bottom:269.025000px;}
.y116{bottom:272.265000px;}
.yd8{bottom:274.425000px;}
.y26{bottom:275.460000px;}
.y64{bottom:279.105000px;}
.y135{bottom:280.185000px;}
.ya2{bottom:281.265000px;}
.yc9{bottom:284.145000px;}
.y3e{bottom:286.305000px;}
.y115{bottom:289.545000px;}
.y25{bottom:290.940000px;}
.yd7{bottom:293.145000px;}
.y63{bottom:296.385000px;}
.y134{bottom:297.465000px;}
.yc8{bottom:297.825000px;}
.y3d{bottom:303.585000px;}
.ya1{bottom:306.105000px;}
.y114{bottom:306.465000px;}
.y24{bottom:311.100000px;}
.y133{bottom:314.385000px;}
.y62{bottom:317.985000px;}
.yc7{bottom:320.145000px;}
.y3c{bottom:325.545000px;}
.ya0{bottom:327.705000px;}
.y77{bottom:328.065000px;}
.y113{bottom:328.785000px;}
.y132{bottom:331.665000px;}
.y61{bottom:339.945000px;}
.yc6{bottom:344.625000px;}
.y9f{bottom:349.305000px;}
.y76{bottom:349.665000px;}
.y3b{bottom:350.385000px;}
.y112{bottom:353.265000px;}
.y60{bottom:358.305000px;}
.yc5{bottom:366.225000px;}
.y9e{bottom:366.585000px;}
.y75{bottom:368.385000px;}
.y131{bottom:370.545000px;}
.y3a{bottom:371.985000px;}
.y111{bottom:375.225000px;}
.yc4{bottom:383.505000px;}
.y9d{bottom:383.865000px;}
.y130{bottom:387.825000px;}
.y39{bottom:389.265000px;}
.y110{bottom:393.585000px;}
.yc3{bottom:400.830000px;}
.y12f{bottom:405.150000px;}
.y9c{bottom:405.510000px;}
.y38{bottom:411.630000px;}
.yc2{bottom:422.430000px;}
.y89{bottom:426.750000px;}
.y9b{bottom:427.110000px;}
.y37{bottom:436.110000px;}
.yc1{bottom:439.710000px;}
.y88{bottom:444.030000px;}
.y12e{bottom:444.390000px;}
.y9a{bottom:445.830000px;}
.y23{bottom:450.870000px;}
.yfc{bottom:451.950000px;}
.yc0{bottom:456.990000px;}
.y87{bottom:461.310000px;}
.y12d{bottom:469.230000px;}
.yfb{bottom:473.910000px;}
.ybf{bottom:474.270000px;}
.yeb{bottom:477.510000px;}
.y86{bottom:478.590000px;}
.y12c{bottom:490.830000px;}
.yfa{bottom:491.190000px;}
.ybe{bottom:496.230000px;}
.yea{bottom:499.110000px;}
.y85{bottom:500.550000px;}
.yf9{bottom:508.110000px;}
.y159{bottom:510.270000px;}
.ye9{bottom:516.390000px;}
.ybd{bottom:521.070000px;}
.y84{bottom:525.390000px;}
.yf8{bottom:529.710000px;}
.ye8{bottom:533.700000px;}
.y158{bottom:535.500000px;}
.ybc{bottom:542.700000px;}
.y83{bottom:547.020000px;}
.yf7{bottom:551.700000px;}
.ye7{bottom:555.300000px;}
.y157{bottom:559.260000px;}
.y12b{bottom:559.620000px;}
.ybb{bottom:559.980000px;}
.y82{bottom:564.300000px;}
.yf6{bottom:568.980000px;}
.ye6{bottom:572.580000px;}
.y12a{bottom:576.900000px;}
.yba{bottom:577.260000px;}
.y156{bottom:577.620000px;}
.y81{bottom:581.580000px;}
.yf5{bottom:587.340000px;}
.y155{bottom:591.300000px;}
.ye5{bottom:594.180000px;}
.yb9{bottom:594.540000px;}
.y129{bottom:598.500000px;}
.y80{bottom:598.860000px;}
.y5f{bottom:599.220000px;}
.y154{bottom:609.660000px;}
.yd6{bottom:610.020000px;}
.yb8{bottom:611.820000px;}
.y7f{bottom:615.780000px;}
.y5e{bottom:620.820000px;}
.ye4{bottom:621.180000px;}
.y153{bottom:623.340000px;}
.yb7{bottom:628.740000px;}
.yd5{bottom:631.620000px;}
.y7e{bottom:633.060000px;}
.y5d{bottom:638.100000px;}
.ye3{bottom:639.540000px;}
.y152{bottom:641.700000px;}
.yd4{bottom:648.900000px;}
.yb6{bottom:650.340000px;}
.y7d{bottom:654.660000px;}
.y5c{bottom:655.380000px;}
.y151{bottom:660.060000px;}
.ye2{bottom:661.140000px;}
.yd3{bottom:666.210000px;}
.yb5{bottom:667.650000px;}
.y7c{bottom:671.970000px;}
.y5b{bottom:672.690000px;}
.y150{bottom:673.770000px;}
.y128{bottom:676.650000px;}
.ye1{bottom:682.770000px;}
.yb4{bottom:684.930000px;}
.yd2{bottom:687.810000px;}
.y7b{bottom:689.250000px;}
.y5a{bottom:689.970000px;}
.y127{bottom:691.410000px;}
.y14f{bottom:692.130000px;}
.yb3{bottom:702.210000px;}
.ye0{bottom:704.730000px;}
.y14e{bottom:705.810000px;}
.y59{bottom:706.890000px;}
.yd1{bottom:709.410000px;}
.y7a{bottom:710.850000px;}
.y125{bottom:711.930000px;}
.yb2{bottom:719.490000px;}
.y10f{bottom:721.290000px;}
.ydf{bottom:722.010000px;}
.y14d{bottom:724.170000px;}
.yd0{bottom:727.770000px;}
.y58{bottom:729.210000px;}
.y79{bottom:732.810000px;}
.y14c{bottom:737.850000px;}
.yde{bottom:740.370000px;}
.yb1{bottom:741.090000px;}
.y10e{bottom:743.250000px;}
.y99{bottom:744.690000px;}
.y78{bottom:751.170000px;}
.y57{bottom:753.690000px;}
.y14b{bottom:756.210000px;}
.yb0{bottom:758.370000px;}
.y10d{bottom:760.530000px;}
.y98{bottom:766.290000px;}
.y74{bottom:766.650000px;}
.y122{bottom:774.210000px;}
.y14a{bottom:774.570000px;}
.y56{bottom:775.650000px;}
.y10c{bottom:777.450000px;}
.y97{bottom:783.570000px;}
.y22{bottom:783.930000px;}
.y73{bottom:788.250000px;}
.y149{bottom:792.570000px;}
.y55{bottom:792.930000px;}
.y1d{bottom:795.810000px;}
.y10b{bottom:799.050000px;}
.y96{bottom:800.895000px;}
.y54{bottom:809.895000px;}
.y148{bottom:810.975000px;}
.yaf{bottom:814.935000px;}
.y10a{bottom:816.375000px;}
.y121{bottom:818.175000px;}
.y95{bottom:822.495000px;}
.y53{bottom:827.175000px;}
.y147{bottom:829.335000px;}
.y109{bottom:833.655000px;}
.y94{bottom:839.775000px;}
.y146{bottom:843.015000px;}
.y52{bottom:844.455000px;}
.y108{bottom:855.255000px;}
.y93{bottom:857.055000px;}
.y1b{bottom:860.655000px;}
.yae{bottom:861.375000px;}
.y72{bottom:861.735000px;}
.y51{bottom:866.775000px;}
.yf4{bottom:868.215000px;}
.y92{bottom:873.975000px;}
.yad{bottom:878.655000px;}
.y71{bottom:879.015000px;}
.y120{bottom:879.375000px;}
.y145{bottom:879.735000px;}
.y107{bottom:882.255000px;}
.y14{bottom:882.975000px;}
.yf3{bottom:889.815000px;}
.y50{bottom:891.255000px;}
.y144{bottom:893.415000px;}
.yac{bottom:895.935000px;}
.y70{bottom:896.295000px;}
.y106{bottom:900.615000px;}
.y11f{bottom:903.855000px;}
.yf2{bottom:907.095000px;}
.y91{bottom:908.535000px;}
.y143{bottom:911.775000px;}
.y4f{bottom:912.855000px;}
.yab{bottom:913.215000px;}
.y6f{bottom:917.895000px;}
.y105{bottom:922.215000px;}
.y142{bottom:925.455000px;}
.y90{bottom:925.815000px;}
.yf1{bottom:928.695000px;}
.y4e{bottom:930.135000px;}
.y6e{bottom:935.205000px;}
.y104{bottom:939.525000px;}
.y8f{bottom:943.125000px;}
.y141{bottom:943.845000px;}
.y4d{bottom:947.445000px;}
.y6d{bottom:952.125000px;}
.yf0{bottom:955.365000px;}
.y103{bottom:956.805000px;}
.y140{bottom:957.525000px;}
.y11e{bottom:960.405000px;}
.y4c{bottom:964.725000px;}
.yef{bottom:974.085000px;}
.y6c{bottom:974.445000px;}
.y13f{bottom:975.885000px;}
.y4b{bottom:982.005000px;}
.y13e{bottom:989.565000px;}
.y102{bottom:991.365000px;}
.ydd{bottom:995.685000px;}
.y6b{bottom:998.925000px;}
.y4a{bottom:999.285000px;}
.yaa{bottom:1003.605000px;}
.y13d{bottom:1007.925000px;}
.y101{bottom:1008.285000px;}
.ydc{bottom:1012.965000px;}
.y8e{bottom:1016.205000px;}
.y13{bottom:1019.445000px;}
.y49{bottom:1020.885000px;}
.y13c{bottom:1027.365000px;}
.ydb{bottom:1030.245000px;}
.y100{bottom:1030.605000px;}
.y8d{bottom:1033.485000px;}
.y48{bottom:1038.165000px;}
.y12{bottom:1046.805000px;}
.yda{bottom:1052.205000px;}
.y8c{bottom:1055.085000px;}
.y47{bottom:1055.445000px;}
.ya{bottom:1072.770000px;}
.y5{bottom:1088.970000px;}
.y1{bottom:1136.130000px;}
.h9{height:13.680000px;}
.h19{height:19.800000px;}
.h1b{height:20.160000px;}
.he{height:21.600000px;}
.h1a{height:26.244141px;}
.h7{height:27.360000px;}
.hd{height:29.690156px;}
.h17{height:30.443203px;}
.h10{height:34.595859px;}
.h5{height:34.642266px;}
.h18{height:35.676000px;}
.h13{height:39.837656px;}
.h3{height:39.891094px;}
.h12{height:44.031094px;}
.hc{height:44.090156px;}
.h4{height:46.440000px;}
.h16{height:48.289219px;}
.h14{height:52.417969px;}
.h15{height:52.488281px;}
.h8{height:56.243537px;}
.hf{height:64.116000px;}
.h6{height:68.084282px;}
.ha{height:70.240078px;}
.h2{height:72.756000px;}
.hb{height:126.036000px;}
.h11{height:325.155000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.wf{width:63.000000px;}
.w10{width:63.036000px;}
.w12{width:63.396000px;}
.wc{width:84.276000px;}
.w11{width:95.076000px;}
.wd{width:105.516000px;}
.we{width:116.352000px;}
.w6{width:121.752000px;}
.w4{width:133.956000px;}
.w8{width:144.756000px;}
.w2{width:182.955000px;}
.wa{width:344.310000px;}
.wb{width:376.710000px;}
.w3{width:403.380000px;}
.w7{width:453.780000px;}
.w9{width:721.725000px;}
.w1{width:892.500000px;}
.w5{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.xa{left:7.920000px;}
.xc{left:12.600000px;}
.x5{left:14.040000px;}
.xb{left:20.565000px;}
.xe{left:25.560000px;}
.x19{left:31.356000px;}
.x6{left:34.245000px;}
.x18{left:51.159000px;}
.x9{left:53.280000px;}
.x10{left:54.360000px;}
.x11{left:57.600000px;}
.x33{left:77.085000px;}
.x13{left:83.205000px;}
.x1{left:106.956000px;}
.x2b{left:108.395987px;}
.x15{left:111.995987px;}
.x2{left:122.469000px;}
.x8{left:126.045000px;}
.xd{left:130.755000px;}
.x22{left:133.991987px;}
.x14{left:158.829000px;}
.x16{left:192.674987px;}
.x4{left:201.345000px;}
.x20{left:208.874987px;}
.x32{left:225.824987px;}
.x24{left:226.904987px;}
.xf{left:229.425000px;}
.x35{left:235.904987px;}
.x2f{left:237.344987px;}
.x29{left:248.144987px;}
.x27{left:270.824987px;}
.x3{left:290.625000px;}
.x1a{left:297.144000px;}
.x36{left:298.185000px;}
.x1e{left:309.344987px;}
.x17{left:318.024000px;}
.x25{left:413.819987px;}
.x2d{left:415.619987px;}
.x31{left:434.699987px;}
.x2c{left:436.139987px;}
.x1b{left:451.980000px;}
.x37{left:478.980000px;}
.x38{left:542.730000px;}
.x21{left:589.214987px;}
.x1f{left:607.934987px;}
.x39{left:638.535000px;}
.x30{left:659.054987px;}
.x2a{left:663.734987px;}
.x1d{left:681.044987px;}
.x12{left:683.925000px;}
.x23{left:692.924987px;}
.x7{left:694.725000px;}
.x26{left:709.844987px;}
.x2e{left:715.964987px;}
.x28{left:733.604987px;}
.x3a{left:744.765000px;}
.x34{left:751.244987px;}
.x1c{left:785.129987px;}
@media print{
.v4{vertical-align:-16.640000pt;}
.v2{vertical-align:-12.800000pt;}
.v3{vertical-align:-2.560000pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:10.240000pt;}
.v1{vertical-align:12.800000pt;}
.v5{vertical-align:16.640000pt;}
.lsd{letter-spacing:-1.472000pt;}
.ls17{letter-spacing:-1.104000pt;}
.ls7{letter-spacing:-0.736000pt;}
.ls1c{letter-spacing:-0.512000pt;}
.ls19{letter-spacing:-0.448000pt;}
.ls6{letter-spacing:-0.419733pt;}
.ls8{letter-spacing:-0.399467pt;}
.ls15{letter-spacing:-0.286933pt;}
.lsf{letter-spacing:-0.281600pt;}
.lsc{letter-spacing:-0.194667pt;}
.ls9{letter-spacing:-0.069333pt;}
.ls4{letter-spacing:-0.061333pt;}
.ls10{letter-spacing:-0.053867pt;}
.ls3{letter-spacing:-0.011520pt;}
.ls2{letter-spacing:0.000000pt;}
.ls1a{letter-spacing:0.033280pt;}
.ls18{letter-spacing:0.173867pt;}
.lsb{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.261333pt;}
.ls1b{letter-spacing:0.274133pt;}
.ls14{letter-spacing:0.402133pt;}
.ls5{letter-spacing:0.429867pt;}
.ls1e{letter-spacing:0.512000pt;}
.lsa{letter-spacing:0.544000pt;}
.ls1{letter-spacing:0.608000pt;}
.ls0{letter-spacing:0.609280pt;}
.ls13{letter-spacing:0.655360pt;}
.ls12{letter-spacing:0.683520pt;}
.ls1d{letter-spacing:0.768000pt;}
.lse{letter-spacing:1.822720pt;}
.ls16{letter-spacing:753.685333pt;}
.ws13{word-spacing:-58.880000pt;}
.ws1a{word-spacing:-15.104000pt;}
.wsb{word-spacing:-14.848000pt;}
.ws19{word-spacing:-14.592000pt;}
.wsc{word-spacing:-12.801280pt;}
.ws11{word-spacing:-12.659413pt;}
.ws10{word-spacing:-12.518613pt;}
.ws5{word-spacing:-12.257280pt;}
.wsf{word-spacing:-12.203413pt;}
.wsd{word-spacing:-12.062613pt;}
.ws15{word-spacing:-11.364053pt;}
.ws14{word-spacing:-11.153280pt;}
.ws17{word-spacing:-11.089920pt;}
.wse{word-spacing:-10.785280pt;}
.ws3{word-spacing:-10.670187pt;}
.ws6{word-spacing:-10.238720pt;}
.ws2{word-spacing:-9.630720pt;}
.ws0{word-spacing:-9.619200pt;}
.ws1{word-spacing:-9.569387pt;}
.ws12{word-spacing:-8.176427pt;}
.ws18{word-spacing:-8.064000pt;}
.ws4{word-spacing:-7.879680pt;}
.ws9{word-spacing:-7.480213pt;}
.ws16{word-spacing:-6.784000pt;}
.ws1b{word-spacing:-6.672640pt;}
.ws1c{word-spacing:-5.392640pt;}
.ws7{word-spacing:-0.053760pt;}
.ws8{word-spacing:-0.048640pt;}
.wsa{word-spacing:0.000000pt;}
._c{margin-left:-4.165120pt;}
._9{margin-left:-2.885547pt;}
._1{margin-left:-1.917013pt;}
._0{margin-left:-0.924160pt;}
._2{width:1.146880pt;}
._3{width:2.332160pt;}
._4{width:3.583573pt;}
._a{width:4.478720pt;}
._8{width:5.376000pt;}
._5{width:6.613333pt;}
._7{width:7.669333pt;}
._6{width:8.690773pt;}
._b{width:10.043307pt;}
._d{width:11.209387pt;}
.fs9{font-size:26.880000pt;}
.fs8{font-size:32.000000pt;}
.fs5{font-size:34.560000pt;}
.fs7{font-size:37.120000pt;}
.fs1{font-size:42.240000pt;}
.fs0{font-size:48.640000pt;}
.fs4{font-size:53.760000pt;}
.fs2{font-size:58.880000pt;}
.fs6{font-size:64.000000pt;}
.fs3{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.yf{bottom:2.240000pt;}
.y9{bottom:2.560000pt;}
.y124{bottom:6.400000pt;}
.y21{bottom:6.440000pt;}
.y1c{bottom:6.720000pt;}
.y123{bottom:9.600000pt;}
.y126{bottom:9.920000pt;}
.y1a{bottom:10.240000pt;}
.yd{bottom:13.120000pt;}
.ye{bottom:14.400000pt;}
.y8{bottom:16.320000pt;}
.y20{bottom:18.600000pt;}
.y36{bottom:20.480000pt;}
.y4{bottom:25.920000pt;}
.y19{bottom:29.440000pt;}
.y7{bottom:30.080000pt;}
.y1f{bottom:30.760000pt;}
.y6{bottom:31.360000pt;}
.y35{bottom:38.080000pt;}
.y3{bottom:39.680000pt;}
.y1e{bottom:47.080000pt;}
.y18{bottom:48.666667pt;}
.y11{bottom:50.272000pt;}
.y34{bottom:51.840000pt;}
.y2{bottom:53.440000pt;}
.y10{bottom:64.672000pt;}
.y33{bottom:65.600000pt;}
.y17{bottom:68.186667pt;}
.yc{bottom:77.472000pt;}
.y32{bottom:79.386667pt;}
.y16{bottom:84.186667pt;}
.y31{bottom:93.146667pt;}
.y15{bottom:99.546667pt;}
.yb{bottom:105.632000pt;}
.y30{bottom:106.906667pt;}
.y2f{bottom:120.666667pt;}
.y46{bottom:123.904000pt;}
.y11d{bottom:126.784000pt;}
.yff{bottom:129.664000pt;}
.y13b{bottom:132.544000pt;}
.y2e{bottom:134.426667pt;}
.ya9{bottom:134.466667pt;}
.ycf{bottom:136.066667pt;}
.yee{bottom:137.346667pt;}
.y45{bottom:139.266667pt;}
.y8b{bottom:139.906667pt;}
.y11c{bottom:142.146667pt;}
.y2d{bottom:148.186667pt;}
.yfe{bottom:149.186667pt;}
.ya8{bottom:149.826667pt;}
.yce{bottom:151.426667pt;}
.y13a{bottom:154.626667pt;}
.y6a{bottom:156.226667pt;}
.y8a{bottom:156.546667pt;}
.y44{bottom:158.466667pt;}
.yed{bottom:159.426667pt;}
.y11b{bottom:161.346667pt;}
.y2c{bottom:162.266667pt;}
.yfd{bottom:165.506667pt;}
.ya7{bottom:169.026667pt;}
.ycd{bottom:170.626667pt;}
.y69{bottom:171.586667pt;}
.y2b{bottom:176.026667pt;}
.yec{bottom:176.066667pt;}
.y11a{bottom:176.706667pt;}
.y139{bottom:177.026667pt;}
.y43{bottom:177.986667pt;}
.ya6{bottom:184.386667pt;}
.y68{bottom:186.946667pt;}
.y2a{bottom:189.786667pt;}
.ycc{bottom:189.826667pt;}
.y119{bottom:192.066667pt;}
.y42{bottom:193.346667pt;}
.y138{bottom:199.106667pt;}
.ya5{bottom:199.746667pt;}
.y67{bottom:202.306667pt;}
.y29{bottom:203.573333pt;}
.y118{bottom:207.426667pt;}
.y41{bottom:208.386667pt;}
.ycb{bottom:213.506667pt;}
.ya4{bottom:215.106667pt;}
.y28{bottom:217.333333pt;}
.y66{bottom:217.666667pt;}
.y137{bottom:218.306667pt;}
.yd9{bottom:222.146667pt;}
.y117{bottom:222.466667pt;}
.y40{bottom:223.746667pt;}
.yca{bottom:230.146667pt;}
.ya3{bottom:230.466667pt;}
.y27{bottom:231.093333pt;}
.y65{bottom:233.026667pt;}
.y136{bottom:233.666667pt;}
.y3f{bottom:239.133333pt;}
.y116{bottom:242.013333pt;}
.yd8{bottom:243.933333pt;}
.y26{bottom:244.853333pt;}
.y64{bottom:248.093333pt;}
.y135{bottom:249.053333pt;}
.ya2{bottom:250.013333pt;}
.yc9{bottom:252.573333pt;}
.y3e{bottom:254.493333pt;}
.y115{bottom:257.373333pt;}
.y25{bottom:258.613333pt;}
.yd7{bottom:260.573333pt;}
.y63{bottom:263.453333pt;}
.y134{bottom:264.413333pt;}
.yc8{bottom:264.733333pt;}
.y3d{bottom:269.853333pt;}
.ya1{bottom:272.093333pt;}
.y114{bottom:272.413333pt;}
.y24{bottom:276.533333pt;}
.y133{bottom:279.453333pt;}
.y62{bottom:282.653333pt;}
.yc7{bottom:284.573333pt;}
.y3c{bottom:289.373333pt;}
.ya0{bottom:291.293333pt;}
.y77{bottom:291.613333pt;}
.y113{bottom:292.253333pt;}
.y132{bottom:294.813333pt;}
.y61{bottom:302.173333pt;}
.yc6{bottom:306.333333pt;}
.y9f{bottom:310.493333pt;}
.y76{bottom:310.813333pt;}
.y3b{bottom:311.453333pt;}
.y112{bottom:314.013333pt;}
.y60{bottom:318.493333pt;}
.yc5{bottom:325.533333pt;}
.y9e{bottom:325.853333pt;}
.y75{bottom:327.453333pt;}
.y131{bottom:329.373333pt;}
.y3a{bottom:330.653333pt;}
.y111{bottom:333.533333pt;}
.yc4{bottom:340.893333pt;}
.y9d{bottom:341.213333pt;}
.y130{bottom:344.733333pt;}
.y39{bottom:346.013333pt;}
.y110{bottom:349.853333pt;}
.yc3{bottom:356.293333pt;}
.y12f{bottom:360.133333pt;}
.y9c{bottom:360.453333pt;}
.y38{bottom:365.893333pt;}
.yc2{bottom:375.493333pt;}
.y89{bottom:379.333333pt;}
.y9b{bottom:379.653333pt;}
.y37{bottom:387.653333pt;}
.yc1{bottom:390.853333pt;}
.y88{bottom:394.693333pt;}
.y12e{bottom:395.013333pt;}
.y9a{bottom:396.293333pt;}
.y23{bottom:400.773333pt;}
.yfc{bottom:401.733333pt;}
.yc0{bottom:406.213333pt;}
.y87{bottom:410.053333pt;}
.y12d{bottom:417.093333pt;}
.yfb{bottom:421.253333pt;}
.ybf{bottom:421.573333pt;}
.yeb{bottom:424.453333pt;}
.y86{bottom:425.413333pt;}
.y12c{bottom:436.293333pt;}
.yfa{bottom:436.613333pt;}
.ybe{bottom:441.093333pt;}
.yea{bottom:443.653333pt;}
.y85{bottom:444.933333pt;}
.yf9{bottom:451.653333pt;}
.y159{bottom:453.573333pt;}
.ye9{bottom:459.013333pt;}
.ybd{bottom:463.173333pt;}
.y84{bottom:467.013333pt;}
.yf8{bottom:470.853333pt;}
.ye8{bottom:474.400000pt;}
.y158{bottom:476.000000pt;}
.ybc{bottom:482.400000pt;}
.y83{bottom:486.240000pt;}
.yf7{bottom:490.400000pt;}
.ye7{bottom:493.600000pt;}
.y157{bottom:497.120000pt;}
.y12b{bottom:497.440000pt;}
.ybb{bottom:497.760000pt;}
.y82{bottom:501.600000pt;}
.yf6{bottom:505.760000pt;}
.ye6{bottom:508.960000pt;}
.y12a{bottom:512.800000pt;}
.yba{bottom:513.120000pt;}
.y156{bottom:513.440000pt;}
.y81{bottom:516.960000pt;}
.yf5{bottom:522.080000pt;}
.y155{bottom:525.600000pt;}
.ye5{bottom:528.160000pt;}
.yb9{bottom:528.480000pt;}
.y129{bottom:532.000000pt;}
.y80{bottom:532.320000pt;}
.y5f{bottom:532.640000pt;}
.y154{bottom:541.920000pt;}
.yd6{bottom:542.240000pt;}
.yb8{bottom:543.840000pt;}
.y7f{bottom:547.360000pt;}
.y5e{bottom:551.840000pt;}
.ye4{bottom:552.160000pt;}
.y153{bottom:554.080000pt;}
.yb7{bottom:558.880000pt;}
.yd5{bottom:561.440000pt;}
.y7e{bottom:562.720000pt;}
.y5d{bottom:567.200000pt;}
.ye3{bottom:568.480000pt;}
.y152{bottom:570.400000pt;}
.yd4{bottom:576.800000pt;}
.yb6{bottom:578.080000pt;}
.y7d{bottom:581.920000pt;}
.y5c{bottom:582.560000pt;}
.y151{bottom:586.720000pt;}
.ye2{bottom:587.680000pt;}
.yd3{bottom:592.186667pt;}
.yb5{bottom:593.466667pt;}
.y7c{bottom:597.306667pt;}
.y5b{bottom:597.946667pt;}
.y150{bottom:598.906667pt;}
.y128{bottom:601.466667pt;}
.ye1{bottom:606.906667pt;}
.yb4{bottom:608.826667pt;}
.yd2{bottom:611.386667pt;}
.y7b{bottom:612.666667pt;}
.y5a{bottom:613.306667pt;}
.y127{bottom:614.586667pt;}
.y14f{bottom:615.226667pt;}
.yb3{bottom:624.186667pt;}
.ye0{bottom:626.426667pt;}
.y14e{bottom:627.386667pt;}
.y59{bottom:628.346667pt;}
.yd1{bottom:630.586667pt;}
.y7a{bottom:631.866667pt;}
.y125{bottom:632.826667pt;}
.yb2{bottom:639.546667pt;}
.y10f{bottom:641.146667pt;}
.ydf{bottom:641.786667pt;}
.y14d{bottom:643.706667pt;}
.yd0{bottom:646.906667pt;}
.y58{bottom:648.186667pt;}
.y79{bottom:651.386667pt;}
.y14c{bottom:655.866667pt;}
.yde{bottom:658.106667pt;}
.yb1{bottom:658.746667pt;}
.y10e{bottom:660.666667pt;}
.y99{bottom:661.946667pt;}
.y78{bottom:667.706667pt;}
.y57{bottom:669.946667pt;}
.y14b{bottom:672.186667pt;}
.yb0{bottom:674.106667pt;}
.y10d{bottom:676.026667pt;}
.y98{bottom:681.146667pt;}
.y74{bottom:681.466667pt;}
.y122{bottom:688.186667pt;}
.y14a{bottom:688.506667pt;}
.y56{bottom:689.466667pt;}
.y10c{bottom:691.066667pt;}
.y97{bottom:696.506667pt;}
.y22{bottom:696.826667pt;}
.y73{bottom:700.666667pt;}
.y149{bottom:704.506667pt;}
.y55{bottom:704.826667pt;}
.y1d{bottom:707.386667pt;}
.y10b{bottom:710.266667pt;}
.y96{bottom:711.906667pt;}
.y54{bottom:719.906667pt;}
.y148{bottom:720.866667pt;}
.yaf{bottom:724.386667pt;}
.y10a{bottom:725.666667pt;}
.y121{bottom:727.266667pt;}
.y95{bottom:731.106667pt;}
.y53{bottom:735.266667pt;}
.y147{bottom:737.186667pt;}
.y109{bottom:741.026667pt;}
.y94{bottom:746.466667pt;}
.y146{bottom:749.346667pt;}
.y52{bottom:750.626667pt;}
.y108{bottom:760.226667pt;}
.y93{bottom:761.826667pt;}
.y1b{bottom:765.026667pt;}
.yae{bottom:765.666667pt;}
.y72{bottom:765.986667pt;}
.y51{bottom:770.466667pt;}
.yf4{bottom:771.746667pt;}
.y92{bottom:776.866667pt;}
.yad{bottom:781.026667pt;}
.y71{bottom:781.346667pt;}
.y120{bottom:781.666667pt;}
.y145{bottom:781.986667pt;}
.y107{bottom:784.226667pt;}
.y14{bottom:784.866667pt;}
.yf3{bottom:790.946667pt;}
.y50{bottom:792.226667pt;}
.y144{bottom:794.146667pt;}
.yac{bottom:796.386667pt;}
.y70{bottom:796.706667pt;}
.y106{bottom:800.546667pt;}
.y11f{bottom:803.426667pt;}
.yf2{bottom:806.306667pt;}
.y91{bottom:807.586667pt;}
.y143{bottom:810.466667pt;}
.y4f{bottom:811.426667pt;}
.yab{bottom:811.746667pt;}
.y6f{bottom:815.906667pt;}
.y105{bottom:819.746667pt;}
.y142{bottom:822.626667pt;}
.y90{bottom:822.946667pt;}
.yf1{bottom:825.506667pt;}
.y4e{bottom:826.786667pt;}
.y6e{bottom:831.293333pt;}
.y104{bottom:835.133333pt;}
.y8f{bottom:838.333333pt;}
.y141{bottom:838.973333pt;}
.y4d{bottom:842.173333pt;}
.y6d{bottom:846.333333pt;}
.yf0{bottom:849.213333pt;}
.y103{bottom:850.493333pt;}
.y140{bottom:851.133333pt;}
.y11e{bottom:853.693333pt;}
.y4c{bottom:857.533333pt;}
.yef{bottom:865.853333pt;}
.y6c{bottom:866.173333pt;}
.y13f{bottom:867.453333pt;}
.y4b{bottom:872.893333pt;}
.y13e{bottom:879.613333pt;}
.y102{bottom:881.213333pt;}
.ydd{bottom:885.053333pt;}
.y6b{bottom:887.933333pt;}
.y4a{bottom:888.253333pt;}
.yaa{bottom:892.093333pt;}
.y13d{bottom:895.933333pt;}
.y101{bottom:896.253333pt;}
.ydc{bottom:900.413333pt;}
.y8e{bottom:903.293333pt;}
.y13{bottom:906.173333pt;}
.y49{bottom:907.453333pt;}
.y13c{bottom:913.213333pt;}
.ydb{bottom:915.773333pt;}
.y100{bottom:916.093333pt;}
.y8d{bottom:918.653333pt;}
.y48{bottom:922.813333pt;}
.y12{bottom:930.493333pt;}
.yda{bottom:935.293333pt;}
.y8c{bottom:937.853333pt;}
.y47{bottom:938.173333pt;}
.ya{bottom:953.573333pt;}
.y5{bottom:967.973333pt;}
.y1{bottom:1009.893333pt;}
.h9{height:12.160000pt;}
.h19{height:17.600000pt;}
.h1b{height:17.920000pt;}
.he{height:19.200000pt;}
.h1a{height:23.328125pt;}
.h7{height:24.320000pt;}
.hd{height:26.391250pt;}
.h17{height:27.060625pt;}
.h10{height:30.751875pt;}
.h5{height:30.793125pt;}
.h18{height:31.712000pt;}
.h13{height:35.411250pt;}
.h3{height:35.458750pt;}
.h12{height:39.138750pt;}
.hc{height:39.191250pt;}
.h4{height:41.280000pt;}
.h16{height:42.923750pt;}
.h14{height:46.593750pt;}
.h15{height:46.656250pt;}
.h8{height:49.994255pt;}
.hf{height:56.992000pt;}
.h6{height:60.519362pt;}
.ha{height:62.435625pt;}
.h2{height:64.672000pt;}
.hb{height:112.032000pt;}
.h11{height:289.026667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.wf{width:56.000000pt;}
.w10{width:56.032000pt;}
.w12{width:56.352000pt;}
.wc{width:74.912000pt;}
.w11{width:84.512000pt;}
.wd{width:93.792000pt;}
.we{width:103.424000pt;}
.w6{width:108.224000pt;}
.w4{width:119.072000pt;}
.w8{width:128.672000pt;}
.w2{width:162.626667pt;}
.wa{width:306.053333pt;}
.wb{width:334.853333pt;}
.w3{width:358.560000pt;}
.w7{width:403.360000pt;}
.w9{width:641.533333pt;}
.w1{width:793.333333pt;}
.w5{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.xa{left:7.040000pt;}
.xc{left:11.200000pt;}
.x5{left:12.480000pt;}
.xb{left:18.280000pt;}
.xe{left:22.720000pt;}
.x19{left:27.872000pt;}
.x6{left:30.440000pt;}
.x18{left:45.474667pt;}
.x9{left:47.360000pt;}
.x10{left:48.320000pt;}
.x11{left:51.200000pt;}
.x33{left:68.520000pt;}
.x13{left:73.960000pt;}
.x1{left:95.072000pt;}
.x2b{left:96.351988pt;}
.x15{left:99.551988pt;}
.x2{left:108.861333pt;}
.x8{left:112.040000pt;}
.xd{left:116.226667pt;}
.x22{left:119.103988pt;}
.x14{left:141.181333pt;}
.x16{left:171.266655pt;}
.x4{left:178.973333pt;}
.x20{left:185.666655pt;}
.x32{left:200.733322pt;}
.x24{left:201.693322pt;}
.xf{left:203.933333pt;}
.x35{left:209.693322pt;}
.x2f{left:210.973322pt;}
.x29{left:220.573322pt;}
.x27{left:240.733322pt;}
.x3{left:258.333333pt;}
.x1a{left:264.128000pt;}
.x36{left:265.053333pt;}
.x1e{left:274.973322pt;}
.x17{left:282.688000pt;}
.x25{left:367.839988pt;}
.x2d{left:369.439988pt;}
.x31{left:386.399988pt;}
.x2c{left:387.679988pt;}
.x1b{left:401.760000pt;}
.x37{left:425.760000pt;}
.x38{left:482.426667pt;}
.x21{left:523.746655pt;}
.x1f{left:540.386655pt;}
.x39{left:567.586667pt;}
.x30{left:585.826655pt;}
.x2a{left:589.986655pt;}
.x1d{left:605.373322pt;}
.x12{left:607.933333pt;}
.x23{left:615.933322pt;}
.x7{left:617.533333pt;}
.x26{left:630.973322pt;}
.x2e{left:636.413322pt;}
.x28{left:652.093322pt;}
.x3a{left:662.013333pt;}
.x34{left:667.773322pt;}
.x1c{left:697.893322pt;}
}




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