
    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_0a8d44687f71104fdc32894c.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_2b14f0dfd5bafb5bc4baf28f.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.091309;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_3078eb321d90ef0084860a37.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.091309;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_a593df5fc9d3f88f324eb26d.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_625a5b5fc23a9b0ec93cb4f5.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.942383;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_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_d9e76a8f236d40c166fd5409.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ff8{font-family:ff8;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1a{letter-spacing:-0.936000px;}
.lsa{letter-spacing:-0.870000px;}
.lsc{letter-spacing:-0.720000px;}
.ls19{letter-spacing:-0.648000px;}
.ls4b{letter-spacing:-0.612000px;}
.ls23{letter-spacing:-0.576000px;}
.ls4d{letter-spacing:-0.457800px;}
.lse{letter-spacing:-0.414600px;}
.ls8{letter-spacing:-0.341400px;}
.ls38{letter-spacing:-0.305400px;}
.ls17{letter-spacing:-0.288000px;}
.ls36{letter-spacing:-0.216000px;}
.lsd{letter-spacing:-0.152400px;}
.ls11{letter-spacing:-0.144000px;}
.ls1b{letter-spacing:-0.072000px;}
.ls6{letter-spacing:0.000000px;}
.ls9{letter-spacing:0.028080px;}
.ls18{letter-spacing:0.072000px;}
.ls48{letter-spacing:0.109200px;}
.ls47{letter-spacing:0.109440px;}
.ls3e{letter-spacing:0.120000px;}
.ls4{letter-spacing:0.144000px;}
.ls4a{letter-spacing:0.152400px;}
.ls24{letter-spacing:0.216000px;}
.ls45{letter-spacing:0.262080px;}
.ls49{letter-spacing:0.262200px;}
.ls46{letter-spacing:0.289440px;}
.lsb{letter-spacing:0.305400px;}
.ls7{letter-spacing:0.341400px;}
.ls0{letter-spacing:0.360000px;}
.ls32{letter-spacing:0.504000px;}
.lsf{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.720000px;}
.ls22{letter-spacing:0.864000px;}
.ls2f{letter-spacing:0.936000px;}
.ls3f{letter-spacing:1.296000px;}
.ls2b{letter-spacing:1.440000px;}
.ls3a{letter-spacing:2.136000px;}
.ls27{letter-spacing:2.160000px;}
.ls20{letter-spacing:2.880000px;}
.ls37{letter-spacing:3.060000px;}
.ls29{letter-spacing:3.600000px;}
.ls2c{letter-spacing:4.320000px;}
.ls3{letter-spacing:5.040000px;}
.ls14{letter-spacing:5.760000px;}
.ls1d{letter-spacing:6.480000px;}
.ls1e{letter-spacing:7.200000px;}
.ls3c{letter-spacing:7.320000px;}
.ls34{letter-spacing:7.920000px;}
.ls26{letter-spacing:8.640000px;}
.ls3d{letter-spacing:9.360000px;}
.ls16{letter-spacing:10.800000px;}
.ls30{letter-spacing:11.520000px;}
.ls21{letter-spacing:12.240000px;}
.ls1c{letter-spacing:12.960000px;}
.ls1{letter-spacing:13.680000px;}
.ls13{letter-spacing:14.400000px;}
.ls28{letter-spacing:14.580000px;}
.ls25{letter-spacing:15.120000px;}
.ls42{letter-spacing:15.840000px;}
.ls15{letter-spacing:16.560000px;}
.ls33{letter-spacing:18.000000px;}
.ls39{letter-spacing:18.720000px;}
.ls43{letter-spacing:19.440000px;}
.ls35{letter-spacing:20.160000px;}
.ls2d{letter-spacing:23.040000px;}
.ls31{letter-spacing:23.160000px;}
.ls1f{letter-spacing:23.760000px;}
.ls40{letter-spacing:25.200000px;}
.ls4c{letter-spacing:26.640000px;}
.ls44{letter-spacing:27.360000px;}
.ls3b{letter-spacing:27.480000px;}
.ls2e{letter-spacing:29.520000px;}
.ls5{letter-spacing:30.240000px;}
.ls41{letter-spacing:30.960000px;}
.ls2a{letter-spacing:33.120000px;}
.ls12{letter-spacing:53.424000px;}
.ls2{letter-spacing:54.144000px;}
.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;}
}
.ws1{word-spacing:-21.420000px;}
.ws2{word-spacing:-21.401400px;}
.ws4{word-spacing:-21.088080px;}
.ws3{word-spacing:-20.718600px;}
.ws1e{word-spacing:-19.296000px;}
.ws1a{word-spacing:-18.936000px;}
.ws17{word-spacing:-18.864000px;}
.wse{word-spacing:-18.720000px;}
.wsd{word-spacing:-18.576000px;}
.ws1f{word-spacing:-18.504000px;}
.ws19{word-spacing:-18.216000px;}
.wsc{word-spacing:-18.144000px;}
.ws13{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.ws16{word-spacing:-17.928000px;}
.wsf{word-spacing:-17.856000px;}
.ws1b{word-spacing:-17.784000px;}
.ws12{word-spacing:-17.712000px;}
.ws18{word-spacing:-17.424000px;}
.ws14{word-spacing:-17.352000px;}
.ws1c{word-spacing:-17.280000px;}
.ws15{word-spacing:-17.064000px;}
.ws7{word-spacing:-16.865400px;}
.ws21{word-spacing:-16.822200px;}
.ws20{word-spacing:-16.669200px;}
.wsb{word-spacing:-16.560000px;}
.ws9{word-spacing:-16.407600px;}
.ws1d{word-spacing:-16.254600px;}
.wsa{word-spacing:-16.145400px;}
.ws23{word-spacing:-16.102200px;}
.ws22{word-spacing:-15.948000px;}
.ws8{word-spacing:-15.840000px;}
.ws6{word-spacing:-15.690000px;}
.ws0{word-spacing:-15.300000px;}
.ws11{word-spacing:-14.940000px;}
.ws10{word-spacing:0.000000px;}
._24{margin-left:-6.329280px;}
._1f{margin-left:-2.184000px;}
._1{margin-left:-1.010400px;}
._0{width:1.029360px;}
._4{width:2.292960px;}
._8{width:3.744720px;}
._f{width:5.231280px;}
._3{width:6.954240px;}
._2{width:8.244480px;}
._18{width:9.263040px;}
._9{width:10.317600px;}
._17{width:11.346720px;}
._a{width:12.350640px;}
._7{width:13.569600px;}
._b{width:14.986560px;}
._13{width:16.540080px;}
._33{width:17.694720px;}
._14{width:19.152960px;}
._c{width:20.245440px;}
._10{width:21.550320px;}
._1b{width:22.562880px;}
._5{width:23.888640px;}
._6{width:25.453440px;}
._20{width:26.640000px;}
._1a{width:27.984000px;}
._11{width:29.856000px;}
._12{width:30.917280px;}
._1e{width:32.484000px;}
._19{width:33.960000px;}
._16{width:35.184000px;}
._15{width:36.360000px;}
._d{width:38.398080px;}
._e{width:39.570240px;}
._2f{width:43.104000px;}
._30{width:44.376000px;}
._35{width:45.644160px;}
._1c{width:47.028000px;}
._1d{width:48.312000px;}
._26{width:68.976000px;}
._32{width:77.368320px;}
._31{width:78.428160px;}
._22{width:100.944000px;}
._27{width:133.056000px;}
._2a{width:145.008000px;}
._29{width:168.984000px;}
._2c{width:211.644000px;}
._25{width:225.000000px;}
._23{width:240.984000px;}
._28{width:257.040000px;}
._21{width:261.288000px;}
._2b{width:267.660000px;}
._2d{width:283.644000px;}
._2e{width:299.700000px;}
._34{width:326.340720px;}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs3{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yd0{bottom:5.760000px;}
.yd6{bottom:7.560000px;}
.yd5{bottom:28.305000px;}
.y4{bottom:57.780000px;}
.y3{bottom:78.480000px;}
.y103{bottom:174.270000px;}
.ya1{bottom:186.870000px;}
.y84{bottom:187.770000px;}
.y102{bottom:194.970000px;}
.ydd{bottom:199.290000px;}
.yce{bottom:202.530000px;}
.ye6{bottom:203.070000px;}
.ya0{bottom:207.570000px;}
.y55{bottom:208.110000px;}
.y83{bottom:208.470000px;}
.y101{bottom:215.670000px;}
.yaf{bottom:216.030000px;}
.ydc{bottom:219.990000px;}
.ycd{bottom:223.230000px;}
.y9f{bottom:228.270000px;}
.y54{bottom:228.810000px;}
.y82{bottom:229.170000px;}
.ye5{bottom:231.150000px;}
.y100{bottom:236.370000px;}
.yae{bottom:236.730000px;}
.ydb{bottom:240.690000px;}
.y129{bottom:241.410000px;}
.ycc{bottom:243.930000px;}
.y9e{bottom:248.970000px;}
.y53{bottom:249.510000px;}
.y81{bottom:249.870000px;}
.yba{bottom:254.010000px;}
.yff{bottom:257.070000px;}
.yad{bottom:257.430000px;}
.ye4{bottom:259.410000px;}
.yda{bottom:261.390000px;}
.ycb{bottom:264.630000px;}
.y9d{bottom:269.670000px;}
.y52{bottom:270.210000px;}
.y80{bottom:270.570000px;}
.y128{bottom:272.370000px;}
.yfe{bottom:277.770000px;}
.yac{bottom:278.130000px;}
.y28{bottom:280.110000px;}
.yd9{bottom:282.090000px;}
.yb9{bottom:282.270000px;}
.y14d{bottom:283.170000px;}
.yca{bottom:285.330000px;}
.ye3{bottom:287.670000px;}
.y9c{bottom:290.370000px;}
.y51{bottom:290.910000px;}
.y7f{bottom:291.270000px;}
.y127{bottom:291.450000px;}
.yfd{bottom:298.470000px;}
.yab{bottom:298.830000px;}
.y27{bottom:300.810000px;}
.y14c{bottom:302.250000px;}
.yd8{bottom:302.790000px;}
.yb8{bottom:302.970000px;}
.yc9{bottom:306.030000px;}
.y126{bottom:310.530000px;}
.y9b{bottom:311.070000px;}
.y50{bottom:311.610000px;}
.y7e{bottom:311.970000px;}
.ye2{bottom:315.750000px;}
.yfc{bottom:319.170000px;}
.yaa{bottom:319.530000px;}
.y14b{bottom:321.150000px;}
.y26{bottom:321.510000px;}
.yd7{bottom:323.490000px;}
.yb7{bottom:323.670000px;}
.y125{bottom:329.430000px;}
.y9a{bottom:331.770000px;}
.y4f{bottom:332.310000px;}
.y7d{bottom:332.670000px;}
.yfb{bottom:339.690000px;}
.y14a{bottom:340.050000px;}
.ya9{bottom:340.230000px;}
.y25{bottom:342.210000px;}
.ye1{bottom:344.010000px;}
.yc8{bottom:344.730000px;}
.y99{bottom:352.470000px;}
.y4e{bottom:353.010000px;}
.y7c{bottom:353.370000px;}
.yb6{bottom:356.250000px;}
.y124{bottom:360.210000px;}
.yfa{bottom:360.390000px;}
.ya8{bottom:360.930000px;}
.y24{bottom:362.910000px;}
.yd4{bottom:365.070000px;}
.yc7{bottom:372.990000px;}
.y98{bottom:373.170000px;}
.y4d{bottom:373.710000px;}
.y7b{bottom:374.070000px;}
.ye0{bottom:376.770000px;}
.yb5{bottom:376.950000px;}
.y23{bottom:383.610000px;}
.y123{bottom:391.215000px;}
.y97{bottom:393.735000px;}
.y4c{bottom:394.455000px;}
.y7a{bottom:394.815000px;}
.y149{bottom:394.995000px;}
.ydf{bottom:397.515000px;}
.yc6{bottom:401.295000px;}
.yf9{bottom:402.195000px;}
.ya7{bottom:402.735000px;}
.y22{bottom:404.355000px;}
.y122{bottom:410.475000px;}
.y148{bottom:414.075000px;}
.y96{bottom:414.435000px;}
.y4b{bottom:415.155000px;}
.y79{bottom:415.515000px;}
.yb4{bottom:415.695000px;}
.yc5{bottom:421.995000px;}
.yd3{bottom:422.715000px;}
.ya6{bottom:423.075000px;}
.y21{bottom:425.055000px;}
.y121{bottom:429.375000px;}
.y147{bottom:433.155000px;}
.y95{bottom:435.135000px;}
.y4a{bottom:435.855000px;}
.yde{bottom:436.035000px;}
.y78{bottom:436.215000px;}
.ya5{bottom:442.155000px;}
.yb3{bottom:443.955000px;}
.y20{bottom:445.755000px;}
.yc4{bottom:450.075000px;}
.y94{bottom:455.835000px;}
.y49{bottom:456.555000px;}
.y77{bottom:456.735000px;}
.yd2{bottom:457.995000px;}
.y120{bottom:460.155000px;}
.ya4{bottom:461.055000px;}
.y146{bottom:463.935000px;}
.yb2{bottom:464.655000px;}
.yf8{bottom:464.835000px;}
.y1f{bottom:466.455000px;}
.y93{bottom:476.535000px;}
.y48{bottom:477.255000px;}
.y76{bottom:477.435000px;}
.yc3{bottom:478.335000px;}
.y11f{bottom:479.415000px;}
.ya3{bottom:480.135000px;}
.y145{bottom:483.015000px;}
.yb1{bottom:485.355000px;}
.yf7{bottom:485.535000px;}
.y1e{bottom:487.155000px;}
.yd1{bottom:493.275000px;}
.y92{bottom:497.235000px;}
.y47{bottom:497.955000px;}
.y75{bottom:498.135000px;}
.ya2{bottom:499.035000px;}
.yf6{bottom:506.235000px;}
.yc2{bottom:506.595000px;}
.y1d{bottom:507.855000px;}
.y11e{bottom:510.195000px;}
.y144{bottom:513.795000px;}
.y91{bottom:517.935000px;}
.y46{bottom:518.655000px;}
.y74{bottom:518.835000px;}
.yf5{bottom:526.935000px;}
.yc1{bottom:527.295000px;}
.y1c{bottom:528.555000px;}
.y11d{bottom:529.275000px;}
.y143{bottom:533.055000px;}
.y90{bottom:538.635000px;}
.y45{bottom:539.355000px;}
.y73{bottom:539.535000px;}
.yf4{bottom:547.635000px;}
.y11c{bottom:548.175000px;}
.y1b{bottom:549.255000px;}
.y142{bottom:551.955000px;}
.yc0{bottom:555.195000px;}
.y8f{bottom:559.335000px;}
.y44{bottom:560.055000px;}
.y72{bottom:560.235000px;}
.yf3{bottom:568.335000px;}
.y1a{bottom:569.955000px;}
.ycf{bottom:570.135000px;}
.y141{bottom:571.035000px;}
.ybf{bottom:574.455000px;}
.y11b{bottom:578.955000px;}
.y8e{bottom:580.035000px;}
.y43{bottom:580.755000px;}
.y71{bottom:580.935000px;}
.yf2{bottom:589.035000px;}
.y19{bottom:590.655000px;}
.y11a{bottom:598.215000px;}
.y8d{bottom:600.735000px;}
.y42{bottom:601.455000px;}
.y70{bottom:601.635000px;}
.y140{bottom:601.815000px;}
.ybe{bottom:607.035000px;}
.yf1{bottom:609.735000px;}
.y18{bottom:611.355000px;}
.y119{bottom:617.115000px;}
.y13f{bottom:620.895000px;}
.y8c{bottom:621.435000px;}
.y41{bottom:622.155000px;}
.y6f{bottom:622.335000px;}
.yf0{bottom:630.435000px;}
.y17{bottom:632.055000px;}
.y13e{bottom:640.005000px;}
.y8b{bottom:642.165000px;}
.y40{bottom:642.885000px;}
.y6e{bottom:643.065000px;}
.ybd{bottom:645.765000px;}
.y118{bottom:647.925000px;}
.yef{bottom:651.165000px;}
.y16{bottom:652.785000px;}
.y13d{bottom:658.905000px;}
.y8a{bottom:662.865000px;}
.y3f{bottom:663.585000px;}
.y6d{bottom:663.765000px;}
.ybc{bottom:666.465000px;}
.y117{bottom:667.185000px;}
.yee{bottom:671.865000px;}
.y89{bottom:683.565000px;}
.y3e{bottom:684.285000px;}
.y6c{bottom:684.465000px;}
.y116{bottom:686.085000px;}
.ybb{bottom:687.165000px;}
.y13c{bottom:689.685000px;}
.yed{bottom:692.565000px;}
.y15{bottom:694.365000px;}
.y88{bottom:704.265000px;}
.y3d{bottom:704.985000px;}
.y6b{bottom:705.165000px;}
.y13b{bottom:708.765000px;}
.yec{bottom:713.265000px;}
.y115{bottom:716.865000px;}
.y87{bottom:724.965000px;}
.y3c{bottom:725.685000px;}
.y6a{bottom:725.865000px;}
.y13a{bottom:727.845000px;}
.y114{bottom:736.125000px;}
.y86{bottom:745.665000px;}
.yeb{bottom:746.025000px;}
.y3b{bottom:746.385000px;}
.y69{bottom:746.565000px;}
.y113{bottom:755.025000px;}
.y14{bottom:756.645000px;}
.y139{bottom:758.625000px;}
.yb0{bottom:766.725000px;}
.y3a{bottom:767.085000px;}
.y68{bottom:767.265000px;}
.yea{bottom:774.285000px;}
.y13{bottom:775.725000px;}
.y138{bottom:777.705000px;}
.y112{bottom:785.805000px;}
.y85{bottom:787.425000px;}
.y39{bottom:787.785000px;}
.y67{bottom:787.965000px;}
.ye9{bottom:802.365000px;}
.y111{bottom:805.065000px;}
.y38{bottom:808.485000px;}
.y66{bottom:808.665000px;}
.y12{bottom:815.865000px;}
.y137{bottom:827.745000px;}
.y37{bottom:829.185000px;}
.y65{bottom:829.365000px;}
.ye8{bottom:830.625000px;}
.y11{bottom:834.765000px;}
.y110{bottom:835.845000px;}
.y136{bottom:846.645000px;}
.y36{bottom:849.885000px;}
.y64{bottom:850.065000px;}
.y10{bottom:853.665000px;}
.y10f{bottom:854.925000px;}
.ye7{bottom:858.885000px;}
.y35{bottom:870.585000px;}
.y63{bottom:870.765000px;}
.yf{bottom:872.745000px;}
.y10e{bottom:873.825000px;}
.y135{bottom:877.425000px;}
.y34{bottom:891.285000px;}
.y62{bottom:891.465000px;}
.ye{bottom:891.645000px;}
.y10d{bottom:892.950000px;}
.y134{bottom:896.730000px;}
.yd{bottom:910.770000px;}
.y33{bottom:912.030000px;}
.y61{bottom:912.210000px;}
.y133{bottom:915.630000px;}
.y10c{bottom:923.730000px;}
.yc{bottom:929.670000px;}
.y32{bottom:932.730000px;}
.y60{bottom:932.910000px;}
.y132{bottom:934.530000px;}
.y10b{bottom:942.810000px;}
.yb{bottom:948.570000px;}
.y31{bottom:953.430000px;}
.y5f{bottom:953.610000px;}
.y10a{bottom:961.890000px;}
.ya{bottom:967.650000px;}
.y30{bottom:974.130000px;}
.y5e{bottom:974.310000px;}
.y131{bottom:984.390000px;}
.y9{bottom:986.550000px;}
.y109{bottom:992.670000px;}
.y2f{bottom:994.830000px;}
.y5d{bottom:995.010000px;}
.y130{bottom:1003.470000px;}
.y8{bottom:1005.630000px;}
.y108{bottom:1011.750000px;}
.y2e{bottom:1015.530000px;}
.y5c{bottom:1015.710000px;}
.y12f{bottom:1022.550000px;}
.y7{bottom:1024.530000px;}
.y107{bottom:1030.830000px;}
.y2d{bottom:1036.230000px;}
.y5b{bottom:1036.410000px;}
.y106{bottom:1049.730000px;}
.y12e{bottom:1053.330000px;}
.y2c{bottom:1056.930000px;}
.y5a{bottom:1057.110000px;}
.y12d{bottom:1072.410000px;}
.y2b{bottom:1077.630000px;}
.y59{bottom:1077.810000px;}
.y105{bottom:1080.510000px;}
.y6{bottom:1085.730000px;}
.y2a{bottom:1098.330000px;}
.y58{bottom:1098.510000px;}
.y104{bottom:1099.770000px;}
.y12c{bottom:1103.190000px;}
.y5{bottom:1115.970000px;}
.y57{bottom:1119.210000px;}
.y12b{bottom:1122.450000px;}
.y56{bottom:1139.910000px;}
.y29{bottom:1140.090000px;}
.y12a{bottom:1141.350000px;}
.y2{bottom:1177.740000px;}
.y1{bottom:1195.020000px;}
.hb{height:22.500000px;}
.hc{height:45.036000px;}
.h5{height:47.836406px;}
.h8{height:49.255313px;}
.hd{height:50.800781px;}
.h2{height:52.319180px;}
.h7{height:52.417969px;}
.h6{height:54.596250px;}
.h9{height:57.992344px;}
.h4{height:59.436914px;}
.h3{height:63.035156px;}
.ha{height:73.751133px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w4{width:56.160000px;}
.w6{width:56.196000px;}
.w5{width:56.340000px;}
.w3{width:162.930000px;}
.w2{width:892.439987px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xc{left:5.580000px;}
.x1{left:106.415987px;}
.xb{left:108.396000px;}
.x3{left:119.915987px;}
.x9{left:127.655987px;}
.x5{left:148.895987px;}
.x6{left:159.509987px;}
.x4{left:190.829987px;}
.x8{left:212.789987px;}
.xa{left:255.269987px;}
.xd{left:272.055000px;}
.xe{left:328.935000px;}
.xf{left:385.995000px;}
.x10{left:442.905000px;}
.x11{left:499.965000px;}
.x12{left:557.025000px;}
.x13{left:613.950000px;}
.x7{left:666.869987px;}
.x14{left:671.010000px;}
.x15{left:728.070000px;}
.x2{left:759.389987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1a{letter-spacing:-0.832000pt;}
.lsa{letter-spacing:-0.773333pt;}
.lsc{letter-spacing:-0.640000pt;}
.ls19{letter-spacing:-0.576000pt;}
.ls4b{letter-spacing:-0.544000pt;}
.ls23{letter-spacing:-0.512000pt;}
.ls4d{letter-spacing:-0.406933pt;}
.lse{letter-spacing:-0.368533pt;}
.ls8{letter-spacing:-0.303467pt;}
.ls38{letter-spacing:-0.271467pt;}
.ls17{letter-spacing:-0.256000pt;}
.ls36{letter-spacing:-0.192000pt;}
.lsd{letter-spacing:-0.135467pt;}
.ls11{letter-spacing:-0.128000pt;}
.ls1b{letter-spacing:-0.064000pt;}
.ls6{letter-spacing:0.000000pt;}
.ls9{letter-spacing:0.024960pt;}
.ls18{letter-spacing:0.064000pt;}
.ls48{letter-spacing:0.097067pt;}
.ls47{letter-spacing:0.097280pt;}
.ls3e{letter-spacing:0.106667pt;}
.ls4{letter-spacing:0.128000pt;}
.ls4a{letter-spacing:0.135467pt;}
.ls24{letter-spacing:0.192000pt;}
.ls45{letter-spacing:0.232960pt;}
.ls49{letter-spacing:0.233067pt;}
.ls46{letter-spacing:0.257280pt;}
.lsb{letter-spacing:0.271467pt;}
.ls7{letter-spacing:0.303467pt;}
.ls0{letter-spacing:0.320000pt;}
.ls32{letter-spacing:0.448000pt;}
.lsf{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.640000pt;}
.ls22{letter-spacing:0.768000pt;}
.ls2f{letter-spacing:0.832000pt;}
.ls3f{letter-spacing:1.152000pt;}
.ls2b{letter-spacing:1.280000pt;}
.ls3a{letter-spacing:1.898667pt;}
.ls27{letter-spacing:1.920000pt;}
.ls20{letter-spacing:2.560000pt;}
.ls37{letter-spacing:2.720000pt;}
.ls29{letter-spacing:3.200000pt;}
.ls2c{letter-spacing:3.840000pt;}
.ls3{letter-spacing:4.480000pt;}
.ls14{letter-spacing:5.120000pt;}
.ls1d{letter-spacing:5.760000pt;}
.ls1e{letter-spacing:6.400000pt;}
.ls3c{letter-spacing:6.506667pt;}
.ls34{letter-spacing:7.040000pt;}
.ls26{letter-spacing:7.680000pt;}
.ls3d{letter-spacing:8.320000pt;}
.ls16{letter-spacing:9.600000pt;}
.ls30{letter-spacing:10.240000pt;}
.ls21{letter-spacing:10.880000pt;}
.ls1c{letter-spacing:11.520000pt;}
.ls1{letter-spacing:12.160000pt;}
.ls13{letter-spacing:12.800000pt;}
.ls28{letter-spacing:12.960000pt;}
.ls25{letter-spacing:13.440000pt;}
.ls42{letter-spacing:14.080000pt;}
.ls15{letter-spacing:14.720000pt;}
.ls33{letter-spacing:16.000000pt;}
.ls39{letter-spacing:16.640000pt;}
.ls43{letter-spacing:17.280000pt;}
.ls35{letter-spacing:17.920000pt;}
.ls2d{letter-spacing:20.480000pt;}
.ls31{letter-spacing:20.586667pt;}
.ls1f{letter-spacing:21.120000pt;}
.ls40{letter-spacing:22.400000pt;}
.ls4c{letter-spacing:23.680000pt;}
.ls44{letter-spacing:24.320000pt;}
.ls3b{letter-spacing:24.426667pt;}
.ls2e{letter-spacing:26.240000pt;}
.ls5{letter-spacing:26.880000pt;}
.ls41{letter-spacing:27.520000pt;}
.ls2a{letter-spacing:29.440000pt;}
.ls12{letter-spacing:47.488000pt;}
.ls2{letter-spacing:48.128000pt;}
.ws1{word-spacing:-19.040000pt;}
.ws2{word-spacing:-19.023467pt;}
.ws4{word-spacing:-18.744960pt;}
.ws3{word-spacing:-18.416533pt;}
.ws1e{word-spacing:-17.152000pt;}
.ws1a{word-spacing:-16.832000pt;}
.ws17{word-spacing:-16.768000pt;}
.wse{word-spacing:-16.640000pt;}
.wsd{word-spacing:-16.512000pt;}
.ws1f{word-spacing:-16.448000pt;}
.ws19{word-spacing:-16.192000pt;}
.wsc{word-spacing:-16.128000pt;}
.ws13{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.ws16{word-spacing:-15.936000pt;}
.wsf{word-spacing:-15.872000pt;}
.ws1b{word-spacing:-15.808000pt;}
.ws12{word-spacing:-15.744000pt;}
.ws18{word-spacing:-15.488000pt;}
.ws14{word-spacing:-15.424000pt;}
.ws1c{word-spacing:-15.360000pt;}
.ws15{word-spacing:-15.168000pt;}
.ws7{word-spacing:-14.991467pt;}
.ws21{word-spacing:-14.953067pt;}
.ws20{word-spacing:-14.817067pt;}
.wsb{word-spacing:-14.720000pt;}
.ws9{word-spacing:-14.584533pt;}
.ws1d{word-spacing:-14.448533pt;}
.wsa{word-spacing:-14.351467pt;}
.ws23{word-spacing:-14.313067pt;}
.ws22{word-spacing:-14.176000pt;}
.ws8{word-spacing:-14.080000pt;}
.ws6{word-spacing:-13.946667pt;}
.ws0{word-spacing:-13.600000pt;}
.ws11{word-spacing:-13.280000pt;}
.ws10{word-spacing:0.000000pt;}
._24{margin-left:-5.626027pt;}
._1f{margin-left:-1.941333pt;}
._1{margin-left:-0.898133pt;}
._0{width:0.914987pt;}
._4{width:2.038187pt;}
._8{width:3.328640pt;}
._f{width:4.650027pt;}
._3{width:6.181547pt;}
._2{width:7.328427pt;}
._18{width:8.233813pt;}
._9{width:9.171200pt;}
._17{width:10.085973pt;}
._a{width:10.978347pt;}
._7{width:12.061867pt;}
._b{width:13.321387pt;}
._13{width:14.702293pt;}
._33{width:15.728640pt;}
._14{width:17.024853pt;}
._c{width:17.995947pt;}
._10{width:19.155840pt;}
._1b{width:20.055893pt;}
._5{width:21.234347pt;}
._6{width:22.625280pt;}
._20{width:23.680000pt;}
._1a{width:24.874667pt;}
._11{width:26.538667pt;}
._12{width:27.482027pt;}
._1e{width:28.874667pt;}
._19{width:30.186667pt;}
._16{width:31.274667pt;}
._15{width:32.320000pt;}
._d{width:34.131627pt;}
._e{width:35.173547pt;}
._2f{width:38.314667pt;}
._30{width:39.445333pt;}
._35{width:40.572587pt;}
._1c{width:41.802667pt;}
._1d{width:42.944000pt;}
._26{width:61.312000pt;}
._32{width:68.771840pt;}
._31{width:69.713920pt;}
._22{width:89.728000pt;}
._27{width:118.272000pt;}
._2a{width:128.896000pt;}
._29{width:150.208000pt;}
._2c{width:188.128000pt;}
._25{width:200.000000pt;}
._23{width:214.208000pt;}
._28{width:228.480000pt;}
._21{width:232.256000pt;}
._2b{width:237.920000pt;}
._2d{width:252.128000pt;}
._2e{width:266.400000pt;}
._34{width:290.080640pt;}
.fs4{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs3{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yd0{bottom:5.120000pt;}
.yd6{bottom:6.720000pt;}
.yd5{bottom:25.160000pt;}
.y4{bottom:51.360000pt;}
.y3{bottom:69.760000pt;}
.y103{bottom:154.906667pt;}
.ya1{bottom:166.106667pt;}
.y84{bottom:166.906667pt;}
.y102{bottom:173.306667pt;}
.ydd{bottom:177.146667pt;}
.yce{bottom:180.026667pt;}
.ye6{bottom:180.506667pt;}
.ya0{bottom:184.506667pt;}
.y55{bottom:184.986667pt;}
.y83{bottom:185.306667pt;}
.y101{bottom:191.706667pt;}
.yaf{bottom:192.026667pt;}
.ydc{bottom:195.546667pt;}
.ycd{bottom:198.426667pt;}
.y9f{bottom:202.906667pt;}
.y54{bottom:203.386667pt;}
.y82{bottom:203.706667pt;}
.ye5{bottom:205.466667pt;}
.y100{bottom:210.106667pt;}
.yae{bottom:210.426667pt;}
.ydb{bottom:213.946667pt;}
.y129{bottom:214.586667pt;}
.ycc{bottom:216.826667pt;}
.y9e{bottom:221.306667pt;}
.y53{bottom:221.786667pt;}
.y81{bottom:222.106667pt;}
.yba{bottom:225.786667pt;}
.yff{bottom:228.506667pt;}
.yad{bottom:228.826667pt;}
.ye4{bottom:230.586667pt;}
.yda{bottom:232.346667pt;}
.ycb{bottom:235.226667pt;}
.y9d{bottom:239.706667pt;}
.y52{bottom:240.186667pt;}
.y80{bottom:240.506667pt;}
.y128{bottom:242.106667pt;}
.yfe{bottom:246.906667pt;}
.yac{bottom:247.226667pt;}
.y28{bottom:248.986667pt;}
.yd9{bottom:250.746667pt;}
.yb9{bottom:250.906667pt;}
.y14d{bottom:251.706667pt;}
.yca{bottom:253.626667pt;}
.ye3{bottom:255.706667pt;}
.y9c{bottom:258.106667pt;}
.y51{bottom:258.586667pt;}
.y7f{bottom:258.906667pt;}
.y127{bottom:259.066667pt;}
.yfd{bottom:265.306667pt;}
.yab{bottom:265.626667pt;}
.y27{bottom:267.386667pt;}
.y14c{bottom:268.666667pt;}
.yd8{bottom:269.146667pt;}
.yb8{bottom:269.306667pt;}
.yc9{bottom:272.026667pt;}
.y126{bottom:276.026667pt;}
.y9b{bottom:276.506667pt;}
.y50{bottom:276.986667pt;}
.y7e{bottom:277.306667pt;}
.ye2{bottom:280.666667pt;}
.yfc{bottom:283.706667pt;}
.yaa{bottom:284.026667pt;}
.y14b{bottom:285.466667pt;}
.y26{bottom:285.786667pt;}
.yd7{bottom:287.546667pt;}
.yb7{bottom:287.706667pt;}
.y125{bottom:292.826667pt;}
.y9a{bottom:294.906667pt;}
.y4f{bottom:295.386667pt;}
.y7d{bottom:295.706667pt;}
.yfb{bottom:301.946667pt;}
.y14a{bottom:302.266667pt;}
.ya9{bottom:302.426667pt;}
.y25{bottom:304.186667pt;}
.ye1{bottom:305.786667pt;}
.yc8{bottom:306.426667pt;}
.y99{bottom:313.306667pt;}
.y4e{bottom:313.786667pt;}
.y7c{bottom:314.106667pt;}
.yb6{bottom:316.666667pt;}
.y124{bottom:320.186667pt;}
.yfa{bottom:320.346667pt;}
.ya8{bottom:320.826667pt;}
.y24{bottom:322.586667pt;}
.yd4{bottom:324.506667pt;}
.yc7{bottom:331.546667pt;}
.y98{bottom:331.706667pt;}
.y4d{bottom:332.186667pt;}
.y7b{bottom:332.506667pt;}
.ye0{bottom:334.906667pt;}
.yb5{bottom:335.066667pt;}
.y23{bottom:340.986667pt;}
.y123{bottom:347.746667pt;}
.y97{bottom:349.986667pt;}
.y4c{bottom:350.626667pt;}
.y7a{bottom:350.946667pt;}
.y149{bottom:351.106667pt;}
.ydf{bottom:353.346667pt;}
.yc6{bottom:356.706667pt;}
.yf9{bottom:357.506667pt;}
.ya7{bottom:357.986667pt;}
.y22{bottom:359.426667pt;}
.y122{bottom:364.866667pt;}
.y148{bottom:368.066667pt;}
.y96{bottom:368.386667pt;}
.y4b{bottom:369.026667pt;}
.y79{bottom:369.346667pt;}
.yb4{bottom:369.506667pt;}
.yc5{bottom:375.106667pt;}
.yd3{bottom:375.746667pt;}
.ya6{bottom:376.066667pt;}
.y21{bottom:377.826667pt;}
.y121{bottom:381.666667pt;}
.y147{bottom:385.026667pt;}
.y95{bottom:386.786667pt;}
.y4a{bottom:387.426667pt;}
.yde{bottom:387.586667pt;}
.y78{bottom:387.746667pt;}
.ya5{bottom:393.026667pt;}
.yb3{bottom:394.626667pt;}
.y20{bottom:396.226667pt;}
.yc4{bottom:400.066667pt;}
.y94{bottom:405.186667pt;}
.y49{bottom:405.826667pt;}
.y77{bottom:405.986667pt;}
.yd2{bottom:407.106667pt;}
.y120{bottom:409.026667pt;}
.ya4{bottom:409.826667pt;}
.y146{bottom:412.386667pt;}
.yb2{bottom:413.026667pt;}
.yf8{bottom:413.186667pt;}
.y1f{bottom:414.626667pt;}
.y93{bottom:423.586667pt;}
.y48{bottom:424.226667pt;}
.y76{bottom:424.386667pt;}
.yc3{bottom:425.186667pt;}
.y11f{bottom:426.146667pt;}
.ya3{bottom:426.786667pt;}
.y145{bottom:429.346667pt;}
.yb1{bottom:431.426667pt;}
.yf7{bottom:431.586667pt;}
.y1e{bottom:433.026667pt;}
.yd1{bottom:438.466667pt;}
.y92{bottom:441.986667pt;}
.y47{bottom:442.626667pt;}
.y75{bottom:442.786667pt;}
.ya2{bottom:443.586667pt;}
.yf6{bottom:449.986667pt;}
.yc2{bottom:450.306667pt;}
.y1d{bottom:451.426667pt;}
.y11e{bottom:453.506667pt;}
.y144{bottom:456.706667pt;}
.y91{bottom:460.386667pt;}
.y46{bottom:461.026667pt;}
.y74{bottom:461.186667pt;}
.yf5{bottom:468.386667pt;}
.yc1{bottom:468.706667pt;}
.y1c{bottom:469.826667pt;}
.y11d{bottom:470.466667pt;}
.y143{bottom:473.826667pt;}
.y90{bottom:478.786667pt;}
.y45{bottom:479.426667pt;}
.y73{bottom:479.586667pt;}
.yf4{bottom:486.786667pt;}
.y11c{bottom:487.266667pt;}
.y1b{bottom:488.226667pt;}
.y142{bottom:490.626667pt;}
.yc0{bottom:493.506667pt;}
.y8f{bottom:497.186667pt;}
.y44{bottom:497.826667pt;}
.y72{bottom:497.986667pt;}
.yf3{bottom:505.186667pt;}
.y1a{bottom:506.626667pt;}
.ycf{bottom:506.786667pt;}
.y141{bottom:507.586667pt;}
.ybf{bottom:510.626667pt;}
.y11b{bottom:514.626667pt;}
.y8e{bottom:515.586667pt;}
.y43{bottom:516.226667pt;}
.y71{bottom:516.386667pt;}
.yf2{bottom:523.586667pt;}
.y19{bottom:525.026667pt;}
.y11a{bottom:531.746667pt;}
.y8d{bottom:533.986667pt;}
.y42{bottom:534.626667pt;}
.y70{bottom:534.786667pt;}
.y140{bottom:534.946667pt;}
.ybe{bottom:539.586667pt;}
.yf1{bottom:541.986667pt;}
.y18{bottom:543.426667pt;}
.y119{bottom:548.546667pt;}
.y13f{bottom:551.906667pt;}
.y8c{bottom:552.386667pt;}
.y41{bottom:553.026667pt;}
.y6f{bottom:553.186667pt;}
.yf0{bottom:560.386667pt;}
.y17{bottom:561.826667pt;}
.y13e{bottom:568.893333pt;}
.y8b{bottom:570.813333pt;}
.y40{bottom:571.453333pt;}
.y6e{bottom:571.613333pt;}
.ybd{bottom:574.013333pt;}
.y118{bottom:575.933333pt;}
.yef{bottom:578.813333pt;}
.y16{bottom:580.253333pt;}
.y13d{bottom:585.693333pt;}
.y8a{bottom:589.213333pt;}
.y3f{bottom:589.853333pt;}
.y6d{bottom:590.013333pt;}
.ybc{bottom:592.413333pt;}
.y117{bottom:593.053333pt;}
.yee{bottom:597.213333pt;}
.y89{bottom:607.613333pt;}
.y3e{bottom:608.253333pt;}
.y6c{bottom:608.413333pt;}
.y116{bottom:609.853333pt;}
.ybb{bottom:610.813333pt;}
.y13c{bottom:613.053333pt;}
.yed{bottom:615.613333pt;}
.y15{bottom:617.213333pt;}
.y88{bottom:626.013333pt;}
.y3d{bottom:626.653333pt;}
.y6b{bottom:626.813333pt;}
.y13b{bottom:630.013333pt;}
.yec{bottom:634.013333pt;}
.y115{bottom:637.213333pt;}
.y87{bottom:644.413333pt;}
.y3c{bottom:645.053333pt;}
.y6a{bottom:645.213333pt;}
.y13a{bottom:646.973333pt;}
.y114{bottom:654.333333pt;}
.y86{bottom:662.813333pt;}
.yeb{bottom:663.133333pt;}
.y3b{bottom:663.453333pt;}
.y69{bottom:663.613333pt;}
.y113{bottom:671.133333pt;}
.y14{bottom:672.573333pt;}
.y139{bottom:674.333333pt;}
.yb0{bottom:681.533333pt;}
.y3a{bottom:681.853333pt;}
.y68{bottom:682.013333pt;}
.yea{bottom:688.253333pt;}
.y13{bottom:689.533333pt;}
.y138{bottom:691.293333pt;}
.y112{bottom:698.493333pt;}
.y85{bottom:699.933333pt;}
.y39{bottom:700.253333pt;}
.y67{bottom:700.413333pt;}
.ye9{bottom:713.213333pt;}
.y111{bottom:715.613333pt;}
.y38{bottom:718.653333pt;}
.y66{bottom:718.813333pt;}
.y12{bottom:725.213333pt;}
.y137{bottom:735.773333pt;}
.y37{bottom:737.053333pt;}
.y65{bottom:737.213333pt;}
.ye8{bottom:738.333333pt;}
.y11{bottom:742.013333pt;}
.y110{bottom:742.973333pt;}
.y136{bottom:752.573333pt;}
.y36{bottom:755.453333pt;}
.y64{bottom:755.613333pt;}
.y10{bottom:758.813333pt;}
.y10f{bottom:759.933333pt;}
.ye7{bottom:763.453333pt;}
.y35{bottom:773.853333pt;}
.y63{bottom:774.013333pt;}
.yf{bottom:775.773333pt;}
.y10e{bottom:776.733333pt;}
.y135{bottom:779.933333pt;}
.y34{bottom:792.253333pt;}
.y62{bottom:792.413333pt;}
.ye{bottom:792.573333pt;}
.y10d{bottom:793.733333pt;}
.y134{bottom:797.093333pt;}
.yd{bottom:809.573333pt;}
.y33{bottom:810.693333pt;}
.y61{bottom:810.853333pt;}
.y133{bottom:813.893333pt;}
.y10c{bottom:821.093333pt;}
.yc{bottom:826.373333pt;}
.y32{bottom:829.093333pt;}
.y60{bottom:829.253333pt;}
.y132{bottom:830.693333pt;}
.y10b{bottom:838.053333pt;}
.yb{bottom:843.173333pt;}
.y31{bottom:847.493333pt;}
.y5f{bottom:847.653333pt;}
.y10a{bottom:855.013333pt;}
.ya{bottom:860.133333pt;}
.y30{bottom:865.893333pt;}
.y5e{bottom:866.053333pt;}
.y131{bottom:875.013333pt;}
.y9{bottom:876.933333pt;}
.y109{bottom:882.373333pt;}
.y2f{bottom:884.293333pt;}
.y5d{bottom:884.453333pt;}
.y130{bottom:891.973333pt;}
.y8{bottom:893.893333pt;}
.y108{bottom:899.333333pt;}
.y2e{bottom:902.693333pt;}
.y5c{bottom:902.853333pt;}
.y12f{bottom:908.933333pt;}
.y7{bottom:910.693333pt;}
.y107{bottom:916.293333pt;}
.y2d{bottom:921.093333pt;}
.y5b{bottom:921.253333pt;}
.y106{bottom:933.093333pt;}
.y12e{bottom:936.293333pt;}
.y2c{bottom:939.493333pt;}
.y5a{bottom:939.653333pt;}
.y12d{bottom:953.253333pt;}
.y2b{bottom:957.893333pt;}
.y59{bottom:958.053333pt;}
.y105{bottom:960.453333pt;}
.y6{bottom:965.093333pt;}
.y2a{bottom:976.293333pt;}
.y58{bottom:976.453333pt;}
.y104{bottom:977.573333pt;}
.y12c{bottom:980.613333pt;}
.y5{bottom:991.973333pt;}
.y57{bottom:994.853333pt;}
.y12b{bottom:997.733333pt;}
.y56{bottom:1013.253333pt;}
.y29{bottom:1013.413333pt;}
.y12a{bottom:1014.533333pt;}
.y2{bottom:1046.880000pt;}
.y1{bottom:1062.240000pt;}
.hb{height:20.000000pt;}
.hc{height:40.032000pt;}
.h5{height:42.521250pt;}
.h8{height:43.782500pt;}
.hd{height:45.156250pt;}
.h2{height:46.505938pt;}
.h7{height:46.593750pt;}
.h6{height:48.530000pt;}
.h9{height:51.548750pt;}
.h4{height:52.832812pt;}
.h3{height:56.031250pt;}
.ha{height:65.556562pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w4{width:49.920000pt;}
.w6{width:49.952000pt;}
.w5{width:50.080000pt;}
.w3{width:144.826667pt;}
.w2{width:793.279988pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xc{left:4.960000pt;}
.x1{left:94.591988pt;}
.xb{left:96.352000pt;}
.x3{left:106.591988pt;}
.x9{left:113.471988pt;}
.x5{left:132.351988pt;}
.x6{left:141.786655pt;}
.x4{left:169.626655pt;}
.x8{left:189.146655pt;}
.xa{left:226.906655pt;}
.xd{left:241.826667pt;}
.xe{left:292.386667pt;}
.xf{left:343.106667pt;}
.x10{left:393.693333pt;}
.x11{left:444.413333pt;}
.x12{left:495.133333pt;}
.x13{left:545.733333pt;}
.x7{left:592.773322pt;}
.x14{left:596.453333pt;}
.x15{left:647.173333pt;}
.x2{left:675.013322pt;}
}




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