
    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_cf1f9f89c754679de6a81eb9.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.088379;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_f9e61798b2257db62bf94c3a.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.096680;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_c6b884dd8749c41f9206f0a4.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.096680;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_c738efeeff82bd74f718e1c4.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.088379;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_db6538f36747031f040fed4a.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.402354;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_347f7ad91e2144d4b74534c2.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.088379;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_1cdfb9906b1a678251d3dea1.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.120117;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_fac70ba6c598652bd3d99a41.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.938965;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_605baf96929907f936f5f1c5.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.938477;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_b2e10bb5ea0b023563d6b950.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.727539;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_437e4e929e4440b3828c6f64.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.435059;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_90501e347e1f76f6bc105a20.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.401855;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_ab5080ff25208f297c3bb64c.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.771484;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_2e4b8e30673d521e2967b748.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.769531;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;}
.v1{vertical-align:14.400000px;}
.ls17{letter-spacing:-1.224000px;}
.ls6{letter-spacing:-0.864000px;}
.ls1e{letter-spacing:-0.696000px;}
.ls14{letter-spacing:-0.576000px;}
.lsb{letter-spacing:-0.385800px;}
.ls7{letter-spacing:-0.360000px;}
.ls18{letter-spacing:-0.288000px;}
.ls1b{letter-spacing:-0.216000px;}
.lsc{letter-spacing:-0.144000px;}
.ls0{letter-spacing:0.000000px;}
.lsf{letter-spacing:0.037440px;}
.ls16{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.288000px;}
.ls1{letter-spacing:0.299400px;}
.ls1d{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.ls5{letter-spacing:0.504000px;}
.ls3{letter-spacing:0.576000px;}
.ls10{letter-spacing:0.612000px;}
.ls4{letter-spacing:0.648000px;}
.ls9{letter-spacing:1.274400px;}
.ls1a{letter-spacing:2.880000px;}
.lsa{letter-spacing:5.760000px;}
.ls1c{letter-spacing:17.107200px;}
.ls13{letter-spacing:18.720000px;}
.ls19{letter-spacing:20.160000px;}
.ls11{letter-spacing:28.956000px;}
.ls15{letter-spacing:30.396000px;}
.lsd{letter-spacing:33.276000px;}
.ls12{letter-spacing:63.504000px;}
.ls8{letter-spacing:63.516000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-33.235200px;}
.ws10{word-spacing:-16.488000px;}
.ws3{word-spacing:-16.416000px;}
.ws2{word-spacing:-16.344000px;}
.wsb{word-spacing:-16.272000px;}
.ws11{word-spacing:-16.056000px;}
.ws5{word-spacing:-15.840000px;}
.wsa{word-spacing:-15.696000px;}
.ws13{word-spacing:-15.624000px;}
.ws6{word-spacing:-15.480000px;}
.wsf{word-spacing:-15.264000px;}
.ws4{word-spacing:-14.976000px;}
.ws12{word-spacing:-14.616000px;}
.ws14{word-spacing:-13.876800px;}
.wsc{word-spacing:-13.826880px;}
.wsd{word-spacing:-13.789440px;}
.ws7{word-spacing:-13.305600px;}
.ws9{word-spacing:-12.919800px;}
.ws8{word-spacing:-12.038400px;}
.wse{word-spacing:-8.864640px;}
.ws1{word-spacing:0.000000px;}
._5{margin-left:-2.215680px;}
._2{margin-left:-1.198080px;}
._1{width:1.198080px;}
._3{width:2.655360px;}
._4{width:3.897600px;}
._f{width:4.898880px;}
._b{width:6.363840px;}
._a{width:7.585920px;}
._c{width:8.640000px;}
._10{width:9.884160px;}
._17{width:11.635200px;}
._20{width:13.636800px;}
._21{width:14.707200px;}
._1d{width:16.945920px;}
._14{width:18.360000px;}
._9{width:19.512000px;}
._6{width:21.096000px;}
._7{width:22.584000px;}
._8{width:23.676000px;}
._1c{width:25.585920px;}
._11{width:27.576000px;}
._12{width:28.728000px;}
._13{width:30.381120px;}
._e{width:32.386560px;}
._d{width:33.696000px;}
._16{width:34.975680px;}
._15{width:36.000000px;}
._18{width:37.198080px;}
._1e{width:38.926080px;}
._1f{width:40.201920px;}
._25{width:41.520000px;}
._27{width:45.792000px;}
._26{width:46.944000px;}
._22{width:49.248000px;}
._24{width:52.369920px;}
._23{width:54.127680px;}
._1b{width:77.400000px;}
._19{width:78.552000px;}
._1a{width:79.776000px;}
._2b{width:151.842240px;}
._2a{width:152.953920px;}
._28{width:308.041920px;}
._29{width:309.260160px;}
._0{width:1351.320000px;}
.fc6{color:rgb(5,99,193);}
.fc5{color:rgb(0,0,255);}
.fc4{color:rgb(17,85,204);}
.fc3{color:rgb(11,83,148);}
.fc2{color:rgb(46,116,181);}
.fc1{color:rgb(91,155,213);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:38.880000px;}
.fsa{font-size:41.760000px;}
.fs7{font-size:47.520000px;}
.fs8{font-size:54.720000px;}
.fs6{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs4{font-size:72.000000px;}
.fs5{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs1{font-size:144.000000px;}
.fs3{font-size:149.760000px;}
.y0{bottom:0.000000px;}
.y5b{bottom:2.520000px;}
.y65{bottom:3.240000px;}
.y5d{bottom:3.600000px;}
.y7c{bottom:3.630000px;}
.y100{bottom:3.960000px;}
.yfe{bottom:4.320000px;}
.yce{bottom:5.760000px;}
.y112{bottom:9.720000px;}
.y5a{bottom:18.000000px;}
.y75{bottom:19.080000px;}
.y62{bottom:20.880000px;}
.y7b{bottom:20.910000px;}
.y69{bottom:21.234000px;}
.y60{bottom:21.240000px;}
.y11b{bottom:21.270000px;}
.y78{bottom:21.285000px;}
.ycd{bottom:21.960000px;}
.y114{bottom:23.400000px;}
.y2b{bottom:25.200000px;}
.y34{bottom:25.560000px;}
.y2e{bottom:25.590000px;}
.y74{bottom:34.920000px;}
.ycc{bottom:37.836000px;}
.y11e{bottom:38.520000px;}
.y5f{bottom:38.880000px;}
.y11a{bottom:38.910000px;}
.y11d{bottom:56.160000px;}
.y119{bottom:56.550000px;}
.ycb{bottom:57.636000px;}
.y1e{bottom:60.480000px;}
.y118{bottom:73.830000px;}
.yca{bottom:77.430000px;}
.yb4{bottom:85.680000px;}
.y117{bottom:91.470000px;}
.yc9{bottom:97.230000px;}
.y116{bottom:109.110000px;}
.y6a{bottom:115.596000px;}
.yc8{bottom:117.030000px;}
.y43{bottom:118.836000px;}
.yeb{bottom:119.556000px;}
.y1d{bottom:120.276000px;}
.y93{bottom:128.196000px;}
.y145{bottom:133.236000px;}
.yc7{bottom:136.830000px;}
.y42{bottom:141.156000px;}
.y68{bottom:141.516000px;}
.yea{bottom:144.036000px;}
.y12b{bottom:149.796000px;}
.y92{bottom:150.510000px;}
.y1c{bottom:152.670000px;}
.yc6{bottom:156.675000px;}
.y41{bottom:163.470000px;}
.ye9{bottom:168.150000px;}
.y12a{bottom:171.750000px;}
.y91{bottom:172.470000px;}
.yb3{bottom:172.830000px;}
.y161{bottom:176.070000px;}
.yc5{bottom:176.475000px;}
.y10f{bottom:181.110000px;}
.y1b{bottom:182.550000px;}
.y40{bottom:185.790000px;}
.ye8{bottom:192.270000px;}
.y67{bottom:193.350000px;}
.y90{bottom:194.790000px;}
.yc4{bottom:196.275000px;}
.y144{bottom:196.590000px;}
.y160{bottom:197.310000px;}
.yb2{bottom:201.270000px;}
.y10e{bottom:205.590000px;}
.y3f{bottom:207.750000px;}
.y1a{bottom:209.550000px;}
.yc3{bottom:216.075000px;}
.ye7{bottom:216.750000px;}
.y8f{bottom:217.830000px;}
.y15f{bottom:218.190000px;}
.y129{bottom:218.910000px;}
.y188{bottom:221.790000px;}
.yb1{bottom:229.350000px;}
.y3e{bottom:230.070000px;}
.yc2{bottom:235.875000px;}
.y15e{bottom:239.475000px;}
.y187{bottom:240.555000px;}
.ye6{bottom:240.915000px;}
.y19{bottom:241.995000px;}
.y128{bottom:243.435000px;}
.y66{bottom:244.875000px;}
.y3d{bottom:252.435000px;}
.yc1{bottom:255.675000px;}
.yb0{bottom:257.835000px;}
.y143{bottom:260.355000px;}
.ye5{bottom:265.395000px;}
.y8e{bottom:266.115000px;}
.y127{bottom:267.555000px;}
.y10d{bottom:268.995000px;}
.y18{bottom:271.515000px;}
.y3c{bottom:274.755000px;}
.y15d{bottom:275.475000px;}
.yc0{bottom:275.505000px;}
.yaf{bottom:284.475000px;}
.ye4{bottom:289.515000px;}
.y8d{bottom:290.595000px;}
.y126{bottom:291.675000px;}
.y10c{bottom:293.115000px;}
.y186{bottom:294.915000px;}
.ybf{bottom:295.305000px;}
.y64{bottom:296.715000px;}
.y3b{bottom:297.075000px;}
.y17{bottom:298.515000px;}
.y142{bottom:299.595000px;}
.yae{bottom:306.435000px;}
.y185{bottom:312.915000px;}
.ye3{bottom:313.635000px;}
.y8c{bottom:314.715000px;}
.ybe{bottom:315.105000px;}
.y125{bottom:316.155000px;}
.y10b{bottom:317.595000px;}
.y3a{bottom:319.035000px;}
.yad{bottom:328.755000px;}
.y184{bottom:330.195000px;}
.y16{bottom:330.915000px;}
.ybd{bottom:334.905000px;}
.ye2{bottom:338.115000px;}
.y141{bottom:338.835000px;}
.y8b{bottom:339.195000px;}
.y124{bottom:340.275000px;}
.y39{bottom:341.355000px;}
.y183{bottom:347.835000px;}
.y63{bottom:348.195000px;}
.yac{bottom:351.075000px;}
.ybc{bottom:354.705000px;}
.y10a{bottom:356.865000px;}
.ye1{bottom:362.265000px;}
.y15c{bottom:362.625000px;}
.y140{bottom:362.985000px;}
.y15{bottom:363.345000px;}
.y38{bottom:363.705000px;}
.y123{bottom:364.785000px;}
.y182{bottom:365.505000px;}
.yab{bottom:373.425000px;}
.ybb{bottom:374.505000px;}
.y109{bottom:380.985000px;}
.y61{bottom:382.425000px;}
.y181{bottom:383.145000px;}
.y37{bottom:386.025000px;}
.y15b{bottom:386.385000px;}
.ye0{bottom:386.745000px;}
.y8a{bottom:387.105000px;}
.y122{bottom:388.185000px;}
.yba{bottom:394.350000px;}
.y14{bottom:395.385000px;}
.yaa{bottom:395.745000px;}
.y180{bottom:400.785000px;}
.y36{bottom:401.505000px;}
.y13f{bottom:402.225000px;}
.y108{bottom:405.465000px;}
.ydf{bottom:410.865000px;}
.y89{bottom:411.225000px;}
.y15a{bottom:413.025000px;}
.yb9{bottom:414.150000px;}
.ya9{bottom:417.705000px;}
.y17f{bottom:418.425000px;}
.y13{bottom:425.265000px;}
.y13e{bottom:426.705000px;}
.y107{bottom:429.585000px;}
.y5e{bottom:433.905000px;}
.yb8{bottom:433.950000px;}
.yde{bottom:434.625000px;}
.y121{bottom:434.985000px;}
.y159{bottom:436.065000px;}
.y88{bottom:437.505000px;}
.ya8{bottom:440.025000px;}
.y35{bottom:443.625000px;}
.y12{bottom:452.265000px;}
.y106{bottom:453.345000px;}
.yb7{bottom:453.750000px;}
.ydd{bottom:456.945000px;}
.y87{bottom:459.825000px;}
.y158{bottom:460.185000px;}
.ya7{bottom:462.345000px;}
.y13d{bottom:465.945000px;}
.y17e{bottom:470.985000px;}
.yb6{bottom:473.550000px;}
.y105{bottom:476.070000px;}
.ydc{bottom:477.870000px;}
.y120{bottom:478.230000px;}
.y86{bottom:482.910000px;}
.y11{bottom:484.710000px;}
.y33{bottom:485.790000px;}
.y17d{bottom:488.670000px;}
.y13c{bottom:490.110000px;}
.yb5{bottom:493.350000px;}
.ydb{bottom:493.710000px;}
.y104{bottom:499.830000px;}
.y5c{bottom:503.430000px;}
.y17c{bottom:506.310000px;}
.y85{bottom:507.030000px;}
.y157{bottom:508.830000px;}
.y13b{bottom:514.590000px;}
.y10{bottom:517.110000px;}
.y103{bottom:522.150000px;}
.y17b{bottom:523.950000px;}
.y32{bottom:528.270000px;}
.ya6{bottom:528.990000px;}
.y84{bottom:531.150000px;}
.y156{bottom:532.950000px;}
.y59{bottom:537.270000px;}
.y102{bottom:539.070000px;}
.y17a{bottom:541.590000px;}
.yf{bottom:549.150000px;}
.ya5{bottom:551.310000px;}
.y13a{bottom:553.830000px;}
.y83{bottom:555.630000px;}
.y155{bottom:557.430000px;}
.y179{bottom:558.870000px;}
.y101{bottom:561.750000px;}
.y11f{bottom:568.950000px;}
.y31{bottom:570.390000px;}
.ya4{bottom:573.630000px;}
.y178{bottom:576.510000px;}
.y139{bottom:577.230000px;}
.y82{bottom:579.750000px;}
.ye{bottom:581.550000px;}
.yff{bottom:584.430000px;}
.y58{bottom:586.590000px;}
.y177{bottom:594.150000px;}
.ya3{bottom:595.950000px;}
.y138{bottom:600.300000px;}
.y81{bottom:604.260000px;}
.y154{bottom:606.060000px;}
.yfd{bottom:606.780000px;}
.y57{bottom:609.300000px;}
.y176{bottom:610.740000px;}
.yd{bottom:612.180000px;}
.y30{bottom:612.540000px;}
.y11c{bottom:620.820000px;}
.y137{bottom:624.420000px;}
.y175{bottom:628.020000px;}
.y80{bottom:628.380000px;}
.y153{bottom:630.180000px;}
.y56{bottom:633.780000px;}
.yfc{bottom:638.100000px;}
.y174{bottom:648.540000px;}
.y136{bottom:648.900000px;}
.y7f{bottom:652.500000px;}
.y152{bottom:654.300000px;}
.y2f{bottom:654.660000px;}
.yc{bottom:656.460000px;}
.y55{bottom:657.540000px;}
.ya2{bottom:657.900000px;}
.yfb{bottom:665.100000px;}
.y173{bottom:667.980000px;}
.yda{bottom:669.060000px;}
.y135{bottom:673.020000px;}
.y7e{bottom:676.260000px;}
.y151{bottom:678.780000px;}
.y54{bottom:680.220000px;}
.ya1{bottom:682.380000px;}
.yd9{bottom:691.380000px;}
.y2d{bottom:696.780000px;}
.y134{bottom:697.140000px;}
.y7d{bottom:697.500000px;}
.y172{bottom:699.660000px;}
.yb{bottom:700.380000px;}
.y150{bottom:702.900000px;}
.y53{bottom:703.980000px;}
.yfa{bottom:704.340000px;}
.ya0{bottom:706.500000px;}
.y115{bottom:707.580000px;}
.yd8{bottom:710.100000px;}
.y171{bottom:715.500000px;}
.y7a{bottom:719.100000px;}
.y133{bottom:721.650000px;}
.yd7{bottom:725.970000px;}
.y14f{bottom:727.410000px;}
.yf9{bottom:728.850000px;}
.y9f{bottom:730.650000px;}
.y170{bottom:731.010000px;}
.y2c{bottom:739.290000px;}
.yd6{bottom:741.450000px;}
.y52{bottom:741.810000px;}
.ya{bottom:744.330000px;}
.y132{bottom:745.770000px;}
.y14e{bottom:751.530000px;}
.yf8{bottom:752.970000px;}
.y9e{bottom:755.130000px;}
.y51{bottom:765.930000px;}
.y131{bottom:770.250000px;}
.y79{bottom:770.610000px;}
.y16f{bottom:771.690000px;}
.y14d{bottom:775.650000px;}
.yf7{bottom:777.450000px;}
.y9d{bottom:779.250000px;}
.y2a{bottom:781.410000px;}
.y9{bottom:788.250000px;}
.y50{bottom:790.410000px;}
.y130{bottom:794.370000px;}
.y14c{bottom:800.130000px;}
.yf6{bottom:801.570000px;}
.y16e{bottom:813.810000px;}
.y4f{bottom:814.530000px;}
.y9c{bottom:818.490000px;}
.y12f{bottom:818.850000px;}
.yd5{bottom:820.290000px;}
.y77{bottom:822.450000px;}
.y14b{bottom:824.250000px;}
.y8{bottom:829.290000px;}
.y16d{bottom:836.490000px;}
.y4e{bottom:839.010000px;}
.yf5{bottom:840.855000px;}
.y9b{bottom:843.015000px;}
.yd4{bottom:844.455000px;}
.y113{bottom:847.335000px;}
.y29{bottom:848.775000px;}
.y16c{bottom:858.855000px;}
.y7{bottom:859.935000px;}
.yf4{bottom:865.335000px;}
.y9a{bottom:867.135000px;}
.yd3{bottom:868.935000px;}
.y14a{bottom:872.895000px;}
.y76{bottom:873.975000px;}
.y4d{bottom:878.295000px;}
.y16b{bottom:880.815000px;}
.yf3{bottom:889.455000px;}
.y12e{bottom:890.895000px;}
.y28{bottom:891.255000px;}
.y99{bottom:891.615000px;}
.yd2{bottom:893.055000px;}
.y149{bottom:897.375000px;}
.y111{bottom:899.895000px;}
.y4c{bottom:902.415000px;}
.y16a{bottom:903.135000px;}
.y6{bottom:904.215000px;}
.y73{bottom:908.175000px;}
.y12d{bottom:912.135000px;}
.yf2{bottom:913.575000px;}
.y27{bottom:915.375000px;}
.y98{bottom:915.735000px;}
.yd1{bottom:917.535000px;}
.y148{bottom:921.495000px;}
.y169{bottom:925.455000px;}
.y4b{bottom:926.535000px;}
.y12c{bottom:927.615000px;}
.y5{bottom:936.615000px;}
.y26{bottom:939.135000px;}
.y110{bottom:939.495000px;}
.y97{bottom:939.855000px;}
.yd0{bottom:941.655000px;}
.y147{bottom:945.615000px;}
.y4a{bottom:951.015000px;}
.yf1{bottom:952.815000px;}
.y168{bottom:960.015000px;}
.y25{bottom:961.455000px;}
.ycf{bottom:966.165000px;}
.y4{bottom:969.045000px;}
.y146{bottom:970.125000px;}
.y72{bottom:971.565000px;}
.yf0{bottom:977.325000px;}
.y96{bottom:979.125000px;}
.y24{bottom:987.045000px;}
.y49{bottom:990.285000px;}
.y71{bottom:994.245000px;}
.y167{bottom:996.405000px;}
.y3{bottom:997.845000px;}
.yef{bottom:1001.445000px;}
.y95{bottom:1003.605000px;}
.y48{bottom:1014.405000px;}
.y166{bottom:1017.285000px;}
.y70{bottom:1018.725000px;}
.y23{bottom:1019.085000px;}
.yee{bottom:1025.925000px;}
.y94{bottom:1027.725000px;}
.y165{bottom:1038.525000px;}
.y47{bottom:1038.885000px;}
.y6f{bottom:1042.845000px;}
.y22{bottom:1050.045000px;}
.y164{bottom:1059.405000px;}
.y46{bottom:1063.005000px;}
.y6e{bottom:1066.965000px;}
.y21{bottom:1078.485000px;}
.y45{bottom:1087.530000px;}
.yed{bottom:1089.330000px;}
.y6d{bottom:1091.490000px;}
.y163{bottom:1095.810000px;}
.y20{bottom:1106.610000px;}
.y44{bottom:1110.930000px;}
.yec{bottom:1113.810000px;}
.y6c{bottom:1115.250000px;}
.y162{bottom:1116.690000px;}
.y2{bottom:1117.050000px;}
.y1f{bottom:1135.050000px;}
.y6b{bottom:1137.930000px;}
.y1{bottom:1139.370000px;}
.h11{height:17.640000px;}
.h15{height:17.676000px;}
.h25{height:20.916000px;}
.h24{height:21.240000px;}
.h26{height:23.760000px;}
.h1f{height:29.892656px;}
.hf{height:33.480000px;}
.h14{height:34.920000px;}
.h1b{height:34.956000px;}
.h16{height:35.280000px;}
.h19{height:35.316000px;}
.h27{height:36.000000px;}
.h20{height:39.837656px;}
.h2c{height:41.719219px;}
.ha{height:42.120000px;}
.hc{height:42.156000px;}
.hd{height:42.480000px;}
.hb{height:42.516000px;}
.h1e{height:44.060625px;}
.h2b{height:45.714375px;}
.h17{height:47.520000px;}
.h18{height:47.612812px;}
.h13{height:52.624688px;}
.h2a{height:52.920000px;}
.h12{height:52.956000px;}
.h1a{height:53.097188px;}
.h1d{height:55.016719px;}
.h2{height:57.636562px;}
.h10{height:58.154062px;}
.h9{height:62.648438px;}
.h7{height:63.210938px;}
.h29{height:70.200000px;}
.h22{height:72.562500px;}
.h23{height:72.672187px;}
.h8{height:73.324687px;}
.he{height:74.004654px;}
.h21{height:74.953125px;}
.h5{height:83.948906px;}
.h4{height:84.702656px;}
.h28{height:123.156000px;}
.h3{height:125.296875px;}
.h6{height:130.308750px;}
.h1c{height:507.030000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w4{width:39.240000px;}
.wb{width:54.720000px;}
.wc{width:67.356000px;}
.wd{width:70.596000px;}
.w8{width:74.916000px;}
.wf{width:87.156000px;}
.w5{width:102.996000px;}
.wa{width:107.676000px;}
.w10{width:113.436000px;}
.we{width:164.955000px;}
.w16{width:168.555000px;}
.w12{width:181.155000px;}
.w17{width:187.995000px;}
.w15{width:242.385000px;}
.w13{width:307.950000px;}
.w6{width:431.820000px;}
.w3{width:534.810000px;}
.w11{width:541.290000px;}
.w9{width:598.215000px;}
.w7{width:674.925000px;}
.w14{width:690.765000px;}
.w1{width:892.500000px;}
.w2{width:892.799987px;}
.w0{width:892.800000px;}
.x0{left:0.000000px;}
.x17{left:6.840000px;}
.x12{left:8.280000px;}
.x1b{left:11.520000px;}
.x1e{left:12.600000px;}
.x4c{left:13.680000px;}
.x21{left:14.760000px;}
.x2d{left:15.840000px;}
.x1d{left:18.360000px;}
.x25{left:20.160000px;}
.x23{left:21.240000px;}
.x19{left:22.356000px;}
.x4e{left:23.760000px;}
.x2a{left:25.200000px;}
.x24{left:27.000000px;}
.x27{left:29.160000px;}
.x26{left:30.960000px;}
.x33{left:32.040000px;}
.x41{left:34.230000px;}
.x4b{left:36.036000px;}
.x16{left:37.836000px;}
.x2c{left:39.636000px;}
.x49{left:41.040000px;}
.x47{left:42.120000px;}
.x3f{left:43.950000px;}
.x3c{left:45.030000px;}
.x2b{left:46.800000px;}
.x29{left:48.600000px;}
.x28{left:52.560000px;}
.x4d{left:55.110000px;}
.x45{left:56.910000px;}
.x32{left:64.830000px;}
.x40{left:70.590000px;}
.x4a{left:73.110000px;}
.x3e{left:81.390000px;}
.x48{left:82.470000px;}
.x42{left:101.196000px;}
.x2f{left:105.875987px;}
.x8{left:108.035987px;}
.x31{left:122.430000px;}
.x14{left:135.071987px;}
.x2e{left:157.394987px;}
.x11{left:159.555000px;}
.x15{left:162.074987px;}
.x43{left:172.869000px;}
.x30{left:174.675000px;}
.x18{left:185.475000px;}
.x39{left:189.074987px;}
.x3{left:197.354987px;}
.x3b{left:200.235000px;}
.x4{left:204.194987px;}
.xa{left:209.234987px;}
.x7{left:210.314987px;}
.x5{left:214.994987px;}
.x3a{left:216.074987px;}
.x1a{left:217.905000px;}
.xf{left:221.504987px;}
.x6{left:230.504987px;}
.x9{left:234.824987px;}
.x4f{left:256.784987px;}
.xe{left:263.264987px;}
.x38{left:265.424987px;}
.x2{left:269.744987px;}
.xd{left:273.704987px;}
.x51{left:281.624987px;}
.x35{left:289.184987px;}
.xb{left:292.064987px;}
.x60{left:294.584987px;}
.x55{left:312.269987px;}
.x61{left:321.989987px;}
.x36{left:330.269987px;}
.x1c{left:342.870000px;}
.x59{left:350.069987px;}
.x5f{left:352.949987px;}
.x5b{left:358.709987px;}
.x56{left:360.509987px;}
.x5d{left:363.389987px;}
.x62{left:366.629987px;}
.x5e{left:373.469987px;}
.x5a{left:376.349987px;}
.x57{left:379.589987px;}
.x3d{left:382.830000px;}
.x5c{left:397.259987px;}
.x58{left:412.019987px;}
.x1f{left:414.900000px;}
.x10{left:417.419987px;}
.x44{left:433.620000px;}
.x52{left:437.219987px;}
.xc{left:441.899987px;}
.x1{left:446.579987px;}
.x54{left:501.689987px;}
.x53{left:520.769987px;}
.x20{left:581.655000px;}
.x46{left:603.975000px;}
.x50{left:641.054987px;}
.x22{left:670.245000px;}
.x13{left:694.365000px;}
.x34{left:715.244987px;}
.x37{left:731.084987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:12.800000pt;}
.ls17{letter-spacing:-1.088000pt;}
.ls6{letter-spacing:-0.768000pt;}
.ls1e{letter-spacing:-0.618667pt;}
.ls14{letter-spacing:-0.512000pt;}
.lsb{letter-spacing:-0.342933pt;}
.ls7{letter-spacing:-0.320000pt;}
.ls18{letter-spacing:-0.256000pt;}
.ls1b{letter-spacing:-0.192000pt;}
.lsc{letter-spacing:-0.128000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsf{letter-spacing:0.033280pt;}
.ls16{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.256000pt;}
.ls1{letter-spacing:0.266133pt;}
.ls1d{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.ls5{letter-spacing:0.448000pt;}
.ls3{letter-spacing:0.512000pt;}
.ls10{letter-spacing:0.544000pt;}
.ls4{letter-spacing:0.576000pt;}
.ls9{letter-spacing:1.132800pt;}
.ls1a{letter-spacing:2.560000pt;}
.lsa{letter-spacing:5.120000pt;}
.ls1c{letter-spacing:15.206400pt;}
.ls13{letter-spacing:16.640000pt;}
.ls19{letter-spacing:17.920000pt;}
.ls11{letter-spacing:25.738667pt;}
.ls15{letter-spacing:27.018667pt;}
.lsd{letter-spacing:29.578667pt;}
.ls12{letter-spacing:56.448000pt;}
.ls8{letter-spacing:56.458667pt;}
.ws0{word-spacing:-29.542400pt;}
.ws10{word-spacing:-14.656000pt;}
.ws3{word-spacing:-14.592000pt;}
.ws2{word-spacing:-14.528000pt;}
.wsb{word-spacing:-14.464000pt;}
.ws11{word-spacing:-14.272000pt;}
.ws5{word-spacing:-14.080000pt;}
.wsa{word-spacing:-13.952000pt;}
.ws13{word-spacing:-13.888000pt;}
.ws6{word-spacing:-13.760000pt;}
.wsf{word-spacing:-13.568000pt;}
.ws4{word-spacing:-13.312000pt;}
.ws12{word-spacing:-12.992000pt;}
.ws14{word-spacing:-12.334933pt;}
.wsc{word-spacing:-12.290560pt;}
.wsd{word-spacing:-12.257280pt;}
.ws7{word-spacing:-11.827200pt;}
.ws9{word-spacing:-11.484267pt;}
.ws8{word-spacing:-10.700800pt;}
.wse{word-spacing:-7.879680pt;}
.ws1{word-spacing:0.000000pt;}
._5{margin-left:-1.969493pt;}
._2{margin-left:-1.064960pt;}
._1{width:1.064960pt;}
._3{width:2.360320pt;}
._4{width:3.464533pt;}
._f{width:4.354560pt;}
._b{width:5.656747pt;}
._a{width:6.743040pt;}
._c{width:7.680000pt;}
._10{width:8.785920pt;}
._17{width:10.342400pt;}
._20{width:12.121600pt;}
._21{width:13.073067pt;}
._1d{width:15.063040pt;}
._14{width:16.320000pt;}
._9{width:17.344000pt;}
._6{width:18.752000pt;}
._7{width:20.074667pt;}
._8{width:21.045333pt;}
._1c{width:22.743040pt;}
._11{width:24.512000pt;}
._12{width:25.536000pt;}
._13{width:27.005440pt;}
._e{width:28.788053pt;}
._d{width:29.952000pt;}
._16{width:31.089493pt;}
._15{width:32.000000pt;}
._18{width:33.064960pt;}
._1e{width:34.600960pt;}
._1f{width:35.735040pt;}
._25{width:36.906667pt;}
._27{width:40.704000pt;}
._26{width:41.728000pt;}
._22{width:43.776000pt;}
._24{width:46.551040pt;}
._23{width:48.113493pt;}
._1b{width:68.800000pt;}
._19{width:69.824000pt;}
._1a{width:70.912000pt;}
._2b{width:134.970880pt;}
._2a{width:135.959040pt;}
._28{width:273.815040pt;}
._29{width:274.897920pt;}
._0{width:1201.173333pt;}
.fs9{font-size:34.560000pt;}
.fsa{font-size:37.120000pt;}
.fs7{font-size:42.240000pt;}
.fs8{font-size:48.640000pt;}
.fs6{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs4{font-size:64.000000pt;}
.fs5{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs1{font-size:128.000000pt;}
.fs3{font-size:133.120000pt;}
.y0{bottom:0.000000pt;}
.y5b{bottom:2.240000pt;}
.y65{bottom:2.880000pt;}
.y5d{bottom:3.200000pt;}
.y7c{bottom:3.226667pt;}
.y100{bottom:3.520000pt;}
.yfe{bottom:3.840000pt;}
.yce{bottom:5.120000pt;}
.y112{bottom:8.640000pt;}
.y5a{bottom:16.000000pt;}
.y75{bottom:16.960000pt;}
.y62{bottom:18.560000pt;}
.y7b{bottom:18.586667pt;}
.y69{bottom:18.874667pt;}
.y60{bottom:18.880000pt;}
.y11b{bottom:18.906667pt;}
.y78{bottom:18.920000pt;}
.ycd{bottom:19.520000pt;}
.y114{bottom:20.800000pt;}
.y2b{bottom:22.400000pt;}
.y34{bottom:22.720000pt;}
.y2e{bottom:22.746667pt;}
.y74{bottom:31.040000pt;}
.ycc{bottom:33.632000pt;}
.y11e{bottom:34.240000pt;}
.y5f{bottom:34.560000pt;}
.y11a{bottom:34.586667pt;}
.y11d{bottom:49.920000pt;}
.y119{bottom:50.266667pt;}
.ycb{bottom:51.232000pt;}
.y1e{bottom:53.760000pt;}
.y118{bottom:65.626667pt;}
.yca{bottom:68.826667pt;}
.yb4{bottom:76.160000pt;}
.y117{bottom:81.306667pt;}
.yc9{bottom:86.426667pt;}
.y116{bottom:96.986667pt;}
.y6a{bottom:102.752000pt;}
.yc8{bottom:104.026667pt;}
.y43{bottom:105.632000pt;}
.yeb{bottom:106.272000pt;}
.y1d{bottom:106.912000pt;}
.y93{bottom:113.952000pt;}
.y145{bottom:118.432000pt;}
.yc7{bottom:121.626667pt;}
.y42{bottom:125.472000pt;}
.y68{bottom:125.792000pt;}
.yea{bottom:128.032000pt;}
.y12b{bottom:133.152000pt;}
.y92{bottom:133.786667pt;}
.y1c{bottom:135.706667pt;}
.yc6{bottom:139.266667pt;}
.y41{bottom:145.306667pt;}
.ye9{bottom:149.466667pt;}
.y12a{bottom:152.666667pt;}
.y91{bottom:153.306667pt;}
.yb3{bottom:153.626667pt;}
.y161{bottom:156.506667pt;}
.yc5{bottom:156.866667pt;}
.y10f{bottom:160.986667pt;}
.y1b{bottom:162.266667pt;}
.y40{bottom:165.146667pt;}
.ye8{bottom:170.906667pt;}
.y67{bottom:171.866667pt;}
.y90{bottom:173.146667pt;}
.yc4{bottom:174.466667pt;}
.y144{bottom:174.746667pt;}
.y160{bottom:175.386667pt;}
.yb2{bottom:178.906667pt;}
.y10e{bottom:182.746667pt;}
.y3f{bottom:184.666667pt;}
.y1a{bottom:186.266667pt;}
.yc3{bottom:192.066667pt;}
.ye7{bottom:192.666667pt;}
.y8f{bottom:193.626667pt;}
.y15f{bottom:193.946667pt;}
.y129{bottom:194.586667pt;}
.y188{bottom:197.146667pt;}
.yb1{bottom:203.866667pt;}
.y3e{bottom:204.506667pt;}
.yc2{bottom:209.666667pt;}
.y15e{bottom:212.866667pt;}
.y187{bottom:213.826667pt;}
.ye6{bottom:214.146667pt;}
.y19{bottom:215.106667pt;}
.y128{bottom:216.386667pt;}
.y66{bottom:217.666667pt;}
.y3d{bottom:224.386667pt;}
.yc1{bottom:227.266667pt;}
.yb0{bottom:229.186667pt;}
.y143{bottom:231.426667pt;}
.ye5{bottom:235.906667pt;}
.y8e{bottom:236.546667pt;}
.y127{bottom:237.826667pt;}
.y10d{bottom:239.106667pt;}
.y18{bottom:241.346667pt;}
.y3c{bottom:244.226667pt;}
.y15d{bottom:244.866667pt;}
.yc0{bottom:244.893333pt;}
.yaf{bottom:252.866667pt;}
.ye4{bottom:257.346667pt;}
.y8d{bottom:258.306667pt;}
.y126{bottom:259.266667pt;}
.y10c{bottom:260.546667pt;}
.y186{bottom:262.146667pt;}
.ybf{bottom:262.493333pt;}
.y64{bottom:263.746667pt;}
.y3b{bottom:264.066667pt;}
.y17{bottom:265.346667pt;}
.y142{bottom:266.306667pt;}
.yae{bottom:272.386667pt;}
.y185{bottom:278.146667pt;}
.ye3{bottom:278.786667pt;}
.y8c{bottom:279.746667pt;}
.ybe{bottom:280.093333pt;}
.y125{bottom:281.026667pt;}
.y10b{bottom:282.306667pt;}
.y3a{bottom:283.586667pt;}
.yad{bottom:292.226667pt;}
.y184{bottom:293.506667pt;}
.y16{bottom:294.146667pt;}
.ybd{bottom:297.693333pt;}
.ye2{bottom:300.546667pt;}
.y141{bottom:301.186667pt;}
.y8b{bottom:301.506667pt;}
.y124{bottom:302.466667pt;}
.y39{bottom:303.426667pt;}
.y183{bottom:309.186667pt;}
.y63{bottom:309.506667pt;}
.yac{bottom:312.066667pt;}
.ybc{bottom:315.293333pt;}
.y10a{bottom:317.213333pt;}
.ye1{bottom:322.013333pt;}
.y15c{bottom:322.333333pt;}
.y140{bottom:322.653333pt;}
.y15{bottom:322.973333pt;}
.y38{bottom:323.293333pt;}
.y123{bottom:324.253333pt;}
.y182{bottom:324.893333pt;}
.yab{bottom:331.933333pt;}
.ybb{bottom:332.893333pt;}
.y109{bottom:338.653333pt;}
.y61{bottom:339.933333pt;}
.y181{bottom:340.573333pt;}
.y37{bottom:343.133333pt;}
.y15b{bottom:343.453333pt;}
.ye0{bottom:343.773333pt;}
.y8a{bottom:344.093333pt;}
.y122{bottom:345.053333pt;}
.yba{bottom:350.533333pt;}
.y14{bottom:351.453333pt;}
.yaa{bottom:351.773333pt;}
.y180{bottom:356.253333pt;}
.y36{bottom:356.893333pt;}
.y13f{bottom:357.533333pt;}
.y108{bottom:360.413333pt;}
.ydf{bottom:365.213333pt;}
.y89{bottom:365.533333pt;}
.y15a{bottom:367.133333pt;}
.yb9{bottom:368.133333pt;}
.ya9{bottom:371.293333pt;}
.y17f{bottom:371.933333pt;}
.y13{bottom:378.013333pt;}
.y13e{bottom:379.293333pt;}
.y107{bottom:381.853333pt;}
.y5e{bottom:385.693333pt;}
.yb8{bottom:385.733333pt;}
.yde{bottom:386.333333pt;}
.y121{bottom:386.653333pt;}
.y159{bottom:387.613333pt;}
.y88{bottom:388.893333pt;}
.ya8{bottom:391.133333pt;}
.y35{bottom:394.333333pt;}
.y12{bottom:402.013333pt;}
.y106{bottom:402.973333pt;}
.yb7{bottom:403.333333pt;}
.ydd{bottom:406.173333pt;}
.y87{bottom:408.733333pt;}
.y158{bottom:409.053333pt;}
.ya7{bottom:410.973333pt;}
.y13d{bottom:414.173333pt;}
.y17e{bottom:418.653333pt;}
.yb6{bottom:420.933333pt;}
.y105{bottom:423.173333pt;}
.ydc{bottom:424.773333pt;}
.y120{bottom:425.093333pt;}
.y86{bottom:429.253333pt;}
.y11{bottom:430.853333pt;}
.y33{bottom:431.813333pt;}
.y17d{bottom:434.373333pt;}
.y13c{bottom:435.653333pt;}
.yb5{bottom:438.533333pt;}
.ydb{bottom:438.853333pt;}
.y104{bottom:444.293333pt;}
.y5c{bottom:447.493333pt;}
.y17c{bottom:450.053333pt;}
.y85{bottom:450.693333pt;}
.y157{bottom:452.293333pt;}
.y13b{bottom:457.413333pt;}
.y10{bottom:459.653333pt;}
.y103{bottom:464.133333pt;}
.y17b{bottom:465.733333pt;}
.y32{bottom:469.573333pt;}
.ya6{bottom:470.213333pt;}
.y84{bottom:472.133333pt;}
.y156{bottom:473.733333pt;}
.y59{bottom:477.573333pt;}
.y102{bottom:479.173333pt;}
.y17a{bottom:481.413333pt;}
.yf{bottom:488.133333pt;}
.ya5{bottom:490.053333pt;}
.y13a{bottom:492.293333pt;}
.y83{bottom:493.893333pt;}
.y155{bottom:495.493333pt;}
.y179{bottom:496.773333pt;}
.y101{bottom:499.333333pt;}
.y11f{bottom:505.733333pt;}
.y31{bottom:507.013333pt;}
.ya4{bottom:509.893333pt;}
.y178{bottom:512.453333pt;}
.y139{bottom:513.093333pt;}
.y82{bottom:515.333333pt;}
.ye{bottom:516.933333pt;}
.yff{bottom:519.493333pt;}
.y58{bottom:521.413333pt;}
.y177{bottom:528.133333pt;}
.ya3{bottom:529.733333pt;}
.y138{bottom:533.600000pt;}
.y81{bottom:537.120000pt;}
.y154{bottom:538.720000pt;}
.yfd{bottom:539.360000pt;}
.y57{bottom:541.600000pt;}
.y176{bottom:542.880000pt;}
.yd{bottom:544.160000pt;}
.y30{bottom:544.480000pt;}
.y11c{bottom:551.840000pt;}
.y137{bottom:555.040000pt;}
.y175{bottom:558.240000pt;}
.y80{bottom:558.560000pt;}
.y153{bottom:560.160000pt;}
.y56{bottom:563.360000pt;}
.yfc{bottom:567.200000pt;}
.y174{bottom:576.480000pt;}
.y136{bottom:576.800000pt;}
.y7f{bottom:580.000000pt;}
.y152{bottom:581.600000pt;}
.y2f{bottom:581.920000pt;}
.yc{bottom:583.520000pt;}
.y55{bottom:584.480000pt;}
.ya2{bottom:584.800000pt;}
.yfb{bottom:591.200000pt;}
.y173{bottom:593.760000pt;}
.yda{bottom:594.720000pt;}
.y135{bottom:598.240000pt;}
.y7e{bottom:601.120000pt;}
.y151{bottom:603.360000pt;}
.y54{bottom:604.640000pt;}
.ya1{bottom:606.560000pt;}
.yd9{bottom:614.560000pt;}
.y2d{bottom:619.360000pt;}
.y134{bottom:619.680000pt;}
.y7d{bottom:620.000000pt;}
.y172{bottom:621.920000pt;}
.yb{bottom:622.560000pt;}
.y150{bottom:624.800000pt;}
.y53{bottom:625.760000pt;}
.yfa{bottom:626.080000pt;}
.ya0{bottom:628.000000pt;}
.y115{bottom:628.960000pt;}
.yd8{bottom:631.200000pt;}
.y171{bottom:636.000000pt;}
.y7a{bottom:639.200000pt;}
.y133{bottom:641.466667pt;}
.yd7{bottom:645.306667pt;}
.y14f{bottom:646.586667pt;}
.yf9{bottom:647.866667pt;}
.y9f{bottom:649.466667pt;}
.y170{bottom:649.786667pt;}
.y2c{bottom:657.146667pt;}
.yd6{bottom:659.066667pt;}
.y52{bottom:659.386667pt;}
.ya{bottom:661.626667pt;}
.y132{bottom:662.906667pt;}
.y14e{bottom:668.026667pt;}
.yf8{bottom:669.306667pt;}
.y9e{bottom:671.226667pt;}
.y51{bottom:680.826667pt;}
.y131{bottom:684.666667pt;}
.y79{bottom:684.986667pt;}
.y16f{bottom:685.946667pt;}
.y14d{bottom:689.466667pt;}
.yf7{bottom:691.066667pt;}
.y9d{bottom:692.666667pt;}
.y2a{bottom:694.586667pt;}
.y9{bottom:700.666667pt;}
.y50{bottom:702.586667pt;}
.y130{bottom:706.106667pt;}
.y14c{bottom:711.226667pt;}
.yf6{bottom:712.506667pt;}
.y16e{bottom:723.386667pt;}
.y4f{bottom:724.026667pt;}
.y9c{bottom:727.546667pt;}
.y12f{bottom:727.866667pt;}
.yd5{bottom:729.146667pt;}
.y77{bottom:731.066667pt;}
.y14b{bottom:732.666667pt;}
.y8{bottom:737.146667pt;}
.y16d{bottom:743.546667pt;}
.y4e{bottom:745.786667pt;}
.yf5{bottom:747.426667pt;}
.y9b{bottom:749.346667pt;}
.yd4{bottom:750.626667pt;}
.y113{bottom:753.186667pt;}
.y29{bottom:754.466667pt;}
.y16c{bottom:763.426667pt;}
.y7{bottom:764.386667pt;}
.yf4{bottom:769.186667pt;}
.y9a{bottom:770.786667pt;}
.yd3{bottom:772.386667pt;}
.y14a{bottom:775.906667pt;}
.y76{bottom:776.866667pt;}
.y4d{bottom:780.706667pt;}
.y16b{bottom:782.946667pt;}
.yf3{bottom:790.626667pt;}
.y12e{bottom:791.906667pt;}
.y28{bottom:792.226667pt;}
.y99{bottom:792.546667pt;}
.yd2{bottom:793.826667pt;}
.y149{bottom:797.666667pt;}
.y111{bottom:799.906667pt;}
.y4c{bottom:802.146667pt;}
.y16a{bottom:802.786667pt;}
.y6{bottom:803.746667pt;}
.y73{bottom:807.266667pt;}
.y12d{bottom:810.786667pt;}
.yf2{bottom:812.066667pt;}
.y27{bottom:813.666667pt;}
.y98{bottom:813.986667pt;}
.yd1{bottom:815.586667pt;}
.y148{bottom:819.106667pt;}
.y169{bottom:822.626667pt;}
.y4b{bottom:823.586667pt;}
.y12c{bottom:824.546667pt;}
.y5{bottom:832.546667pt;}
.y26{bottom:834.786667pt;}
.y110{bottom:835.106667pt;}
.y97{bottom:835.426667pt;}
.yd0{bottom:837.026667pt;}
.y147{bottom:840.546667pt;}
.y4a{bottom:845.346667pt;}
.yf1{bottom:846.946667pt;}
.y168{bottom:853.346667pt;}
.y25{bottom:854.626667pt;}
.ycf{bottom:858.813333pt;}
.y4{bottom:861.373333pt;}
.y146{bottom:862.333333pt;}
.y72{bottom:863.613333pt;}
.yf0{bottom:868.733333pt;}
.y96{bottom:870.333333pt;}
.y24{bottom:877.373333pt;}
.y49{bottom:880.253333pt;}
.y71{bottom:883.773333pt;}
.y167{bottom:885.693333pt;}
.y3{bottom:886.973333pt;}
.yef{bottom:890.173333pt;}
.y95{bottom:892.093333pt;}
.y48{bottom:901.693333pt;}
.y166{bottom:904.253333pt;}
.y70{bottom:905.533333pt;}
.y23{bottom:905.853333pt;}
.yee{bottom:911.933333pt;}
.y94{bottom:913.533333pt;}
.y165{bottom:923.133333pt;}
.y47{bottom:923.453333pt;}
.y6f{bottom:926.973333pt;}
.y22{bottom:933.373333pt;}
.y164{bottom:941.693333pt;}
.y46{bottom:944.893333pt;}
.y6e{bottom:948.413333pt;}
.y21{bottom:958.653333pt;}
.y45{bottom:966.693333pt;}
.yed{bottom:968.293333pt;}
.y6d{bottom:970.213333pt;}
.y163{bottom:974.053333pt;}
.y20{bottom:983.653333pt;}
.y44{bottom:987.493333pt;}
.yec{bottom:990.053333pt;}
.y6c{bottom:991.333333pt;}
.y162{bottom:992.613333pt;}
.y2{bottom:992.933333pt;}
.y1f{bottom:1008.933333pt;}
.y6b{bottom:1011.493333pt;}
.y1{bottom:1012.773333pt;}
.h11{height:15.680000pt;}
.h15{height:15.712000pt;}
.h25{height:18.592000pt;}
.h24{height:18.880000pt;}
.h26{height:21.120000pt;}
.h1f{height:26.571250pt;}
.hf{height:29.760000pt;}
.h14{height:31.040000pt;}
.h1b{height:31.072000pt;}
.h16{height:31.360000pt;}
.h19{height:31.392000pt;}
.h27{height:32.000000pt;}
.h20{height:35.411250pt;}
.h2c{height:37.083750pt;}
.ha{height:37.440000pt;}
.hc{height:37.472000pt;}
.hd{height:37.760000pt;}
.hb{height:37.792000pt;}
.h1e{height:39.165000pt;}
.h2b{height:40.635000pt;}
.h17{height:42.240000pt;}
.h18{height:42.322500pt;}
.h13{height:46.777500pt;}
.h2a{height:47.040000pt;}
.h12{height:47.072000pt;}
.h1a{height:47.197500pt;}
.h1d{height:48.903750pt;}
.h2{height:51.232500pt;}
.h10{height:51.692500pt;}
.h9{height:55.687500pt;}
.h7{height:56.187500pt;}
.h29{height:62.400000pt;}
.h22{height:64.500000pt;}
.h23{height:64.597500pt;}
.h8{height:65.177500pt;}
.he{height:65.781915pt;}
.h21{height:66.625000pt;}
.h5{height:74.621250pt;}
.h4{height:75.291250pt;}
.h28{height:109.472000pt;}
.h3{height:111.375000pt;}
.h6{height:115.830000pt;}
.h1c{height:450.693333pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w4{width:34.880000pt;}
.wb{width:48.640000pt;}
.wc{width:59.872000pt;}
.wd{width:62.752000pt;}
.w8{width:66.592000pt;}
.wf{width:77.472000pt;}
.w5{width:91.552000pt;}
.wa{width:95.712000pt;}
.w10{width:100.832000pt;}
.we{width:146.626667pt;}
.w16{width:149.826667pt;}
.w12{width:161.026667pt;}
.w17{width:167.106667pt;}
.w15{width:215.453333pt;}
.w13{width:273.733333pt;}
.w6{width:383.840000pt;}
.w3{width:475.386667pt;}
.w11{width:481.146667pt;}
.w9{width:531.746667pt;}
.w7{width:599.933333pt;}
.w14{width:614.013333pt;}
.w1{width:793.333333pt;}
.w2{width:793.599988pt;}
.w0{width:793.600000pt;}
.x0{left:0.000000pt;}
.x17{left:6.080000pt;}
.x12{left:7.360000pt;}
.x1b{left:10.240000pt;}
.x1e{left:11.200000pt;}
.x4c{left:12.160000pt;}
.x21{left:13.120000pt;}
.x2d{left:14.080000pt;}
.x1d{left:16.320000pt;}
.x25{left:17.920000pt;}
.x23{left:18.880000pt;}
.x19{left:19.872000pt;}
.x4e{left:21.120000pt;}
.x2a{left:22.400000pt;}
.x24{left:24.000000pt;}
.x27{left:25.920000pt;}
.x26{left:27.520000pt;}
.x33{left:28.480000pt;}
.x41{left:30.426667pt;}
.x4b{left:32.032000pt;}
.x16{left:33.632000pt;}
.x2c{left:35.232000pt;}
.x49{left:36.480000pt;}
.x47{left:37.440000pt;}
.x3f{left:39.066667pt;}
.x3c{left:40.026667pt;}
.x2b{left:41.600000pt;}
.x29{left:43.200000pt;}
.x28{left:46.720000pt;}
.x4d{left:48.986667pt;}
.x45{left:50.586667pt;}
.x32{left:57.626667pt;}
.x40{left:62.746667pt;}
.x4a{left:64.986667pt;}
.x3e{left:72.346667pt;}
.x48{left:73.306667pt;}
.x42{left:89.952000pt;}
.x2f{left:94.111988pt;}
.x8{left:96.031988pt;}
.x31{left:108.826667pt;}
.x14{left:120.063988pt;}
.x2e{left:139.906655pt;}
.x11{left:141.826667pt;}
.x15{left:144.066655pt;}
.x43{left:153.661333pt;}
.x30{left:155.266667pt;}
.x18{left:164.866667pt;}
.x39{left:168.066655pt;}
.x3{left:175.426655pt;}
.x3b{left:177.986667pt;}
.x4{left:181.506655pt;}
.xa{left:185.986655pt;}
.x7{left:186.946655pt;}
.x5{left:191.106655pt;}
.x3a{left:192.066655pt;}
.x1a{left:193.693333pt;}
.xf{left:196.893322pt;}
.x6{left:204.893322pt;}
.x9{left:208.733322pt;}
.x4f{left:228.253322pt;}
.xe{left:234.013322pt;}
.x38{left:235.933322pt;}
.x2{left:239.773322pt;}
.xd{left:243.293322pt;}
.x51{left:250.333322pt;}
.x35{left:257.053322pt;}
.xb{left:259.613322pt;}
.x60{left:261.853322pt;}
.x55{left:277.573322pt;}
.x61{left:286.213322pt;}
.x36{left:293.573322pt;}
.x1c{left:304.773333pt;}
.x59{left:311.173322pt;}
.x5f{left:313.733322pt;}
.x5b{left:318.853322pt;}
.x56{left:320.453322pt;}
.x5d{left:323.013322pt;}
.x62{left:325.893322pt;}
.x5e{left:331.973322pt;}
.x5a{left:334.533322pt;}
.x57{left:337.413322pt;}
.x3d{left:340.293333pt;}
.x5c{left:353.119988pt;}
.x58{left:366.239988pt;}
.x1f{left:368.800000pt;}
.x10{left:371.039988pt;}
.x44{left:385.440000pt;}
.x52{left:388.639988pt;}
.xc{left:392.799988pt;}
.x1{left:396.959988pt;}
.x54{left:445.946655pt;}
.x53{left:462.906655pt;}
.x20{left:517.026667pt;}
.x46{left:536.866667pt;}
.x50{left:569.826655pt;}
.x22{left:595.773333pt;}
.x13{left:617.213333pt;}
.x34{left:635.773322pt;}
.x37{left:649.853322pt;}
}




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