
    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_3ae2d6a214a2f8952f73e2fe.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_e5f5855f477f86ed3025115d.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.921387;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_f54e54c1a2302680d896faff.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914062;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_d84e694bb1fb318a645faaba.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_1be629f2268af5bd7b359914.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_5458238309b23256cd5748d6.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_9f9467f4eaa75da806b82d33.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.932617;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;}
.m3{transform:matrix(0.000000,-0.249675,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249675,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249675,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250325,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250325,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:-35.954772px;}
.v1{vertical-align:-3.112503px;}
.v0{vertical-align:0.000000px;}
.ls4{letter-spacing:-1.008000px;}
.ls19{letter-spacing:-0.936000px;}
.ls10{letter-spacing:-0.389957px;}
.ls16{letter-spacing:-0.360000px;}
.lsf{letter-spacing:-0.345953px;}
.ls14{letter-spacing:-0.288000px;}
.ls13{letter-spacing:-0.216000px;}
.ls6{letter-spacing:-0.144000px;}
.ls3{letter-spacing:-0.109200px;}
.ls1{letter-spacing:-0.072000px;}
.ls17{letter-spacing:-0.053280px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.053280px;}
.lsd{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.144000px;}
.ls8{letter-spacing:0.180000px;}
.ls18{letter-spacing:0.288000px;}
.ls9{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.432000px;}
.lsc{letter-spacing:0.720000px;}
.ls15{letter-spacing:0.864000px;}
.lse{letter-spacing:1.008880px;}
.ls11{letter-spacing:8.640000px;}
.ls7{letter-spacing:62.784000px;}
.ls2{letter-spacing:64.421280px;}
.lsa{letter-spacing:548.635212px;}
.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;}
}
.ws6{word-spacing:-21.060000px;}
.ws12{word-spacing:-18.864000px;}
.ws17{word-spacing:-18.720000px;}
.ws16{word-spacing:-18.288000px;}
.ws7{word-spacing:-18.144000px;}
.ws9{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws2{word-spacing:-17.928000px;}
.ws8{word-spacing:-17.856000px;}
.ws11{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.560000px;}
.ws4{word-spacing:-16.450800px;}
.ws13{word-spacing:-14.940000px;}
.ws15{word-spacing:-14.886720px;}
.ws14{word-spacing:-14.580000px;}
.wse{word-spacing:-9.722636px;}
.ws10{word-spacing:-7.903431px;}
.wsc{word-spacing:-7.883218px;}
.wsd{word-spacing:-7.297030px;}
.wsf{word-spacing:-6.690629px;}
.wsb{word-spacing:-0.043021px;}
.ws3{word-spacing:0.000000px;}
.ws5{word-spacing:1.258560px;}
.wsa{word-spacing:593.446932px;}
._24{margin-left:-9.792000px;}
._19{margin-left:-4.924320px;}
._8{margin-left:-3.732480px;}
._9{margin-left:-2.531520px;}
._0{margin-left:-1.301760px;}
._1{width:1.061760px;}
._6{width:2.203680px;}
._a{width:3.456000px;}
._4{width:5.166720px;}
._5{width:6.600960px;}
._e{width:7.894080px;}
._10{width:9.288000px;}
._11{width:10.981920px;}
._7{width:12.983040px;}
._17{width:14.328000px;}
._b{width:16.200000px;}
._f{width:19.224000px;}
._12{width:20.664000px;}
._13{width:21.744000px;}
._1b{width:23.201760px;}
._1a{width:24.264000px;}
._1e{width:25.284960px;}
._c{width:26.928000px;}
._d{width:28.224000px;}
._18{width:30.672000px;}
._1c{width:32.544000px;}
._1d{width:33.564000px;}
._23{width:35.208000px;}
._20{width:47.376000px;}
._21{width:48.384000px;}
._22{width:63.360000px;}
._2{width:131.196000px;}
._3{width:151.920000px;}
._14{width:685.866960px;}
._15{width:721.560000px;}
._1f{width:1559.414400px;}
._16{width:1592.534400px;}
.fc5{color:rgb(0,139,91);}
.fc3{color:rgb(0,126,79);}
.fc2{color:rgb(0,102,0);}
.fc1{color:rgb(238,0,0);}
.fc7{color:rgb(255,255,255);}
.fc6{color:rgb(89,89,89);}
.fc4{color:rgb(127,127,127);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:29.604551px;}
.fs8{font-size:32.198304px;}
.fs4{font-size:32.287743px;}
.fs7{font-size:34.881495px;}
.fsa{font-size:34.926837px;}
.fs5{font-size:34.970935px;}
.fs6{font-size:43.020511px;}
.fsb{font-size:43.109951px;}
.fs3{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.y8f{bottom:2.071603px;}
.yc4{bottom:5.760000px;}
.yea{bottom:7.560000px;}
.ycb{bottom:7.740000px;}
.yd{bottom:7.920000px;}
.y9{bottom:8.100000px;}
.yd8{bottom:9.540000px;}
.ye7{bottom:9.720000px;}
.y3{bottom:11.880000px;}
.ydc{bottom:12.240000px;}
.y8e{bottom:12.826552px;}
.y2{bottom:14.250000px;}
.y2a{bottom:16.020000px;}
.y91{bottom:16.091102px;}
.y7{bottom:17.100000px;}
.y2c{bottom:17.280000px;}
.yc7{bottom:22.680000px;}
.ye9{bottom:24.840000px;}
.yca{bottom:25.020000px;}
.ye3{bottom:25.560000px;}
.yb{bottom:26.820000px;}
.y90{bottom:26.846230px;}
.yc{bottom:27.000000px;}
.y10{bottom:27.180000px;}
.yd7{bottom:29.520000px;}
.ydb{bottom:34.020000px;}
.ycf{bottom:35.820000px;}
.y29{bottom:39.780000px;}
.yc9{bottom:42.120000px;}
.yc6{bottom:42.480000px;}
.ye2{bottom:45.360000px;}
.yf4{bottom:46.620000px;}
.yd2{bottom:46.800000px;}
.y31{bottom:47.916000px;}
.ye6{bottom:48.600000px;}
.y5{bottom:48.636000px;}
.yd6{bottom:49.320000px;}
.ydd{bottom:51.120000px;}
.yda{bottom:51.300000px;}
.y92{bottom:55.377504px;}
.yad{bottom:55.735263px;}
.yce{bottom:55.800000px;}
.ya1{bottom:55.936503px;}
.yee{bottom:56.340000px;}
.yc8{bottom:59.400000px;}
.y28{bottom:63.540000px;}
.yfd{bottom:63.720000px;}
.yd1{bottom:64.080000px;}
.ye1{bottom:65.160000px;}
.ye5{bottom:65.874000px;}
.yac{bottom:66.490391px;}
.yf3{bottom:68.400000px;}
.yd3{bottom:68.580000px;}
.ya0{bottom:68.838184px;}
.yd5{bottom:69.120000px;}
.yd9{bottom:72.900000px;}
.ycd{bottom:75.600000px;}
.yed{bottom:76.140000px;}
.y2d{bottom:78.876000px;}
.y103{bottom:81.360000px;}
.y9f{bottom:81.762225px;}
.yfc{bottom:83.520000px;}
.yde{bottom:84.636000px;}
.ye0{bottom:85.134000px;}
.y1bb{bottom:85.536000px;}
.yf2{bottom:85.680000px;}
.yd0{bottom:85.860000px;}
.y27{bottom:87.480000px;}
.ye4{bottom:87.654000px;}
.y162{bottom:88.416000px;}
.y139{bottom:89.316000px;}
.yf8{bottom:90.180000px;}
.y5b{bottom:93.456000px;}
.y17a{bottom:94.356000px;}
.ya7{bottom:94.645124px;}
.y9e{bottom:94.663012px;}
.yec{bottom:95.940000px;}
.y72{bottom:99.936000px;}
.yf1{bottom:102.960000px;}
.y101{bottom:103.140000px;}
.yfb{bottom:103.320000px;}
.ydf{bottom:104.934000px;}
.y198{bottom:105.156000px;}
.y1ba{bottom:106.236000px;}
.y26{bottom:111.285000px;}
.yf7{bottom:111.960000px;}
.y161{bottom:112.356000px;}
.y9d{bottom:112.953438px;}
.y138{bottom:113.076000px;}
.y78{bottom:113.964107px;}
.y117{bottom:117.036000px;}
.y5a{bottom:117.396000px;}
.y179{bottom:118.116000px;}
.y71{bottom:119.916000px;}
.y102{bottom:120.240000px;}
.y2b{bottom:120.636000px;}
.yfa{bottom:123.120000px;}
.y77{bottom:124.714762px;}
.yf0{bottom:124.740000px;}
.ya6{bottom:125.832759px;}
.y9c{bottom:125.859591px;}
.y1b9{bottom:126.936000px;}
.y197{bottom:128.916000px;}
.yf6{bottom:129.240000px;}
.y79{bottom:131.020263px;}
.y25{bottom:135.045000px;}
.y160{bottom:136.116000px;}
.y70{bottom:139.716000px;}
.y116{bottom:140.796000px;}
.y59{bottom:141.156000px;}
.y178{bottom:141.876000px;}
.y100{bottom:142.065000px;}
.y9b{bottom:144.150016px;}
.y137{bottom:145.836000px;}
.yef{bottom:146.340000px;}
.yf5{bottom:146.520000px;}
.y1b8{bottom:147.636000px;}
.y83{bottom:150.142478px;}
.y8d{bottom:151.662954px;}
.y196{bottom:152.670000px;}
.y9a{bottom:157.074057px;}
.y24{bottom:158.805000px;}
.y15f{bottom:159.870000px;}
.y89{bottom:160.785806px;}
.y82{bottom:161.698091px;}
.yff{bottom:163.845000px;}
.y115{bottom:164.550000px;}
.y58{bottom:164.910000px;}
.y6f{bottom:165.810000px;}
.y73{bottom:166.935000px;}
.y1b7{bottom:168.330000px;}
.ya5{bottom:169.926547px;}
.y99{bottom:169.971267px;}
.y81{bottom:173.280537px;}
.ya9{bottom:173.307369px;}
.y8c{bottom:173.888727px;}
.y177{bottom:174.630000px;}
.y195{bottom:176.610000px;}
.yfe{bottom:181.125000px;}
.y8b{bottom:181.893583px;}
.y80{bottom:182.161902px;}
.y23{bottom:182.745000px;}
.y15e{bottom:183.630000px;}
.y16{bottom:184.530000px;}
.y136{bottom:187.770000px;}
.y98{bottom:188.261692px;}
.y114{bottom:188.490000px;}
.y57{bottom:188.670000px;}
.y8a{bottom:190.095206px;}
.y7f{bottom:193.717516px;}
.y1b6{bottom:197.490000px;}
.y176{bottom:198.570000px;}
.y194{bottom:200.370000px;}
.y88{bottom:200.810086px;}
.ya4{bottom:201.141013px;}
.y97{bottom:201.167845px;}
.y7e{bottom:202.598881px;}
.yd4{bottom:204.330000px;}
.y22{bottom:206.505000px;}
.y15d{bottom:207.570000px;}
.y135{bottom:211.530000px;}
.y113{bottom:212.250000px;}
.y56{bottom:212.610000px;}
.y7d{bottom:214.154494px;}
.y86{bottom:216.792966px;}
.y1b5{bottom:218.190000px;}
.y96{bottom:219.458270px;}
.y74{bottom:221.738984px;}
.y175{bottom:222.330000px;}
.y193{bottom:224.130000px;}
.y7c{bottom:225.719052px;}
.y87{bottom:226.541897px;}
.y21{bottom:230.265000px;}
.y95{bottom:232.355480px;}
.y134{bottom:235.290000px;}
.y112{bottom:236.010000px;}
.y76{bottom:237.498264px;}
.y7b{bottom:238.374774px;}
.y1b4{bottom:238.890000px;}
.y15c{bottom:240.330000px;}
.y85{bottom:242.730489px;}
.y84{bottom:242.819928px;}
.ya3{bottom:245.234801px;}
.y94{bottom:245.279521px;}
.y55{bottom:245.370000px;}
.ya8{bottom:245.977151px;}
.y174{bottom:246.090000px;}
.y192{bottom:247.890000px;}
.y75{bottom:248.257864px;}
.y7a{bottom:249.152261px;}
.yaa{bottom:253.105498px;}
.y133{bottom:259.050000px;}
.y111{bottom:259.770000px;}
.y20{bottom:263.025000px;}
.ya2{bottom:263.525226px;}
.y93{bottom:263.569946px;}
.y15b{bottom:264.090000px;}
.y1b3{bottom:268.050000px;}
.y54{bottom:269.130000px;}
.y173{bottom:269.850000px;}
.y191{bottom:271.830000px;}
.yab{bottom:271.869953px;}
.y132{bottom:283.035000px;}
.y110{bottom:283.755000px;}
.y1f{bottom:286.965000px;}
.y15a{bottom:287.895000px;}
.y1b2{bottom:288.795000px;}
.ycc{bottom:292.035000px;}
.y53{bottom:292.935000px;}
.y172{bottom:293.835000px;}
.y190{bottom:304.635000px;}
.y131{bottom:306.795000px;}
.y1b1{bottom:309.495000px;}
.y1e{bottom:310.725000px;}
.y159{bottom:311.835000px;}
.y10f{bottom:316.515000px;}
.y52{bottom:316.875000px;}
.y171{bottom:326.595000px;}
.y18f{bottom:328.395000px;}
.y130{bottom:330.555000px;}
.y1d{bottom:334.485000px;}
.y158{bottom:335.595000px;}
.y1b0{bottom:338.475000px;}
.y51{bottom:340.635000px;}
.y170{bottom:350.355000px;}
.y18e{bottom:352.155000px;}
.y12f{bottom:354.315000px;}
.y1c{bottom:358.245000px;}
.y10e{bottom:358.275000px;}
.y50{bottom:364.395000px;}
.y1af{bottom:367.635000px;}
.y157{bottom:368.355000px;}
.y16f{bottom:374.115000px;}
.y18d{bottom:376.095000px;}
.y12e{bottom:378.255000px;}
.y10d{bottom:382.035000px;}
.y1b{bottom:382.215000px;}
.y4f{bottom:388.155000px;}
.y1ae{bottom:388.335000px;}
.y156{bottom:392.115000px;}
.yc5{bottom:392.655000px;}
.y16e{bottom:398.055000px;}
.y18c{bottom:399.855000px;}
.y12d{bottom:402.015000px;}
.y1a{bottom:405.975000px;}
.y1ad{bottom:409.035000px;}
.y4e{bottom:412.095000px;}
.y155{bottom:416.055000px;}
.y16d{bottom:421.815000px;}
.y18b{bottom:423.615000px;}
.y19{bottom:429.735000px;}
.y12c{bottom:434.775000px;}
.y1ac{bottom:438.195000px;}
.y154{bottom:439.815000px;}
.y4d{bottom:444.855000px;}
.y16c{bottom:445.575000px;}
.y18a{bottom:447.375000px;}
.y18{bottom:453.495000px;}
.y12b{bottom:458.535000px;}
.y1ab{bottom:458.895000px;}
.y153{bottom:463.575000px;}
.y6e{bottom:465.375000px;}
.yc3{bottom:466.815000px;}
.y4c{bottom:468.615000px;}
.y16b{bottom:469.335000px;}
.y189{bottom:471.135000px;}
.y17{bottom:477.435000px;}
.y12a{bottom:482.475000px;}
.y10c{bottom:486.255000px;}
.y152{bottom:487.335000px;}
.y1aa{bottom:487.875000px;}
.y6d{bottom:489.135000px;}
.y4b{bottom:492.375000px;}
.y16a{bottom:493.275000px;}
.y188{bottom:495.075000px;}
.yc2{bottom:497.775000px;}
.y129{bottom:506.235000px;}
.y1a9{bottom:508.575000px;}
.y10b{bottom:510.195000px;}
.y151{bottom:511.275000px;}
.y6c{bottom:513.075000px;}
.y4a{bottom:516.135000px;}
.y187{bottom:518.835000px;}
.y169{bottom:526.035000px;}
.y1a8{bottom:529.275000px;}
.y128{bottom:529.995000px;}
.y10a{bottom:533.955000px;}
.y150{bottom:535.035000px;}
.y6b{bottom:536.835000px;}
.y49{bottom:540.075000px;}
.y168{bottom:549.795000px;}
.y186{bottom:551.595000px;}
.y127{bottom:553.755000px;}
.y109{bottom:557.715000px;}
.y1a7{bottom:558.435000px;}
.y14f{bottom:558.795000px;}
.y6a{bottom:560.595000px;}
.y48{bottom:563.835000px;}
.y167{bottom:573.585000px;}
.y185{bottom:575.385000px;}
.y126{bottom:577.545000px;}
.y1a6{bottom:579.165000px;}
.y108{bottom:581.505000px;}
.y14e{bottom:582.585000px;}
.y69{bottom:584.385000px;}
.y47{bottom:587.625000px;}
.y184{bottom:599.325000px;}
.y125{bottom:601.485000px;}
.y107{bottom:605.445000px;}
.y14d{bottom:606.345000px;}
.y1a5{bottom:608.145000px;}
.yc1{bottom:608.325000px;}
.y46{bottom:611.385000px;}
.y68{bottom:617.325000px;}
.y183{bottom:623.085000px;}
.y124{bottom:625.245000px;}
.y1a4{bottom:628.845000px;}
.y106{bottom:629.205000px;}
.yc0{bottom:632.085000px;}
.y45{bottom:635.325000px;}
.y14c{bottom:639.285000px;}
.y67{bottom:641.085000px;}
.y182{bottom:646.845000px;}
.y166{bottom:648.285000px;}
.y1a3{bottom:649.545000px;}
.y105{bottom:652.965000px;}
.ybf{bottom:655.845000px;}
.y123{bottom:658.005000px;}
.y44{bottom:659.085000px;}
.y14b{bottom:663.045000px;}
.y66{bottom:664.845000px;}
.y165{bottom:672.045000px;}
.y1a2{bottom:678.705000px;}
.y181{bottom:679.605000px;}
.y122{bottom:681.765000px;}
.y43{bottom:682.845000px;}
.y104{bottom:685.725000px;}
.y14a{bottom:686.805000px;}
.y15{bottom:687.705000px;}
.y65{bottom:688.605000px;}
.ybe{bottom:689.685000px;}
.y164{bottom:695.805000px;}
.y1a1{bottom:699.405000px;}
.y180{bottom:703.545000px;}
.y121{bottom:705.705000px;}
.y42{bottom:706.605000px;}
.y149{bottom:710.565000px;}
.y64{bottom:712.545000px;}
.y163{bottom:719.565000px;}
.y1a0{bottom:720.105000px;}
.yf9{bottom:721.185000px;}
.y17f{bottom:727.305000px;}
.y120{bottom:729.465000px;}
.y41{bottom:730.545000px;}
.y148{bottom:734.505000px;}
.y63{bottom:736.305000px;}
.ybd{bottom:743.505000px;}
.y17e{bottom:751.065000px;}
.y14{bottom:751.425000px;}
.y11f{bottom:753.225000px;}
.y19f{bottom:753.945000px;}
.y147{bottom:758.265000px;}
.y62{bottom:760.065000px;}
.y40{bottom:763.305000px;}
.ybc{bottom:767.265000px;}
.y17d{bottom:774.825000px;}
.y11e{bottom:776.985000px;}
.y13{bottom:779.325000px;}
.y146{bottom:782.025000px;}
.y61{bottom:783.825000px;}
.y3f{bottom:787.065000px;}
.ybb{bottom:791.025000px;}
.y17c{bottom:798.765000px;}
.y11d{bottom:800.925000px;}
.y145{bottom:805.785000px;}
.y12{bottom:807.405000px;}
.y19e{bottom:807.765000px;}
.y3e{bottom:810.825000px;}
.yba{bottom:814.785000px;}
.y60{bottom:816.765000px;}
.y11c{bottom:824.685000px;}
.y144{bottom:829.725000px;}
.y19d{bottom:831.525000px;}
.y17b{bottom:832.605000px;}
.y3d{bottom:834.765000px;}
.y11{bottom:835.305000px;}
.yb9{bottom:838.725000px;}
.y5f{bottom:840.525000px;}
.y11b{bottom:848.490000px;}
.y143{bottom:853.530000px;}
.y19c{bottom:855.330000px;}
.y3c{bottom:858.570000px;}
.yb8{bottom:862.530000px;}
.yf{bottom:863.250000px;}
.y5e{bottom:864.330000px;}
.y142{bottom:877.290000px;}
.y19b{bottom:879.090000px;}
.y11a{bottom:879.990000px;}
.y3b{bottom:882.330000px;}
.yb7{bottom:886.290000px;}
.y5d{bottom:888.090000px;}
.y119{bottom:899.970000px;}
.y141{bottom:901.050000px;}
.y19a{bottom:903.030000px;}
.y3a{bottom:906.090000px;}
.yb6{bottom:910.050000px;}
.ye{bottom:910.230000px;}
.yeb{bottom:917.070000px;}
.y5c{bottom:921.030000px;}
.y118{bottom:925.890000px;}
.y140{bottom:933.990000px;}
.y199{bottom:936.870000px;}
.ya{bottom:938.310000px;}
.y39{bottom:939.030000px;}
.yb5{bottom:942.990000px;}
.y38{bottom:962.790000px;}
.yb4{bottom:966.750000px;}
.y13f{bottom:975.750000px;}
.y8{bottom:985.110000px;}
.y37{bottom:986.550000px;}
.yb3{bottom:990.510000px;}
.y13e{bottom:999.510000px;}
.y36{bottom:1010.310000px;}
.y6{bottom:1013.190000px;}
.yb2{bottom:1014.270000px;}
.y13d{bottom:1023.270000px;}
.y35{bottom:1034.070000px;}
.yb1{bottom:1038.210000px;}
.y13c{bottom:1047.210000px;}
.y34{bottom:1058.010000px;}
.yb0{bottom:1061.970000px;}
.y13b{bottom:1070.970000px;}
.ye8{bottom:1078.350000px;}
.y33{bottom:1081.770000px;}
.yaf{bottom:1085.730000px;}
.y4{bottom:1092.210000px;}
.y13a{bottom:1094.730000px;}
.y32{bottom:1115.610000px;}
.y1{bottom:1116.690000px;}
.yae{bottom:1118.490000px;}
.y30{bottom:1183.500000px;}
.y2f{bottom:1208.340000px;}
.y2e{bottom:1230.480000px;}
.h1e{height:19.800000px;}
.hb{height:27.900000px;}
.ha{height:27.936000px;}
.h7{height:28.080000px;}
.h1b{height:29.445542px;}
.h19{height:32.025363px;}
.h15{height:32.114323px;}
.h17{height:32.496451px;}
.h18{height:34.694144px;}
.h1c{height:34.739241px;}
.h16{height:34.783103px;}
.h21{height:41.726953px;}
.hf{height:41.760000px;}
.h1f{height:42.164648px;}
.h1a{height:42.789444px;}
.h1d{height:42.878403px;}
.h13{height:43.302656px;}
.h3{height:46.251562px;}
.h10{height:46.736719px;}
.h8{height:46.800000px;}
.h9{height:46.980000px;}
.hd{height:50.273438px;}
.h4{height:50.800781px;}
.h12{height:52.417969px;}
.h25{height:56.196000px;}
.h6{height:59.436914px;}
.h11{height:61.329023px;}
.h5{height:63.720000px;}
.he{height:63.900000px;}
.h20{height:73.440000px;}
.h23{height:86.976000px;}
.h22{height:99.900000px;}
.h24{height:118.980000px;}
.h2{height:129.096000px;}
.h26{height:160.380000px;}
.h27{height:195.150000px;}
.h14{height:282.525000px;}
.hc{height:503.175000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:138.600000px;}
.w6{width:201.990000px;}
.wb{width:254.370000px;}
.w3{width:283.710000px;}
.wa{width:306.075000px;}
.w2{width:471.165000px;}
.w7{width:552.885000px;}
.w8{width:668.983268px;}
.w5{width:754.890000px;}
.w4{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xd{left:4.733574px;}
.x7{left:8.100000px;}
.x1d{left:29.697306px;}
.x1f{left:30.906312px;}
.x1e{left:37.690179px;}
.x1{left:63.900000px;}
.x6{left:69.120000px;}
.x26{left:96.568771px;}
.x5{left:106.415987px;}
.xa{left:108.755987px;}
.x32{left:124.235987px;}
.x12{left:126.838694px;}
.xb{left:130.715987px;}
.x34{left:135.395987px;}
.x25{left:138.597400px;}
.x24{left:145.851435px;}
.x13{left:163.673069px;}
.x14{left:173.058537px;}
.x11{left:205.182276px;}
.x10{left:212.239288px;}
.x4{left:233.145000px;}
.x2c{left:240.288220px;}
.x2f{left:246.630000px;}
.xe{left:255.154515px;}
.xf{left:260.259206px;}
.x27{left:264.092211px;}
.x28{left:269.814839px;}
.x8{left:271.110000px;}
.x33{left:289.829987px;}
.x2e{left:295.302473px;}
.x2d{left:300.541498px;}
.x20{left:315.246593px;}
.x21{left:324.067859px;}
.xc{left:350.714987px;}
.x15{left:385.789840px;}
.x1b{left:388.789968px;}
.x2b{left:391.055732px;}
.x16{left:394.996197px;}
.x17{left:402.366655px;}
.x1a{left:409.575914px;}
.x2{left:413.535000px;}
.x18{left:417.071749px;}
.x1c{left:420.967437px;}
.x19{left:424.146673px;}
.x23{left:447.028235px;}
.x22{left:461.894529px;}
.x2a{left:498.003497px;}
.x29{left:514.643000px;}
.x3{left:535.065000px;}
.x30{left:553.425000px;}
.x9{left:776.129987px;}
.x31{left:786.749987px;}
@media print{
.v2{vertical-align:-31.959798pt;}
.v1{vertical-align:-2.766669pt;}
.v0{vertical-align:0.000000pt;}
.ls4{letter-spacing:-0.896000pt;}
.ls19{letter-spacing:-0.832000pt;}
.ls10{letter-spacing:-0.346629pt;}
.ls16{letter-spacing:-0.320000pt;}
.lsf{letter-spacing:-0.307514pt;}
.ls14{letter-spacing:-0.256000pt;}
.ls13{letter-spacing:-0.192000pt;}
.ls6{letter-spacing:-0.128000pt;}
.ls3{letter-spacing:-0.097067pt;}
.ls1{letter-spacing:-0.064000pt;}
.ls17{letter-spacing:-0.047360pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.047360pt;}
.lsd{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.128000pt;}
.ls8{letter-spacing:0.160000pt;}
.ls18{letter-spacing:0.256000pt;}
.ls9{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.384000pt;}
.lsc{letter-spacing:0.640000pt;}
.ls15{letter-spacing:0.768000pt;}
.lse{letter-spacing:0.896782pt;}
.ls11{letter-spacing:7.680000pt;}
.ls7{letter-spacing:55.808000pt;}
.ls2{letter-spacing:57.263360pt;}
.lsa{letter-spacing:487.675744pt;}
.ws6{word-spacing:-18.720000pt;}
.ws12{word-spacing:-16.768000pt;}
.ws17{word-spacing:-16.640000pt;}
.ws16{word-spacing:-16.256000pt;}
.ws7{word-spacing:-16.128000pt;}
.ws9{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws2{word-spacing:-15.936000pt;}
.ws8{word-spacing:-15.872000pt;}
.ws11{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws4{word-spacing:-14.622933pt;}
.ws13{word-spacing:-13.280000pt;}
.ws15{word-spacing:-13.232640pt;}
.ws14{word-spacing:-12.960000pt;}
.wse{word-spacing:-8.642343pt;}
.ws10{word-spacing:-7.025272pt;}
.wsc{word-spacing:-7.007305pt;}
.wsd{word-spacing:-6.486249pt;}
.wsf{word-spacing:-5.947225pt;}
.wsb{word-spacing:-0.038240pt;}
.ws3{word-spacing:0.000000pt;}
.ws5{word-spacing:1.118720pt;}
.wsa{word-spacing:527.508384pt;}
._24{margin-left:-8.704000pt;}
._19{margin-left:-4.377173pt;}
._8{margin-left:-3.317760pt;}
._9{margin-left:-2.250240pt;}
._0{margin-left:-1.157120pt;}
._1{width:0.943787pt;}
._6{width:1.958827pt;}
._a{width:3.072000pt;}
._4{width:4.592640pt;}
._5{width:5.867520pt;}
._e{width:7.016960pt;}
._10{width:8.256000pt;}
._11{width:9.761707pt;}
._7{width:11.540480pt;}
._17{width:12.736000pt;}
._b{width:14.400000pt;}
._f{width:17.088000pt;}
._12{width:18.368000pt;}
._13{width:19.328000pt;}
._1b{width:20.623787pt;}
._1a{width:21.568000pt;}
._1e{width:22.475520pt;}
._c{width:23.936000pt;}
._d{width:25.088000pt;}
._18{width:27.264000pt;}
._1c{width:28.928000pt;}
._1d{width:29.834667pt;}
._23{width:31.296000pt;}
._20{width:42.112000pt;}
._21{width:43.008000pt;}
._22{width:56.320000pt;}
._2{width:116.618667pt;}
._3{width:135.040000pt;}
._14{width:609.659520pt;}
._15{width:641.386667pt;}
._1f{width:1386.146133pt;}
._16{width:1415.586133pt;}
.fs9{font-size:26.315157pt;}
.fs8{font-size:28.620714pt;}
.fs4{font-size:28.700216pt;}
.fs7{font-size:31.005774pt;}
.fsa{font-size:31.046077pt;}
.fs5{font-size:31.085276pt;}
.fs6{font-size:38.240454pt;}
.fsb{font-size:38.319956pt;}
.fs3{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.y8f{bottom:1.841425pt;}
.yc4{bottom:5.120000pt;}
.yea{bottom:6.720000pt;}
.ycb{bottom:6.880000pt;}
.yd{bottom:7.040000pt;}
.y9{bottom:7.200000pt;}
.yd8{bottom:8.480000pt;}
.ye7{bottom:8.640000pt;}
.y3{bottom:10.560000pt;}
.ydc{bottom:10.880000pt;}
.y8e{bottom:11.401380pt;}
.y2{bottom:12.666667pt;}
.y2a{bottom:14.240000pt;}
.y91{bottom:14.303202pt;}
.y7{bottom:15.200000pt;}
.y2c{bottom:15.360000pt;}
.yc7{bottom:20.160000pt;}
.ye9{bottom:22.080000pt;}
.yca{bottom:22.240000pt;}
.ye3{bottom:22.720000pt;}
.yb{bottom:23.840000pt;}
.y90{bottom:23.863316pt;}
.yc{bottom:24.000000pt;}
.y10{bottom:24.160000pt;}
.yd7{bottom:26.240000pt;}
.ydb{bottom:30.240000pt;}
.ycf{bottom:31.840000pt;}
.y29{bottom:35.360000pt;}
.yc9{bottom:37.440000pt;}
.yc6{bottom:37.760000pt;}
.ye2{bottom:40.320000pt;}
.yf4{bottom:41.440000pt;}
.yd2{bottom:41.600000pt;}
.y31{bottom:42.592000pt;}
.ye6{bottom:43.200000pt;}
.y5{bottom:43.232000pt;}
.yd6{bottom:43.840000pt;}
.ydd{bottom:45.440000pt;}
.yda{bottom:45.600000pt;}
.y92{bottom:49.224448pt;}
.yad{bottom:49.542456pt;}
.yce{bottom:49.600000pt;}
.ya1{bottom:49.721336pt;}
.yee{bottom:50.080000pt;}
.yc8{bottom:52.800000pt;}
.y28{bottom:56.480000pt;}
.yfd{bottom:56.640000pt;}
.yd1{bottom:56.960000pt;}
.ye1{bottom:57.920000pt;}
.ye5{bottom:58.554667pt;}
.yac{bottom:59.102570pt;}
.yf3{bottom:60.800000pt;}
.yd3{bottom:60.960000pt;}
.ya0{bottom:61.189497pt;}
.yd5{bottom:61.440000pt;}
.yd9{bottom:64.800000pt;}
.ycd{bottom:67.200000pt;}
.yed{bottom:67.680000pt;}
.y2d{bottom:70.112000pt;}
.y103{bottom:72.320000pt;}
.y9f{bottom:72.677534pt;}
.yfc{bottom:74.240000pt;}
.yde{bottom:75.232000pt;}
.ye0{bottom:75.674667pt;}
.y1bb{bottom:76.032000pt;}
.yf2{bottom:76.160000pt;}
.yd0{bottom:76.320000pt;}
.y27{bottom:77.760000pt;}
.ye4{bottom:77.914667pt;}
.y162{bottom:78.592000pt;}
.y139{bottom:79.392000pt;}
.yf8{bottom:80.160000pt;}
.y5b{bottom:83.072000pt;}
.y17a{bottom:83.872000pt;}
.ya7{bottom:84.128999pt;}
.y9e{bottom:84.144900pt;}
.yec{bottom:85.280000pt;}
.y72{bottom:88.832000pt;}
.yf1{bottom:91.520000pt;}
.y101{bottom:91.680000pt;}
.yfb{bottom:91.840000pt;}
.ydf{bottom:93.274667pt;}
.y198{bottom:93.472000pt;}
.y1ba{bottom:94.432000pt;}
.y26{bottom:98.920000pt;}
.yf7{bottom:99.520000pt;}
.y161{bottom:99.872000pt;}
.y9d{bottom:100.403056pt;}
.y138{bottom:100.512000pt;}
.y78{bottom:101.301428pt;}
.y117{bottom:104.032000pt;}
.y5a{bottom:104.352000pt;}
.y179{bottom:104.992000pt;}
.y71{bottom:106.592000pt;}
.y102{bottom:106.880000pt;}
.y2b{bottom:107.232000pt;}
.yfa{bottom:109.440000pt;}
.y77{bottom:110.857566pt;}
.yf0{bottom:110.880000pt;}
.ya6{bottom:111.851341pt;}
.y9c{bottom:111.875192pt;}
.y1b9{bottom:112.832000pt;}
.y197{bottom:114.592000pt;}
.yf6{bottom:114.880000pt;}
.y79{bottom:116.462456pt;}
.y25{bottom:120.040000pt;}
.y160{bottom:120.992000pt;}
.y70{bottom:124.192000pt;}
.y116{bottom:125.152000pt;}
.y59{bottom:125.472000pt;}
.y178{bottom:126.112000pt;}
.y100{bottom:126.280000pt;}
.y9b{bottom:128.133348pt;}
.y137{bottom:129.632000pt;}
.yef{bottom:130.080000pt;}
.yf5{bottom:130.240000pt;}
.y1b8{bottom:131.232000pt;}
.y83{bottom:133.459981pt;}
.y8d{bottom:134.811514pt;}
.y196{bottom:135.706667pt;}
.y9a{bottom:139.621384pt;}
.y24{bottom:141.160000pt;}
.y15f{bottom:142.106667pt;}
.y89{bottom:142.920717pt;}
.y82{bottom:143.731637pt;}
.yff{bottom:145.640000pt;}
.y115{bottom:146.266667pt;}
.y58{bottom:146.586667pt;}
.y6f{bottom:147.386667pt;}
.y73{bottom:148.386667pt;}
.y1b7{bottom:149.626667pt;}
.ya5{bottom:151.045819pt;}
.y99{bottom:151.085570pt;}
.y81{bottom:154.027144pt;}
.ya9{bottom:154.050994pt;}
.y8c{bottom:154.567757pt;}
.y177{bottom:155.226667pt;}
.y195{bottom:156.986667pt;}
.yfe{bottom:161.000000pt;}
.y8b{bottom:161.683185pt;}
.y80{bottom:161.921691pt;}
.y23{bottom:162.440000pt;}
.y15e{bottom:163.226667pt;}
.y16{bottom:164.026667pt;}
.y136{bottom:166.906667pt;}
.y98{bottom:167.343726pt;}
.y114{bottom:167.546667pt;}
.y57{bottom:167.706667pt;}
.y8a{bottom:168.973517pt;}
.y7f{bottom:172.193347pt;}
.y1b6{bottom:175.546667pt;}
.y176{bottom:176.506667pt;}
.y194{bottom:178.106667pt;}
.y88{bottom:178.497854pt;}
.ya4{bottom:178.792012pt;}
.y97{bottom:178.815862pt;}
.y7e{bottom:180.087894pt;}
.yd4{bottom:181.626667pt;}
.y22{bottom:183.560000pt;}
.y15d{bottom:184.506667pt;}
.y135{bottom:188.026667pt;}
.y113{bottom:188.666667pt;}
.y56{bottom:188.986667pt;}
.y7d{bottom:190.359550pt;}
.y86{bottom:192.704859pt;}
.y1b5{bottom:193.946667pt;}
.y96{bottom:195.074018pt;}
.y74{bottom:197.101319pt;}
.y175{bottom:197.626667pt;}
.y193{bottom:199.226667pt;}
.y7c{bottom:200.639157pt;}
.y87{bottom:201.370575pt;}
.y21{bottom:204.680000pt;}
.y95{bottom:206.538204pt;}
.y134{bottom:209.146667pt;}
.y112{bottom:209.786667pt;}
.y76{bottom:211.109568pt;}
.y7b{bottom:211.888688pt;}
.y1b4{bottom:212.346667pt;}
.y15c{bottom:213.626667pt;}
.y85{bottom:215.760434pt;}
.y84{bottom:215.839936pt;}
.ya3{bottom:217.986490pt;}
.y94{bottom:218.026241pt;}
.y55{bottom:218.106667pt;}
.ya8{bottom:218.646356pt;}
.y174{bottom:218.746667pt;}
.y192{bottom:220.346667pt;}
.y75{bottom:220.673657pt;}
.y7a{bottom:221.468677pt;}
.yaa{bottom:224.982665pt;}
.y133{bottom:230.266667pt;}
.y111{bottom:230.906667pt;}
.y20{bottom:233.800000pt;}
.ya2{bottom:234.244646pt;}
.y93{bottom:234.284397pt;}
.y15b{bottom:234.746667pt;}
.y1b3{bottom:238.266667pt;}
.y54{bottom:239.226667pt;}
.y173{bottom:239.866667pt;}
.y191{bottom:241.626667pt;}
.yab{bottom:241.662181pt;}
.y132{bottom:251.586667pt;}
.y110{bottom:252.226667pt;}
.y1f{bottom:255.080000pt;}
.y15a{bottom:255.906667pt;}
.y1b2{bottom:256.706667pt;}
.ycc{bottom:259.586667pt;}
.y53{bottom:260.386667pt;}
.y172{bottom:261.186667pt;}
.y190{bottom:270.786667pt;}
.y131{bottom:272.706667pt;}
.y1b1{bottom:275.106667pt;}
.y1e{bottom:276.200000pt;}
.y159{bottom:277.186667pt;}
.y10f{bottom:281.346667pt;}
.y52{bottom:281.666667pt;}
.y171{bottom:290.306667pt;}
.y18f{bottom:291.906667pt;}
.y130{bottom:293.826667pt;}
.y1d{bottom:297.320000pt;}
.y158{bottom:298.306667pt;}
.y1b0{bottom:300.866667pt;}
.y51{bottom:302.786667pt;}
.y170{bottom:311.426667pt;}
.y18e{bottom:313.026667pt;}
.y12f{bottom:314.946667pt;}
.y1c{bottom:318.440000pt;}
.y10e{bottom:318.466667pt;}
.y50{bottom:323.906667pt;}
.y1af{bottom:326.786667pt;}
.y157{bottom:327.426667pt;}
.y16f{bottom:332.546667pt;}
.y18d{bottom:334.306667pt;}
.y12e{bottom:336.226667pt;}
.y10d{bottom:339.586667pt;}
.y1b{bottom:339.746667pt;}
.y4f{bottom:345.026667pt;}
.y1ae{bottom:345.186667pt;}
.y156{bottom:348.546667pt;}
.yc5{bottom:349.026667pt;}
.y16e{bottom:353.826667pt;}
.y18c{bottom:355.426667pt;}
.y12d{bottom:357.346667pt;}
.y1a{bottom:360.866667pt;}
.y1ad{bottom:363.586667pt;}
.y4e{bottom:366.306667pt;}
.y155{bottom:369.826667pt;}
.y16d{bottom:374.946667pt;}
.y18b{bottom:376.546667pt;}
.y19{bottom:381.986667pt;}
.y12c{bottom:386.466667pt;}
.y1ac{bottom:389.506667pt;}
.y154{bottom:390.946667pt;}
.y4d{bottom:395.426667pt;}
.y16c{bottom:396.066667pt;}
.y18a{bottom:397.666667pt;}
.y18{bottom:403.106667pt;}
.y12b{bottom:407.586667pt;}
.y1ab{bottom:407.906667pt;}
.y153{bottom:412.066667pt;}
.y6e{bottom:413.666667pt;}
.yc3{bottom:414.946667pt;}
.y4c{bottom:416.546667pt;}
.y16b{bottom:417.186667pt;}
.y189{bottom:418.786667pt;}
.y17{bottom:424.386667pt;}
.y12a{bottom:428.866667pt;}
.y10c{bottom:432.226667pt;}
.y152{bottom:433.186667pt;}
.y1aa{bottom:433.666667pt;}
.y6d{bottom:434.786667pt;}
.y4b{bottom:437.666667pt;}
.y16a{bottom:438.466667pt;}
.y188{bottom:440.066667pt;}
.yc2{bottom:442.466667pt;}
.y129{bottom:449.986667pt;}
.y1a9{bottom:452.066667pt;}
.y10b{bottom:453.506667pt;}
.y151{bottom:454.466667pt;}
.y6c{bottom:456.066667pt;}
.y4a{bottom:458.786667pt;}
.y187{bottom:461.186667pt;}
.y169{bottom:467.586667pt;}
.y1a8{bottom:470.466667pt;}
.y128{bottom:471.106667pt;}
.y10a{bottom:474.626667pt;}
.y150{bottom:475.586667pt;}
.y6b{bottom:477.186667pt;}
.y49{bottom:480.066667pt;}
.y168{bottom:488.706667pt;}
.y186{bottom:490.306667pt;}
.y127{bottom:492.226667pt;}
.y109{bottom:495.746667pt;}
.y1a7{bottom:496.386667pt;}
.y14f{bottom:496.706667pt;}
.y6a{bottom:498.306667pt;}
.y48{bottom:501.186667pt;}
.y167{bottom:509.853333pt;}
.y185{bottom:511.453333pt;}
.y126{bottom:513.373333pt;}
.y1a6{bottom:514.813333pt;}
.y108{bottom:516.893333pt;}
.y14e{bottom:517.853333pt;}
.y69{bottom:519.453333pt;}
.y47{bottom:522.333333pt;}
.y184{bottom:532.733333pt;}
.y125{bottom:534.653333pt;}
.y107{bottom:538.173333pt;}
.y14d{bottom:538.973333pt;}
.y1a5{bottom:540.573333pt;}
.yc1{bottom:540.733333pt;}
.y46{bottom:543.453333pt;}
.y68{bottom:548.733333pt;}
.y183{bottom:553.853333pt;}
.y124{bottom:555.773333pt;}
.y1a4{bottom:558.973333pt;}
.y106{bottom:559.293333pt;}
.yc0{bottom:561.853333pt;}
.y45{bottom:564.733333pt;}
.y14c{bottom:568.253333pt;}
.y67{bottom:569.853333pt;}
.y182{bottom:574.973333pt;}
.y166{bottom:576.253333pt;}
.y1a3{bottom:577.373333pt;}
.y105{bottom:580.413333pt;}
.ybf{bottom:582.973333pt;}
.y123{bottom:584.893333pt;}
.y44{bottom:585.853333pt;}
.y14b{bottom:589.373333pt;}
.y66{bottom:590.973333pt;}
.y165{bottom:597.373333pt;}
.y1a2{bottom:603.293333pt;}
.y181{bottom:604.093333pt;}
.y122{bottom:606.013333pt;}
.y43{bottom:606.973333pt;}
.y104{bottom:609.533333pt;}
.y14a{bottom:610.493333pt;}
.y15{bottom:611.293333pt;}
.y65{bottom:612.093333pt;}
.ybe{bottom:613.053333pt;}
.y164{bottom:618.493333pt;}
.y1a1{bottom:621.693333pt;}
.y180{bottom:625.373333pt;}
.y121{bottom:627.293333pt;}
.y42{bottom:628.093333pt;}
.y149{bottom:631.613333pt;}
.y64{bottom:633.373333pt;}
.y163{bottom:639.613333pt;}
.y1a0{bottom:640.093333pt;}
.yf9{bottom:641.053333pt;}
.y17f{bottom:646.493333pt;}
.y120{bottom:648.413333pt;}
.y41{bottom:649.373333pt;}
.y148{bottom:652.893333pt;}
.y63{bottom:654.493333pt;}
.ybd{bottom:660.893333pt;}
.y17e{bottom:667.613333pt;}
.y14{bottom:667.933333pt;}
.y11f{bottom:669.533333pt;}
.y19f{bottom:670.173333pt;}
.y147{bottom:674.013333pt;}
.y62{bottom:675.613333pt;}
.y40{bottom:678.493333pt;}
.ybc{bottom:682.013333pt;}
.y17d{bottom:688.733333pt;}
.y11e{bottom:690.653333pt;}
.y13{bottom:692.733333pt;}
.y146{bottom:695.133333pt;}
.y61{bottom:696.733333pt;}
.y3f{bottom:699.613333pt;}
.ybb{bottom:703.133333pt;}
.y17c{bottom:710.013333pt;}
.y11d{bottom:711.933333pt;}
.y145{bottom:716.253333pt;}
.y12{bottom:717.693333pt;}
.y19e{bottom:718.013333pt;}
.y3e{bottom:720.733333pt;}
.yba{bottom:724.253333pt;}
.y60{bottom:726.013333pt;}
.y11c{bottom:733.053333pt;}
.y144{bottom:737.533333pt;}
.y19d{bottom:739.133333pt;}
.y17b{bottom:740.093333pt;}
.y3d{bottom:742.013333pt;}
.y11{bottom:742.493333pt;}
.yb9{bottom:745.533333pt;}
.y5f{bottom:747.133333pt;}
.y11b{bottom:754.213333pt;}
.y143{bottom:758.693333pt;}
.y19c{bottom:760.293333pt;}
.y3c{bottom:763.173333pt;}
.yb8{bottom:766.693333pt;}
.yf{bottom:767.333333pt;}
.y5e{bottom:768.293333pt;}
.y142{bottom:779.813333pt;}
.y19b{bottom:781.413333pt;}
.y11a{bottom:782.213333pt;}
.y3b{bottom:784.293333pt;}
.yb7{bottom:787.813333pt;}
.y5d{bottom:789.413333pt;}
.y119{bottom:799.973333pt;}
.y141{bottom:800.933333pt;}
.y19a{bottom:802.693333pt;}
.y3a{bottom:805.413333pt;}
.yb6{bottom:808.933333pt;}
.ye{bottom:809.093333pt;}
.yeb{bottom:815.173333pt;}
.y5c{bottom:818.693333pt;}
.y118{bottom:823.013333pt;}
.y140{bottom:830.213333pt;}
.y199{bottom:832.773333pt;}
.ya{bottom:834.053333pt;}
.y39{bottom:834.693333pt;}
.yb5{bottom:838.213333pt;}
.y38{bottom:855.813333pt;}
.yb4{bottom:859.333333pt;}
.y13f{bottom:867.333333pt;}
.y8{bottom:875.653333pt;}
.y37{bottom:876.933333pt;}
.yb3{bottom:880.453333pt;}
.y13e{bottom:888.453333pt;}
.y36{bottom:898.053333pt;}
.y6{bottom:900.613333pt;}
.yb2{bottom:901.573333pt;}
.y13d{bottom:909.573333pt;}
.y35{bottom:919.173333pt;}
.yb1{bottom:922.853333pt;}
.y13c{bottom:930.853333pt;}
.y34{bottom:940.453333pt;}
.yb0{bottom:943.973333pt;}
.y13b{bottom:951.973333pt;}
.ye8{bottom:958.533333pt;}
.y33{bottom:961.573333pt;}
.yaf{bottom:965.093333pt;}
.y4{bottom:970.853333pt;}
.y13a{bottom:973.093333pt;}
.y32{bottom:991.653333pt;}
.y1{bottom:992.613333pt;}
.yae{bottom:994.213333pt;}
.y30{bottom:1052.000000pt;}
.y2f{bottom:1074.080000pt;}
.y2e{bottom:1093.760000pt;}
.h1e{height:17.600000pt;}
.hb{height:24.800000pt;}
.ha{height:24.832000pt;}
.h7{height:24.960000pt;}
.h1b{height:26.173816pt;}
.h19{height:28.466990pt;}
.h15{height:28.546065pt;}
.h17{height:28.885734pt;}
.h18{height:30.839239pt;}
.h1c{height:30.879326pt;}
.h16{height:30.918314pt;}
.h21{height:37.090625pt;}
.hf{height:37.120000pt;}
.h1f{height:37.479688pt;}
.h1a{height:38.035061pt;}
.h1d{height:38.114136pt;}
.h13{height:38.491250pt;}
.h3{height:41.112500pt;}
.h10{height:41.543750pt;}
.h8{height:41.600000pt;}
.h9{height:41.760000pt;}
.hd{height:44.687500pt;}
.h4{height:45.156250pt;}
.h12{height:46.593750pt;}
.h25{height:49.952000pt;}
.h6{height:52.832812pt;}
.h11{height:54.514687pt;}
.h5{height:56.640000pt;}
.he{height:56.800000pt;}
.h20{height:65.280000pt;}
.h23{height:77.312000pt;}
.h22{height:88.800000pt;}
.h24{height:105.760000pt;}
.h2{height:114.752000pt;}
.h26{height:142.560000pt;}
.h27{height:173.466667pt;}
.h14{height:251.133333pt;}
.hc{height:447.266667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:123.200000pt;}
.w6{width:179.546667pt;}
.wb{width:226.106667pt;}
.w3{width:252.186667pt;}
.wa{width:272.066667pt;}
.w2{width:418.813333pt;}
.w7{width:491.453333pt;}
.w8{width:594.651794pt;}
.w5{width:671.013333pt;}
.w4{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xd{left:4.207621pt;}
.x7{left:7.200000pt;}
.x1d{left:26.397605pt;}
.x1f{left:27.472277pt;}
.x1e{left:33.502381pt;}
.x1{left:56.800000pt;}
.x6{left:61.440000pt;}
.x26{left:85.838908pt;}
.x5{left:94.591988pt;}
.xa{left:96.671988pt;}
.x32{left:110.431988pt;}
.x12{left:112.745506pt;}
.xb{left:116.191988pt;}
.x34{left:120.351988pt;}
.x25{left:123.197689pt;}
.x24{left:129.645720pt;}
.x13{left:145.487172pt;}
.x14{left:153.829811pt;}
.x11{left:182.384245pt;}
.x10{left:188.657145pt;}
.x4{left:207.240000pt;}
.x2c{left:213.589529pt;}
.x2f{left:219.226667pt;}
.xe{left:226.804013pt;}
.xf{left:231.341517pt;}
.x27{left:234.748632pt;}
.x28{left:239.835413pt;}
.x8{left:240.986667pt;}
.x33{left:257.626655pt;}
.x2e{left:262.491087pt;}
.x2d{left:267.147998pt;}
.x20{left:280.219194pt;}
.x21{left:288.060319pt;}
.xc{left:311.746655pt;}
.x15{left:342.924303pt;}
.x1b{left:345.591083pt;}
.x2b{left:347.605095pt;}
.x16{left:351.107730pt;}
.x17{left:357.659249pt;}
.x1a{left:364.067479pt;}
.x2{left:367.586667pt;}
.x18{left:370.730444pt;}
.x1c{left:374.193277pt;}
.x19{left:377.019265pt;}
.x23{left:397.358431pt;}
.x22{left:410.572915pt;}
.x2a{left:442.669775pt;}
.x29{left:457.460444pt;}
.x3{left:475.613333pt;}
.x30{left:491.933333pt;}
.x9{left:689.893322pt;}
.x31{left:699.333322pt;}
}




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