
    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_defca4745d71b77212ec84c0.woff')format("woff");}.ff1{font-family:ff1;line-height:1.003906;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_63a027aa969327c1b613e68b.woff')format("woff");}.ff2{font-family:ff2;line-height:0.810547;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_fc39399395ad6004f1e17e88.woff')format("woff");}.ff3{font-family:ff3;line-height:0.810547;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_1a3790d69f7091d2be73b0a3.woff')format("woff");}.ff4{font-family:ff4;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_f972cacf99751a3a054b33cc.woff')format("woff");}.ff5{font-family:ff5;line-height:1.202148;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_93a41f7a7184fd7b23ef7184.woff')format("woff");}.ff6{font-family:ff6;line-height:0.813477;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_f7cd00734f83fed1c3af5c50.woff')format("woff");}.ff7{font-family:ff7;line-height:1.093262;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_26612e5ba3e36b6e9ce38334.woff')format("woff");}.ff8{font-family:ff8;line-height:1.093262;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_4df76421cb9dd0d9fc7d056b.woff')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_d2baeadca6df558c82f9eacd.woff')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_84bda5b6dfc3ecef7844d21c.woff')format("woff");}.ffb{font-family:ffb;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_fe08cbee80cc14bc7fae1d7b.woff')format("woff");}.ffc{font-family:ffc;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_130301694ab792f9947e2b7d.woff')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_5d123772bb4c8abe91c34807.woff')format("woff");}.ffe{font-family:ffe;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;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v0{vertical-align:0.000000px;}
.ls8{letter-spacing:-0.774000px;}
.ls6{letter-spacing:-0.612000px;}
.ls15{letter-spacing:-0.540000px;}
.lsb{letter-spacing:-0.460200px;}
.lsa{letter-spacing:-0.360000px;}
.ls7{letter-spacing:-0.206400px;}
.ls9{letter-spacing:-0.053280px;}
.ls4{letter-spacing:0.000000px;}
.ls18{letter-spacing:0.014400px;}
.ls1e{letter-spacing:0.053280px;}
.lse{letter-spacing:0.106800px;}
.ls12{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.256200px;}
.ls1d{letter-spacing:0.259800px;}
.ls1b{letter-spacing:0.259920px;}
.ls13{letter-spacing:0.298800px;}
.lsf{letter-spacing:0.306600px;}
.ls3{letter-spacing:0.306720px;}
.lsd{letter-spacing:0.336000px;}
.ls0{letter-spacing:0.360000px;}
.ls1a{letter-spacing:0.504000px;}
.ls16{letter-spacing:0.540000px;}
.ls10{letter-spacing:0.720000px;}
.ls11{letter-spacing:0.828000px;}
.ls1c{letter-spacing:0.900000px;}
.ls17{letter-spacing:8.820000px;}
.ls2{letter-spacing:10.980000px;}
.ls14{letter-spacing:16.506720px;}
.lsc{letter-spacing:46.026720px;}
.ls19{letter-spacing:64.026720px;}
.ls1{letter-spacing:90.156000px;}
.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;}
}
.ws2{word-spacing:-23.940000px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-15.300000px;}
.wsa{word-spacing:-15.246600px;}
.ws0{word-spacing:-15.226440px;}
.wsd{word-spacing:-15.199800px;}
.ws9{word-spacing:-15.046800px;}
.wse{word-spacing:-14.993280px;}
.ws5{word-spacing:-14.940000px;}
.ws8{word-spacing:-14.886720px;}
.ws6{word-spacing:-14.733600px;}
.wsc{word-spacing:-14.580000px;}
.wsb{word-spacing:-13.860000px;}
.ws4{word-spacing:-13.500000px;}
.ws7{word-spacing:0.000000px;}
._3{margin-left:-7.190640px;}
._1{margin-left:-3.179520px;}
._b{margin-left:-2.095200px;}
._2{margin-left:-1.059840px;}
._0{width:1.185840px;}
._7{width:2.696400px;}
._6{width:3.877200px;}
._d{width:5.199120px;}
._12{width:6.215040px;}
._10{width:7.529760px;}
._11{width:8.730000px;}
._13{width:9.838080px;}
._8{width:10.863360px;}
._9{width:11.927520px;}
._a{width:13.001760px;}
._c{width:16.434000px;}
._e{width:17.987760px;}
._15{width:20.378160px;}
._14{width:21.692880px;}
._f{width:23.904000px;}
._5{width:27.489600px;}
._4{width:90.666000px;}
._16{width:208.024560px;}
.fc4{color:transparent;}
.fc3{color:rgb(68,114,196);}
.fc2{color:rgb(5,99,193);}
.fc1{color:rgb(79,129,189);}
.fc0{color:rgb(0,0,0);}
.fs0{font-size:2.880000px;}
.fs5{font-size:54.000000px;}
.fs4{font-size:59.760000px;}
.fs2{font-size:66.240000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y2{bottom:1.440000px;}
.y15{bottom:5.760000px;}
.y167{bottom:5.790000px;}
.y2c{bottom:5.940000px;}
.y22{bottom:6.480000px;}
.y135{bottom:12.960000px;}
.y133{bottom:13.140000px;}
.y7{bottom:14.760000px;}
.y2b{bottom:25.740000px;}
.y21{bottom:26.280000px;}
.y6{bottom:43.920000px;}
.y2a{bottom:45.540000px;}
.y20{bottom:46.260000px;}
.yd{bottom:57.420000px;}
.y5{bottom:64.080000px;}
.y29{bottom:65.340000px;}
.y1f{bottom:66.090000px;}
.yb{bottom:73.800000px;}
.ya{bottom:78.300000px;}
.y91{bottom:82.080000px;}
.y45{bottom:83.700000px;}
.y28{bottom:85.170000px;}
.y152{bottom:85.500000px;}
.y4{bottom:86.400000px;}
.y131{bottom:88.560000px;}
.y7c{bottom:91.080000px;}
.y110{bottom:94.860000px;}
.yf5{bottom:98.100000px;}
.yca{bottom:100.080000px;}
.y90{bottom:101.880000px;}
.y44{bottom:103.680000px;}
.y27{bottom:105.150000px;}
.y151{bottom:105.300000px;}
.y1e{bottom:106.950000px;}
.y9{bottom:107.490000px;}
.y130{bottom:108.360000px;}
.y7b{bottom:110.880000px;}
.ya7{bottom:112.680000px;}
.y10f{bottom:114.840000px;}
.yf4{bottom:118.080000px;}
.yc9{bottom:119.880000px;}
.y8f{bottom:121.680000px;}
.y3{bottom:122.610000px;}
.y43{bottom:123.480000px;}
.y26{bottom:124.950000px;}
.y150{bottom:125.280000px;}
.y1d{bottom:126.750000px;}
.y12f{bottom:128.160000px;}
.y7a{bottom:130.680000px;}
.ya6{bottom:132.480000px;}
.y10e{bottom:134.640000px;}
.y8{bottom:136.650000px;}
.yf3{bottom:137.880000px;}
.yc8{bottom:139.680000px;}
.y8e{bottom:141.480000px;}
.y42{bottom:143.280000px;}
.y25{bottom:144.750000px;}
.y14f{bottom:145.080000px;}
.y12e{bottom:147.960000px;}
.y79{bottom:150.480000px;}
.y16f{bottom:151.380000px;}
.ya5{bottom:152.310000px;}
.y10d{bottom:154.470000px;}
.y1c{bottom:155.550000px;}
.yf2{bottom:157.710000px;}
.yc7{bottom:159.510000px;}
.y8d{bottom:161.310000px;}
.y24{bottom:164.550000px;}
.y14e{bottom:165.990000px;}
.y12d{bottom:167.790000px;}
.y16e{bottom:168.150000px;}
.y78{bottom:170.310000px;}
.y41{bottom:172.110000px;}
.ya4{bottom:172.290000px;}
.y10c{bottom:174.270000px;}
.y1b{bottom:175.350000px;}
.yf1{bottom:177.510000px;}
.yc6{bottom:179.310000px;}
.y8c{bottom:181.290000px;}
.y23{bottom:184.350000px;}
.y14d{bottom:186.870000px;}
.y12c{bottom:187.770000px;}
.y77{bottom:190.290000px;}
.y40{bottom:191.910000px;}
.ya3{bottom:192.090000px;}
.y10b{bottom:194.070000px;}
.yf0{bottom:197.310000px;}
.yc5{bottom:199.290000px;}
.y8b{bottom:201.090000px;}
.y1a{bottom:204.330000px;}
.y12b{bottom:207.570000px;}
.y14c{bottom:207.750000px;}
.y76{bottom:210.090000px;}
.y3f{bottom:211.890000px;}
.y10a{bottom:214.050000px;}
.yef{bottom:217.290000px;}
.yc4{bottom:219.090000px;}
.y8a{bottom:220.890000px;}
.y19{bottom:224.130000px;}
.y12a{bottom:227.370000px;}
.y14b{bottom:227.730000px;}
.y75{bottom:229.890000px;}
.y3e{bottom:231.690000px;}
.y109{bottom:233.850000px;}
.yee{bottom:237.090000px;}
.yc3{bottom:238.890000px;}
.ya2{bottom:240.690000px;}
.y18{bottom:243.930000px;}
.y129{bottom:247.170000px;}
.y14a{bottom:247.530000px;}
.y74{bottom:249.690000px;}
.y3d{bottom:251.490000px;}
.y108{bottom:253.650000px;}
.yed{bottom:256.890000px;}
.yc2{bottom:258.690000px;}
.ya1{bottom:260.490000px;}
.y17{bottom:263.730000px;}
.y128{bottom:266.970000px;}
.y149{bottom:268.410000px;}
.y73{bottom:269.490000px;}
.y3c{bottom:271.290000px;}
.y17b{bottom:272.910000px;}
.y107{bottom:273.450000px;}
.yec{bottom:276.690000px;}
.yc1{bottom:278.490000px;}
.ya0{bottom:280.470000px;}
.y127{bottom:286.950000px;}
.y148{bottom:288.210000px;}
.y72{bottom:289.470000px;}
.y3b{bottom:291.090000px;}
.y17a{bottom:292.710000px;}
.y106{bottom:293.250000px;}
.yeb{bottom:296.490000px;}
.yc0{bottom:298.470000px;}
.y9f{bottom:300.270000px;}
.y126{bottom:306.750000px;}
.y147{bottom:309.090000px;}
.y71{bottom:309.270000px;}
.y3a{bottom:311.070000px;}
.y179{bottom:312.510000px;}
.y105{bottom:313.230000px;}
.yea{bottom:316.470000px;}
.ybf{bottom:318.270000px;}
.y9e{bottom:320.070000px;}
.y125{bottom:326.550000px;}
.y70{bottom:329.070000px;}
.y146{bottom:329.970000px;}
.y39{bottom:330.870000px;}
.y178{bottom:332.310000px;}
.y104{bottom:333.030000px;}
.ye9{bottom:336.270000px;}
.ybe{bottom:338.070000px;}
.y9d{bottom:339.870000px;}
.y124{bottom:346.350000px;}
.y6f{bottom:348.870000px;}
.y145{bottom:349.950000px;}
.y38{bottom:350.670000px;}
.y177{bottom:352.110000px;}
.y103{bottom:352.830000px;}
.ye8{bottom:356.070000px;}
.ybd{bottom:357.870000px;}
.y9c{bottom:359.670000px;}
.y123{bottom:366.150000px;}
.y6e{bottom:368.670000px;}
.y37{bottom:370.470000px;}
.y144{bottom:370.830000px;}
.y176{bottom:372.090000px;}
.y102{bottom:372.630000px;}
.ye7{bottom:375.870000px;}
.ybc{bottom:377.670000px;}
.y9b{bottom:379.650000px;}
.y122{bottom:387.210000px;}
.y6d{bottom:388.650000px;}
.y36{bottom:390.270000px;}
.y143{bottom:390.630000px;}
.y175{bottom:391.890000px;}
.y101{bottom:392.430000px;}
.ye6{bottom:395.670000px;}
.y9a{bottom:399.450000px;}
.ybb{bottom:406.695000px;}
.y121{bottom:408.135000px;}
.y89{bottom:408.495000px;}
.y35{bottom:410.295000px;}
.y142{bottom:411.555000px;}
.y174{bottom:411.735000px;}
.y100{bottom:412.455000px;}
.ye5{bottom:415.695000px;}
.y6c{bottom:417.495000px;}
.yba{bottom:426.495000px;}
.y120{bottom:427.935000px;}
.y88{bottom:428.295000px;}
.y34{bottom:430.095000px;}
.y173{bottom:431.535000px;}
.yff{bottom:432.255000px;}
.y141{bottom:432.435000px;}
.ye4{bottom:435.495000px;}
.y6b{bottom:437.295000px;}
.yb9{bottom:446.295000px;}
.y11f{bottom:447.735000px;}
.y87{bottom:448.095000px;}
.y172{bottom:448.275000px;}
.y33{bottom:449.895000px;}
.yfe{bottom:452.055000px;}
.y140{bottom:453.495000px;}
.ye3{bottom:455.295000px;}
.y6a{bottom:457.095000px;}
.yb8{bottom:466.095000px;}
.y11e{bottom:467.535000px;}
.y86{bottom:467.895000px;}
.y32{bottom:469.695000px;}
.yfd{bottom:471.855000px;}
.y13f{bottom:474.375000px;}
.ye2{bottom:475.095000px;}
.y69{bottom:476.895000px;}
.yb7{bottom:485.895000px;}
.y11d{bottom:487.515000px;}
.y85{bottom:487.875000px;}
.y31{bottom:489.495000px;}
.yfc{bottom:491.655000px;}
.ye1{bottom:494.895000px;}
.y13e{bottom:495.255000px;}
.y68{bottom:496.875000px;}
.yb6{bottom:505.875000px;}
.y11c{bottom:507.315000px;}
.y84{bottom:507.675000px;}
.y30{bottom:509.475000px;}
.yfb{bottom:511.635000px;}
.ye0{bottom:514.875000px;}
.y13d{bottom:515.055000px;}
.y67{bottom:516.675000px;}
.yb5{bottom:525.675000px;}
.y11b{bottom:527.115000px;}
.y2f{bottom:529.275000px;}
.y16d{bottom:530.355000px;}
.yfa{bottom:531.435000px;}
.ydf{bottom:534.675000px;}
.y13c{bottom:534.855000px;}
.y66{bottom:536.475000px;}
.yb4{bottom:545.475000px;}
.y11a{bottom:546.915000px;}
.y2e{bottom:549.075000px;}
.y16c{bottom:550.155000px;}
.yf9{bottom:551.235000px;}
.yde{bottom:554.475000px;}
.y13b{bottom:554.835000px;}
.y65{bottom:556.275000px;}
.yb3{bottom:565.275000px;}
.y119{bottom:566.715000px;}
.y2d{bottom:568.875000px;}
.y16b{bottom:569.955000px;}
.yf8{bottom:571.035000px;}
.ydd{bottom:574.275000px;}
.y13a{bottom:574.635000px;}
.y64{bottom:576.075000px;}
.y16{bottom:583.635000px;}
.yb2{bottom:585.075000px;}
.y118{bottom:586.695000px;}
.y16a{bottom:589.755000px;}
.yf7{bottom:591.915000px;}
.y139{bottom:593.535000px;}
.ydc{bottom:594.075000px;}
.y63{bottom:596.055000px;}
.y169{bottom:603.795000px;}
.yb1{bottom:605.055000px;}
.y117{bottom:606.495000px;}
.yf6{bottom:612.975000px;}
.ydb{bottom:614.055000px;}
.y62{bottom:615.855000px;}
.y168{bottom:623.775000px;}
.yb0{bottom:624.855000px;}
.y116{bottom:627.375000px;}
.y138{bottom:632.595000px;}
.yda{bottom:633.855000px;}
.y61{bottom:635.655000px;}
.y166{bottom:643.575000px;}
.yaf{bottom:644.655000px;}
.y115{bottom:648.255000px;}
.yd9{bottom:653.685000px;}
.y60{bottom:655.485000px;}
.y165{bottom:663.405000px;}
.yae{bottom:664.485000px;}
.y114{bottom:669.165000px;}
.y137{bottom:671.505000px;}
.yd8{bottom:673.485000px;}
.y5f{bottom:675.285000px;}
.y164{bottom:683.205000px;}
.yad{bottom:684.285000px;}
.y113{bottom:690.045000px;}
.yd7{bottom:693.285000px;}
.y5e{bottom:695.265000px;}
.y163{bottom:703.005000px;}
.y99{bottom:704.265000px;}
.y136{bottom:710.565000px;}
.y112{bottom:711.105000px;}
.yd6{bottom:713.265000px;}
.y5d{bottom:715.065000px;}
.y98{bottom:724.065000px;}
.y111{bottom:731.985000px;}
.yd5{bottom:733.065000px;}
.y5c{bottom:734.865000px;}
.y97{bottom:743.865000px;}
.y162{bottom:748.545000px;}
.y134{bottom:749.625000px;}
.yd4{bottom:752.865000px;}
.y5b{bottom:754.665000px;}
.y96{bottom:763.665000px;}
.y161{bottom:768.345000px;}
.yd3{bottom:772.665000px;}
.y83{bottom:774.465000px;}
.y5a{bottom:783.465000px;}
.y160{bottom:788.145000px;}
.y132{bottom:788.505000px;}
.yd2{bottom:792.465000px;}
.y82{bottom:794.445000px;}
.y59{bottom:803.445000px;}
.y15f{bottom:808.125000px;}
.y171{bottom:810.465000px;}
.yd1{bottom:812.445000px;}
.y81{bottom:814.245000px;}
.y58{bottom:823.245000px;}
.y170{bottom:827.025000px;}
.y15e{bottom:827.925000px;}
.yd0{bottom:832.245000px;}
.y80{bottom:834.045000px;}
.y57{bottom:843.045000px;}
.y15d{bottom:847.725000px;}
.ycf{bottom:852.045000px;}
.y7f{bottom:853.845000px;}
.y14{bottom:862.125000px;}
.y56{bottom:862.845000px;}
.y15c{bottom:867.525000px;}
.yce{bottom:871.845000px;}
.y7e{bottom:873.645000px;}
.y55{bottom:882.645000px;}
.y15b{bottom:887.325000px;}
.y13{bottom:887.865000px;}
.ycd{bottom:891.645000px;}
.y54{bottom:902.670000px;}
.y15a{bottom:907.350000px;}
.y12{bottom:907.710000px;}
.ycc{bottom:911.670000px;}
.y53{bottom:922.470000px;}
.y159{bottom:927.150000px;}
.y11{bottom:928.050000px;}
.ycb{bottom:931.470000px;}
.y52{bottom:942.270000px;}
.y158{bottom:946.950000px;}
.y10{bottom:949.290000px;}
.yac{bottom:951.270000px;}
.y51{bottom:962.070000px;}
.y157{bottom:966.750000px;}
.yab{bottom:971.070000px;}
.yf{bottom:972.870000px;}
.y50{bottom:981.870000px;}
.y156{bottom:986.550000px;}
.yaa{bottom:990.870000px;}
.y4f{bottom:1001.850000px;}
.ye{bottom:1004.550000px;}
.y155{bottom:1007.610000px;}
.ya9{bottom:1010.850000px;}
.y4e{bottom:1021.650000px;}
.y154{bottom:1028.490000px;}
.ya8{bottom:1030.650000px;}
.yc{bottom:1031.370000px;}
.y4d{bottom:1041.450000px;}
.y1{bottom:1047.750000px;}
.y153{bottom:1049.370000px;}
.y95{bottom:1050.450000px;}
.y4c{bottom:1061.250000px;}
.y94{bottom:1070.250000px;}
.y4b{bottom:1081.050000px;}
.y93{bottom:1090.050000px;}
.y4a{bottom:1101.030000px;}
.y92{bottom:1110.030000px;}
.y7d{bottom:1120.830000px;}
.y49{bottom:1129.830000px;}
.y48{bottom:1149.660000px;}
.y47{bottom:1169.460000px;}
.y46{bottom:1195.740000px;}
.h3{height:2.864531px;}
.hc{height:19.800000px;}
.h13{height:19.836000px;}
.h14{height:19.980000px;}
.h10{height:34.380000px;}
.h11{height:34.416000px;}
.hf{height:34.560000px;}
.h12{height:39.780000px;}
.h9{height:42.164648px;}
.ha{height:46.736719px;}
.he{height:49.255313px;}
.hb{height:52.435898px;}
.h7{height:58.121719px;}
.h6{height:65.884219px;}
.h8{height:67.565039px;}
.h5{height:67.824844px;}
.h4{height:105.060586px;}
.h2{height:161.310000px;}
.hd{height:277.770000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:106.920000px;}
.wb{width:151.410000px;}
.w2{width:153.750000px;}
.w4{width:156.990000px;}
.we{width:162.000000px;}
.wd{width:162.030000px;}
.wc{width:186.510000px;}
.wa{width:214.410000px;}
.w7{width:287.895000px;}
.w3{width:472.785000px;}
.w8{width:493.305000px;}
.w6{width:781.200000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x11{left:1.080000px;}
.xa{left:8.100000px;}
.x1{left:54.720000px;}
.x4{left:56.160000px;}
.xe{left:75.239987px;}
.xc{left:80.999987px;}
.xf{left:102.275987px;}
.xd{left:108.035987px;}
.x8{left:110.205000px;}
.x10{left:113.616000px;}
.x7{left:117.225000px;}
.x5{left:119.385000px;}
.x15{left:122.436000px;}
.x2{left:136.290000px;}
.x3{left:208.470000px;}
.x12{left:222.690000px;}
.x6{left:236.385000px;}
.x1c{left:274.394987px;}
.x16{left:284.475000px;}
.x1b{left:291.854987px;}
.x1a{left:297.974987px;}
.xb{left:343.875000px;}
.x13{left:439.455000px;}
.x17{left:446.505000px;}
.x14{left:593.025000px;}
.x18{left:608.505000px;}
.x9{left:681.270000px;}
.x19{left:743.549987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls8{letter-spacing:-0.688000pt;}
.ls6{letter-spacing:-0.544000pt;}
.ls15{letter-spacing:-0.480000pt;}
.lsb{letter-spacing:-0.409067pt;}
.lsa{letter-spacing:-0.320000pt;}
.ls7{letter-spacing:-0.183467pt;}
.ls9{letter-spacing:-0.047360pt;}
.ls4{letter-spacing:0.000000pt;}
.ls18{letter-spacing:0.012800pt;}
.ls1e{letter-spacing:0.047360pt;}
.lse{letter-spacing:0.094933pt;}
.ls12{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.227733pt;}
.ls1d{letter-spacing:0.230933pt;}
.ls1b{letter-spacing:0.231040pt;}
.ls13{letter-spacing:0.265600pt;}
.lsf{letter-spacing:0.272533pt;}
.ls3{letter-spacing:0.272640pt;}
.lsd{letter-spacing:0.298667pt;}
.ls0{letter-spacing:0.320000pt;}
.ls1a{letter-spacing:0.448000pt;}
.ls16{letter-spacing:0.480000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls1c{letter-spacing:0.800000pt;}
.ls17{letter-spacing:7.840000pt;}
.ls2{letter-spacing:9.760000pt;}
.ls14{letter-spacing:14.672640pt;}
.lsc{letter-spacing:40.912640pt;}
.ls19{letter-spacing:56.912640pt;}
.ls1{letter-spacing:80.138667pt;}
.ws2{word-spacing:-21.280000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-13.600000pt;}
.wsa{word-spacing:-13.552533pt;}
.ws0{word-spacing:-13.534613pt;}
.wsd{word-spacing:-13.510933pt;}
.ws9{word-spacing:-13.374933pt;}
.wse{word-spacing:-13.327360pt;}
.ws5{word-spacing:-13.280000pt;}
.ws8{word-spacing:-13.232640pt;}
.ws6{word-spacing:-13.096533pt;}
.wsc{word-spacing:-12.960000pt;}
.wsb{word-spacing:-12.320000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws7{word-spacing:0.000000pt;}
._3{margin-left:-6.391680pt;}
._1{margin-left:-2.826240pt;}
._b{margin-left:-1.862400pt;}
._2{margin-left:-0.942080pt;}
._0{width:1.054080pt;}
._7{width:2.396800pt;}
._6{width:3.446400pt;}
._d{width:4.621440pt;}
._12{width:5.524480pt;}
._10{width:6.693120pt;}
._11{width:7.760000pt;}
._13{width:8.744960pt;}
._8{width:9.656320pt;}
._9{width:10.602240pt;}
._a{width:11.557120pt;}
._c{width:14.608000pt;}
._e{width:15.989120pt;}
._15{width:18.113920pt;}
._14{width:19.282560pt;}
._f{width:21.248000pt;}
._5{width:24.435200pt;}
._4{width:80.592000pt;}
._16{width:184.910720pt;}
.fs0{font-size:2.560000pt;}
.fs5{font-size:48.000000pt;}
.fs4{font-size:53.120000pt;}
.fs2{font-size:58.880000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:1.280000pt;}
.y15{bottom:5.120000pt;}
.y167{bottom:5.146667pt;}
.y2c{bottom:5.280000pt;}
.y22{bottom:5.760000pt;}
.y135{bottom:11.520000pt;}
.y133{bottom:11.680000pt;}
.y7{bottom:13.120000pt;}
.y2b{bottom:22.880000pt;}
.y21{bottom:23.360000pt;}
.y6{bottom:39.040000pt;}
.y2a{bottom:40.480000pt;}
.y20{bottom:41.120000pt;}
.yd{bottom:51.040000pt;}
.y5{bottom:56.960000pt;}
.y29{bottom:58.080000pt;}
.y1f{bottom:58.746667pt;}
.yb{bottom:65.600000pt;}
.ya{bottom:69.600000pt;}
.y91{bottom:72.960000pt;}
.y45{bottom:74.400000pt;}
.y28{bottom:75.706667pt;}
.y152{bottom:76.000000pt;}
.y4{bottom:76.800000pt;}
.y131{bottom:78.720000pt;}
.y7c{bottom:80.960000pt;}
.y110{bottom:84.320000pt;}
.yf5{bottom:87.200000pt;}
.yca{bottom:88.960000pt;}
.y90{bottom:90.560000pt;}
.y44{bottom:92.160000pt;}
.y27{bottom:93.466667pt;}
.y151{bottom:93.600000pt;}
.y1e{bottom:95.066667pt;}
.y9{bottom:95.546667pt;}
.y130{bottom:96.320000pt;}
.y7b{bottom:98.560000pt;}
.ya7{bottom:100.160000pt;}
.y10f{bottom:102.080000pt;}
.yf4{bottom:104.960000pt;}
.yc9{bottom:106.560000pt;}
.y8f{bottom:108.160000pt;}
.y3{bottom:108.986667pt;}
.y43{bottom:109.760000pt;}
.y26{bottom:111.066667pt;}
.y150{bottom:111.360000pt;}
.y1d{bottom:112.666667pt;}
.y12f{bottom:113.920000pt;}
.y7a{bottom:116.160000pt;}
.ya6{bottom:117.760000pt;}
.y10e{bottom:119.680000pt;}
.y8{bottom:121.466667pt;}
.yf3{bottom:122.560000pt;}
.yc8{bottom:124.160000pt;}
.y8e{bottom:125.760000pt;}
.y42{bottom:127.360000pt;}
.y25{bottom:128.666667pt;}
.y14f{bottom:128.960000pt;}
.y12e{bottom:131.520000pt;}
.y79{bottom:133.760000pt;}
.y16f{bottom:134.560000pt;}
.ya5{bottom:135.386667pt;}
.y10d{bottom:137.306667pt;}
.y1c{bottom:138.266667pt;}
.yf2{bottom:140.186667pt;}
.yc7{bottom:141.786667pt;}
.y8d{bottom:143.386667pt;}
.y24{bottom:146.266667pt;}
.y14e{bottom:147.546667pt;}
.y12d{bottom:149.146667pt;}
.y16e{bottom:149.466667pt;}
.y78{bottom:151.386667pt;}
.y41{bottom:152.986667pt;}
.ya4{bottom:153.146667pt;}
.y10c{bottom:154.906667pt;}
.y1b{bottom:155.866667pt;}
.yf1{bottom:157.786667pt;}
.yc6{bottom:159.386667pt;}
.y8c{bottom:161.146667pt;}
.y23{bottom:163.866667pt;}
.y14d{bottom:166.106667pt;}
.y12c{bottom:166.906667pt;}
.y77{bottom:169.146667pt;}
.y40{bottom:170.586667pt;}
.ya3{bottom:170.746667pt;}
.y10b{bottom:172.506667pt;}
.yf0{bottom:175.386667pt;}
.yc5{bottom:177.146667pt;}
.y8b{bottom:178.746667pt;}
.y1a{bottom:181.626667pt;}
.y12b{bottom:184.506667pt;}
.y14c{bottom:184.666667pt;}
.y76{bottom:186.746667pt;}
.y3f{bottom:188.346667pt;}
.y10a{bottom:190.266667pt;}
.yef{bottom:193.146667pt;}
.yc4{bottom:194.746667pt;}
.y8a{bottom:196.346667pt;}
.y19{bottom:199.226667pt;}
.y12a{bottom:202.106667pt;}
.y14b{bottom:202.426667pt;}
.y75{bottom:204.346667pt;}
.y3e{bottom:205.946667pt;}
.y109{bottom:207.866667pt;}
.yee{bottom:210.746667pt;}
.yc3{bottom:212.346667pt;}
.ya2{bottom:213.946667pt;}
.y18{bottom:216.826667pt;}
.y129{bottom:219.706667pt;}
.y14a{bottom:220.026667pt;}
.y74{bottom:221.946667pt;}
.y3d{bottom:223.546667pt;}
.y108{bottom:225.466667pt;}
.yed{bottom:228.346667pt;}
.yc2{bottom:229.946667pt;}
.ya1{bottom:231.546667pt;}
.y17{bottom:234.426667pt;}
.y128{bottom:237.306667pt;}
.y149{bottom:238.586667pt;}
.y73{bottom:239.546667pt;}
.y3c{bottom:241.146667pt;}
.y17b{bottom:242.586667pt;}
.y107{bottom:243.066667pt;}
.yec{bottom:245.946667pt;}
.yc1{bottom:247.546667pt;}
.ya0{bottom:249.306667pt;}
.y127{bottom:255.066667pt;}
.y148{bottom:256.186667pt;}
.y72{bottom:257.306667pt;}
.y3b{bottom:258.746667pt;}
.y17a{bottom:260.186667pt;}
.y106{bottom:260.666667pt;}
.yeb{bottom:263.546667pt;}
.yc0{bottom:265.306667pt;}
.y9f{bottom:266.906667pt;}
.y126{bottom:272.666667pt;}
.y147{bottom:274.746667pt;}
.y71{bottom:274.906667pt;}
.y3a{bottom:276.506667pt;}
.y179{bottom:277.786667pt;}
.y105{bottom:278.426667pt;}
.yea{bottom:281.306667pt;}
.ybf{bottom:282.906667pt;}
.y9e{bottom:284.506667pt;}
.y125{bottom:290.266667pt;}
.y70{bottom:292.506667pt;}
.y146{bottom:293.306667pt;}
.y39{bottom:294.106667pt;}
.y178{bottom:295.386667pt;}
.y104{bottom:296.026667pt;}
.ye9{bottom:298.906667pt;}
.ybe{bottom:300.506667pt;}
.y9d{bottom:302.106667pt;}
.y124{bottom:307.866667pt;}
.y6f{bottom:310.106667pt;}
.y145{bottom:311.066667pt;}
.y38{bottom:311.706667pt;}
.y177{bottom:312.986667pt;}
.y103{bottom:313.626667pt;}
.ye8{bottom:316.506667pt;}
.ybd{bottom:318.106667pt;}
.y9c{bottom:319.706667pt;}
.y123{bottom:325.466667pt;}
.y6e{bottom:327.706667pt;}
.y37{bottom:329.306667pt;}
.y144{bottom:329.626667pt;}
.y176{bottom:330.746667pt;}
.y102{bottom:331.226667pt;}
.ye7{bottom:334.106667pt;}
.ybc{bottom:335.706667pt;}
.y9b{bottom:337.466667pt;}
.y122{bottom:344.186667pt;}
.y6d{bottom:345.466667pt;}
.y36{bottom:346.906667pt;}
.y143{bottom:347.226667pt;}
.y175{bottom:348.346667pt;}
.y101{bottom:348.826667pt;}
.ye6{bottom:351.706667pt;}
.y9a{bottom:355.066667pt;}
.ybb{bottom:361.506667pt;}
.y121{bottom:362.786667pt;}
.y89{bottom:363.106667pt;}
.y35{bottom:364.706667pt;}
.y142{bottom:365.826667pt;}
.y174{bottom:365.986667pt;}
.y100{bottom:366.626667pt;}
.ye5{bottom:369.506667pt;}
.y6c{bottom:371.106667pt;}
.yba{bottom:379.106667pt;}
.y120{bottom:380.386667pt;}
.y88{bottom:380.706667pt;}
.y34{bottom:382.306667pt;}
.y173{bottom:383.586667pt;}
.yff{bottom:384.226667pt;}
.y141{bottom:384.386667pt;}
.ye4{bottom:387.106667pt;}
.y6b{bottom:388.706667pt;}
.yb9{bottom:396.706667pt;}
.y11f{bottom:397.986667pt;}
.y87{bottom:398.306667pt;}
.y172{bottom:398.466667pt;}
.y33{bottom:399.906667pt;}
.yfe{bottom:401.826667pt;}
.y140{bottom:403.106667pt;}
.ye3{bottom:404.706667pt;}
.y6a{bottom:406.306667pt;}
.yb8{bottom:414.306667pt;}
.y11e{bottom:415.586667pt;}
.y86{bottom:415.906667pt;}
.y32{bottom:417.506667pt;}
.yfd{bottom:419.426667pt;}
.y13f{bottom:421.666667pt;}
.ye2{bottom:422.306667pt;}
.y69{bottom:423.906667pt;}
.yb7{bottom:431.906667pt;}
.y11d{bottom:433.346667pt;}
.y85{bottom:433.666667pt;}
.y31{bottom:435.106667pt;}
.yfc{bottom:437.026667pt;}
.ye1{bottom:439.906667pt;}
.y13e{bottom:440.226667pt;}
.y68{bottom:441.666667pt;}
.yb6{bottom:449.666667pt;}
.y11c{bottom:450.946667pt;}
.y84{bottom:451.266667pt;}
.y30{bottom:452.866667pt;}
.yfb{bottom:454.786667pt;}
.ye0{bottom:457.666667pt;}
.y13d{bottom:457.826667pt;}
.y67{bottom:459.266667pt;}
.yb5{bottom:467.266667pt;}
.y11b{bottom:468.546667pt;}
.y2f{bottom:470.466667pt;}
.y16d{bottom:471.426667pt;}
.yfa{bottom:472.386667pt;}
.ydf{bottom:475.266667pt;}
.y13c{bottom:475.426667pt;}
.y66{bottom:476.866667pt;}
.yb4{bottom:484.866667pt;}
.y11a{bottom:486.146667pt;}
.y2e{bottom:488.066667pt;}
.y16c{bottom:489.026667pt;}
.yf9{bottom:489.986667pt;}
.yde{bottom:492.866667pt;}
.y13b{bottom:493.186667pt;}
.y65{bottom:494.466667pt;}
.yb3{bottom:502.466667pt;}
.y119{bottom:503.746667pt;}
.y2d{bottom:505.666667pt;}
.y16b{bottom:506.626667pt;}
.yf8{bottom:507.586667pt;}
.ydd{bottom:510.466667pt;}
.y13a{bottom:510.786667pt;}
.y64{bottom:512.066667pt;}
.y16{bottom:518.786667pt;}
.yb2{bottom:520.066667pt;}
.y118{bottom:521.506667pt;}
.y16a{bottom:524.226667pt;}
.yf7{bottom:526.146667pt;}
.y139{bottom:527.586667pt;}
.ydc{bottom:528.066667pt;}
.y63{bottom:529.826667pt;}
.y169{bottom:536.706667pt;}
.yb1{bottom:537.826667pt;}
.y117{bottom:539.106667pt;}
.yf6{bottom:544.866667pt;}
.ydb{bottom:545.826667pt;}
.y62{bottom:547.426667pt;}
.y168{bottom:554.466667pt;}
.yb0{bottom:555.426667pt;}
.y116{bottom:557.666667pt;}
.y138{bottom:562.306667pt;}
.yda{bottom:563.426667pt;}
.y61{bottom:565.026667pt;}
.y166{bottom:572.066667pt;}
.yaf{bottom:573.026667pt;}
.y115{bottom:576.226667pt;}
.yd9{bottom:581.053333pt;}
.y60{bottom:582.653333pt;}
.y165{bottom:589.693333pt;}
.yae{bottom:590.653333pt;}
.y114{bottom:594.813333pt;}
.y137{bottom:596.893333pt;}
.yd8{bottom:598.653333pt;}
.y5f{bottom:600.253333pt;}
.y164{bottom:607.293333pt;}
.yad{bottom:608.253333pt;}
.y113{bottom:613.373333pt;}
.yd7{bottom:616.253333pt;}
.y5e{bottom:618.013333pt;}
.y163{bottom:624.893333pt;}
.y99{bottom:626.013333pt;}
.y136{bottom:631.613333pt;}
.y112{bottom:632.093333pt;}
.yd6{bottom:634.013333pt;}
.y5d{bottom:635.613333pt;}
.y98{bottom:643.613333pt;}
.y111{bottom:650.653333pt;}
.yd5{bottom:651.613333pt;}
.y5c{bottom:653.213333pt;}
.y97{bottom:661.213333pt;}
.y162{bottom:665.373333pt;}
.y134{bottom:666.333333pt;}
.yd4{bottom:669.213333pt;}
.y5b{bottom:670.813333pt;}
.y96{bottom:678.813333pt;}
.y161{bottom:682.973333pt;}
.yd3{bottom:686.813333pt;}
.y83{bottom:688.413333pt;}
.y5a{bottom:696.413333pt;}
.y160{bottom:700.573333pt;}
.y132{bottom:700.893333pt;}
.yd2{bottom:704.413333pt;}
.y82{bottom:706.173333pt;}
.y59{bottom:714.173333pt;}
.y15f{bottom:718.333333pt;}
.y171{bottom:720.413333pt;}
.yd1{bottom:722.173333pt;}
.y81{bottom:723.773333pt;}
.y58{bottom:731.773333pt;}
.y170{bottom:735.133333pt;}
.y15e{bottom:735.933333pt;}
.yd0{bottom:739.773333pt;}
.y80{bottom:741.373333pt;}
.y57{bottom:749.373333pt;}
.y15d{bottom:753.533333pt;}
.ycf{bottom:757.373333pt;}
.y7f{bottom:758.973333pt;}
.y14{bottom:766.333333pt;}
.y56{bottom:766.973333pt;}
.y15c{bottom:771.133333pt;}
.yce{bottom:774.973333pt;}
.y7e{bottom:776.573333pt;}
.y55{bottom:784.573333pt;}
.y15b{bottom:788.733333pt;}
.y13{bottom:789.213333pt;}
.ycd{bottom:792.573333pt;}
.y54{bottom:802.373333pt;}
.y15a{bottom:806.533333pt;}
.y12{bottom:806.853333pt;}
.ycc{bottom:810.373333pt;}
.y53{bottom:819.973333pt;}
.y159{bottom:824.133333pt;}
.y11{bottom:824.933333pt;}
.ycb{bottom:827.973333pt;}
.y52{bottom:837.573333pt;}
.y158{bottom:841.733333pt;}
.y10{bottom:843.813333pt;}
.yac{bottom:845.573333pt;}
.y51{bottom:855.173333pt;}
.y157{bottom:859.333333pt;}
.yab{bottom:863.173333pt;}
.yf{bottom:864.773333pt;}
.y50{bottom:872.773333pt;}
.y156{bottom:876.933333pt;}
.yaa{bottom:880.773333pt;}
.y4f{bottom:890.533333pt;}
.ye{bottom:892.933333pt;}
.y155{bottom:895.653333pt;}
.ya9{bottom:898.533333pt;}
.y4e{bottom:908.133333pt;}
.y154{bottom:914.213333pt;}
.ya8{bottom:916.133333pt;}
.yc{bottom:916.773333pt;}
.y4d{bottom:925.733333pt;}
.y1{bottom:931.333333pt;}
.y153{bottom:932.773333pt;}
.y95{bottom:933.733333pt;}
.y4c{bottom:943.333333pt;}
.y94{bottom:951.333333pt;}
.y4b{bottom:960.933333pt;}
.y93{bottom:968.933333pt;}
.y4a{bottom:978.693333pt;}
.y92{bottom:986.693333pt;}
.y7d{bottom:996.293333pt;}
.y49{bottom:1004.293333pt;}
.y48{bottom:1021.920000pt;}
.y47{bottom:1039.520000pt;}
.y46{bottom:1062.880000pt;}
.h3{height:2.546250pt;}
.hc{height:17.600000pt;}
.h13{height:17.632000pt;}
.h14{height:17.760000pt;}
.h10{height:30.560000pt;}
.h11{height:30.592000pt;}
.hf{height:30.720000pt;}
.h12{height:35.360000pt;}
.h9{height:37.479688pt;}
.ha{height:41.543750pt;}
.he{height:43.782500pt;}
.hb{height:46.609688pt;}
.h7{height:51.663750pt;}
.h6{height:58.563750pt;}
.h8{height:60.057813pt;}
.h5{height:60.288750pt;}
.h4{height:93.387187pt;}
.h2{height:143.386667pt;}
.hd{height:246.906667pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:95.040000pt;}
.wb{width:134.586667pt;}
.w2{width:136.666667pt;}
.w4{width:139.546667pt;}
.we{width:144.000000pt;}
.wd{width:144.026667pt;}
.wc{width:165.786667pt;}
.wa{width:190.586667pt;}
.w7{width:255.906667pt;}
.w3{width:420.253333pt;}
.w8{width:438.493333pt;}
.w6{width:694.400000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x11{left:0.960000pt;}
.xa{left:7.200000pt;}
.x1{left:48.640000pt;}
.x4{left:49.920000pt;}
.xe{left:66.879988pt;}
.xc{left:71.999988pt;}
.xf{left:90.911988pt;}
.xd{left:96.031988pt;}
.x8{left:97.960000pt;}
.x10{left:100.992000pt;}
.x7{left:104.200000pt;}
.x5{left:106.120000pt;}
.x15{left:108.832000pt;}
.x2{left:121.146667pt;}
.x3{left:185.306667pt;}
.x12{left:197.946667pt;}
.x6{left:210.120000pt;}
.x1c{left:243.906655pt;}
.x16{left:252.866667pt;}
.x1b{left:259.426655pt;}
.x1a{left:264.866655pt;}
.xb{left:305.666667pt;}
.x13{left:390.626667pt;}
.x17{left:396.893333pt;}
.x14{left:527.133333pt;}
.x18{left:540.893333pt;}
.x9{left:605.573333pt;}
.x19{left:660.933322pt;}
}




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