
    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_c0b851db7b17fe528da2cecf.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.895996;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_477cd0627bcf84fec0bdc96b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.690918;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_5f704dbd12ce759c31169773.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.172852;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_b7a167044eb5fc3fe2514dcf.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.311035;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_b60cfb2694fd3fa52899b2ce.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284668;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_c104b46d6ac86e9027b64fa3.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.112305;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_3fd79f6596dcd13caa4372da.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284180;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_3e4c81bbc22ffba3f1df3dce.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.284180;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_8f6f8bc366dc61271b490b87.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.040039;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_8dd64dd9353c6649ee6cb955.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.912109;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_5a6922acf9e29904b0acfb78.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.201172;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;}
.v2{vertical-align:18.000000px;}
.v1{vertical-align:27.360000px;}
.ls7{letter-spacing:-1.440000px;}
.ls18{letter-spacing:-1.080000px;}
.ls1d{letter-spacing:-0.720000px;}
.ls4{letter-spacing:-0.576000px;}
.ls17{letter-spacing:-0.360000px;}
.ls6{letter-spacing:-0.288000px;}
.ls2{letter-spacing:-0.216000px;}
.lsb{letter-spacing:-0.144000px;}
.lsd{letter-spacing:-0.108000px;}
.ls12{letter-spacing:-0.072000px;}
.ls0{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls3{letter-spacing:0.144000px;}
.ls16{letter-spacing:0.180000px;}
.ls10{letter-spacing:0.256200px;}
.ls1{letter-spacing:0.360000px;}
.lse{letter-spacing:0.432000px;}
.lsf{letter-spacing:0.504000px;}
.ls5{letter-spacing:0.576000px;}
.ls19{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.720000px;}
.ls1e{letter-spacing:0.840000px;}
.lsa{letter-spacing:0.864000px;}
.ls13{letter-spacing:1.152000px;}
.ls1a{letter-spacing:1.440000px;}
.ls1f{letter-spacing:3.600000px;}
.ls14{letter-spacing:7.920000px;}
.ls11{letter-spacing:10.080000px;}
.ls15{letter-spacing:10.800000px;}
.ls9{letter-spacing:12.240000px;}
.ls1b{letter-spacing:20.160000px;}
.ls1c{letter-spacing:849.185760px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-21.420000px;}
.ws16{word-spacing:-19.440000px;}
.ws0{word-spacing:-18.984000px;}
.ws9{word-spacing:-18.720000px;}
.ws15{word-spacing:-18.648000px;}
.ws7{word-spacing:-18.576000px;}
.ws6{word-spacing:-18.144000px;}
.wsf{word-spacing:-18.072000px;}
.ws4{word-spacing:-18.000000px;}
.wse{word-spacing:-17.928000px;}
.wsa{word-spacing:-17.856000px;}
.ws5{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws17{word-spacing:-17.424000px;}
.wsd{word-spacing:-17.280000px;}
.wsc{word-spacing:-15.226440px;}
.ws12{word-spacing:-13.860000px;}
.ws10{word-spacing:-13.500000px;}
.wsb{word-spacing:-13.392000px;}
.ws11{word-spacing:-13.140000px;}
.ws13{word-spacing:-12.420000px;}
.ws14{word-spacing:-9.000000px;}
.ws3{word-spacing:-0.072000px;}
.ws1{word-spacing:0.000000px;}
._20{margin-left:-5.400000px;}
._d{margin-left:-4.176000px;}
._c{margin-left:-2.688000px;}
._4{margin-left:-1.347840px;}
._3{width:1.697976px;}
._11{width:2.904144px;}
._14{width:4.127760px;}
._15{width:5.218344px;}
._19{width:6.912000px;}
._6{width:8.712000px;}
._7{width:9.863520px;}
._12{width:11.304000px;}
._13{width:12.390984px;}
._2{width:14.171976px;}
._8{width:15.264000px;}
._9{width:16.365864px;}
._5{width:19.491840px;}
._e{width:21.076320px;}
._1c{width:22.608000px;}
._1a{width:24.264000px;}
._0{width:26.064024px;}
._1{width:27.251952px;}
._1b{width:28.342200px;}
._25{width:29.485272px;}
._1e{width:30.648000px;}
._1f{width:32.052000px;}
._24{width:33.241704px;}
._21{width:35.208000px;}
._22{width:36.534024px;}
._23{width:38.277816px;}
._27{width:39.916416px;}
._16{width:41.160000px;}
._17{width:42.228000px;}
._1d{width:45.072000px;}
._10{width:47.466984px;}
._f{width:48.507840px;}
._a{width:57.168000px;}
._b{width:58.794024px;}
._26{width:60.323952px;}
._18{width:846.156000px;}
._28{width:849.185760px;}
.fc3{color:rgb(255,0,0);}
.fc1{color:rgb(0,0,255);}
.fc2{color:rgb(34,34,34);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:36.000000px;}
.fs6{font-size:48.240000px;}
.fs4{font-size:54.000000px;}
.fs1{font-size:66.240000px;}
.fs5{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs0{font-size:84.000000px;}
.fs2{font-size:84.240000px;}
.y0{bottom:0.000000px;}
.yb3{bottom:3.240000px;}
.yad{bottom:3.420000px;}
.yae{bottom:5.940000px;}
.yaa{bottom:12.780000px;}
.y108{bottom:14.580000px;}
.ya6{bottom:18.000000px;}
.y104{bottom:18.360000px;}
.y10a{bottom:18.720000px;}
.yac{bottom:18.900000px;}
.ya9{bottom:28.620000px;}
.y107{bottom:30.420000px;}
.ya5{bottom:33.840000px;}
.y103{bottom:34.020000px;}
.yb2{bottom:34.380000px;}
.yb1{bottom:49.860000px;}
.y7{bottom:57.456000px;}
.yb0{bottom:65.520000px;}
.y6{bottom:77.616000px;}
.y162{bottom:114.156000px;}
.y93{bottom:117.756000px;}
.y198{bottom:121.356000px;}
.y139{bottom:124.596000px;}
.y188{bottom:125.856000px;}
.y40{bottom:126.756000px;}
.y101{bottom:127.836000px;}
.yea{bottom:128.016000px;}
.y1ae{bottom:130.356000px;}
.yc9{bottom:130.896000px;}
.y161{bottom:134.856000px;}
.y6b{bottom:135.756000px;}
.y8a{bottom:139.896000px;}
.y197{bottom:142.056000px;}
.y138{bottom:145.296000px;}
.y187{bottom:146.556000px;}
.yd9{bottom:148.536000px;}
.y92{bottom:148.896000px;}
.ya3{bottom:150.870000px;}
.y1ad{bottom:155.550000px;}
.y3f{bottom:157.890000px;}
.y100{bottom:158.790000px;}
.ye9{bottom:159.150000px;}
.y160{bottom:160.050000px;}
.yc8{bottom:161.850000px;}
.y137{bottom:165.990000px;}
.y6a{bottom:166.890000px;}
.y196{bottom:167.250000px;}
.y89{bottom:170.850000px;}
.y186{bottom:171.750000px;}
.yd8{bottom:174.090000px;}
.y1a9{bottom:176.250000px;}
.y91{bottom:179.850000px;}
.y15f{bottom:180.750000px;}
.ya2{bottom:181.830000px;}
.y195{bottom:187.950000px;}
.y3e{bottom:188.850000px;}
.yff{bottom:189.930000px;}
.ye8{bottom:190.110000px;}
.y136{bottom:191.190000px;}
.y185{bottom:192.450000px;}
.yc7{bottom:192.990000px;}
.y1a8{bottom:196.950000px;}
.y69{bottom:197.850000px;}
.y15e{bottom:201.450000px;}
.y88{bottom:201.990000px;}
.y90{bottom:210.990000px;}
.y135{bottom:211.890000px;}
.ya1{bottom:212.970000px;}
.y194{bottom:213.150000px;}
.yd7{bottom:214.410000px;}
.y184{bottom:217.650000px;}
.y3d{bottom:219.990000px;}
.yfe{bottom:220.890000px;}
.ye7{bottom:221.250000px;}
.y15d{bottom:222.150000px;}
.yc6{bottom:223.950000px;}
.y68{bottom:228.990000px;}
.y110{bottom:232.590000px;}
.y87{bottom:232.950000px;}
.y193{bottom:233.850000px;}
.y183{bottom:238.350000px;}
.y8f{bottom:241.950000px;}
.y1a7{bottom:242.850000px;}
.ya0{bottom:243.930000px;}
.yd6{bottom:245.550000px;}
.y15c{bottom:247.350000px;}
.y3c{bottom:250.950000px;}
.yfd{bottom:252.030000px;}
.yc5{bottom:255.090000px;}
.y134{bottom:257.790000px;}
.y182{bottom:259.050000px;}
.y5a{bottom:259.950000px;}
.ye6{bottom:260.850000px;}
.y1a6{bottom:263.550000px;}
.y86{bottom:264.090000px;}
.y15b{bottom:268.050000px;}
.y1bd{bottom:269.850000px;}
.y10f{bottom:272.775000px;}
.y8e{bottom:273.135000px;}
.y9f{bottom:275.115000px;}
.yd5{bottom:276.555000px;}
.y133{bottom:278.535000px;}
.y192{bottom:279.795000px;}
.y3b{bottom:282.135000px;}
.y181{bottom:284.295000px;}
.yc4{bottom:286.095000px;}
.y1ac{bottom:288.795000px;}
.y59{bottom:291.135000px;}
.yfc{bottom:291.675000px;}
.y15a{bottom:293.295000px;}
.y85{bottom:295.095000px;}
.y132{bottom:299.235000px;}
.y67{bottom:300.135000px;}
.ye5{bottom:301.395000px;}
.y8d{bottom:304.095000px;}
.y180{bottom:304.995000px;}
.y9e{bottom:306.075000px;}
.yd4{bottom:307.695000px;}
.y1a5{bottom:309.495000px;}
.y1bc{bottom:309.855000px;}
.y3a{bottom:313.095000px;}
.y159{bottom:313.995000px;}
.yc3{bottom:317.235000px;}
.y58{bottom:322.095000px;}
.y131{bottom:324.435000px;}
.y17f{bottom:325.695000px;}
.y84{bottom:326.235000px;}
.y1a4{bottom:330.195000px;}
.y66{bottom:331.095000px;}
.yfb{bottom:332.175000px;}
.y158{bottom:334.695000px;}
.y8c{bottom:335.235000px;}
.y1f{bottom:336.495000px;}
.ye4{bottom:337.035000px;}
.y9d{bottom:337.215000px;}
.y1b5{bottom:337.935000px;}
.y39{bottom:344.235000px;}
.y130{bottom:345.135000px;}
.y191{bottom:346.395000px;}
.yd3{bottom:347.655000px;}
.yc2{bottom:348.195000px;}
.y1bb{bottom:348.915000px;}
.y17e{bottom:350.895000px;}
.y57{bottom:353.235000px;}
.y1ab{bottom:355.395000px;}
.ydf{bottom:357.195000px;}
.y157{bottom:359.895000px;}
.y65{bottom:362.235000px;}
.yfa{bottom:363.135000px;}
.y112{bottom:365.835000px;}
.y83{bottom:366.195000px;}
.y9c{bottom:368.175000px;}
.y12f{bottom:370.335000px;}
.y17d{bottom:371.595000px;}
.yd2{bottom:373.035000px;}
.y38{bottom:375.195000px;}
.y1a3{bottom:376.095000px;}
.y1e{bottom:376.455000px;}
.yc1{bottom:379.335000px;}
.y156{bottom:380.595000px;}
.y56{bottom:384.195000px;}
.y1b4{bottom:387.615000px;}
.y1ba{bottom:387.795000px;}
.yde{bottom:388.335000px;}
.y12e{bottom:391.035000px;}
.y17c{bottom:392.295000px;}
.y64{bottom:393.195000px;}
.yf9{bottom:394.095000px;}
.y1a2{bottom:396.795000px;}
.y82{bottom:397.335000px;}
.y9b{bottom:399.315000px;}
.y155{bottom:401.295000px;}
.y111{bottom:405.975000px;}
.y37{bottom:406.335000px;}
.yc0{bottom:410.295000px;}
.y12d{bottom:411.735000px;}
.y1b9{bottom:411.915000px;}
.y190{bottom:412.995000px;}
.y55{bottom:415.335000px;}
.y1d{bottom:416.955000px;}
.y17b{bottom:417.495000px;}
.ydd{bottom:419.295000px;}
.y1a1{bottom:421.995000px;}
.y63{bottom:424.335000px;}
.yf8{bottom:425.235000px;}
.y154{bottom:426.495000px;}
.y81{bottom:428.295000px;}
.y12c{bottom:432.435000px;}
.y36{bottom:437.295000px;}
.y1b3{bottom:438.015000px;}
.y17a{bottom:438.195000px;}
.y9a{bottom:438.915000px;}
.ybf{bottom:441.435000px;}
.y1a0{bottom:442.695000px;}
.y54{bottom:446.295000px;}
.y153{bottom:447.195000px;}
.y1c{bottom:447.915000px;}
.ydc{bottom:450.435000px;}
.y12b{bottom:453.135000px;}
.y62{bottom:455.295000px;}
.yf7{bottom:456.195000px;}
.y179{bottom:458.895000px;}
.y80{bottom:459.435000px;}
.y19f{bottom:463.395000px;}
.y1b2{bottom:467.535000px;}
.y1aa{bottom:467.895000px;}
.y35{bottom:468.435000px;}
.ybe{bottom:472.395000px;}
.y12a{bottom:473.835000px;}
.y53{bottom:477.435000px;}
.y18f{bottom:479.595000px;}
.ydb{bottom:481.395000px;}
.y178{bottom:484.095000px;}
.y61{bottom:486.435000px;}
.yf6{bottom:487.335000px;}
.yaf{bottom:487.875000px;}
.y1b{bottom:488.055000px;}
.y19e{bottom:488.595000px;}
.y99{bottom:489.675000px;}
.y7f{bottom:490.395000px;}
.y152{bottom:493.095000px;}
.y129{bottom:499.035000px;}
.y34{bottom:499.395000px;}
.ybd{bottom:503.535000px;}
.y177{bottom:504.795000px;}
.y52{bottom:508.395000px;}
.y19d{bottom:509.295000px;}
.ya8{bottom:513.075000px;}
.y151{bottom:513.795000px;}
.y60{bottom:517.395000px;}
.yf5{bottom:518.295000px;}
.y1a{bottom:519.015000px;}
.y128{bottom:519.735000px;}
.y7e{bottom:521.535000px;}
.yab{bottom:525.315000px;}
.y176{bottom:525.495000px;}
.y98{bottom:529.635000px;}
.y33{bottom:530.535000px;}
.ybc{bottom:534.495000px;}
.y150{bottom:538.995000px;}
.y51{bottom:539.535000px;}
.y127{bottom:544.935000px;}
.y5f{bottom:548.535000px;}
.yf4{bottom:549.435000px;}
.y19{bottom:550.155000px;}
.y175{bottom:550.695000px;}
.y7d{bottom:552.495000px;}
.y19c{bottom:555.195000px;}
.y14f{bottom:559.725000px;}
.y32{bottom:561.525000px;}
.ybb{bottom:565.665000px;}
.y97{bottom:568.905000px;}
.y50{bottom:570.525000px;}
.y174{bottom:571.425000px;}
.y18e{bottom:575.925000px;}
.y5e{bottom:579.525000px;}
.yf3{bottom:580.425000px;}
.y18{bottom:581.145000px;}
.y7c{bottom:583.665000px;}
.y1b1{bottom:584.925000px;}
.ye3{bottom:586.365000px;}
.y126{bottom:590.865000px;}
.yb4{bottom:592.665000px;}
.yba{bottom:596.625000px;}
.y19b{bottom:601.125000px;}
.y31{bottom:601.665000px;}
.y14e{bottom:605.625000px;}
.y96{bottom:608.145000px;}
.y5d{bottom:610.665000px;}
.y125{bottom:611.565000px;}
.y17{bottom:612.105000px;}
.y7b{bottom:614.625000px;}
.y173{bottom:617.325000px;}
.yf2{bottom:620.565000px;}
.ye2{bottom:621.465000px;}
.y18d{bottom:621.825000px;}
.yd0{bottom:623.625000px;}
.y14d{bottom:626.325000px;}
.yb9{bottom:627.765000px;}
.y1b0{bottom:630.825000px;}
.y124{bottom:632.265000px;}
.y30{bottom:632.625000px;}
.y106{bottom:638.385000px;}
.ya7{bottom:639.465000px;}
.ya4{bottom:640.185000px;}
.y5c{bottom:641.625000px;}
.y172{bottom:642.525000px;}
.y16{bottom:643.245000px;}
.y7a{bottom:645.765000px;}
.y19a{bottom:647.025000px;}
.y95{bottom:647.205000px;}
.y14c{bottom:651.525000px;}
.ye1{bottom:652.965000px;}
.y109{bottom:653.505000px;}
.ycf{bottom:654.765000px;}
.yb8{bottom:658.725000px;}
.yf1{bottom:660.525000px;}
.y171{bottom:663.225000px;}
.y2f{bottom:663.765000px;}
.y18c{bottom:667.725000px;}
.y14b{bottom:672.225000px;}
.y5b{bottom:672.765000px;}
.y15{bottom:674.205000px;}
.y79{bottom:676.725000px;}
.y123{bottom:678.165000px;}
.yce{bottom:685.725000px;}
.y94{bottom:686.445000px;}
.y170{bottom:688.425000px;}
.y14a{bottom:692.925000px;}
.y2e{bottom:694.725000px;}
.y1af{bottom:697.425000px;}
.yb7{bottom:698.505000px;}
.y122{bottom:698.865000px;}
.yf0{bottom:699.765000px;}
.y4f{bottom:703.725000px;}
.y14{bottom:705.345000px;}
.y78{bottom:707.865000px;}
.y16f{bottom:709.125000px;}
.y18b{bottom:713.625000px;}
.y8b{bottom:716.505000px;}
.ycd{bottom:716.865000px;}
.y149{bottom:718.125000px;}
.y121{bottom:719.565000px;}
.y2d{bottom:725.865000px;}
.y16e{bottom:734.325000px;}
.y4e{bottom:734.865000px;}
.y13{bottom:736.305000px;}
.y10e{bottom:736.845000px;}
.y1b8{bottom:737.925000px;}
.yb6{bottom:738.465000px;}
.y77{bottom:738.825000px;}
.y10d{bottom:741.885000px;}
.y10b{bottom:742.425000px;}
.y120{bottom:744.765000px;}
.ycc{bottom:747.825000px;}
.y16d{bottom:755.025000px;}
.y2c{bottom:756.825000px;}
.y18a{bottom:759.525000px;}
.y148{bottom:764.025000px;}
.y11f{bottom:765.465000px;}
.y4d{bottom:765.825000px;}
.y12{bottom:767.445000px;}
.y76{bottom:769.965000px;}
.y105{bottom:771.405000px;}
.y102{bottom:773.385000px;}
.y1b7{bottom:776.085000px;}
.yef{bottom:778.065000px;}
.yb5{bottom:778.605000px;}
.ycb{bottom:778.965000px;}
.y16c{bottom:780.225000px;}
.y147{bottom:784.725000px;}
.y11e{bottom:786.165000px;}
.y2b{bottom:787.965000px;}
.y4c{bottom:796.965000px;}
.y11{bottom:798.405000px;}
.y75{bottom:800.925000px;}
.y10c{bottom:805.065000px;}
.y146{bottom:805.425000px;}
.yca{bottom:809.925000px;}
.y11d{bottom:811.365000px;}
.yee{bottom:817.305000px;}
.y2a{bottom:818.925000px;}
.y16b{bottom:821.625000px;}
.y1b6{bottom:822.525000px;}
.y189{bottom:826.125000px;}
.y4b{bottom:827.925000px;}
.y10{bottom:829.545000px;}
.y145{bottom:830.625000px;}
.y74{bottom:832.065000px;}
.y16a{bottom:846.870000px;}
.y29{bottom:850.110000px;}
.y144{bottom:851.370000px;}
.y11c{bottom:852.810000px;}
.yed{bottom:856.770000px;}
.y4a{bottom:859.110000px;}
.yf{bottom:860.550000px;}
.yda{bottom:863.070000px;}
.y169{bottom:867.570000px;}
.y73{bottom:872.070000px;}
.y11b{bottom:878.010000px;}
.y28{bottom:881.070000px;}
.y49{bottom:890.070000px;}
.ye{bottom:891.690000px;}
.y168{bottom:892.770000px;}
.yec{bottom:896.730000px;}
.y143{bottom:897.270000px;}
.y11a{bottom:898.710000px;}
.y72{bottom:903.210000px;}
.y27{bottom:912.210000px;}
.y167{bottom:913.470000px;}
.y142{bottom:917.970000px;}
.y119{bottom:919.410000px;}
.y48{bottom:921.210000px;}
.yd{bottom:931.290000px;}
.yeb{bottom:932.550000px;}
.y71{bottom:934.170000px;}
.y141{bottom:938.670000px;}
.y26{bottom:943.170000px;}
.y118{bottom:944.610000px;}
.y47{bottom:952.170000px;}
.y5{bottom:953.776500px;}
.y166{bottom:959.370000px;}
.y140{bottom:963.870000px;}
.y70{bottom:965.310000px;}
.yc{bottom:971.430000px;}
.y25{bottom:974.310000px;}
.y4{bottom:979.540500px;}
.y165{bottom:980.070000px;}
.y46{bottom:983.310000px;}
.y13f{bottom:984.570000px;}
.y117{bottom:990.510000px;}
.y6f{bottom:996.270000px;}
.y24{bottom:1005.270000px;}
.y3{bottom:1005.304500px;}
.y116{bottom:1011.210000px;}
.yb{bottom:1011.390000px;}
.y45{bottom:1014.270000px;}
.y164{bottom:1025.970000px;}
.y6e{bottom:1027.410000px;}
.y13e{bottom:1030.470000px;}
.y2{bottom:1031.068500px;}
.y115{bottom:1031.910000px;}
.y23{bottom:1036.410000px;}
.y44{bottom:1045.410000px;}
.y199{bottom:1046.670000px;}
.y13d{bottom:1051.170000px;}
.ya{bottom:1054.050000px;}
.y1{bottom:1056.832500px;}
.y114{bottom:1057.110000px;}
.y6d{bottom:1058.370000px;}
.y22{bottom:1067.370000px;}
.ye0{bottom:1068.810000px;}
.y13c{bottom:1071.870000px;}
.y43{bottom:1076.370000px;}
.y113{bottom:1077.810000px;}
.y163{bottom:1092.570000px;}
.y13b{bottom:1097.070000px;}
.y6c{bottom:1098.150000px;}
.y21{bottom:1098.510000px;}
.y9{bottom:1099.230000px;}
.y42{bottom:1107.510000px;}
.y13a{bottom:1117.770000px;}
.y8{bottom:1135.440000px;}
.y20{bottom:1138.140000px;}
.y41{bottom:1138.500000px;}
.yd1{bottom:1139.940000px;}
.hc{height:18.180000px;}
.h15{height:30.960000px;}
.hb{height:31.176000px;}
.ha{height:40.860000px;}
.h14{height:42.660000px;}
.h8{height:46.080000px;}
.h10{height:46.251562px;}
.h13{height:46.260000px;}
.hf{height:50.273438px;}
.h9{height:52.998047px;}
.h2{height:60.292969px;}
.h7{height:64.546875px;}
.h11{height:65.010937px;}
.h3{height:65.884219px;}
.h17{height:66.757500px;}
.h16{height:67.824844px;}
.he{height:70.628906px;}
.h6{height:70.664062px;}
.h5{height:72.562500px;}
.h12{height:74.704922px;}
.hd{height:77.796000px;}
.h4{height:84.898125px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w8{width:41.760000px;}
.w7{width:41.796000px;}
.wd{width:82.080000px;}
.wf{width:82.116000px;}
.we{width:106.056000px;}
.w9{width:120.780000px;}
.wc{width:123.156000px;}
.w3{width:147.780000px;}
.w5{width:153.030000px;}
.wb{width:157.710000px;}
.w6{width:162.030000px;}
.w4{width:183.780000px;}
.wa{width:183.810000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x15{left:10.845000px;}
.x13{left:23.940000px;}
.x9{left:31.854000px;}
.xd{left:39.060000px;}
.xf{left:41.400000px;}
.xa{left:43.014000px;}
.x12{left:46.080000px;}
.x10{left:61.785000px;}
.x20{left:64.125000px;}
.xc{left:65.160000px;}
.x7{left:108.035987px;}
.x1{left:116.478000px;}
.x1d{left:138.096000px;}
.x26{left:141.695987px;}
.x8{left:144.216000px;}
.x3{left:161.129987px;}
.x6{left:189.209987px;}
.xe{left:255.630000px;}
.x22{left:284.070000px;}
.x14{left:291.270000px;}
.x1f{left:299.190000px;}
.x4{left:300.629987px;}
.x23{left:387.255000px;}
.x11{left:394.095000px;}
.x16{left:431.895000px;}
.x24{left:442.515000px;}
.x5{left:446.474987px;}
.x21{left:452.415000px;}
.x19{left:454.754987px;}
.xb{left:503.385000px;}
.x17{left:549.645000px;}
.x1e{left:572.325000px;}
.x25{left:624.345000px;}
.x27{left:636.764987px;}
.x28{left:691.304987px;}
.x1c{left:725.549987px;}
.x1a{left:729.149987px;}
.x1b{left:758.309987px;}
.x18{left:768.389987px;}
.x2{left:776.849987px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.000000pt;}
.v1{vertical-align:24.320000pt;}
.ls7{letter-spacing:-1.280000pt;}
.ls18{letter-spacing:-0.960000pt;}
.ls1d{letter-spacing:-0.640000pt;}
.ls4{letter-spacing:-0.512000pt;}
.ls17{letter-spacing:-0.320000pt;}
.ls6{letter-spacing:-0.256000pt;}
.ls2{letter-spacing:-0.192000pt;}
.lsb{letter-spacing:-0.128000pt;}
.lsd{letter-spacing:-0.096000pt;}
.ls12{letter-spacing:-0.064000pt;}
.ls0{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls3{letter-spacing:0.128000pt;}
.ls16{letter-spacing:0.160000pt;}
.ls10{letter-spacing:0.227733pt;}
.ls1{letter-spacing:0.320000pt;}
.lse{letter-spacing:0.384000pt;}
.lsf{letter-spacing:0.448000pt;}
.ls5{letter-spacing:0.512000pt;}
.ls19{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.746667pt;}
.lsa{letter-spacing:0.768000pt;}
.ls13{letter-spacing:1.024000pt;}
.ls1a{letter-spacing:1.280000pt;}
.ls1f{letter-spacing:3.200000pt;}
.ls14{letter-spacing:7.040000pt;}
.ls11{letter-spacing:8.960000pt;}
.ls15{letter-spacing:9.600000pt;}
.ls9{letter-spacing:10.880000pt;}
.ls1b{letter-spacing:17.920000pt;}
.ls1c{letter-spacing:754.831787pt;}
.ws2{word-spacing:-19.040000pt;}
.ws16{word-spacing:-17.280000pt;}
.ws0{word-spacing:-16.874667pt;}
.ws9{word-spacing:-16.640000pt;}
.ws15{word-spacing:-16.576000pt;}
.ws7{word-spacing:-16.512000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsf{word-spacing:-16.064000pt;}
.ws4{word-spacing:-16.000000pt;}
.wse{word-spacing:-15.936000pt;}
.wsa{word-spacing:-15.872000pt;}
.ws5{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws17{word-spacing:-15.488000pt;}
.wsd{word-spacing:-15.360000pt;}
.wsc{word-spacing:-13.534613pt;}
.ws12{word-spacing:-12.320000pt;}
.ws10{word-spacing:-12.000000pt;}
.wsb{word-spacing:-11.904000pt;}
.ws11{word-spacing:-11.680000pt;}
.ws13{word-spacing:-11.040000pt;}
.ws14{word-spacing:-8.000000pt;}
.ws3{word-spacing:-0.064000pt;}
.ws1{word-spacing:0.000000pt;}
._20{margin-left:-4.800000pt;}
._d{margin-left:-3.712000pt;}
._c{margin-left:-2.389333pt;}
._4{margin-left:-1.198080pt;}
._3{width:1.509312pt;}
._11{width:2.581461pt;}
._14{width:3.669120pt;}
._15{width:4.638528pt;}
._19{width:6.144000pt;}
._6{width:7.744000pt;}
._7{width:8.767573pt;}
._12{width:10.048000pt;}
._13{width:11.014208pt;}
._2{width:12.597312pt;}
._8{width:13.568000pt;}
._9{width:14.547435pt;}
._5{width:17.326080pt;}
._e{width:18.734507pt;}
._1c{width:20.096000pt;}
._1a{width:21.568000pt;}
._0{width:23.168021pt;}
._1{width:24.223957pt;}
._1b{width:25.193067pt;}
._25{width:26.209131pt;}
._1e{width:27.242667pt;}
._1f{width:28.490667pt;}
._24{width:29.548181pt;}
._21{width:31.296000pt;}
._22{width:32.474688pt;}
._23{width:34.024725pt;}
._27{width:35.481259pt;}
._16{width:36.586667pt;}
._17{width:37.536000pt;}
._1d{width:40.064000pt;}
._10{width:42.192875pt;}
._f{width:43.118080pt;}
._a{width:50.816000pt;}
._b{width:52.261355pt;}
._26{width:53.621291pt;}
._18{width:752.138667pt;}
._28{width:754.831787pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:42.880000pt;}
.fs4{font-size:48.000000pt;}
.fs1{font-size:58.880000pt;}
.fs5{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs0{font-size:74.666667pt;}
.fs2{font-size:74.880000pt;}
.y0{bottom:0.000000pt;}
.yb3{bottom:2.880000pt;}
.yad{bottom:3.040000pt;}
.yae{bottom:5.280000pt;}
.yaa{bottom:11.360000pt;}
.y108{bottom:12.960000pt;}
.ya6{bottom:16.000000pt;}
.y104{bottom:16.320000pt;}
.y10a{bottom:16.640000pt;}
.yac{bottom:16.800000pt;}
.ya9{bottom:25.440000pt;}
.y107{bottom:27.040000pt;}
.ya5{bottom:30.080000pt;}
.y103{bottom:30.240000pt;}
.yb2{bottom:30.560000pt;}
.yb1{bottom:44.320000pt;}
.y7{bottom:51.072000pt;}
.yb0{bottom:58.240000pt;}
.y6{bottom:68.992000pt;}
.y162{bottom:101.472000pt;}
.y93{bottom:104.672000pt;}
.y198{bottom:107.872000pt;}
.y139{bottom:110.752000pt;}
.y188{bottom:111.872000pt;}
.y40{bottom:112.672000pt;}
.y101{bottom:113.632000pt;}
.yea{bottom:113.792000pt;}
.y1ae{bottom:115.872000pt;}
.yc9{bottom:116.352000pt;}
.y161{bottom:119.872000pt;}
.y6b{bottom:120.672000pt;}
.y8a{bottom:124.352000pt;}
.y197{bottom:126.272000pt;}
.y138{bottom:129.152000pt;}
.y187{bottom:130.272000pt;}
.yd9{bottom:132.032000pt;}
.y92{bottom:132.352000pt;}
.ya3{bottom:134.106667pt;}
.y1ad{bottom:138.266667pt;}
.y3f{bottom:140.346667pt;}
.y100{bottom:141.146667pt;}
.ye9{bottom:141.466667pt;}
.y160{bottom:142.266667pt;}
.yc8{bottom:143.866667pt;}
.y137{bottom:147.546667pt;}
.y6a{bottom:148.346667pt;}
.y196{bottom:148.666667pt;}
.y89{bottom:151.866667pt;}
.y186{bottom:152.666667pt;}
.yd8{bottom:154.746667pt;}
.y1a9{bottom:156.666667pt;}
.y91{bottom:159.866667pt;}
.y15f{bottom:160.666667pt;}
.ya2{bottom:161.626667pt;}
.y195{bottom:167.066667pt;}
.y3e{bottom:167.866667pt;}
.yff{bottom:168.826667pt;}
.ye8{bottom:168.986667pt;}
.y136{bottom:169.946667pt;}
.y185{bottom:171.066667pt;}
.yc7{bottom:171.546667pt;}
.y1a8{bottom:175.066667pt;}
.y69{bottom:175.866667pt;}
.y15e{bottom:179.066667pt;}
.y88{bottom:179.546667pt;}
.y90{bottom:187.546667pt;}
.y135{bottom:188.346667pt;}
.ya1{bottom:189.306667pt;}
.y194{bottom:189.466667pt;}
.yd7{bottom:190.586667pt;}
.y184{bottom:193.466667pt;}
.y3d{bottom:195.546667pt;}
.yfe{bottom:196.346667pt;}
.ye7{bottom:196.666667pt;}
.y15d{bottom:197.466667pt;}
.yc6{bottom:199.066667pt;}
.y68{bottom:203.546667pt;}
.y110{bottom:206.746667pt;}
.y87{bottom:207.066667pt;}
.y193{bottom:207.866667pt;}
.y183{bottom:211.866667pt;}
.y8f{bottom:215.066667pt;}
.y1a7{bottom:215.866667pt;}
.ya0{bottom:216.826667pt;}
.yd6{bottom:218.266667pt;}
.y15c{bottom:219.866667pt;}
.y3c{bottom:223.066667pt;}
.yfd{bottom:224.026667pt;}
.yc5{bottom:226.746667pt;}
.y134{bottom:229.146667pt;}
.y182{bottom:230.266667pt;}
.y5a{bottom:231.066667pt;}
.ye6{bottom:231.866667pt;}
.y1a6{bottom:234.266667pt;}
.y86{bottom:234.746667pt;}
.y15b{bottom:238.266667pt;}
.y1bd{bottom:239.866667pt;}
.y10f{bottom:242.466667pt;}
.y8e{bottom:242.786667pt;}
.y9f{bottom:244.546667pt;}
.yd5{bottom:245.826667pt;}
.y133{bottom:247.586667pt;}
.y192{bottom:248.706667pt;}
.y3b{bottom:250.786667pt;}
.y181{bottom:252.706667pt;}
.yc4{bottom:254.306667pt;}
.y1ac{bottom:256.706667pt;}
.y59{bottom:258.786667pt;}
.yfc{bottom:259.266667pt;}
.y15a{bottom:260.706667pt;}
.y85{bottom:262.306667pt;}
.y132{bottom:265.986667pt;}
.y67{bottom:266.786667pt;}
.ye5{bottom:267.906667pt;}
.y8d{bottom:270.306667pt;}
.y180{bottom:271.106667pt;}
.y9e{bottom:272.066667pt;}
.yd4{bottom:273.506667pt;}
.y1a5{bottom:275.106667pt;}
.y1bc{bottom:275.426667pt;}
.y3a{bottom:278.306667pt;}
.y159{bottom:279.106667pt;}
.yc3{bottom:281.986667pt;}
.y58{bottom:286.306667pt;}
.y131{bottom:288.386667pt;}
.y17f{bottom:289.506667pt;}
.y84{bottom:289.986667pt;}
.y1a4{bottom:293.506667pt;}
.y66{bottom:294.306667pt;}
.yfb{bottom:295.266667pt;}
.y158{bottom:297.506667pt;}
.y8c{bottom:297.986667pt;}
.y1f{bottom:299.106667pt;}
.ye4{bottom:299.586667pt;}
.y9d{bottom:299.746667pt;}
.y1b5{bottom:300.386667pt;}
.y39{bottom:305.986667pt;}
.y130{bottom:306.786667pt;}
.y191{bottom:307.906667pt;}
.yd3{bottom:309.026667pt;}
.yc2{bottom:309.506667pt;}
.y1bb{bottom:310.146667pt;}
.y17e{bottom:311.906667pt;}
.y57{bottom:313.986667pt;}
.y1ab{bottom:315.906667pt;}
.ydf{bottom:317.506667pt;}
.y157{bottom:319.906667pt;}
.y65{bottom:321.986667pt;}
.yfa{bottom:322.786667pt;}
.y112{bottom:325.186667pt;}
.y83{bottom:325.506667pt;}
.y9c{bottom:327.266667pt;}
.y12f{bottom:329.186667pt;}
.y17d{bottom:330.306667pt;}
.yd2{bottom:331.586667pt;}
.y38{bottom:333.506667pt;}
.y1a3{bottom:334.306667pt;}
.y1e{bottom:334.626667pt;}
.yc1{bottom:337.186667pt;}
.y156{bottom:338.306667pt;}
.y56{bottom:341.506667pt;}
.y1b4{bottom:344.546667pt;}
.y1ba{bottom:344.706667pt;}
.yde{bottom:345.186667pt;}
.y12e{bottom:347.586667pt;}
.y17c{bottom:348.706667pt;}
.y64{bottom:349.506667pt;}
.yf9{bottom:350.306667pt;}
.y1a2{bottom:352.706667pt;}
.y82{bottom:353.186667pt;}
.y9b{bottom:354.946667pt;}
.y155{bottom:356.706667pt;}
.y111{bottom:360.866667pt;}
.y37{bottom:361.186667pt;}
.yc0{bottom:364.706667pt;}
.y12d{bottom:365.986667pt;}
.y1b9{bottom:366.146667pt;}
.y190{bottom:367.106667pt;}
.y55{bottom:369.186667pt;}
.y1d{bottom:370.626667pt;}
.y17b{bottom:371.106667pt;}
.ydd{bottom:372.706667pt;}
.y1a1{bottom:375.106667pt;}
.y63{bottom:377.186667pt;}
.yf8{bottom:377.986667pt;}
.y154{bottom:379.106667pt;}
.y81{bottom:380.706667pt;}
.y12c{bottom:384.386667pt;}
.y36{bottom:388.706667pt;}
.y1b3{bottom:389.346667pt;}
.y17a{bottom:389.506667pt;}
.y9a{bottom:390.146667pt;}
.ybf{bottom:392.386667pt;}
.y1a0{bottom:393.506667pt;}
.y54{bottom:396.706667pt;}
.y153{bottom:397.506667pt;}
.y1c{bottom:398.146667pt;}
.ydc{bottom:400.386667pt;}
.y12b{bottom:402.786667pt;}
.y62{bottom:404.706667pt;}
.yf7{bottom:405.506667pt;}
.y179{bottom:407.906667pt;}
.y80{bottom:408.386667pt;}
.y19f{bottom:411.906667pt;}
.y1b2{bottom:415.586667pt;}
.y1aa{bottom:415.906667pt;}
.y35{bottom:416.386667pt;}
.ybe{bottom:419.906667pt;}
.y12a{bottom:421.186667pt;}
.y53{bottom:424.386667pt;}
.y18f{bottom:426.306667pt;}
.ydb{bottom:427.906667pt;}
.y178{bottom:430.306667pt;}
.y61{bottom:432.386667pt;}
.yf6{bottom:433.186667pt;}
.yaf{bottom:433.666667pt;}
.y1b{bottom:433.826667pt;}
.y19e{bottom:434.306667pt;}
.y99{bottom:435.266667pt;}
.y7f{bottom:435.906667pt;}
.y152{bottom:438.306667pt;}
.y129{bottom:443.586667pt;}
.y34{bottom:443.906667pt;}
.ybd{bottom:447.586667pt;}
.y177{bottom:448.706667pt;}
.y52{bottom:451.906667pt;}
.y19d{bottom:452.706667pt;}
.ya8{bottom:456.066667pt;}
.y151{bottom:456.706667pt;}
.y60{bottom:459.906667pt;}
.yf5{bottom:460.706667pt;}
.y1a{bottom:461.346667pt;}
.y128{bottom:461.986667pt;}
.y7e{bottom:463.586667pt;}
.yab{bottom:466.946667pt;}
.y176{bottom:467.106667pt;}
.y98{bottom:470.786667pt;}
.y33{bottom:471.586667pt;}
.ybc{bottom:475.106667pt;}
.y150{bottom:479.106667pt;}
.y51{bottom:479.586667pt;}
.y127{bottom:484.386667pt;}
.y5f{bottom:487.586667pt;}
.yf4{bottom:488.386667pt;}
.y19{bottom:489.026667pt;}
.y175{bottom:489.506667pt;}
.y7d{bottom:491.106667pt;}
.y19c{bottom:493.506667pt;}
.y14f{bottom:497.533333pt;}
.y32{bottom:499.133333pt;}
.ybb{bottom:502.813333pt;}
.y97{bottom:505.693333pt;}
.y50{bottom:507.133333pt;}
.y174{bottom:507.933333pt;}
.y18e{bottom:511.933333pt;}
.y5e{bottom:515.133333pt;}
.yf3{bottom:515.933333pt;}
.y18{bottom:516.573333pt;}
.y7c{bottom:518.813333pt;}
.y1b1{bottom:519.933333pt;}
.ye3{bottom:521.213333pt;}
.y126{bottom:525.213333pt;}
.yb4{bottom:526.813333pt;}
.yba{bottom:530.333333pt;}
.y19b{bottom:534.333333pt;}
.y31{bottom:534.813333pt;}
.y14e{bottom:538.333333pt;}
.y96{bottom:540.573333pt;}
.y5d{bottom:542.813333pt;}
.y125{bottom:543.613333pt;}
.y17{bottom:544.093333pt;}
.y7b{bottom:546.333333pt;}
.y173{bottom:548.733333pt;}
.yf2{bottom:551.613333pt;}
.ye2{bottom:552.413333pt;}
.y18d{bottom:552.733333pt;}
.yd0{bottom:554.333333pt;}
.y14d{bottom:556.733333pt;}
.yb9{bottom:558.013333pt;}
.y1b0{bottom:560.733333pt;}
.y124{bottom:562.013333pt;}
.y30{bottom:562.333333pt;}
.y106{bottom:567.453333pt;}
.ya7{bottom:568.413333pt;}
.ya4{bottom:569.053333pt;}
.y5c{bottom:570.333333pt;}
.y172{bottom:571.133333pt;}
.y16{bottom:571.773333pt;}
.y7a{bottom:574.013333pt;}
.y19a{bottom:575.133333pt;}
.y95{bottom:575.293333pt;}
.y14c{bottom:579.133333pt;}
.ye1{bottom:580.413333pt;}
.y109{bottom:580.893333pt;}
.ycf{bottom:582.013333pt;}
.yb8{bottom:585.533333pt;}
.yf1{bottom:587.133333pt;}
.y171{bottom:589.533333pt;}
.y2f{bottom:590.013333pt;}
.y18c{bottom:593.533333pt;}
.y14b{bottom:597.533333pt;}
.y5b{bottom:598.013333pt;}
.y15{bottom:599.293333pt;}
.y79{bottom:601.533333pt;}
.y123{bottom:602.813333pt;}
.yce{bottom:609.533333pt;}
.y94{bottom:610.173333pt;}
.y170{bottom:611.933333pt;}
.y14a{bottom:615.933333pt;}
.y2e{bottom:617.533333pt;}
.y1af{bottom:619.933333pt;}
.yb7{bottom:620.893333pt;}
.y122{bottom:621.213333pt;}
.yf0{bottom:622.013333pt;}
.y4f{bottom:625.533333pt;}
.y14{bottom:626.973333pt;}
.y78{bottom:629.213333pt;}
.y16f{bottom:630.333333pt;}
.y18b{bottom:634.333333pt;}
.y8b{bottom:636.893333pt;}
.ycd{bottom:637.213333pt;}
.y149{bottom:638.333333pt;}
.y121{bottom:639.613333pt;}
.y2d{bottom:645.213333pt;}
.y16e{bottom:652.733333pt;}
.y4e{bottom:653.213333pt;}
.y13{bottom:654.493333pt;}
.y10e{bottom:654.973333pt;}
.y1b8{bottom:655.933333pt;}
.yb6{bottom:656.413333pt;}
.y77{bottom:656.733333pt;}
.y10d{bottom:659.453333pt;}
.y10b{bottom:659.933333pt;}
.y120{bottom:662.013333pt;}
.ycc{bottom:664.733333pt;}
.y16d{bottom:671.133333pt;}
.y2c{bottom:672.733333pt;}
.y18a{bottom:675.133333pt;}
.y148{bottom:679.133333pt;}
.y11f{bottom:680.413333pt;}
.y4d{bottom:680.733333pt;}
.y12{bottom:682.173333pt;}
.y76{bottom:684.413333pt;}
.y105{bottom:685.693333pt;}
.y102{bottom:687.453333pt;}
.y1b7{bottom:689.853333pt;}
.yef{bottom:691.613333pt;}
.yb5{bottom:692.093333pt;}
.ycb{bottom:692.413333pt;}
.y16c{bottom:693.533333pt;}
.y147{bottom:697.533333pt;}
.y11e{bottom:698.813333pt;}
.y2b{bottom:700.413333pt;}
.y4c{bottom:708.413333pt;}
.y11{bottom:709.693333pt;}
.y75{bottom:711.933333pt;}
.y10c{bottom:715.613333pt;}
.y146{bottom:715.933333pt;}
.yca{bottom:719.933333pt;}
.y11d{bottom:721.213333pt;}
.yee{bottom:726.493333pt;}
.y2a{bottom:727.933333pt;}
.y16b{bottom:730.333333pt;}
.y1b6{bottom:731.133333pt;}
.y189{bottom:734.333333pt;}
.y4b{bottom:735.933333pt;}
.y10{bottom:737.373333pt;}
.y145{bottom:738.333333pt;}
.y74{bottom:739.613333pt;}
.y16a{bottom:752.773333pt;}
.y29{bottom:755.653333pt;}
.y144{bottom:756.773333pt;}
.y11c{bottom:758.053333pt;}
.yed{bottom:761.573333pt;}
.y4a{bottom:763.653333pt;}
.yf{bottom:764.933333pt;}
.yda{bottom:767.173333pt;}
.y169{bottom:771.173333pt;}
.y73{bottom:775.173333pt;}
.y11b{bottom:780.453333pt;}
.y28{bottom:783.173333pt;}
.y49{bottom:791.173333pt;}
.ye{bottom:792.613333pt;}
.y168{bottom:793.573333pt;}
.yec{bottom:797.093333pt;}
.y143{bottom:797.573333pt;}
.y11a{bottom:798.853333pt;}
.y72{bottom:802.853333pt;}
.y27{bottom:810.853333pt;}
.y167{bottom:811.973333pt;}
.y142{bottom:815.973333pt;}
.y119{bottom:817.253333pt;}
.y48{bottom:818.853333pt;}
.yd{bottom:827.813333pt;}
.yeb{bottom:828.933333pt;}
.y71{bottom:830.373333pt;}
.y141{bottom:834.373333pt;}
.y26{bottom:838.373333pt;}
.y118{bottom:839.653333pt;}
.y47{bottom:846.373333pt;}
.y5{bottom:847.801333pt;}
.y166{bottom:852.773333pt;}
.y140{bottom:856.773333pt;}
.y70{bottom:858.053333pt;}
.yc{bottom:863.493333pt;}
.y25{bottom:866.053333pt;}
.y4{bottom:870.702667pt;}
.y165{bottom:871.173333pt;}
.y46{bottom:874.053333pt;}
.y13f{bottom:875.173333pt;}
.y117{bottom:880.453333pt;}
.y6f{bottom:885.573333pt;}
.y24{bottom:893.573333pt;}
.y3{bottom:893.604000pt;}
.y116{bottom:898.853333pt;}
.yb{bottom:899.013333pt;}
.y45{bottom:901.573333pt;}
.y164{bottom:911.973333pt;}
.y6e{bottom:913.253333pt;}
.y13e{bottom:915.973333pt;}
.y2{bottom:916.505333pt;}
.y115{bottom:917.253333pt;}
.y23{bottom:921.253333pt;}
.y44{bottom:929.253333pt;}
.y199{bottom:930.373333pt;}
.y13d{bottom:934.373333pt;}
.ya{bottom:936.933333pt;}
.y1{bottom:939.406667pt;}
.y114{bottom:939.653333pt;}
.y6d{bottom:940.773333pt;}
.y22{bottom:948.773333pt;}
.ye0{bottom:950.053333pt;}
.y13c{bottom:952.773333pt;}
.y43{bottom:956.773333pt;}
.y113{bottom:958.053333pt;}
.y163{bottom:971.173333pt;}
.y13b{bottom:975.173333pt;}
.y6c{bottom:976.133333pt;}
.y21{bottom:976.453333pt;}
.y9{bottom:977.093333pt;}
.y42{bottom:984.453333pt;}
.y13a{bottom:993.573333pt;}
.y8{bottom:1009.280000pt;}
.y20{bottom:1011.680000pt;}
.y41{bottom:1012.000000pt;}
.yd1{bottom:1013.280000pt;}
.hc{height:16.160000pt;}
.h15{height:27.520000pt;}
.hb{height:27.712000pt;}
.ha{height:36.320000pt;}
.h14{height:37.920000pt;}
.h8{height:40.960000pt;}
.h10{height:41.112500pt;}
.h13{height:41.120000pt;}
.hf{height:44.687500pt;}
.h9{height:47.109375pt;}
.h2{height:53.593750pt;}
.h7{height:57.375000pt;}
.h11{height:57.787500pt;}
.h3{height:58.563750pt;}
.h17{height:59.340000pt;}
.h16{height:60.288750pt;}
.he{height:62.781250pt;}
.h6{height:62.812500pt;}
.h5{height:64.500000pt;}
.h12{height:66.404375pt;}
.hd{height:69.152000pt;}
.h4{height:75.465000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w8{width:37.120000pt;}
.w7{width:37.152000pt;}
.wd{width:72.960000pt;}
.wf{width:72.992000pt;}
.we{width:94.272000pt;}
.w9{width:107.360000pt;}
.wc{width:109.472000pt;}
.w3{width:131.360000pt;}
.w5{width:136.026667pt;}
.wb{width:140.186667pt;}
.w6{width:144.026667pt;}
.w4{width:163.360000pt;}
.wa{width:163.386667pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x15{left:9.640000pt;}
.x13{left:21.280000pt;}
.x9{left:28.314667pt;}
.xd{left:34.720000pt;}
.xf{left:36.800000pt;}
.xa{left:38.234667pt;}
.x12{left:40.960000pt;}
.x10{left:54.920000pt;}
.x20{left:57.000000pt;}
.xc{left:57.920000pt;}
.x7{left:96.031988pt;}
.x1{left:103.536000pt;}
.x1d{left:122.752000pt;}
.x26{left:125.951988pt;}
.x8{left:128.192000pt;}
.x3{left:143.226655pt;}
.x6{left:168.186655pt;}
.xe{left:227.226667pt;}
.x22{left:252.506667pt;}
.x14{left:258.906667pt;}
.x1f{left:265.946667pt;}
.x4{left:267.226655pt;}
.x23{left:344.226667pt;}
.x11{left:350.306667pt;}
.x16{left:383.906667pt;}
.x24{left:393.346667pt;}
.x5{left:396.866655pt;}
.x21{left:402.146667pt;}
.x19{left:404.226655pt;}
.xb{left:447.453333pt;}
.x17{left:488.573333pt;}
.x1e{left:508.733333pt;}
.x25{left:554.973333pt;}
.x27{left:566.013322pt;}
.x28{left:614.493322pt;}
.x1c{left:644.933322pt;}
.x1a{left:648.133322pt;}
.x1b{left:674.053322pt;}
.x18{left:683.013322pt;}
.x2{left:690.533322pt;}
}




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