
    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_0d0996ae88e0059503cc0264.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.056152;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_1cb117a4fb0a5a9c9ea6bc5a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.056152;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_ae0ba38bbdce60bd1c841eaa.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_694b177c843f2f5d1c2a13e6.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.073242;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_f321eac8ff49754102836c47.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.073242;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_c8a795f194f5b23b7e3329c9.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.120605;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_11672ae6a2a31809017bf6a8.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_e6217ace0cf7d5562ad5d3d4.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_6193fc93719873dbca485474.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_0be35ff0807a27033be5b315.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.063477;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_0c7279dd29505c0f78b2624f.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_c1d1df0f114e71d30cf27396.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.917480;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;}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,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);}
.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:-20.880000px;}
.v7{vertical-align:-13.680000px;}
.v4{vertical-align:-10.080000px;}
.va{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:10.080000px;}
.v8{vertical-align:13.680000px;}
.v1{vertical-align:27.360000px;}
.v9{vertical-align:33.120000px;}
.v3{vertical-align:38.880000px;}
.v6{vertical-align:43.200000px;}
.ls20{letter-spacing:-1.260000px;}
.ls7{letter-spacing:-0.936000px;}
.ls1f{letter-spacing:-0.540000px;}
.ls5{letter-spacing:-0.360000px;}
.ls1a{letter-spacing:-0.305400px;}
.lsb{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls19{letter-spacing:-0.109200px;}
.ls15{letter-spacing:-0.069000px;}
.ls16{letter-spacing:-0.018000px;}
.ls4{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.023040px;}
.ls1b{letter-spacing:0.053280px;}
.ls8{letter-spacing:0.144000px;}
.ls17{letter-spacing:0.178560px;}
.ls3{letter-spacing:0.180000px;}
.ls1e{letter-spacing:0.259800px;}
.ls1{letter-spacing:0.259920px;}
.ls0{letter-spacing:0.262080px;}
.ls1c{letter-spacing:0.298800px;}
.ls2{letter-spacing:0.360000px;}
.ls18{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.774000px;}
.ls13{letter-spacing:0.964800px;}
.lsd{letter-spacing:2.145600px;}
.ls11{letter-spacing:4.093920px;}
.ls1d{letter-spacing:5.220000px;}
.lsa{letter-spacing:6.768000px;}
.lsf{letter-spacing:14.624640px;}
.ls12{letter-spacing:17.666640px;}
.ls9{letter-spacing:23.760000px;}
.lse{letter-spacing:59.025600px;}
.ls14{letter-spacing:236.742000px;}
.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;}
}
.ws5{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.784000px;}
.ws6{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.560000px;}
.ws14{word-spacing:-16.450800px;}
.ws15{word-spacing:-16.254600px;}
.ws4{word-spacing:-15.714000px;}
.ws17{word-spacing:-15.300000px;}
.ws16{word-spacing:-15.199800px;}
.ws0{word-spacing:-14.940000px;}
.wsb{word-spacing:-14.595840px;}
.ws3{word-spacing:-14.580000px;}
.wsc{word-spacing:-14.572800px;}
.wsd{word-spacing:-14.503800px;}
.wsa{word-spacing:-10.612800px;}
.ws13{word-spacing:-10.440000px;}
.ws2{word-spacing:-9.720000px;}
.ws10{word-spacing:-0.302400px;}
.ws11{word-spacing:-0.054000px;}
.ws7{word-spacing:0.000000px;}
.wsf{word-spacing:0.025920px;}
.wse{word-spacing:3.297600px;}
.ws12{word-spacing:195.804000px;}
._11{margin-left:-18.743040px;}
._18{margin-left:-3.815760px;}
._3{margin-left:-2.472480px;}
._0{margin-left:-1.126080px;}
._1{width:1.103040px;}
._2{width:2.598240px;}
._10{width:4.176000px;}
._d{width:5.328000px;}
._9{width:6.572160px;}
._8{width:7.704000px;}
._5{width:9.629040px;}
._4{width:10.817040px;}
._a{width:12.600000px;}
._b{width:13.608000px;}
._c{width:15.480000px;}
._f{width:16.488000px;}
._13{width:19.152000px;}
._12{width:20.808000px;}
._7{width:22.080000px;}
._6{width:23.544000px;}
._17{width:24.636000px;}
._15{width:25.776000px;}
._16{width:27.228000px;}
._1a{width:28.820160px;}
._e{width:30.168000px;}
._14{width:32.518080px;}
._19{width:209.520000px;}
.fc2{color:transparent;}
.fc1{color:rgb(5,99,193);}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:30.240000px;}
.fs7{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs6{font-size:48.240000px;}
.fs8{font-size:54.000000px;}
.fs9{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs5{font-size:72.000000px;}
.fs1{font-size:84.240000px;}
.fs4{font-size:95.760000px;}
.y0{bottom:0.000000px;}
.yb{bottom:3.240000px;}
.yb6{bottom:6.015000px;}
.y8{bottom:10.620000px;}
.yc1{bottom:15.480000px;}
.ycb{bottom:15.660000px;}
.ya{bottom:20.520000px;}
.yb4{bottom:24.270000px;}
.ybe{bottom:25.020000px;}
.y7{bottom:30.600000px;}
.ybf{bottom:34.380000px;}
.y9{bottom:34.560000px;}
.yae{bottom:41.835000px;}
.ybd{bottom:44.100000px;}
.yc0{bottom:53.640000px;}
.y6{bottom:53.820000px;}
.ye{bottom:57.600000px;}
.y5{bottom:72.720000px;}
.yd{bottom:79.920000px;}
.y10f{bottom:83.160000px;}
.yaa{bottom:85.680000px;}
.yaf{bottom:87.270000px;}
.y4{bottom:91.830000px;}
.ye3{bottom:94.500000px;}
.y3b{bottom:100.080000px;}
.y10e{bottom:100.440000px;}
.yb5{bottom:103.710000px;}
.y65{bottom:108.360000px;}
.y3{bottom:110.730000px;}
.ye2{bottom:115.200000px;}
.ya9{bottom:116.280000px;}
.y10d{bottom:117.720000px;}
.y3a{bottom:120.780000px;}
.y64{bottom:129.060000px;}
.y2{bottom:129.810000px;}
.yb0{bottom:132.690000px;}
.y10c{bottom:135.036000px;}
.ye1{bottom:135.936000px;}
.y39{bottom:141.516000px;}
.ya8{bottom:146.916000px;}
.y63{bottom:149.796000px;}
.y10b{bottom:152.310000px;}
.ye0{bottom:156.630000px;}
.y38{bottom:162.210000px;}
.y10a{bottom:169.590000px;}
.y62{bottom:170.490000px;}
.ydf{bottom:177.330000px;}
.ya7{bottom:177.510000px;}
.yb1{bottom:178.095000px;}
.y37{bottom:182.910000px;}
.y109{bottom:186.690000px;}
.y61{bottom:191.190000px;}
.yad{bottom:192.315000px;}
.yde{bottom:198.030000px;}
.y36{bottom:203.610000px;}
.y108{bottom:203.970000px;}
.y92{bottom:207.390000px;}
.ya6{bottom:208.110000px;}
.yac{bottom:211.215000px;}
.y60{bottom:211.890000px;}
.ydd{bottom:218.730000px;}
.y107{bottom:221.250000px;}
.yb2{bottom:223.530000px;}
.y35{bottom:224.310000px;}
.y91{bottom:228.090000px;}
.y141{bottom:230.610000px;}
.y5f{bottom:232.590000px;}
.y106{bottom:238.530000px;}
.ya5{bottom:238.710000px;}
.ydc{bottom:239.430000px;}
.y34{bottom:245.010000px;}
.y90{bottom:248.790000px;}
.y5e{bottom:253.290000px;}
.y105{bottom:261.030000px;}
.ya4{bottom:262.110000px;}
.yab{bottom:262.440000px;}
.y33{bottom:264.990000px;}
.yb3{bottom:268.950000px;}
.y8f{bottom:269.490000px;}
.ydb{bottom:272.190000px;}
.y140{bottom:273.630000px;}
.y5d{bottom:273.990000px;}
.y32{bottom:287.490000px;}
.y8e{bottom:290.190000px;}
.y5c{bottom:294.690000px;}
.y104{bottom:295.230000px;}
.y13f{bottom:303.330000px;}
.yda{bottom:304.950000px;}
.y31{bottom:310.170000px;}
.y8d{bottom:310.890000px;}
.y5b{bottom:315.390000px;}
.yd9{bottom:325.650000px;}
.y103{bottom:327.810000px;}
.y8c{bottom:331.590000px;}
.y13e{bottom:335.910000px;}
.y5a{bottom:336.090000px;}
.y30{bottom:343.110000px;}
.yd8{bottom:346.350000px;}
.y102{bottom:348.510000px;}
.y8b{bottom:352.290000px;}
.y59{bottom:356.790000px;}
.y2f{bottom:362.010000px;}
.yd7{bottom:367.050000px;}
.y13d{bottom:368.310000px;}
.y101{bottom:369.210000px;}
.y8a{bottom:372.990000px;}
.y58{bottom:377.490000px;}
.y2e{bottom:381.450000px;}
.y13c{bottom:387.030000px;}
.yd6{bottom:387.795000px;}
.y100{bottom:389.955000px;}
.y89{bottom:393.735000px;}
.y57{bottom:398.235000px;}
.y2d{bottom:402.195000px;}
.y13b{bottom:404.355000px;}
.yd5{bottom:408.495000px;}
.y88{bottom:414.435000px;}
.y56{bottom:418.935000px;}
.y13a{bottom:421.635000px;}
.yff{bottom:422.715000px;}
.y2c{bottom:422.895000px;}
.yd4{bottom:429.195000px;}
.y87{bottom:435.135000px;}
.y139{bottom:438.915000px;}
.y55{bottom:439.635000px;}
.yfe{bottom:443.415000px;}
.y2b{bottom:443.595000px;}
.yd3{bottom:449.895000px;}
.y86{bottom:455.835000px;}
.y138{bottom:456.015000px;}
.y54{bottom:460.335000px;}
.yfd{bottom:464.115000px;}
.y2a{bottom:464.295000px;}
.yd2{bottom:470.595000px;}
.y137{bottom:473.295000px;}
.y85{bottom:476.535000px;}
.y53{bottom:481.035000px;}
.yfc{bottom:484.815000px;}
.y29{bottom:484.995000px;}
.y136{bottom:490.575000px;}
.yd1{bottom:491.295000px;}
.y84{bottom:497.235000px;}
.y52{bottom:501.735000px;}
.yfb{bottom:505.515000px;}
.y28{bottom:505.695000px;}
.y135{bottom:507.855000px;}
.yd0{bottom:511.995000px;}
.y83{bottom:517.935000px;}
.y51{bottom:522.435000px;}
.y134{bottom:525.135000px;}
.yfa{bottom:526.215000px;}
.y27{bottom:526.395000px;}
.ycf{bottom:532.695000px;}
.y82{bottom:538.635000px;}
.y133{bottom:542.415000px;}
.y50{bottom:543.135000px;}
.yf9{bottom:546.915000px;}
.y26{bottom:547.095000px;}
.ya3{bottom:556.455000px;}
.y81{bottom:559.335000px;}
.y132{bottom:559.515000px;}
.y4f{bottom:563.835000px;}
.yce{bottom:565.275000px;}
.yf8{bottom:567.615000px;}
.y25{bottom:567.795000px;}
.ya2{bottom:575.715000px;}
.y131{bottom:576.795000px;}
.y80{bottom:580.035000px;}
.y4e{bottom:584.535000px;}
.yf7{bottom:588.315000px;}
.y24{bottom:588.495000px;}
.y130{bottom:594.075000px;}
.ya1{bottom:594.615000px;}
.ycd{bottom:597.495000px;}
.y7f{bottom:600.735000px;}
.y4d{bottom:605.235000px;}
.y23{bottom:609.195000px;}
.y12f{bottom:611.355000px;}
.ya0{bottom:613.695000px;}
.yf6{bottom:620.895000px;}
.y7e{bottom:621.435000px;}
.y4c{bottom:625.935000px;}
.y12e{bottom:628.635000px;}
.y22{bottom:629.895000px;}
.ycc{bottom:630.075000px;}
.y9f{bottom:632.595000px;}
.yf5{bottom:641.625000px;}
.y7d{bottom:642.165000px;}
.y12d{bottom:645.945000px;}
.y4b{bottom:646.665000px;}
.yca{bottom:648.825000px;}
.y21{bottom:650.625000px;}
.y9e{bottom:651.885000px;}
.yf4{bottom:662.325000px;}
.y7c{bottom:662.865000px;}
.y12c{bottom:663.045000px;}
.y4a{bottom:667.365000px;}
.y20{bottom:671.325000px;}
.yc9{bottom:679.965000px;}
.y12b{bottom:680.325000px;}
.yf3{bottom:682.845000px;}
.y7b{bottom:683.565000px;}
.y9d{bottom:684.645000px;}
.y49{bottom:688.065000px;}
.y1f{bottom:692.025000px;}
.y12a{bottom:697.605000px;}
.yf2{bottom:702.105000px;}
.y7a{bottom:704.265000px;}
.y9c{bottom:705.345000px;}
.y48{bottom:708.765000px;}
.yc8{bottom:710.925000px;}
.y1e{bottom:712.545000px;}
.y129{bottom:714.885000px;}
.y79{bottom:724.965000px;}
.y9b{bottom:726.045000px;}
.y47{bottom:729.465000px;}
.y1d{bottom:731.085000px;}
.y128{bottom:732.165000px;}
.yf1{bottom:734.865000px;}
.yc7{bottom:741.885000px;}
.y78{bottom:745.665000px;}
.y1c{bottom:748.365000px;}
.y127{bottom:749.445000px;}
.y46{bottom:750.165000px;}
.y9a{bottom:754.845000px;}
.y99{bottom:763.125000px;}
.y1b{bottom:765.465000px;}
.y77{bottom:766.365000px;}
.y126{bottom:766.545000px;}
.yf0{bottom:767.445000px;}
.y45{bottom:770.865000px;}
.yc6{bottom:772.845000px;}
.y1a{bottom:782.745000px;}
.y125{bottom:783.825000px;}
.y76{bottom:787.065000px;}
.yef{bottom:788.145000px;}
.y98{bottom:797.325000px;}
.y19{bottom:800.025000px;}
.y124{bottom:801.105000px;}
.yc5{bottom:803.805000px;}
.y44{bottom:804.165000px;}
.y97{bottom:805.605000px;}
.y75{bottom:807.585000px;}
.yee{bottom:808.845000px;}
.y18{bottom:817.305000px;}
.y123{bottom:818.385000px;}
.y74{bottom:828.285000px;}
.yed{bottom:829.545000px;}
.y17{bottom:834.585000px;}
.yc4{bottom:834.765000px;}
.y122{bottom:835.665000px;}
.y43{bottom:840.525000px;}
.y96{bottom:841.425000px;}
.y73{bottom:848.985000px;}
.yec{bottom:850.245000px;}
.y16{bottom:852.225000px;}
.y121{bottom:852.765000px;}
.yc3{bottom:865.725000px;}
.y72{bottom:869.685000px;}
.y120{bottom:870.045000px;}
.yeb{bottom:870.945000px;}
.y95{bottom:874.005000px;}
.y15{bottom:875.985000px;}
.y11f{bottom:887.325000px;}
.y71{bottom:890.385000px;}
.yea{bottom:891.645000px;}
.y14{bottom:893.310000px;}
.yc2{bottom:896.730000px;}
.y11e{bottom:904.650000px;}
.y94{bottom:907.530000px;}
.y13{bottom:910.590000px;}
.y70{bottom:911.130000px;}
.ye9{bottom:912.390000px;}
.y11d{bottom:921.930000px;}
.ybc{bottom:931.110000px;}
.y93{bottom:931.650000px;}
.y6f{bottom:931.830000px;}
.ye8{bottom:933.090000px;}
.y12{bottom:936.870000px;}
.y11c{bottom:939.210000px;}
.y6e{bottom:952.530000px;}
.ye7{bottom:953.790000px;}
.y11b{bottom:956.310000px;}
.y11{bottom:973.050000px;}
.y6d{bottom:973.230000px;}
.y11a{bottom:973.590000px;}
.ye6{bottom:974.490000px;}
.y119{bottom:990.870000px;}
.y6c{bottom:993.930000px;}
.y10{bottom:1002.930000px;}
.ye5{bottom:1007.250000px;}
.y118{bottom:1008.150000px;}
.y6b{bottom:1014.630000px;}
.ybb{bottom:1018.590000px;}
.y117{bottom:1025.430000px;}
.yf{bottom:1032.630000px;}
.y6a{bottom:1035.330000px;}
.ye4{bottom:1039.830000px;}
.y116{bottom:1042.710000px;}
.yba{bottom:1048.650000px;}
.y69{bottom:1056.030000px;}
.yc{bottom:1056.930000px;}
.y115{bottom:1059.810000px;}
.y42{bottom:1060.530000px;}
.y1{bottom:1064.850000px;}
.yb9{bottom:1069.350000px;}
.y68{bottom:1076.730000px;}
.y114{bottom:1077.090000px;}
.y41{bottom:1081.230000px;}
.yb8{bottom:1090.050000px;}
.y113{bottom:1094.370000px;}
.y67{bottom:1097.430000px;}
.y40{bottom:1101.930000px;}
.yb7{bottom:1110.750000px;}
.y112{bottom:1111.650000px;}
.y66{bottom:1118.130000px;}
.y3f{bottom:1122.630000px;}
.y111{bottom:1128.930000px;}
.y3e{bottom:1143.330000px;}
.y110{bottom:1146.240000px;}
.y3d{bottom:1179.540000px;}
.y3c{bottom:1197.360000px;}
.h7{height:30.077578px;}
.h19{height:30.960000px;}
.h1a{height:30.996000px;}
.h1b{height:31.140000px;}
.hb{height:32.672109px;}
.h16{height:41.844727px;}
.hf{height:45.377930px;}
.h15{height:46.736719px;}
.hc{height:47.836406px;}
.hd{height:50.218242px;}
.h17{height:50.800781px;}
.h5{height:51.239531px;}
.h3{height:55.663594px;}
.h6{height:56.795625px;}
.h10{height:60.503906px;}
.h4{height:60.835430px;}
.he{height:61.734375px;}
.h8{height:65.884219px;}
.h9{height:67.565039px;}
.ha{height:68.722031px;}
.h18{height:68.940000px;}
.h11{height:71.613281px;}
.h12{height:79.535391px;}
.h13{height:89.915625px;}
.h2{height:145.116000px;}
.h14{height:281.160000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w8{width:63.936000px;}
.w9{width:84.960000px;}
.w7{width:116.820000px;}
.wa{width:117.036000px;}
.wc{width:138.096000px;}
.wb{width:138.240000px;}
.w2{width:223.275000px;}
.w4{width:257.610000px;}
.w3{width:284.610000px;}
.w6{width:495.000000px;}
.w5{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x2{left:8.100000px;}
.x5{left:10.620000px;}
.x2d{left:13.140000px;}
.x2b{left:15.480000px;}
.x8{left:16.560000px;}
.x30{left:19.440000px;}
.x9{left:22.500000px;}
.x34{left:25.920000px;}
.x23{left:29.520000px;}
.x27{left:30.960000px;}
.xb{left:32.760000px;}
.x2f{left:33.885000px;}
.x36{left:36.894000px;}
.x22{left:39.855000px;}
.x37{left:44.274000px;}
.x35{left:46.080000px;}
.x31{left:50.220000px;}
.x33{left:54.765000px;}
.x1{left:55.800000px;}
.x38{left:58.725000px;}
.x32{left:60.840000px;}
.xc{left:62.280000px;}
.xe{left:63.899987px;}
.x6{left:91.440000px;}
.xd{left:105.525000px;}
.x26{left:117.036000px;}
.x13{left:145.295987px;}
.x20{left:151.845000px;}
.x11{left:161.849987px;}
.xa{left:174.465000px;}
.x1b{left:179.849987px;}
.x21{left:181.230000px;}
.x1e{left:192.449987px;}
.x1f{left:198.900000px;}
.x24{left:208.005000px;}
.x4{left:209.730000px;}
.x12{left:223.049987px;}
.x16{left:226.109987px;}
.x25{left:227.369987px;}
.x28{left:233.850000px;}
.x1c{left:243.749987px;}
.x15{left:272.909987px;}
.x3{left:279.075000px;}
.x1a{left:285.014987px;}
.x29{left:297.795000px;}
.x14{left:346.934987px;}
.x18{left:356.114987px;}
.x2a{left:382.755000px;}
.xf{left:434.054987px;}
.x10{left:446.654987px;}
.x2c{left:499.785000px;}
.x7{left:563.685000px;}
.x17{left:606.344987px;}
.x2e{left:638.025000px;}
.x1d{left:694.229987px;}
.x19{left:766.229987px;}
@media print{
.v2{vertical-align:-18.560000pt;}
.v7{vertical-align:-12.160000pt;}
.v4{vertical-align:-8.960000pt;}
.va{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:8.960000pt;}
.v8{vertical-align:12.160000pt;}
.v1{vertical-align:24.320000pt;}
.v9{vertical-align:29.440000pt;}
.v3{vertical-align:34.560000pt;}
.v6{vertical-align:38.400000pt;}
.ls20{letter-spacing:-1.120000pt;}
.ls7{letter-spacing:-0.832000pt;}
.ls1f{letter-spacing:-0.480000pt;}
.ls5{letter-spacing:-0.320000pt;}
.ls1a{letter-spacing:-0.271467pt;}
.lsb{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls19{letter-spacing:-0.097067pt;}
.ls15{letter-spacing:-0.061333pt;}
.ls16{letter-spacing:-0.016000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.020480pt;}
.ls1b{letter-spacing:0.047360pt;}
.ls8{letter-spacing:0.128000pt;}
.ls17{letter-spacing:0.158720pt;}
.ls3{letter-spacing:0.160000pt;}
.ls1e{letter-spacing:0.230933pt;}
.ls1{letter-spacing:0.231040pt;}
.ls0{letter-spacing:0.232960pt;}
.ls1c{letter-spacing:0.265600pt;}
.ls2{letter-spacing:0.320000pt;}
.ls18{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.688000pt;}
.ls13{letter-spacing:0.857600pt;}
.lsd{letter-spacing:1.907200pt;}
.ls11{letter-spacing:3.639040pt;}
.ls1d{letter-spacing:4.640000pt;}
.lsa{letter-spacing:6.016000pt;}
.lsf{letter-spacing:12.999680pt;}
.ls12{letter-spacing:15.703680pt;}
.ls9{letter-spacing:21.120000pt;}
.lse{letter-spacing:52.467200pt;}
.ls14{letter-spacing:210.437333pt;}
.ws5{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.808000pt;}
.ws6{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.720000pt;}
.ws14{word-spacing:-14.622933pt;}
.ws15{word-spacing:-14.448533pt;}
.ws4{word-spacing:-13.968000pt;}
.ws17{word-spacing:-13.600000pt;}
.ws16{word-spacing:-13.510933pt;}
.ws0{word-spacing:-13.280000pt;}
.wsb{word-spacing:-12.974080pt;}
.ws3{word-spacing:-12.960000pt;}
.wsc{word-spacing:-12.953600pt;}
.wsd{word-spacing:-12.892267pt;}
.wsa{word-spacing:-9.433600pt;}
.ws13{word-spacing:-9.280000pt;}
.ws2{word-spacing:-8.640000pt;}
.ws10{word-spacing:-0.268800pt;}
.ws11{word-spacing:-0.048000pt;}
.ws7{word-spacing:0.000000pt;}
.wsf{word-spacing:0.023040pt;}
.wse{word-spacing:2.931200pt;}
.ws12{word-spacing:174.048000pt;}
._11{margin-left:-16.660480pt;}
._18{margin-left:-3.391787pt;}
._3{margin-left:-2.197760pt;}
._0{margin-left:-1.000960pt;}
._1{width:0.980480pt;}
._2{width:2.309547pt;}
._10{width:3.712000pt;}
._d{width:4.736000pt;}
._9{width:5.841920pt;}
._8{width:6.848000pt;}
._5{width:8.559147pt;}
._4{width:9.615147pt;}
._a{width:11.200000pt;}
._b{width:12.096000pt;}
._c{width:13.760000pt;}
._f{width:14.656000pt;}
._13{width:17.024000pt;}
._12{width:18.496000pt;}
._7{width:19.626667pt;}
._6{width:20.928000pt;}
._17{width:21.898667pt;}
._15{width:22.912000pt;}
._16{width:24.202667pt;}
._1a{width:25.617920pt;}
._e{width:26.816000pt;}
._14{width:28.904960pt;}
._19{width:186.240000pt;}
.fs3{font-size:26.880000pt;}
.fs7{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs6{font-size:42.880000pt;}
.fs8{font-size:48.000000pt;}
.fs9{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs5{font-size:64.000000pt;}
.fs1{font-size:74.880000pt;}
.fs4{font-size:85.120000pt;}
.y0{bottom:0.000000pt;}
.yb{bottom:2.880000pt;}
.yb6{bottom:5.346667pt;}
.y8{bottom:9.440000pt;}
.yc1{bottom:13.760000pt;}
.ycb{bottom:13.920000pt;}
.ya{bottom:18.240000pt;}
.yb4{bottom:21.573333pt;}
.ybe{bottom:22.240000pt;}
.y7{bottom:27.200000pt;}
.ybf{bottom:30.560000pt;}
.y9{bottom:30.720000pt;}
.yae{bottom:37.186667pt;}
.ybd{bottom:39.200000pt;}
.yc0{bottom:47.680000pt;}
.y6{bottom:47.840000pt;}
.ye{bottom:51.200000pt;}
.y5{bottom:64.640000pt;}
.yd{bottom:71.040000pt;}
.y10f{bottom:73.920000pt;}
.yaa{bottom:76.160000pt;}
.yaf{bottom:77.573333pt;}
.y4{bottom:81.626667pt;}
.ye3{bottom:84.000000pt;}
.y3b{bottom:88.960000pt;}
.y10e{bottom:89.280000pt;}
.yb5{bottom:92.186667pt;}
.y65{bottom:96.320000pt;}
.y3{bottom:98.426667pt;}
.ye2{bottom:102.400000pt;}
.ya9{bottom:103.360000pt;}
.y10d{bottom:104.640000pt;}
.y3a{bottom:107.360000pt;}
.y64{bottom:114.720000pt;}
.y2{bottom:115.386667pt;}
.yb0{bottom:117.946667pt;}
.y10c{bottom:120.032000pt;}
.ye1{bottom:120.832000pt;}
.y39{bottom:125.792000pt;}
.ya8{bottom:130.592000pt;}
.y63{bottom:133.152000pt;}
.y10b{bottom:135.386667pt;}
.ye0{bottom:139.226667pt;}
.y38{bottom:144.186667pt;}
.y10a{bottom:150.746667pt;}
.y62{bottom:151.546667pt;}
.ydf{bottom:157.626667pt;}
.ya7{bottom:157.786667pt;}
.yb1{bottom:158.306667pt;}
.y37{bottom:162.586667pt;}
.y109{bottom:165.946667pt;}
.y61{bottom:169.946667pt;}
.yad{bottom:170.946667pt;}
.yde{bottom:176.026667pt;}
.y36{bottom:180.986667pt;}
.y108{bottom:181.306667pt;}
.y92{bottom:184.346667pt;}
.ya6{bottom:184.986667pt;}
.yac{bottom:187.746667pt;}
.y60{bottom:188.346667pt;}
.ydd{bottom:194.426667pt;}
.y107{bottom:196.666667pt;}
.yb2{bottom:198.693333pt;}
.y35{bottom:199.386667pt;}
.y91{bottom:202.746667pt;}
.y141{bottom:204.986667pt;}
.y5f{bottom:206.746667pt;}
.y106{bottom:212.026667pt;}
.ya5{bottom:212.186667pt;}
.ydc{bottom:212.826667pt;}
.y34{bottom:217.786667pt;}
.y90{bottom:221.146667pt;}
.y5e{bottom:225.146667pt;}
.y105{bottom:232.026667pt;}
.ya4{bottom:232.986667pt;}
.yab{bottom:233.280000pt;}
.y33{bottom:235.546667pt;}
.yb3{bottom:239.066667pt;}
.y8f{bottom:239.546667pt;}
.ydb{bottom:241.946667pt;}
.y140{bottom:243.226667pt;}
.y5d{bottom:243.546667pt;}
.y32{bottom:255.546667pt;}
.y8e{bottom:257.946667pt;}
.y5c{bottom:261.946667pt;}
.y104{bottom:262.426667pt;}
.y13f{bottom:269.626667pt;}
.yda{bottom:271.066667pt;}
.y31{bottom:275.706667pt;}
.y8d{bottom:276.346667pt;}
.y5b{bottom:280.346667pt;}
.yd9{bottom:289.466667pt;}
.y103{bottom:291.386667pt;}
.y8c{bottom:294.746667pt;}
.y13e{bottom:298.586667pt;}
.y5a{bottom:298.746667pt;}
.y30{bottom:304.986667pt;}
.yd8{bottom:307.866667pt;}
.y102{bottom:309.786667pt;}
.y8b{bottom:313.146667pt;}
.y59{bottom:317.146667pt;}
.y2f{bottom:321.786667pt;}
.yd7{bottom:326.266667pt;}
.y13d{bottom:327.386667pt;}
.y101{bottom:328.186667pt;}
.y8a{bottom:331.546667pt;}
.y58{bottom:335.546667pt;}
.y2e{bottom:339.066667pt;}
.y13c{bottom:344.026667pt;}
.yd6{bottom:344.706667pt;}
.y100{bottom:346.626667pt;}
.y89{bottom:349.986667pt;}
.y57{bottom:353.986667pt;}
.y2d{bottom:357.506667pt;}
.y13b{bottom:359.426667pt;}
.yd5{bottom:363.106667pt;}
.y88{bottom:368.386667pt;}
.y56{bottom:372.386667pt;}
.y13a{bottom:374.786667pt;}
.yff{bottom:375.746667pt;}
.y2c{bottom:375.906667pt;}
.yd4{bottom:381.506667pt;}
.y87{bottom:386.786667pt;}
.y139{bottom:390.146667pt;}
.y55{bottom:390.786667pt;}
.yfe{bottom:394.146667pt;}
.y2b{bottom:394.306667pt;}
.yd3{bottom:399.906667pt;}
.y86{bottom:405.186667pt;}
.y138{bottom:405.346667pt;}
.y54{bottom:409.186667pt;}
.yfd{bottom:412.546667pt;}
.y2a{bottom:412.706667pt;}
.yd2{bottom:418.306667pt;}
.y137{bottom:420.706667pt;}
.y85{bottom:423.586667pt;}
.y53{bottom:427.586667pt;}
.yfc{bottom:430.946667pt;}
.y29{bottom:431.106667pt;}
.y136{bottom:436.066667pt;}
.yd1{bottom:436.706667pt;}
.y84{bottom:441.986667pt;}
.y52{bottom:445.986667pt;}
.yfb{bottom:449.346667pt;}
.y28{bottom:449.506667pt;}
.y135{bottom:451.426667pt;}
.yd0{bottom:455.106667pt;}
.y83{bottom:460.386667pt;}
.y51{bottom:464.386667pt;}
.y134{bottom:466.786667pt;}
.yfa{bottom:467.746667pt;}
.y27{bottom:467.906667pt;}
.ycf{bottom:473.506667pt;}
.y82{bottom:478.786667pt;}
.y133{bottom:482.146667pt;}
.y50{bottom:482.786667pt;}
.yf9{bottom:486.146667pt;}
.y26{bottom:486.306667pt;}
.ya3{bottom:494.626667pt;}
.y81{bottom:497.186667pt;}
.y132{bottom:497.346667pt;}
.y4f{bottom:501.186667pt;}
.yce{bottom:502.466667pt;}
.yf8{bottom:504.546667pt;}
.y25{bottom:504.706667pt;}
.ya2{bottom:511.746667pt;}
.y131{bottom:512.706667pt;}
.y80{bottom:515.586667pt;}
.y4e{bottom:519.586667pt;}
.yf7{bottom:522.946667pt;}
.y24{bottom:523.106667pt;}
.y130{bottom:528.066667pt;}
.ya1{bottom:528.546667pt;}
.ycd{bottom:531.106667pt;}
.y7f{bottom:533.986667pt;}
.y4d{bottom:537.986667pt;}
.y23{bottom:541.506667pt;}
.y12f{bottom:543.426667pt;}
.ya0{bottom:545.506667pt;}
.yf6{bottom:551.906667pt;}
.y7e{bottom:552.386667pt;}
.y4c{bottom:556.386667pt;}
.y12e{bottom:558.786667pt;}
.y22{bottom:559.906667pt;}
.ycc{bottom:560.066667pt;}
.y9f{bottom:562.306667pt;}
.yf5{bottom:570.333333pt;}
.y7d{bottom:570.813333pt;}
.y12d{bottom:574.173333pt;}
.y4b{bottom:574.813333pt;}
.yca{bottom:576.733333pt;}
.y21{bottom:578.333333pt;}
.y9e{bottom:579.453333pt;}
.yf4{bottom:588.733333pt;}
.y7c{bottom:589.213333pt;}
.y12c{bottom:589.373333pt;}
.y4a{bottom:593.213333pt;}
.y20{bottom:596.733333pt;}
.yc9{bottom:604.413333pt;}
.y12b{bottom:604.733333pt;}
.yf3{bottom:606.973333pt;}
.y7b{bottom:607.613333pt;}
.y9d{bottom:608.573333pt;}
.y49{bottom:611.613333pt;}
.y1f{bottom:615.133333pt;}
.y12a{bottom:620.093333pt;}
.yf2{bottom:624.093333pt;}
.y7a{bottom:626.013333pt;}
.y9c{bottom:626.973333pt;}
.y48{bottom:630.013333pt;}
.yc8{bottom:631.933333pt;}
.y1e{bottom:633.373333pt;}
.y129{bottom:635.453333pt;}
.y79{bottom:644.413333pt;}
.y9b{bottom:645.373333pt;}
.y47{bottom:648.413333pt;}
.y1d{bottom:649.853333pt;}
.y128{bottom:650.813333pt;}
.yf1{bottom:653.213333pt;}
.yc7{bottom:659.453333pt;}
.y78{bottom:662.813333pt;}
.y1c{bottom:665.213333pt;}
.y127{bottom:666.173333pt;}
.y46{bottom:666.813333pt;}
.y9a{bottom:670.973333pt;}
.y99{bottom:678.333333pt;}
.y1b{bottom:680.413333pt;}
.y77{bottom:681.213333pt;}
.y126{bottom:681.373333pt;}
.yf0{bottom:682.173333pt;}
.y45{bottom:685.213333pt;}
.yc6{bottom:686.973333pt;}
.y1a{bottom:695.773333pt;}
.y125{bottom:696.733333pt;}
.y76{bottom:699.613333pt;}
.yef{bottom:700.573333pt;}
.y98{bottom:708.733333pt;}
.y19{bottom:711.133333pt;}
.y124{bottom:712.093333pt;}
.yc5{bottom:714.493333pt;}
.y44{bottom:714.813333pt;}
.y97{bottom:716.093333pt;}
.y75{bottom:717.853333pt;}
.yee{bottom:718.973333pt;}
.y18{bottom:726.493333pt;}
.y123{bottom:727.453333pt;}
.y74{bottom:736.253333pt;}
.yed{bottom:737.373333pt;}
.y17{bottom:741.853333pt;}
.yc4{bottom:742.013333pt;}
.y122{bottom:742.813333pt;}
.y43{bottom:747.133333pt;}
.y96{bottom:747.933333pt;}
.y73{bottom:754.653333pt;}
.yec{bottom:755.773333pt;}
.y16{bottom:757.533333pt;}
.y121{bottom:758.013333pt;}
.yc3{bottom:769.533333pt;}
.y72{bottom:773.053333pt;}
.y120{bottom:773.373333pt;}
.yeb{bottom:774.173333pt;}
.y95{bottom:776.893333pt;}
.y15{bottom:778.653333pt;}
.y11f{bottom:788.733333pt;}
.y71{bottom:791.453333pt;}
.yea{bottom:792.573333pt;}
.y14{bottom:794.053333pt;}
.yc2{bottom:797.093333pt;}
.y11e{bottom:804.133333pt;}
.y94{bottom:806.693333pt;}
.y13{bottom:809.413333pt;}
.y70{bottom:809.893333pt;}
.ye9{bottom:811.013333pt;}
.y11d{bottom:819.493333pt;}
.ybc{bottom:827.653333pt;}
.y93{bottom:828.133333pt;}
.y6f{bottom:828.293333pt;}
.ye8{bottom:829.413333pt;}
.y12{bottom:832.773333pt;}
.y11c{bottom:834.853333pt;}
.y6e{bottom:846.693333pt;}
.ye7{bottom:847.813333pt;}
.y11b{bottom:850.053333pt;}
.y11{bottom:864.933333pt;}
.y6d{bottom:865.093333pt;}
.y11a{bottom:865.413333pt;}
.ye6{bottom:866.213333pt;}
.y119{bottom:880.773333pt;}
.y6c{bottom:883.493333pt;}
.y10{bottom:891.493333pt;}
.ye5{bottom:895.333333pt;}
.y118{bottom:896.133333pt;}
.y6b{bottom:901.893333pt;}
.ybb{bottom:905.413333pt;}
.y117{bottom:911.493333pt;}
.yf{bottom:917.893333pt;}
.y6a{bottom:920.293333pt;}
.ye4{bottom:924.293333pt;}
.y116{bottom:926.853333pt;}
.yba{bottom:932.133333pt;}
.y69{bottom:938.693333pt;}
.yc{bottom:939.493333pt;}
.y115{bottom:942.053333pt;}
.y42{bottom:942.693333pt;}
.y1{bottom:946.533333pt;}
.yb9{bottom:950.533333pt;}
.y68{bottom:957.093333pt;}
.y114{bottom:957.413333pt;}
.y41{bottom:961.093333pt;}
.yb8{bottom:968.933333pt;}
.y113{bottom:972.773333pt;}
.y67{bottom:975.493333pt;}
.y40{bottom:979.493333pt;}
.yb7{bottom:987.333333pt;}
.y112{bottom:988.133333pt;}
.y66{bottom:993.893333pt;}
.y3f{bottom:997.893333pt;}
.y111{bottom:1003.493333pt;}
.y3e{bottom:1016.293333pt;}
.y110{bottom:1018.880000pt;}
.y3d{bottom:1048.480000pt;}
.y3c{bottom:1064.320000pt;}
.h7{height:26.735625pt;}
.h19{height:27.520000pt;}
.h1a{height:27.552000pt;}
.h1b{height:27.680000pt;}
.hb{height:29.041875pt;}
.h16{height:37.195312pt;}
.hf{height:40.335938pt;}
.h15{height:41.543750pt;}
.hc{height:42.521250pt;}
.hd{height:44.638438pt;}
.h17{height:45.156250pt;}
.h5{height:45.546250pt;}
.h3{height:49.478750pt;}
.h6{height:50.485000pt;}
.h10{height:53.781250pt;}
.h4{height:54.075937pt;}
.he{height:54.875000pt;}
.h8{height:58.563750pt;}
.h9{height:60.057813pt;}
.ha{height:61.086250pt;}
.h18{height:61.280000pt;}
.h11{height:63.656250pt;}
.h12{height:70.698125pt;}
.h13{height:79.925000pt;}
.h2{height:128.992000pt;}
.h14{height:249.920000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w8{width:56.832000pt;}
.w9{width:75.520000pt;}
.w7{width:103.840000pt;}
.wa{width:104.032000pt;}
.wc{width:122.752000pt;}
.wb{width:122.880000pt;}
.w2{width:198.466667pt;}
.w4{width:228.986667pt;}
.w3{width:252.986667pt;}
.w6{width:440.000000pt;}
.w5{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x2{left:7.200000pt;}
.x5{left:9.440000pt;}
.x2d{left:11.680000pt;}
.x2b{left:13.760000pt;}
.x8{left:14.720000pt;}
.x30{left:17.280000pt;}
.x9{left:20.000000pt;}
.x34{left:23.040000pt;}
.x23{left:26.240000pt;}
.x27{left:27.520000pt;}
.xb{left:29.120000pt;}
.x2f{left:30.120000pt;}
.x36{left:32.794667pt;}
.x22{left:35.426667pt;}
.x37{left:39.354667pt;}
.x35{left:40.960000pt;}
.x31{left:44.640000pt;}
.x33{left:48.680000pt;}
.x1{left:49.600000pt;}
.x38{left:52.200000pt;}
.x32{left:54.080000pt;}
.xc{left:55.360000pt;}
.xe{left:56.799988pt;}
.x6{left:81.280000pt;}
.xd{left:93.800000pt;}
.x26{left:104.032000pt;}
.x13{left:129.151988pt;}
.x20{left:134.973333pt;}
.x11{left:143.866655pt;}
.xa{left:155.080000pt;}
.x1b{left:159.866655pt;}
.x21{left:161.093333pt;}
.x1e{left:171.066655pt;}
.x1f{left:176.800000pt;}
.x24{left:184.893333pt;}
.x4{left:186.426667pt;}
.x12{left:198.266655pt;}
.x16{left:200.986655pt;}
.x25{left:202.106655pt;}
.x28{left:207.866667pt;}
.x1c{left:216.666655pt;}
.x15{left:242.586655pt;}
.x3{left:248.066667pt;}
.x1a{left:253.346655pt;}
.x29{left:264.706667pt;}
.x14{left:308.386655pt;}
.x18{left:316.546655pt;}
.x2a{left:340.226667pt;}
.xf{left:385.826655pt;}
.x10{left:397.026655pt;}
.x2c{left:444.253333pt;}
.x7{left:501.053333pt;}
.x17{left:538.973322pt;}
.x2e{left:567.133333pt;}
.x1d{left:617.093322pt;}
.x19{left:681.093322pt;}
}




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