
    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_15061541fafbcbb6e4e01eb1.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.311035;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6651534d7c94c824a3c5f8ec.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.750000;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_70a508b1f58e4243476d0dd4.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.940430;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_1661fc851e4abe9ff154b98c.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_ac0cd3929565d6574b2242c0.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_375a79137d8b2065a03d85ab.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_da67a7d8f40c7dcbf419d913.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.910156;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_a1beca45ff621b515f1d8f16.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.910156;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:ff9;src:url('chunks/assets/font_f8d6f3765cb306bf4b85f482.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.692383;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:ffa;src:url('chunks/assets/font_6411aa7a44298e8082b4a018.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_78c1e7fb6a7160d949193123.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.666504;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);}
.v1{vertical-align:-68.400000px;}
.v0{vertical-align:0.000000px;}
.ls16{letter-spacing:-0.612000px;}
.lse{letter-spacing:-0.106800px;}
.ls15{letter-spacing:-0.053280px;}
.ls2{letter-spacing:0.000000px;}
.ls14{letter-spacing:0.119520px;}
.ls13{letter-spacing:0.153360px;}
.ls10{letter-spacing:0.180000px;}
.ls6{letter-spacing:0.259800px;}
.ls17{letter-spacing:0.259920px;}
.ls1{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.900000px;}
.ls9{letter-spacing:1.080000px;}
.ls4{letter-spacing:2.748000px;}
.ls0{letter-spacing:2.880000px;}
.ls3{letter-spacing:3.144000px;}
.ls8{letter-spacing:3.780000px;}
.ls7{letter-spacing:16.740000px;}
.lsc{letter-spacing:31.860000px;}
.ls12{letter-spacing:166.476000px;}
.lsb{letter-spacing:267.996000px;}
.lsd{letter-spacing:403.356000px;}
.lsf{letter-spacing:494.796000px;}
.ls11{letter-spacing:537.276000px;}
.lsa{letter-spacing:1338.936000px;}
.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.642080px;}
.ws4{word-spacing:-16.020000px;}
.ws1{word-spacing:-15.300000px;}
.ws2{word-spacing:-15.238800px;}
.ws6{word-spacing:-14.940000px;}
.ws7{word-spacing:-14.886720px;}
.ws5{word-spacing:-14.833200px;}
.ws3{word-spacing:0.000000px;}
._15{margin-left:-2.513520px;}
._3{margin-left:-1.314720px;}
._1{width:1.842960px;}
._0{width:2.914560px;}
._2{width:4.384800px;}
._e{width:5.412720px;}
._6{width:6.513840px;}
._c{width:7.855920px;}
._b{width:8.936640px;}
._d{width:10.398240px;}
._13{width:11.583120px;}
._14{width:12.601680px;}
._7{width:13.754400px;}
._f{width:16.553520px;}
._10{width:18.226800px;}
._12{width:19.670640px;}
._11{width:20.676960px;}
._a{width:23.136720px;}
._8{width:24.143040px;}
._9{width:25.338240px;}
._17{width:29.268000px;}
._18{width:94.446000px;}
._16{width:492.518640px;}
._4{width:1042.896000px;}
._5{width:1141.680000px;}
.fc3{color:transparent;}
.fc2{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,84,106);}
.fs2{font-size:48.240000px;}
.fs1{font-size:54.000000px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y7{bottom:2.700000px;}
.y14{bottom:3.420000px;}
.y36{bottom:3.600000px;}
.y1a{bottom:3.780000px;}
.y6{bottom:4.140000px;}
.ye7{bottom:4.500000px;}
.y11b{bottom:6.840000px;}
.y5{bottom:8.100000px;}
.y3{bottom:12.780000px;}
.yc7{bottom:19.080000px;}
.ye2{bottom:20.520000px;}
.y35{bottom:20.880000px;}
.y19{bottom:21.060000px;}
.y12d{bottom:21.105000px;}
.ye6{bottom:21.600000px;}
.y11a{bottom:22.320000px;}
.y2{bottom:28.980000px;}
.y37{bottom:37.800000px;}
.y12c{bottom:37.845000px;}
.y119{bottom:37.974000px;}
.y33{bottom:38.160000px;}
.y18{bottom:38.340000px;}
.ye5{bottom:38.880000px;}
.y12b{bottom:53.325000px;}
.y17{bottom:55.440000px;}
.yb{bottom:56.700000px;}
.y12a{bottom:68.985000px;}
.y16{bottom:72.360000px;}
.y1b{bottom:72.720000px;}
.ya{bottom:73.980000px;}
.y129{bottom:84.465000px;}
.y32{bottom:90.000000px;}
.y128{bottom:99.585000px;}
.y31{bottom:107.280000px;}
.y109{bottom:112.716000px;}
.y127{bottom:115.425000px;}
.y118{bottom:118.116000px;}
.y91{bottom:123.336000px;}
.y30{bottom:124.590000px;}
.y57{bottom:128.376000px;}
.y108{bottom:129.996000px;}
.y126{bottom:130.905000px;}
.y136{bottom:136.665000px;}
.y90{bottom:140.616000px;}
.yca{bottom:141.336000px;}
.y2f{bottom:141.690000px;}
.ya4{bottom:142.236000px;}
.y56{bottom:145.476000px;}
.y125{bottom:146.565000px;}
.y107{bottom:147.276000px;}
.y135{bottom:153.945000px;}
.y41{bottom:157.530000px;}
.y8f{bottom:157.890000px;}
.y2e{bottom:158.970000px;}
.yc9{bottom:159.330000px;}
.ya3{bottom:159.510000px;}
.y124{bottom:162.045000px;}
.y55{bottom:162.750000px;}
.y106{bottom:164.550000px;}
.y117{bottom:170.670000px;}
.y134{bottom:171.045000px;}
.y40{bottom:174.450000px;}
.y8e{bottom:175.170000px;}
.y2d{bottom:176.250000px;}
.ya2{bottom:176.790000px;}
.yc8{bottom:177.330000px;}
.y123{bottom:177.525000px;}
.y54{bottom:180.030000px;}
.y105{bottom:181.830000px;}
.y133{bottom:188.325000px;}
.y3f{bottom:192.090000px;}
.y8d{bottom:192.450000px;}
.y122{bottom:193.185000px;}
.y2c{bottom:193.530000px;}
.ya1{bottom:194.070000px;}
.yc6{bottom:195.330000px;}
.y53{bottom:197.310000px;}
.y104{bottom:198.750000px;}
.y132{bottom:205.245000px;}
.y3e{bottom:209.190000px;}
.y8c{bottom:209.550000px;}
.y121{bottom:210.465000px;}
.y2b{bottom:210.810000px;}
.ya0{bottom:211.350000px;}
.y52{bottom:214.590000px;}
.y103{bottom:215.850000px;}
.y131{bottom:222.885000px;}
.y3d{bottom:226.470000px;}
.y114{bottom:226.830000px;}
.y120{bottom:227.565000px;}
.y2a{bottom:228.090000px;}
.y9f{bottom:228.450000px;}
.y51{bottom:231.690000px;}
.yc5{bottom:232.410000px;}
.y102{bottom:233.130000px;}
.y130{bottom:239.625000px;}
.y11f{bottom:243.045000px;}
.y3c{bottom:243.750000px;}
.y113{bottom:244.110000px;}
.y29{bottom:245.190000px;}
.y9e{bottom:245.730000px;}
.y50{bottom:248.970000px;}
.y101{bottom:250.770000px;}
.y12f{bottom:255.645000px;}
.y11e{bottom:258.705000px;}
.y3b{bottom:261.030000px;}
.y112{bottom:261.390000px;}
.y28{bottom:262.470000px;}
.y9d{bottom:263.010000px;}
.y4f{bottom:266.250000px;}
.yc4{bottom:266.970000px;}
.y100{bottom:268.050000px;}
.y12e{bottom:272.955000px;}
.y11d{bottom:274.215000px;}
.y3a{bottom:278.310000px;}
.y111{bottom:278.670000px;}
.y27{bottom:279.750000px;}
.y9c{bottom:280.290000px;}
.yff{bottom:282.990000px;}
.y4e{bottom:283.530000px;}
.yc3{bottom:284.610000px;}
.y39{bottom:295.590000px;}
.y8b{bottom:295.950000px;}
.y26{bottom:297.030000px;}
.y9b{bottom:297.570000px;}
.y4d{bottom:300.810000px;}
.yfe{bottom:300.990000px;}
.yc2{bottom:301.890000px;}
.y38{bottom:312.330000px;}
.y8a{bottom:313.050000px;}
.y25{bottom:314.310000px;}
.y9a{bottom:314.850000px;}
.y4c{bottom:318.090000px;}
.yc1{bottom:318.990000px;}
.y89{bottom:330.330000px;}
.y24{bottom:331.590000px;}
.y99{bottom:331.950000px;}
.y4b{bottom:335.190000px;}
.yc0{bottom:336.270000px;}
.yfd{bottom:336.990000px;}
.y88{bottom:347.610000px;}
.y23{bottom:348.690000px;}
.y98{bottom:349.230000px;}
.y4a{bottom:352.470000px;}
.ybf{bottom:353.190000px;}
.yfc{bottom:354.990000px;}
.y110{bottom:364.575000px;}
.y87{bottom:364.935000px;}
.y22{bottom:365.970000px;}
.y97{bottom:366.195000px;}
.y49{bottom:369.795000px;}
.ybe{bottom:370.875000px;}
.yfb{bottom:373.035000px;}
.y10f{bottom:381.855000px;}
.y86{bottom:382.215000px;}
.y21{bottom:383.295000px;}
.y96{bottom:383.835000px;}
.y48{bottom:387.075000px;}
.ybd{bottom:388.155000px;}
.yfa{bottom:391.035000px;}
.y10e{bottom:399.135000px;}
.y85{bottom:399.495000px;}
.y20{bottom:400.575000px;}
.y95{bottom:401.115000px;}
.y47{bottom:404.355000px;}
.ybc{bottom:404.895000px;}
.yf9{bottom:409.035000px;}
.y84{bottom:416.595000px;}
.y1f{bottom:417.855000px;}
.y94{bottom:418.395000px;}
.y46{bottom:421.635000px;}
.ybb{bottom:422.535000px;}
.yf8{bottom:427.035000px;}
.y83{bottom:433.515000px;}
.yaa{bottom:433.875000px;}
.y1e{bottom:434.955000px;}
.y45{bottom:438.735000px;}
.yba{bottom:439.815000px;}
.yf7{bottom:448.815000px;}
.y82{bottom:451.155000px;}
.y1d{bottom:452.235000px;}
.y93{bottom:452.775000px;}
.y44{bottom:456.015000px;}
.yb9{bottom:457.095000px;}
.y92{bottom:466.455000px;}
.y81{bottom:468.435000px;}
.y43{bottom:472.935000px;}
.yb8{bottom:474.375000px;}
.yf6{bottom:483.375000px;}
.y80{bottom:485.355000px;}
.ya9{bottom:485.715000px;}
.y42{bottom:490.215000px;}
.yb7{bottom:491.655000px;}
.yf5{bottom:500.475000px;}
.y7f{bottom:502.455000px;}
.y10d{bottom:502.815000px;}
.y1c{bottom:504.795000px;}
.yb6{bottom:508.755000px;}
.ye0{bottom:510.735000px;}
.yf4{bottom:517.755000px;}
.y7e{bottom:519.735000px;}
.ya8{bottom:520.095000px;}
.yb5{bottom:526.035000px;}
.ydf{bottom:527.835000px;}
.y7d{bottom:537.375000px;}
.yb4{bottom:543.315000px;}
.yde{bottom:545.115000px;}
.yf3{bottom:552.315000px;}
.y7c{bottom:554.655000px;}
.ye4{bottom:559.335000px;}
.yb3{bottom:560.235000px;}
.yf2{bottom:569.595000px;}
.y116{bottom:571.575000px;}
.y7b{bottom:571.935000px;}
.yb2{bottom:577.515000px;}
.yf1{bottom:586.875000px;}
.y7a{bottom:589.215000px;}
.yb1{bottom:594.795000px;}
.yf0{bottom:603.975000px;}
.y79{bottom:606.315000px;}
.yb0{bottom:611.895000px;}
.ye3{bottom:613.155000px;}
.yef{bottom:621.285000px;}
.y78{bottom:623.625000px;}
.yaf{bottom:629.565000px;}
.ye1{bottom:631.185000px;}
.yee{bottom:638.565000px;}
.y77{bottom:640.545000px;}
.ya7{bottom:640.905000px;}
.yed{bottom:655.845000px;}
.y76{bottom:657.825000px;}
.ya6{bottom:658.185000px;}
.yae{bottom:663.765000px;}
.yec{bottom:673.125000px;}
.y75{bottom:675.465000px;}
.yad{bottom:677.805000px;}
.ydd{bottom:687.345000px;}
.yeb{bottom:690.405000px;}
.y115{bottom:692.385000px;}
.y74{bottom:692.745000px;}
.yea{bottom:707.505000px;}
.y73{bottom:709.845000px;}
.ydc{bottom:721.905000px;}
.ye9{bottom:724.785000px;}
.y72{bottom:727.125000px;}
.ye8{bottom:738.465000px;}
.ydb{bottom:739.185000px;}
.y71{bottom:744.405000px;}
.yda{bottom:756.465000px;}
.y70{bottom:761.685000px;}
.yd9{bottom:773.745000px;}
.y6f{bottom:778.965000px;}
.yd8{bottom:790.845000px;}
.y10c{bottom:795.705000px;}
.y6e{bottom:796.065000px;}
.yd7{bottom:808.125000px;}
.y10b{bottom:812.985000px;}
.y6d{bottom:813.345000px;}
.yd6{bottom:825.405000px;}
.y10a{bottom:830.265000px;}
.y6c{bottom:830.625000px;}
.y34{bottom:831.885000px;}
.y138{bottom:836.025000px;}
.yd5{bottom:842.685000px;}
.y6b{bottom:847.905000px;}
.y137{bottom:850.245000px;}
.yd4{bottom:859.965000px;}
.y6a{bottom:865.185000px;}
.y11c{bottom:867.525000px;}
.yd3{bottom:877.110000px;}
.y69{bottom:882.510000px;}
.y15{bottom:884.310000px;}
.yd2{bottom:894.390000px;}
.yac{bottom:899.250000px;}
.y68{bottom:899.610000px;}
.yd1{bottom:908.610000px;}
.y67{bottom:916.890000px;}
.yd0{bottom:926.610000px;}
.y66{bottom:934.170000px;}
.ycf{bottom:944.610000px;}
.ya5{bottom:951.090000px;}
.y65{bottom:951.450000px;}
.yce{bottom:962.610000px;}
.y64{bottom:968.730000px;}
.y13{bottom:971.250000px;}
.ycd{bottom:980.610000px;}
.y63{bottom:986.010000px;}
.y12{bottom:992.670000px;}
.ycc{bottom:998.610000px;}
.y62{bottom:1003.110000px;}
.y11{bottom:1009.950000px;}
.y61{bottom:1020.390000px;}
.y10{bottom:1027.230000px;}
.y60{bottom:1037.670000px;}
.yf{bottom:1044.510000px;}
.y5f{bottom:1054.950000px;}
.ye{bottom:1062.150000px;}
.y5e{bottom:1072.230000px;}
.yd{bottom:1080.330000px;}
.y5d{bottom:1089.510000px;}
.yc{bottom:1104.450000px;}
.yab{bottom:1106.250000px;}
.y5c{bottom:1106.610000px;}
.y5b{bottom:1123.890000px;}
.y9{bottom:1127.670000px;}
.ycb{bottom:1140.840000px;}
.y5a{bottom:1141.200000px;}
.y8{bottom:1144.980000px;}
.y1{bottom:1158.480000px;}
.y59{bottom:1178.820000px;}
.y4{bottom:1179.360000px;}
.y58{bottom:1196.100000px;}
.hc{height:17.280000px;}
.h16{height:17.316000px;}
.h6{height:20.880000px;}
.h5{height:23.400000px;}
.h13{height:32.940000px;}
.h7{height:36.651094px;}
.h15{height:40.472227px;}
.h8{height:40.500000px;}
.h10{height:41.493516px;}
.h2{height:44.280000px;}
.h14{height:51.660000px;}
.h11{height:51.696000px;}
.h19{height:51.840000px;}
.h1c{height:52.971680px;}
.h1a{height:52.998047px;}
.h17{height:53.100000px;}
.h4{height:54.421875px;}
.he{height:58.621992px;}
.h9{height:58.651172px;}
.hb{height:60.226875px;}
.h18{height:61.423863px;}
.h3{height:66.757500px;}
.ha{height:84.898125px;}
.hd{height:86.220000px;}
.h1b{height:286.455000px;}
.h12{height:326.190000px;}
.hf{height:465.735000px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w7{width:31.140000px;}
.w15{width:38.736000px;}
.w16{width:50.940000px;}
.w19{width:52.200000px;}
.w1b{width:52.380000px;}
.w14{width:58.500000px;}
.w17{width:68.760000px;}
.w1a{width:68.976000px;}
.w18{width:69.120000px;}
.we{width:74.376000px;}
.w1d{width:74.520000px;}
.wa{width:85.176000px;}
.w1e{width:106.380000px;}
.w10{width:114.300000px;}
.wf{width:114.516000px;}
.wb{width:116.460000px;}
.wc{width:117.036000px;}
.w12{width:121.320000px;}
.w13{width:121.356000px;}
.w11{width:134.676000px;}
.w6{width:176.250000px;}
.w9{width:201.990000px;}
.w2{width:216.570000px;}
.wd{width:223.230000px;}
.w5{width:225.795000px;}
.w4{width:269.850000px;}
.w1c{width:286.995000px;}
.w20{width:337.755000px;}
.w21{width:340.275000px;}
.w8{width:470.625000px;}
.w3{width:495.645000px;}
.w1f{width:678.030000px;}
.w1{width:892.500000px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x4{left:1.260000px;}
.x2{left:4.680000px;}
.x11{left:7.020000px;}
.xe{left:8.100000px;}
.x2e{left:12.240000px;}
.x2c{left:13.500000px;}
.x2b{left:16.020000px;}
.x2f{left:18.390000px;}
.x33{left:21.600000px;}
.x27{left:23.970000px;}
.x28{left:25.560000px;}
.x1e{left:27.045000px;}
.x1c{left:28.305000px;}
.x1a{left:29.340000px;}
.x22{left:30.450000px;}
.x26{left:32.940000px;}
.x5{left:34.920000px;}
.x40{left:38.160000px;}
.x2a{left:39.414000px;}
.x1b{left:45.000000px;}
.x24{left:47.520000px;}
.x18{left:48.600000px;}
.x1d{left:52.380000px;}
.x35{left:67.314000px;}
.x41{left:81.225000px;}
.x16{left:83.025000px;}
.x1{left:90.396000px;}
.x20{left:93.645000px;}
.x7{left:108.036000px;}
.x3c{left:125.685000px;}
.x9{left:131.436000px;}
.xb{left:137.016000px;}
.x14{left:138.276000px;}
.x29{left:149.436000px;}
.x39{left:152.850000px;}
.x3b{left:175.350000px;}
.x1f{left:183.270000px;}
.x15{left:186.150000px;}
.x42{left:274.539000px;}
.xf{left:283.755000px;}
.xa{left:289.515000px;}
.x3{left:306.975000px;}
.x10{left:314.895000px;}
.x36{left:353.235000px;}
.x3a{left:363.315000px;}
.xc{left:388.335000px;}
.x2d{left:405.435000px;}
.x21{left:406.515000px;}
.x43{left:445.245000px;}
.xd{left:446.505000px;}
.x3d{left:462.345000px;}
.x17{left:473.325000px;}
.x37{left:474.405000px;}
.x23{left:480.885000px;}
.x30{left:526.785000px;}
.x3e{left:536.865000px;}
.x6{left:576.825000px;}
.x31{left:585.285000px;}
.x19{left:589.785000px;}
.x25{left:595.410000px;}
.x3f{left:611.250000px;}
.x32{left:624.030000px;}
.x13{left:635.550000px;}
.x34{left:674.970000px;}
.x38{left:706.290000px;}
.x8{left:770.040000px;}
.x12{left:772.200000px;}
@media print{
.v1{vertical-align:-60.800000pt;}
.v0{vertical-align:0.000000pt;}
.ls16{letter-spacing:-0.544000pt;}
.lse{letter-spacing:-0.094933pt;}
.ls15{letter-spacing:-0.047360pt;}
.ls2{letter-spacing:0.000000pt;}
.ls14{letter-spacing:0.106240pt;}
.ls13{letter-spacing:0.136320pt;}
.ls10{letter-spacing:0.160000pt;}
.ls6{letter-spacing:0.230933pt;}
.ls17{letter-spacing:0.231040pt;}
.ls1{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.800000pt;}
.ls9{letter-spacing:0.960000pt;}
.ls4{letter-spacing:2.442667pt;}
.ls0{letter-spacing:2.560000pt;}
.ls3{letter-spacing:2.794667pt;}
.ls8{letter-spacing:3.360000pt;}
.ls7{letter-spacing:14.880000pt;}
.lsc{letter-spacing:28.320000pt;}
.ls12{letter-spacing:147.978667pt;}
.lsb{letter-spacing:238.218667pt;}
.lsd{letter-spacing:358.538667pt;}
.lsf{letter-spacing:439.818667pt;}
.ls11{letter-spacing:477.578667pt;}
.lsa{letter-spacing:1190.165333pt;}
.ws0{word-spacing:-17.459627pt;}
.ws4{word-spacing:-14.240000pt;}
.ws1{word-spacing:-13.600000pt;}
.ws2{word-spacing:-13.545600pt;}
.ws6{word-spacing:-13.280000pt;}
.ws7{word-spacing:-13.232640pt;}
.ws5{word-spacing:-13.185067pt;}
.ws3{word-spacing:0.000000pt;}
._15{margin-left:-2.234240pt;}
._3{margin-left:-1.168640pt;}
._1{width:1.638187pt;}
._0{width:2.590720pt;}
._2{width:3.897600pt;}
._e{width:4.811307pt;}
._6{width:5.790080pt;}
._c{width:6.983040pt;}
._b{width:7.943680pt;}
._d{width:9.242880pt;}
._13{width:10.296107pt;}
._14{width:11.201493pt;}
._7{width:12.226133pt;}
._f{width:14.714240pt;}
._10{width:16.201600pt;}
._12{width:17.485013pt;}
._11{width:18.379520pt;}
._a{width:20.565973pt;}
._8{width:21.460480pt;}
._9{width:22.522880pt;}
._17{width:26.016000pt;}
._18{width:83.952000pt;}
._16{width:437.794347pt;}
._4{width:927.018667pt;}
._5{width:1014.826667pt;}
.fs2{font-size:42.880000pt;}
.fs1{font-size:48.000000pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y7{bottom:2.400000pt;}
.y14{bottom:3.040000pt;}
.y36{bottom:3.200000pt;}
.y1a{bottom:3.360000pt;}
.y6{bottom:3.680000pt;}
.ye7{bottom:4.000000pt;}
.y11b{bottom:6.080000pt;}
.y5{bottom:7.200000pt;}
.y3{bottom:11.360000pt;}
.yc7{bottom:16.960000pt;}
.ye2{bottom:18.240000pt;}
.y35{bottom:18.560000pt;}
.y19{bottom:18.720000pt;}
.y12d{bottom:18.760000pt;}
.ye6{bottom:19.200000pt;}
.y11a{bottom:19.840000pt;}
.y2{bottom:25.760000pt;}
.y37{bottom:33.600000pt;}
.y12c{bottom:33.640000pt;}
.y119{bottom:33.754667pt;}
.y33{bottom:33.920000pt;}
.y18{bottom:34.080000pt;}
.ye5{bottom:34.560000pt;}
.y12b{bottom:47.400000pt;}
.y17{bottom:49.280000pt;}
.yb{bottom:50.400000pt;}
.y12a{bottom:61.320000pt;}
.y16{bottom:64.320000pt;}
.y1b{bottom:64.640000pt;}
.ya{bottom:65.760000pt;}
.y129{bottom:75.080000pt;}
.y32{bottom:80.000000pt;}
.y128{bottom:88.520000pt;}
.y31{bottom:95.360000pt;}
.y109{bottom:100.192000pt;}
.y127{bottom:102.600000pt;}
.y118{bottom:104.992000pt;}
.y91{bottom:109.632000pt;}
.y30{bottom:110.746667pt;}
.y57{bottom:114.112000pt;}
.y108{bottom:115.552000pt;}
.y126{bottom:116.360000pt;}
.y136{bottom:121.480000pt;}
.y90{bottom:124.992000pt;}
.yca{bottom:125.632000pt;}
.y2f{bottom:125.946667pt;}
.ya4{bottom:126.432000pt;}
.y56{bottom:129.312000pt;}
.y125{bottom:130.280000pt;}
.y107{bottom:130.912000pt;}
.y135{bottom:136.840000pt;}
.y41{bottom:140.026667pt;}
.y8f{bottom:140.346667pt;}
.y2e{bottom:141.306667pt;}
.yc9{bottom:141.626667pt;}
.ya3{bottom:141.786667pt;}
.y124{bottom:144.040000pt;}
.y55{bottom:144.666667pt;}
.y106{bottom:146.266667pt;}
.y117{bottom:151.706667pt;}
.y134{bottom:152.040000pt;}
.y40{bottom:155.066667pt;}
.y8e{bottom:155.706667pt;}
.y2d{bottom:156.666667pt;}
.ya2{bottom:157.146667pt;}
.yc8{bottom:157.626667pt;}
.y123{bottom:157.800000pt;}
.y54{bottom:160.026667pt;}
.y105{bottom:161.626667pt;}
.y133{bottom:167.400000pt;}
.y3f{bottom:170.746667pt;}
.y8d{bottom:171.066667pt;}
.y122{bottom:171.720000pt;}
.y2c{bottom:172.026667pt;}
.ya1{bottom:172.506667pt;}
.yc6{bottom:173.626667pt;}
.y53{bottom:175.386667pt;}
.y104{bottom:176.666667pt;}
.y132{bottom:182.440000pt;}
.y3e{bottom:185.946667pt;}
.y8c{bottom:186.266667pt;}
.y121{bottom:187.080000pt;}
.y2b{bottom:187.386667pt;}
.ya0{bottom:187.866667pt;}
.y52{bottom:190.746667pt;}
.y103{bottom:191.866667pt;}
.y131{bottom:198.120000pt;}
.y3d{bottom:201.306667pt;}
.y114{bottom:201.626667pt;}
.y120{bottom:202.280000pt;}
.y2a{bottom:202.746667pt;}
.y9f{bottom:203.066667pt;}
.y51{bottom:205.946667pt;}
.yc5{bottom:206.586667pt;}
.y102{bottom:207.226667pt;}
.y130{bottom:213.000000pt;}
.y11f{bottom:216.040000pt;}
.y3c{bottom:216.666667pt;}
.y113{bottom:216.986667pt;}
.y29{bottom:217.946667pt;}
.y9e{bottom:218.426667pt;}
.y50{bottom:221.306667pt;}
.y101{bottom:222.906667pt;}
.y12f{bottom:227.240000pt;}
.y11e{bottom:229.960000pt;}
.y3b{bottom:232.026667pt;}
.y112{bottom:232.346667pt;}
.y28{bottom:233.306667pt;}
.y9d{bottom:233.786667pt;}
.y4f{bottom:236.666667pt;}
.yc4{bottom:237.306667pt;}
.y100{bottom:238.266667pt;}
.y12e{bottom:242.626667pt;}
.y11d{bottom:243.746667pt;}
.y3a{bottom:247.386667pt;}
.y111{bottom:247.706667pt;}
.y27{bottom:248.666667pt;}
.y9c{bottom:249.146667pt;}
.yff{bottom:251.546667pt;}
.y4e{bottom:252.026667pt;}
.yc3{bottom:252.986667pt;}
.y39{bottom:262.746667pt;}
.y8b{bottom:263.066667pt;}
.y26{bottom:264.026667pt;}
.y9b{bottom:264.506667pt;}
.y4d{bottom:267.386667pt;}
.yfe{bottom:267.546667pt;}
.yc2{bottom:268.346667pt;}
.y38{bottom:277.626667pt;}
.y8a{bottom:278.266667pt;}
.y25{bottom:279.386667pt;}
.y9a{bottom:279.866667pt;}
.y4c{bottom:282.746667pt;}
.yc1{bottom:283.546667pt;}
.y89{bottom:293.626667pt;}
.y24{bottom:294.746667pt;}
.y99{bottom:295.066667pt;}
.y4b{bottom:297.946667pt;}
.yc0{bottom:298.906667pt;}
.yfd{bottom:299.546667pt;}
.y88{bottom:308.986667pt;}
.y23{bottom:309.946667pt;}
.y98{bottom:310.426667pt;}
.y4a{bottom:313.306667pt;}
.ybf{bottom:313.946667pt;}
.yfc{bottom:315.546667pt;}
.y110{bottom:324.066667pt;}
.y87{bottom:324.386667pt;}
.y22{bottom:325.306667pt;}
.y97{bottom:325.506667pt;}
.y49{bottom:328.706667pt;}
.ybe{bottom:329.666667pt;}
.yfb{bottom:331.586667pt;}
.y10f{bottom:339.426667pt;}
.y86{bottom:339.746667pt;}
.y21{bottom:340.706667pt;}
.y96{bottom:341.186667pt;}
.y48{bottom:344.066667pt;}
.ybd{bottom:345.026667pt;}
.yfa{bottom:347.586667pt;}
.y10e{bottom:354.786667pt;}
.y85{bottom:355.106667pt;}
.y20{bottom:356.066667pt;}
.y95{bottom:356.546667pt;}
.y47{bottom:359.426667pt;}
.ybc{bottom:359.906667pt;}
.yf9{bottom:363.586667pt;}
.y84{bottom:370.306667pt;}
.y1f{bottom:371.426667pt;}
.y94{bottom:371.906667pt;}
.y46{bottom:374.786667pt;}
.ybb{bottom:375.586667pt;}
.yf8{bottom:379.586667pt;}
.y83{bottom:385.346667pt;}
.yaa{bottom:385.666667pt;}
.y1e{bottom:386.626667pt;}
.y45{bottom:389.986667pt;}
.yba{bottom:390.946667pt;}
.yf7{bottom:398.946667pt;}
.y82{bottom:401.026667pt;}
.y1d{bottom:401.986667pt;}
.y93{bottom:402.466667pt;}
.y44{bottom:405.346667pt;}
.yb9{bottom:406.306667pt;}
.y92{bottom:414.626667pt;}
.y81{bottom:416.386667pt;}
.y43{bottom:420.386667pt;}
.yb8{bottom:421.666667pt;}
.yf6{bottom:429.666667pt;}
.y80{bottom:431.426667pt;}
.ya9{bottom:431.746667pt;}
.y42{bottom:435.746667pt;}
.yb7{bottom:437.026667pt;}
.yf5{bottom:444.866667pt;}
.y7f{bottom:446.626667pt;}
.y10d{bottom:446.946667pt;}
.y1c{bottom:448.706667pt;}
.yb6{bottom:452.226667pt;}
.ye0{bottom:453.986667pt;}
.yf4{bottom:460.226667pt;}
.y7e{bottom:461.986667pt;}
.ya8{bottom:462.306667pt;}
.yb5{bottom:467.586667pt;}
.ydf{bottom:469.186667pt;}
.y7d{bottom:477.666667pt;}
.yb4{bottom:482.946667pt;}
.yde{bottom:484.546667pt;}
.yf3{bottom:490.946667pt;}
.y7c{bottom:493.026667pt;}
.ye4{bottom:497.186667pt;}
.yb3{bottom:497.986667pt;}
.yf2{bottom:506.306667pt;}
.y116{bottom:508.066667pt;}
.y7b{bottom:508.386667pt;}
.yb2{bottom:513.346667pt;}
.yf1{bottom:521.666667pt;}
.y7a{bottom:523.746667pt;}
.yb1{bottom:528.706667pt;}
.yf0{bottom:536.866667pt;}
.y79{bottom:538.946667pt;}
.yb0{bottom:543.906667pt;}
.ye3{bottom:545.026667pt;}
.yef{bottom:552.253333pt;}
.y78{bottom:554.333333pt;}
.yaf{bottom:559.613333pt;}
.ye1{bottom:561.053333pt;}
.yee{bottom:567.613333pt;}
.y77{bottom:569.373333pt;}
.ya7{bottom:569.693333pt;}
.yed{bottom:582.973333pt;}
.y76{bottom:584.733333pt;}
.ya6{bottom:585.053333pt;}
.yae{bottom:590.013333pt;}
.yec{bottom:598.333333pt;}
.y75{bottom:600.413333pt;}
.yad{bottom:602.493333pt;}
.ydd{bottom:610.973333pt;}
.yeb{bottom:613.693333pt;}
.y115{bottom:615.453333pt;}
.y74{bottom:615.773333pt;}
.yea{bottom:628.893333pt;}
.y73{bottom:630.973333pt;}
.ydc{bottom:641.693333pt;}
.ye9{bottom:644.253333pt;}
.y72{bottom:646.333333pt;}
.ye8{bottom:656.413333pt;}
.ydb{bottom:657.053333pt;}
.y71{bottom:661.693333pt;}
.yda{bottom:672.413333pt;}
.y70{bottom:677.053333pt;}
.yd9{bottom:687.773333pt;}
.y6f{bottom:692.413333pt;}
.yd8{bottom:702.973333pt;}
.y10c{bottom:707.293333pt;}
.y6e{bottom:707.613333pt;}
.yd7{bottom:718.333333pt;}
.y10b{bottom:722.653333pt;}
.y6d{bottom:722.973333pt;}
.yd6{bottom:733.693333pt;}
.y10a{bottom:738.013333pt;}
.y6c{bottom:738.333333pt;}
.y34{bottom:739.453333pt;}
.y138{bottom:743.133333pt;}
.yd5{bottom:749.053333pt;}
.y6b{bottom:753.693333pt;}
.y137{bottom:755.773333pt;}
.yd4{bottom:764.413333pt;}
.y6a{bottom:769.053333pt;}
.y11c{bottom:771.133333pt;}
.yd3{bottom:779.653333pt;}
.y69{bottom:784.453333pt;}
.y15{bottom:786.053333pt;}
.yd2{bottom:795.013333pt;}
.yac{bottom:799.333333pt;}
.y68{bottom:799.653333pt;}
.yd1{bottom:807.653333pt;}
.y67{bottom:815.013333pt;}
.yd0{bottom:823.653333pt;}
.y66{bottom:830.373333pt;}
.ycf{bottom:839.653333pt;}
.ya5{bottom:845.413333pt;}
.y65{bottom:845.733333pt;}
.yce{bottom:855.653333pt;}
.y64{bottom:861.093333pt;}
.y13{bottom:863.333333pt;}
.ycd{bottom:871.653333pt;}
.y63{bottom:876.453333pt;}
.y12{bottom:882.373333pt;}
.ycc{bottom:887.653333pt;}
.y62{bottom:891.653333pt;}
.y11{bottom:897.733333pt;}
.y61{bottom:907.013333pt;}
.y10{bottom:913.093333pt;}
.y60{bottom:922.373333pt;}
.yf{bottom:928.453333pt;}
.y5f{bottom:937.733333pt;}
.ye{bottom:944.133333pt;}
.y5e{bottom:953.093333pt;}
.yd{bottom:960.293333pt;}
.y5d{bottom:968.453333pt;}
.yc{bottom:981.733333pt;}
.yab{bottom:983.333333pt;}
.y5c{bottom:983.653333pt;}
.y5b{bottom:999.013333pt;}
.y9{bottom:1002.373333pt;}
.ycb{bottom:1014.080000pt;}
.y5a{bottom:1014.400000pt;}
.y8{bottom:1017.760000pt;}
.y1{bottom:1029.760000pt;}
.y59{bottom:1047.840000pt;}
.y4{bottom:1048.320000pt;}
.y58{bottom:1063.200000pt;}
.hc{height:15.360000pt;}
.h16{height:15.392000pt;}
.h6{height:18.560000pt;}
.h5{height:20.800000pt;}
.h13{height:29.280000pt;}
.h7{height:32.578750pt;}
.h15{height:35.975313pt;}
.h8{height:36.000000pt;}
.h10{height:36.883125pt;}
.h2{height:39.360000pt;}
.h14{height:45.920000pt;}
.h11{height:45.952000pt;}
.h19{height:46.080000pt;}
.h1c{height:47.085938pt;}
.h1a{height:47.109375pt;}
.h17{height:47.200000pt;}
.h4{height:48.375000pt;}
.he{height:52.108438pt;}
.h9{height:52.134375pt;}
.hb{height:53.535000pt;}
.h18{height:54.598989pt;}
.h3{height:59.340000pt;}
.ha{height:75.465000pt;}
.hd{height:76.640000pt;}
.h1b{height:254.626667pt;}
.h12{height:289.946667pt;}
.hf{height:413.986667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w7{width:27.680000pt;}
.w15{width:34.432000pt;}
.w16{width:45.280000pt;}
.w19{width:46.400000pt;}
.w1b{width:46.560000pt;}
.w14{width:52.000000pt;}
.w17{width:61.120000pt;}
.w1a{width:61.312000pt;}
.w18{width:61.440000pt;}
.we{width:66.112000pt;}
.w1d{width:66.240000pt;}
.wa{width:75.712000pt;}
.w1e{width:94.560000pt;}
.w10{width:101.600000pt;}
.wf{width:101.792000pt;}
.wb{width:103.520000pt;}
.wc{width:104.032000pt;}
.w12{width:107.840000pt;}
.w13{width:107.872000pt;}
.w11{width:119.712000pt;}
.w6{width:156.666667pt;}
.w9{width:179.546667pt;}
.w2{width:192.506667pt;}
.wd{width:198.426667pt;}
.w5{width:200.706667pt;}
.w4{width:239.866667pt;}
.w1c{width:255.106667pt;}
.w20{width:300.226667pt;}
.w21{width:302.466667pt;}
.w8{width:418.333333pt;}
.w3{width:440.573333pt;}
.w1f{width:602.693333pt;}
.w1{width:793.333333pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x4{left:1.120000pt;}
.x2{left:4.160000pt;}
.x11{left:6.240000pt;}
.xe{left:7.200000pt;}
.x2e{left:10.880000pt;}
.x2c{left:12.000000pt;}
.x2b{left:14.240000pt;}
.x2f{left:16.346667pt;}
.x33{left:19.200000pt;}
.x27{left:21.306667pt;}
.x28{left:22.720000pt;}
.x1e{left:24.040000pt;}
.x1c{left:25.160000pt;}
.x1a{left:26.080000pt;}
.x22{left:27.066667pt;}
.x26{left:29.280000pt;}
.x5{left:31.040000pt;}
.x40{left:33.920000pt;}
.x2a{left:35.034667pt;}
.x1b{left:40.000000pt;}
.x24{left:42.240000pt;}
.x18{left:43.200000pt;}
.x1d{left:46.560000pt;}
.x35{left:59.834667pt;}
.x41{left:72.200000pt;}
.x16{left:73.800000pt;}
.x1{left:80.352000pt;}
.x20{left:83.240000pt;}
.x7{left:96.032000pt;}
.x3c{left:111.720000pt;}
.x9{left:116.832000pt;}
.xb{left:121.792000pt;}
.x14{left:122.912000pt;}
.x29{left:132.832000pt;}
.x39{left:135.866667pt;}
.x3b{left:155.866667pt;}
.x1f{left:162.906667pt;}
.x15{left:165.466667pt;}
.x42{left:244.034667pt;}
.xf{left:252.226667pt;}
.xa{left:257.346667pt;}
.x3{left:272.866667pt;}
.x10{left:279.906667pt;}
.x36{left:313.986667pt;}
.x3a{left:322.946667pt;}
.xc{left:345.186667pt;}
.x2d{left:360.386667pt;}
.x21{left:361.346667pt;}
.x43{left:395.773333pt;}
.xd{left:396.893333pt;}
.x3d{left:410.973333pt;}
.x17{left:420.733333pt;}
.x37{left:421.693333pt;}
.x23{left:427.453333pt;}
.x30{left:468.253333pt;}
.x3e{left:477.213333pt;}
.x6{left:512.733333pt;}
.x31{left:520.253333pt;}
.x19{left:524.253333pt;}
.x25{left:529.253333pt;}
.x3f{left:543.333333pt;}
.x32{left:554.693333pt;}
.x13{left:564.933333pt;}
.x34{left:599.973333pt;}
.x38{left:627.813333pt;}
.x8{left:684.480000pt;}
.x12{left:686.400000pt;}
}




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