
    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_b02c00ad5f616660eda9f6e1.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.718000;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_5778c27f4c71d6449d030362.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.722000;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_6388028dd2de6951fe1361f5.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_d8f4922dc6fcd9321119b1f6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.951172;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_45422d95c5552d03fb73f9a3.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_b594e2896905fa91cc46c5aa.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.106934;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_03ddf6499cd17dcd437418bc.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.722000;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_a171a7631d5b371dcc0fb1f5.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.700000;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_35a92de22ff77378ab8eeaee.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_d5b773f926b0e760ee9b0e76.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.951172;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_224ad532da423f555dc9725e.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.106934;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_df6bb6c0d4dc8a4eec331bfe.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.740234;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_a171a7631d5b371dcc0fb1f5.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.700000;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_03ddf6499cd17dcd437418bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.722000;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:fff;src:url('chunks/assets/font_679e34ac3a9f90a8555060c0.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_03ddf6499cd17dcd437418bc.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.722000;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:ff11;src:url('chunks/assets/font_a171a7631d5b371dcc0fb1f5.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.700000;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:ff12;src:url('chunks/assets/font_41d2f5954b6b2803814f1a74.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;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:ff13;src:url('chunks/assets/font_a8f6d56ef9b1bcc970a5fdc5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.935547;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.000000,0.250000,-0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,0.250000,-0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m1{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);}
.v3{vertical-align:-15.984000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:1.488000px;}
.v4{vertical-align:15.984000px;}
.v1{vertical-align:17.982000px;}
.lsf{letter-spacing:-2.640000px;}
.lse{letter-spacing:-1.920000px;}
.lsd{letter-spacing:-0.480000px;}
.ls3{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.270000px;}
.ls2{letter-spacing:0.000000px;}
.ls6{letter-spacing:0.004296px;}
.ls9{letter-spacing:0.540000px;}
.ls13{letter-spacing:0.960000px;}
.lsb{letter-spacing:1.258200px;}
.ls11{letter-spacing:2.256000px;}
.ls16{letter-spacing:2.707200px;}
.lsa{letter-spacing:2.862000px;}
.ls17{letter-spacing:3.643200px;}
.ls12{letter-spacing:6.816000px;}
.ls14{letter-spacing:7.056000px;}
.lsc{letter-spacing:8.217600px;}
.ls0{letter-spacing:8.400000px;}
.ls1a{letter-spacing:9.600000px;}
.ls10{letter-spacing:9.696000px;}
.ls1{letter-spacing:10.800000px;}
.ls15{letter-spacing:12.864000px;}
.ls7{letter-spacing:13.200000px;}
.ls18{letter-spacing:13.344000px;}
.ls8{letter-spacing:18.343800px;}
.ls19{letter-spacing:30.816000px;}
.ls5{letter-spacing:2831.889000px;}
.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;}
}
.ws88{word-spacing:-30.816000px;}
.ws49{word-spacing:-15.228000px;}
.ws2b{word-spacing:-15.012000px;}
.ws6{word-spacing:-14.742000px;}
.ws11{word-spacing:-13.344000px;}
.ws4f{word-spacing:-10.704000px;}
.ws1{word-spacing:-10.008000px;}
.ws92{word-spacing:-9.600000px;}
.ws5{word-spacing:-8.751996px;}
.ws0{word-spacing:-8.484000px;}
.ws12{word-spacing:-7.779552px;}
.ws95{word-spacing:-5.232000px;}
.ws14{word-spacing:-5.130000px;}
.ws83{word-spacing:-3.984000px;}
.ws42{word-spacing:-3.834000px;}
.ws90{word-spacing:-3.168000px;}
.ws6e{word-spacing:-3.120000px;}
.wse{word-spacing:-3.024000px;}
.ws29{word-spacing:-2.700000px;}
.ws30{word-spacing:-2.646000px;}
.ws6b{word-spacing:-2.640000px;}
.ws85{word-spacing:-2.304000px;}
.wsc{word-spacing:-2.052000px;}
.ws17{word-spacing:-1.998000px;}
.ws79{word-spacing:-1.920000px;}
.ws5d{word-spacing:-1.776000px;}
.ws66{word-spacing:-1.536000px;}
.ws5c{word-spacing:-1.440000px;}
.ws68{word-spacing:-1.200000px;}
.ws1b{word-spacing:-1.188000px;}
.ws35{word-spacing:-1.080000px;}
.ws8d{word-spacing:-1.056000px;}
.ws26{word-spacing:-0.864000px;}
.ws19{word-spacing:-0.702000px;}
.ws8a{word-spacing:-0.672000px;}
.ws59{word-spacing:-0.576000px;}
.ws1f{word-spacing:-0.540000px;}
.ws76{word-spacing:-0.336000px;}
.ws3a{word-spacing:-0.108000px;}
.ws8{word-spacing:0.000000px;}
.wsd{word-spacing:0.270000px;}
.ws91{word-spacing:0.432000px;}
.ws5a{word-spacing:0.480000px;}
.wsa{word-spacing:0.588000px;}
.ws1e{word-spacing:0.648000px;}
.ws4b{word-spacing:0.756000px;}
.ws22{word-spacing:0.864000px;}
.ws74{word-spacing:0.960000px;}
.ws4a{word-spacing:1.134000px;}
.ws96{word-spacing:1.152000px;}
.ws41{word-spacing:1.296000px;}
.ws13{word-spacing:1.632000px;}
.ws1c{word-spacing:1.674000px;}
.ws25{word-spacing:1.782000px;}
.ws23{word-spacing:1.836000px;}
.ws34{word-spacing:1.890000px;}
.ws69{word-spacing:1.920000px;}
.ws9{word-spacing:2.016000px;}
.ws55{word-spacing:2.208000px;}
.ws33{word-spacing:2.322000px;}
.ws93{word-spacing:2.640000px;}
.ws52{word-spacing:2.736000px;}
.ws56{word-spacing:2.880000px;}
.ws80{word-spacing:2.976000px;}
.ws28{word-spacing:3.132000px;}
.ws71{word-spacing:3.216000px;}
.ws77{word-spacing:3.360000px;}
.ws75{word-spacing:3.552000px;}
.ws15{word-spacing:3.618000px;}
.ws18{word-spacing:3.672000px;}
.ws51{word-spacing:3.792000px;}
.ws86{word-spacing:3.984000px;}
.ws6d{word-spacing:4.224000px;}
.ws47{word-spacing:4.266000px;}
.ws36{word-spacing:4.320000px;}
.ws6c{word-spacing:4.416000px;}
.ws31{word-spacing:4.428000px;}
.ws94{word-spacing:4.512000px;}
.ws3f{word-spacing:4.536000px;}
.wsf{word-spacing:4.698000px;}
.ws2a{word-spacing:4.806000px;}
.ws8e{word-spacing:4.896000px;}
.ws2f{word-spacing:5.076000px;}
.ws4d{word-spacing:5.292000px;}
.ws67{word-spacing:5.424000px;}
.ws2d{word-spacing:5.670000px;}
.ws53{word-spacing:5.808000px;}
.ws46{word-spacing:5.886000px;}
.ws64{word-spacing:6.288000px;}
.ws70{word-spacing:6.336000px;}
.ws2e{word-spacing:6.372000px;}
.ws3c{word-spacing:6.804000px;}
.ws78{word-spacing:6.864000px;}
.ws16{word-spacing:7.020000px;}
.ws81{word-spacing:7.056000px;}
.ws7e{word-spacing:7.344000px;}
.ws72{word-spacing:7.488000px;}
.ws3e{word-spacing:7.506000px;}
.ws37{word-spacing:7.830000px;}
.ws89{word-spacing:7.968000px;}
.ws1d{word-spacing:7.992000px;}
.ws24{word-spacing:8.154000px;}
.ws38{word-spacing:8.208000px;}
.wsb{word-spacing:8.316000px;}
.ws5e{word-spacing:8.688000px;}
.ws39{word-spacing:8.694000px;}
.ws8f{word-spacing:8.736000px;}
.ws65{word-spacing:8.880000px;}
.ws8c{word-spacing:9.072000px;}
.ws21{word-spacing:9.234000px;}
.ws7a{word-spacing:9.408000px;}
.ws57{word-spacing:9.504000px;}
.ws3b{word-spacing:9.558000px;}
.ws73{word-spacing:9.696000px;}
.ws43{word-spacing:9.882000px;}
.ws27{word-spacing:10.314000px;}
.ws1a{word-spacing:10.692000px;}
.ws5b{word-spacing:10.800000px;}
.ws62{word-spacing:10.896000px;}
.ws6f{word-spacing:10.992000px;}
.ws54{word-spacing:11.424000px;}
.ws5f{word-spacing:11.472000px;}
.ws7f{word-spacing:11.952000px;}
.ws6a{word-spacing:12.000000px;}
.ws3d{word-spacing:12.258000px;}
.ws8b{word-spacing:12.864000px;}
.ws20{word-spacing:12.960000px;}
.ws48{word-spacing:13.176000px;}
.ws84{word-spacing:13.344000px;}
.ws63{word-spacing:13.392000px;}
.ws7b{word-spacing:13.872000px;}
.ws82{word-spacing:13.920000px;}
.ws61{word-spacing:15.120000px;}
.ws4c{word-spacing:15.390000px;}
.ws32{word-spacing:15.498000px;}
.ws7d{word-spacing:15.696000px;}
.ws44{word-spacing:15.714000px;}
.ws50{word-spacing:17.088000px;}
.ws7c{word-spacing:17.472000px;}
.ws40{word-spacing:18.522000px;}
.ws60{word-spacing:20.592000px;}
.ws2c{word-spacing:23.814000px;}
.ws45{word-spacing:26.514000px;}
.ws58{word-spacing:27.552000px;}
.ws87{word-spacing:30.816000px;}
.ws10{word-spacing:31.794000px;}
.ws4e{word-spacing:36.720000px;}
.ws4{word-spacing:48.844800px;}
.ws2{word-spacing:73.760400px;}
.ws3{word-spacing:100.969200px;}
.ws7{word-spacing:1408.752000px;}
._23{margin-left:-30.817800px;}
._22{margin-left:-13.248000px;}
._1d{margin-left:-10.195200px;}
._19{margin-left:-8.748000px;}
._a{margin-left:-6.960600px;}
._5{margin-left:-5.931792px;}
._e{margin-left:-4.900200px;}
._1{margin-left:-3.304800px;}
._0{margin-left:-2.100000px;}
._6{margin-left:-1.012800px;}
._3{width:1.750800px;}
._4{width:2.797008px;}
._b{width:3.805800px;}
._8{width:4.876200px;}
._d{width:6.388200px;}
._7{width:7.527600px;}
._c{width:8.613000px;}
._10{width:9.709200px;}
._9{width:10.908000px;}
._f{width:12.196800px;}
._11{width:13.550400px;}
._1e{width:15.240000px;}
._14{width:16.351200px;}
._12{width:18.349200px;}
._13{width:19.953000px;}
._18{width:21.389400px;}
._17{width:22.518000px;}
._16{width:24.337800px;}
._21{width:25.900800px;}
._1f{width:27.600000px;}
._1b{width:29.953800px;}
._1a{width:31.168800px;}
._1c{width:36.736200px;}
._20{width:37.861200px;}
._15{width:39.101400px;}
._2{width:122.317200px;}
.fc4{color:rgb(26,26,27);}
.fc3{color:rgb(4,6,6);}
.fc2{color:rgb(26,178,173);}
.fc5{color:rgb(24,25,25);}
.fc1{color:rgb(8,9,9);}
.fc0{color:rgb(35,31,32);}
.fs6{font-size:27.984000px;}
.fs4{font-size:31.482000px;}
.fs2{font-size:36.000000px;}
.fs5{font-size:48.000000px;}
.fs3{font-size:54.000000px;}
.fs1{font-size:57.000000px;}
.fs7{font-size:66.000000px;}
.fs0{font-size:84.000000px;}
.y0{bottom:0.000000px;}
.y2{bottom:49.520400px;}
.y41{bottom:49.522200px;}
.ya{bottom:49.874400px;}
.y89{bottom:49.876800px;}
.y226{bottom:92.834700px;}
.y193{bottom:92.884200px;}
.y76{bottom:92.897700px;}
.y87{bottom:92.902200px;}
.y120{bottom:92.924700px;}
.yb6{bottom:92.942700px;}
.y1ca{bottom:92.969700px;}
.y9{bottom:93.182400px;}
.yf2{bottom:93.212700px;}
.y8{bottom:103.982400px;}
.y225{bottom:110.834700px;}
.y192{bottom:110.879700px;}
.y75{bottom:110.893200px;}
.y86{bottom:110.897700px;}
.y11f{bottom:110.920200px;}
.yb5{bottom:110.938200px;}
.y1c9{bottom:110.965200px;}
.y15b{bottom:111.190200px;}
.yf1{bottom:111.208200px;}
.y7{bottom:114.782400px;}
.y6{bottom:125.582400px;}
.y20e{bottom:128.834700px;}
.y191{bottom:128.875200px;}
.y74{bottom:128.888700px;}
.y85{bottom:128.893200px;}
.y1de{bottom:128.902200px;}
.y11e{bottom:128.915700px;}
.yb4{bottom:128.933700px;}
.y1c8{bottom:128.960700px;}
.y15a{bottom:129.185700px;}
.yf0{bottom:129.203700px;}
.y5{bottom:136.382400px;}
.y20d{bottom:146.834700px;}
.y190{bottom:146.870700px;}
.y73{bottom:146.884200px;}
.y84{bottom:146.888700px;}
.y1dd{bottom:146.897700px;}
.y11d{bottom:146.911200px;}
.yb3{bottom:146.929200px;}
.y1c7{bottom:146.956200px;}
.y159{bottom:147.181200px;}
.y4{bottom:147.182400px;}
.yef{bottom:147.199200px;}
.y20c{bottom:164.834700px;}
.y18f{bottom:164.866200px;}
.y72{bottom:164.879700px;}
.y83{bottom:164.884200px;}
.y1dc{bottom:164.893200px;}
.y11c{bottom:164.906700px;}
.yb2{bottom:164.924700px;}
.y1c6{bottom:164.951700px;}
.y158{bottom:165.176700px;}
.yee{bottom:165.194700px;}
.y3{bottom:168.782400px;}
.y224{bottom:182.834700px;}
.y18e{bottom:182.861700px;}
.y71{bottom:182.875200px;}
.y82{bottom:182.879700px;}
.y1db{bottom:182.888700px;}
.y11b{bottom:182.902200px;}
.yb1{bottom:182.920200px;}
.y1c5{bottom:182.947200px;}
.y157{bottom:183.172200px;}
.yed{bottom:183.190200px;}
.y20b{bottom:200.834700px;}
.y18d{bottom:200.857200px;}
.y70{bottom:200.870700px;}
.y81{bottom:200.875200px;}
.y1da{bottom:200.884200px;}
.y11a{bottom:200.897700px;}
.yb0{bottom:200.915700px;}
.y1c4{bottom:200.942700px;}
.y156{bottom:201.167700px;}
.yec{bottom:201.185700px;}
.y223{bottom:218.834700px;}
.y18c{bottom:218.852700px;}
.y6f{bottom:218.866200px;}
.y80{bottom:218.870700px;}
.y1d9{bottom:218.879700px;}
.y119{bottom:218.893200px;}
.yaf{bottom:218.911200px;}
.y1c3{bottom:218.938200px;}
.y3d{bottom:219.046200px;}
.y155{bottom:219.163200px;}
.yeb{bottom:219.181200px;}
.y222{bottom:236.834700px;}
.y18b{bottom:236.848200px;}
.y6e{bottom:236.861700px;}
.y7f{bottom:236.866200px;}
.y1d8{bottom:236.875200px;}
.y118{bottom:236.888700px;}
.yae{bottom:236.906700px;}
.y1c2{bottom:236.933700px;}
.y3c{bottom:237.041700px;}
.y154{bottom:237.158700px;}
.yea{bottom:237.176700px;}
.y221{bottom:254.834700px;}
.y18a{bottom:254.843700px;}
.y6d{bottom:254.857200px;}
.y7e{bottom:254.861700px;}
.y1d7{bottom:254.870700px;}
.y117{bottom:254.884200px;}
.yad{bottom:254.902200px;}
.y20a{bottom:254.924700px;}
.y1c1{bottom:254.929200px;}
.y3b{bottom:255.037200px;}
.y153{bottom:255.154200px;}
.ye9{bottom:255.172200px;}
.y220{bottom:272.834700px;}
.y189{bottom:272.839200px;}
.y6c{bottom:272.852700px;}
.y7d{bottom:272.857200px;}
.y1d6{bottom:272.866200px;}
.y116{bottom:272.879700px;}
.yac{bottom:272.897700px;}
.y209{bottom:272.920200px;}
.y1c0{bottom:272.924700px;}
.y3a{bottom:273.032700px;}
.y152{bottom:273.149700px;}
.ye8{bottom:273.167700px;}
.y188{bottom:290.834700px;}
.y6b{bottom:290.848200px;}
.y7c{bottom:290.852700px;}
.y1d5{bottom:290.861700px;}
.y115{bottom:290.875200px;}
.yab{bottom:290.893200px;}
.y208{bottom:290.915700px;}
.y1bf{bottom:290.920200px;}
.y39{bottom:291.028200px;}
.y151{bottom:291.145200px;}
.ye7{bottom:291.163200px;}
.y21f{bottom:308.834700px;}
.y6a{bottom:308.843700px;}
.y7b{bottom:308.848200px;}
.y1d4{bottom:308.857200px;}
.y114{bottom:308.870700px;}
.yaa{bottom:308.888700px;}
.y207{bottom:308.911200px;}
.y1be{bottom:308.915700px;}
.y38{bottom:309.023700px;}
.y150{bottom:309.140700px;}
.ye6{bottom:309.158700px;}
.y187{bottom:326.834700px;}
.y69{bottom:326.839200px;}
.y7a{bottom:326.843700px;}
.y1d3{bottom:326.852700px;}
.y113{bottom:326.866200px;}
.ya9{bottom:326.884200px;}
.y206{bottom:326.906700px;}
.y1bd{bottom:326.911200px;}
.y37{bottom:327.019200px;}
.y14f{bottom:327.136200px;}
.ye5{bottom:327.154200px;}
.y68{bottom:344.834700px;}
.y79{bottom:344.839200px;}
.y1d2{bottom:344.848200px;}
.y112{bottom:344.861700px;}
.ya8{bottom:344.879700px;}
.y205{bottom:344.902200px;}
.y1bc{bottom:344.906700px;}
.y36{bottom:345.014700px;}
.y14e{bottom:345.131700px;}
.ye4{bottom:345.149700px;}
.y21e{bottom:362.834700px;}
.y1d1{bottom:362.843700px;}
.y111{bottom:362.857200px;}
.ya7{bottom:362.875200px;}
.y78{bottom:362.897700px;}
.y1bb{bottom:362.902200px;}
.y35{bottom:363.010200px;}
.y14d{bottom:363.127200px;}
.ye3{bottom:363.145200px;}
.y67{bottom:380.834700px;}
.y1d0{bottom:380.839200px;}
.y110{bottom:380.852700px;}
.ya6{bottom:380.870700px;}
.y77{bottom:380.893200px;}
.y1ba{bottom:380.897700px;}
.y34{bottom:381.005700px;}
.y186{bottom:381.014700px;}
.y14c{bottom:381.122700px;}
.ye2{bottom:381.140700px;}
.y1cf{bottom:398.834700px;}
.y10f{bottom:398.848200px;}
.ya5{bottom:398.866200px;}
.y204{bottom:398.888700px;}
.y1b9{bottom:398.893200px;}
.y33{bottom:399.001200px;}
.y185{bottom:399.010200px;}
.y14b{bottom:399.118200px;}
.ye1{bottom:399.136200px;}
.y21d{bottom:416.834700px;}
.y10e{bottom:416.843700px;}
.ya4{bottom:416.861700px;}
.y203{bottom:416.884200px;}
.y1b8{bottom:416.888700px;}
.y32{bottom:416.996700px;}
.y184{bottom:417.005700px;}
.y14a{bottom:417.113700px;}
.ye0{bottom:417.131700px;}
.y66{bottom:434.834700px;}
.y10d{bottom:434.839200px;}
.ya3{bottom:434.857200px;}
.y202{bottom:434.879700px;}
.y1b7{bottom:434.884200px;}
.y31{bottom:434.992200px;}
.y183{bottom:435.001200px;}
.y149{bottom:435.109200px;}
.ydf{bottom:435.127200px;}
.y10c{bottom:452.834700px;}
.ya2{bottom:452.852700px;}
.y201{bottom:452.875200px;}
.y1b6{bottom:452.879700px;}
.y30{bottom:452.987700px;}
.y182{bottom:452.996700px;}
.y148{bottom:453.104700px;}
.yde{bottom:453.122700px;}
.y65{bottom:470.834700px;}
.ya1{bottom:470.848200px;}
.y200{bottom:470.870700px;}
.y1b5{bottom:470.875200px;}
.y2f{bottom:470.983200px;}
.y181{bottom:470.992200px;}
.y147{bottom:471.100200px;}
.ydd{bottom:471.118200px;}
.y10b{bottom:485.234700px;}
.y64{bottom:488.834700px;}
.ya0{bottom:488.843700px;}
.y1ff{bottom:488.866200px;}
.y1b4{bottom:488.870700px;}
.y2e{bottom:488.978700px;}
.y180{bottom:488.987700px;}
.y1ce{bottom:489.001200px;}
.y146{bottom:489.095700px;}
.ydc{bottom:489.113700px;}
.y10a{bottom:505.034700px;}
.y63{bottom:506.834700px;}
.y9f{bottom:506.839200px;}
.y1fe{bottom:506.861700px;}
.y1b3{bottom:506.866200px;}
.y2d{bottom:506.974200px;}
.y17f{bottom:506.983200px;}
.y1cd{bottom:506.996700px;}
.y145{bottom:507.091200px;}
.ydb{bottom:507.109200px;}
.y62{bottom:524.834700px;}
.y1fd{bottom:524.857200px;}
.y1b2{bottom:524.861700px;}
.y2c{bottom:524.969700px;}
.y17e{bottom:524.978700px;}
.y1cc{bottom:524.992200px;}
.y144{bottom:525.086700px;}
.yda{bottom:525.104700px;}
.y61{bottom:542.834700px;}
.y1fc{bottom:542.852700px;}
.y1b1{bottom:542.857200px;}
.y2b{bottom:542.965200px;}
.y17d{bottom:542.974200px;}
.y1cb{bottom:542.987700px;}
.y143{bottom:543.082200px;}
.yd9{bottom:543.100200px;}
.y60{bottom:560.834700px;}
.y1fb{bottom:560.848200px;}
.y1b0{bottom:560.852700px;}
.y2a{bottom:560.960700px;}
.y17c{bottom:560.969700px;}
.y109{bottom:560.983200px;}
.y142{bottom:561.077700px;}
.yd8{bottom:561.095700px;}
.y5f{bottom:578.834700px;}
.y1fa{bottom:578.843700px;}
.y1af{bottom:578.848200px;}
.y29{bottom:578.956200px;}
.y17b{bottom:578.965200px;}
.y108{bottom:578.978700px;}
.y141{bottom:579.073200px;}
.yd7{bottom:579.091200px;}
.y5e{bottom:596.834700px;}
.y1f9{bottom:596.839200px;}
.y1ae{bottom:596.843700px;}
.y28{bottom:596.951700px;}
.y17a{bottom:596.960700px;}
.y107{bottom:596.974200px;}
.y140{bottom:597.068700px;}
.yd6{bottom:597.086700px;}
.y5d{bottom:614.834700px;}
.y1ad{bottom:614.839200px;}
.y9e{bottom:614.920200px;}
.y27{bottom:614.947200px;}
.y179{bottom:614.956200px;}
.y106{bottom:614.969700px;}
.y13f{bottom:615.064200px;}
.yd5{bottom:615.082200px;}
.y5c{bottom:632.834700px;}
.y9d{bottom:632.915700px;}
.y26{bottom:632.942700px;}
.y178{bottom:632.951700px;}
.y105{bottom:632.965200px;}
.y13e{bottom:633.059700px;}
.yd4{bottom:633.077700px;}
.y5b{bottom:650.834700px;}
.y9c{bottom:650.911200px;}
.y25{bottom:650.938200px;}
.y177{bottom:650.947200px;}
.y104{bottom:650.960700px;}
.y13d{bottom:651.055200px;}
.yd3{bottom:651.073200px;}
.y5a{bottom:668.834700px;}
.y9b{bottom:668.906700px;}
.y24{bottom:668.933700px;}
.y176{bottom:668.942700px;}
.y103{bottom:668.956200px;}
.y13c{bottom:669.050700px;}
.yd2{bottom:669.068700px;}
.y59{bottom:686.834700px;}
.y9a{bottom:686.902200px;}
.y23{bottom:686.929200px;}
.y175{bottom:686.938200px;}
.y102{bottom:686.951700px;}
.y13b{bottom:687.046200px;}
.yd1{bottom:687.064200px;}
.y58{bottom:704.834700px;}
.y99{bottom:704.897700px;}
.y22{bottom:704.924700px;}
.y174{bottom:704.933700px;}
.y101{bottom:704.947200px;}
.y1f8{bottom:705.014700px;}
.y13a{bottom:705.041700px;}
.yd0{bottom:705.059700px;}
.y57{bottom:722.834700px;}
.y98{bottom:722.893200px;}
.y21{bottom:722.920200px;}
.y173{bottom:722.929200px;}
.y100{bottom:722.942700px;}
.y1ac{bottom:722.996700px;}
.y1f7{bottom:723.010200px;}
.y139{bottom:723.037200px;}
.ycf{bottom:723.055200px;}
.y56{bottom:740.834700px;}
.y97{bottom:740.888700px;}
.y20{bottom:740.915700px;}
.y172{bottom:740.924700px;}
.yff{bottom:740.938200px;}
.y1ab{bottom:740.992200px;}
.y1f6{bottom:741.005700px;}
.y138{bottom:741.032700px;}
.yce{bottom:741.050700px;}
.y21c{bottom:758.834700px;}
.y96{bottom:758.884200px;}
.y1f{bottom:758.911200px;}
.y171{bottom:758.920200px;}
.yfe{bottom:758.933700px;}
.y1aa{bottom:758.987700px;}
.y1f5{bottom:759.001200px;}
.y137{bottom:759.028200px;}
.ycd{bottom:759.046200px;}
.y55{bottom:776.834700px;}
.y95{bottom:776.879700px;}
.y1e{bottom:776.906700px;}
.y170{bottom:776.915700px;}
.yfd{bottom:776.929200px;}
.y1a9{bottom:776.983200px;}
.y1f4{bottom:776.996700px;}
.y136{bottom:777.023700px;}
.ycc{bottom:777.041700px;}
.y54{bottom:794.834700px;}
.y94{bottom:794.875200px;}
.y1d{bottom:794.902200px;}
.y16f{bottom:794.911200px;}
.yfc{bottom:794.924700px;}
.y1a8{bottom:794.978700px;}
.y1f3{bottom:794.992200px;}
.y135{bottom:795.019200px;}
.ycb{bottom:795.037200px;}
.y53{bottom:812.834700px;}
.y93{bottom:812.870700px;}
.y1c{bottom:812.897700px;}
.y16e{bottom:812.906700px;}
.yfb{bottom:812.920200px;}
.y1a7{bottom:812.974200px;}
.y1f2{bottom:812.987700px;}
.y134{bottom:813.014700px;}
.yca{bottom:813.032700px;}
.y21b{bottom:830.834700px;}
.y92{bottom:830.866200px;}
.y1b{bottom:830.893200px;}
.y16d{bottom:830.902200px;}
.yfa{bottom:830.915700px;}
.y1a6{bottom:830.969700px;}
.y1f1{bottom:830.983200px;}
.y133{bottom:831.010200px;}
.yc9{bottom:831.028200px;}
.y21a{bottom:848.834700px;}
.y91{bottom:848.861700px;}
.y1a{bottom:848.888700px;}
.y16c{bottom:848.897700px;}
.yf9{bottom:848.911200px;}
.y1a5{bottom:848.965200px;}
.y1f0{bottom:848.978700px;}
.y132{bottom:849.005700px;}
.yc8{bottom:849.023700px;}
.y52{bottom:852.830700px;}
.y219{bottom:866.834700px;}
.y90{bottom:866.857200px;}
.y19{bottom:866.884200px;}
.y16b{bottom:866.893200px;}
.yf8{bottom:866.906700px;}
.y1a4{bottom:866.960700px;}
.y1ef{bottom:866.974200px;}
.y131{bottom:867.001200px;}
.yc7{bottom:867.019200px;}
.y51{bottom:870.830700px;}
.y218{bottom:884.834700px;}
.y8f{bottom:884.852700px;}
.y18{bottom:884.879700px;}
.y16a{bottom:884.888700px;}
.yf7{bottom:884.902200px;}
.y1a3{bottom:884.956200px;}
.y1ee{bottom:884.969700px;}
.y130{bottom:884.996700px;}
.yc6{bottom:885.014700px;}
.y50{bottom:888.830700px;}
.y217{bottom:902.834700px;}
.y8e{bottom:902.848200px;}
.y17{bottom:902.875200px;}
.y169{bottom:902.884200px;}
.yf6{bottom:902.897700px;}
.y1a2{bottom:902.951700px;}
.y1ed{bottom:902.965200px;}
.y12f{bottom:902.992200px;}
.yc5{bottom:903.010200px;}
.y4f{bottom:906.830700px;}
.y216{bottom:920.834700px;}
.y8d{bottom:920.843700px;}
.y16{bottom:920.870700px;}
.y168{bottom:920.879700px;}
.yf5{bottom:920.893200px;}
.y1a1{bottom:920.947200px;}
.y1ec{bottom:920.960700px;}
.y12e{bottom:920.987700px;}
.yc4{bottom:921.005700px;}
.y4e{bottom:924.830700px;}
.y215{bottom:938.834700px;}
.y8c{bottom:938.839200px;}
.y15{bottom:938.866200px;}
.y167{bottom:938.875200px;}
.yf4{bottom:938.888700px;}
.y1a0{bottom:938.942700px;}
.y1eb{bottom:938.956200px;}
.y12d{bottom:938.983200px;}
.yc3{bottom:939.001200px;}
.y4d{bottom:942.830700px;}
.y8b{bottom:956.834700px;}
.y14{bottom:956.861700px;}
.y166{bottom:956.870700px;}
.yf3{bottom:956.884200px;}
.y19f{bottom:956.938200px;}
.y1ea{bottom:956.951700px;}
.y12c{bottom:956.978700px;}
.yc2{bottom:956.996700px;}
.y214{bottom:974.834700px;}
.y13{bottom:974.857200px;}
.y165{bottom:974.866200px;}
.y4c{bottom:974.879700px;}
.y19e{bottom:974.933700px;}
.y1e9{bottom:974.947200px;}
.y12b{bottom:974.974200px;}
.yc1{bottom:974.992200px;}
.y8a{bottom:992.834700px;}
.y12{bottom:992.852700px;}
.y164{bottom:992.861700px;}
.y4b{bottom:992.875200px;}
.y19d{bottom:992.929200px;}
.y1e8{bottom:992.942700px;}
.y12a{bottom:992.969700px;}
.yc0{bottom:992.987700px;}
.y213{bottom:1010.834700px;}
.y11{bottom:1010.848200px;}
.y163{bottom:1010.857200px;}
.y4a{bottom:1010.870700px;}
.y19c{bottom:1010.924700px;}
.y1e7{bottom:1010.938200px;}
.y129{bottom:1010.965200px;}
.ybf{bottom:1010.983200px;}
.y212{bottom:1028.834700px;}
.y10{bottom:1028.843700px;}
.y162{bottom:1028.852700px;}
.y49{bottom:1028.866200px;}
.y19b{bottom:1028.920200px;}
.y1e6{bottom:1028.933700px;}
.y128{bottom:1028.960700px;}
.ybe{bottom:1028.978700px;}
.y211{bottom:1046.834700px;}
.yf{bottom:1046.839200px;}
.y161{bottom:1046.848200px;}
.y48{bottom:1046.861700px;}
.y19a{bottom:1046.915700px;}
.y1e5{bottom:1046.929200px;}
.y127{bottom:1046.956200px;}
.ybd{bottom:1046.974200px;}
.y210{bottom:1064.834700px;}
.ye{bottom:1064.839200px;}
.y160{bottom:1064.843700px;}
.y47{bottom:1064.857200px;}
.y199{bottom:1064.911200px;}
.y1e4{bottom:1064.924700px;}
.y126{bottom:1064.951700px;}
.ybc{bottom:1064.969700px;}
.y40{bottom:1066.314300px;}
.yd{bottom:1082.834700px;}
.y15f{bottom:1082.839200px;}
.y46{bottom:1082.852700px;}
.y198{bottom:1082.906700px;}
.y1e3{bottom:1082.920200px;}
.y125{bottom:1082.947200px;}
.ybb{bottom:1082.965200px;}
.y15e{bottom:1100.834700px;}
.y45{bottom:1100.848200px;}
.y197{bottom:1100.902200px;}
.y1e2{bottom:1100.915700px;}
.y124{bottom:1100.942700px;}
.yba{bottom:1100.960700px;}
.y20f{bottom:1118.834700px;}
.y44{bottom:1118.843700px;}
.y196{bottom:1118.897700px;}
.y1e1{bottom:1118.911200px;}
.y123{bottom:1118.938200px;}
.yb9{bottom:1118.956200px;}
.yc{bottom:1128.596100px;}
.y227{bottom:1136.834700px;}
.y43{bottom:1136.839200px;}
.y195{bottom:1136.893200px;}
.y1e0{bottom:1136.906700px;}
.y122{bottom:1136.933700px;}
.yb8{bottom:1136.951700px;}
.y15d{bottom:1137.272250px;}
.y1{bottom:1150.334700px;}
.yb{bottom:1153.796100px;}
.y42{bottom:1154.834700px;}
.y194{bottom:1154.888700px;}
.y1df{bottom:1154.902200px;}
.y121{bottom:1154.929200px;}
.yb7{bottom:1154.947200px;}
.y15c{bottom:1157.072250px;}
.y3f{bottom:1233.947250px;}
.y88{bottom:1234.758450px;}
.y3e{bottom:1234.973400px;}
.h4{height:26.208984px;}
.h5{height:26.666016px;}
.h10{height:27.047250px;}
.h6{height:32.273438px;}
.h13{height:34.945312px;}
.h14{height:35.554688px;}
.he{height:39.313477px;}
.h15{height:39.900000px;}
.h7{height:39.909600px;}
.hb{height:39.999023px;}
.h3{height:40.470000px;}
.h12{height:41.049431px;}
.h9{height:41.301431px;}
.hf{height:41.325000px;}
.hd{height:43.031250px;}
.h11{height:48.049805px;}
.ha{height:48.392156px;}
.hc{height:48.410156px;}
.h2{height:59.472000px;}
.h8{height:61.154297px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x6{left:8.393850px;}
.x5{left:29.350350px;}
.x3{left:63.758850px;}
.x7{left:72.283500px;}
.xd{left:84.888450px;}
.x8{left:93.546000px;}
.xc{left:283.659000px;}
.x4{left:404.816250px;}
.xe{left:459.054450px;}
.x9{left:467.712000px;}
.xf{left:480.316950px;}
.xa{left:488.974350px;}
.xb{left:731.338500px;}
.x2{left:858.418500px;}
.x1{left:863.625000px;}
@media print{
.v3{vertical-align:-14.208000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:1.322667pt;}
.v4{vertical-align:14.208000pt;}
.v1{vertical-align:15.984000pt;}
.lsf{letter-spacing:-2.346667pt;}
.lse{letter-spacing:-1.706667pt;}
.lsd{letter-spacing:-0.426667pt;}
.ls3{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.240000pt;}
.ls2{letter-spacing:0.000000pt;}
.ls6{letter-spacing:0.003819pt;}
.ls9{letter-spacing:0.480000pt;}
.ls13{letter-spacing:0.853333pt;}
.lsb{letter-spacing:1.118400pt;}
.ls11{letter-spacing:2.005333pt;}
.ls16{letter-spacing:2.406400pt;}
.lsa{letter-spacing:2.544000pt;}
.ls17{letter-spacing:3.238400pt;}
.ls12{letter-spacing:6.058667pt;}
.ls14{letter-spacing:6.272000pt;}
.lsc{letter-spacing:7.304533pt;}
.ls0{letter-spacing:7.466667pt;}
.ls1a{letter-spacing:8.533333pt;}
.ls10{letter-spacing:8.618667pt;}
.ls1{letter-spacing:9.600000pt;}
.ls15{letter-spacing:11.434667pt;}
.ls7{letter-spacing:11.733333pt;}
.ls18{letter-spacing:11.861333pt;}
.ls8{letter-spacing:16.305600pt;}
.ls19{letter-spacing:27.392000pt;}
.ls5{letter-spacing:2517.234667pt;}
.ws88{word-spacing:-27.392000pt;}
.ws49{word-spacing:-13.536000pt;}
.ws2b{word-spacing:-13.344000pt;}
.ws6{word-spacing:-13.104000pt;}
.ws11{word-spacing:-11.861333pt;}
.ws4f{word-spacing:-9.514667pt;}
.ws1{word-spacing:-8.896000pt;}
.ws92{word-spacing:-8.533333pt;}
.ws5{word-spacing:-7.779552pt;}
.ws0{word-spacing:-7.541333pt;}
.ws12{word-spacing:-6.915157pt;}
.ws95{word-spacing:-4.650667pt;}
.ws14{word-spacing:-4.560000pt;}
.ws83{word-spacing:-3.541333pt;}
.ws42{word-spacing:-3.408000pt;}
.ws90{word-spacing:-2.816000pt;}
.ws6e{word-spacing:-2.773333pt;}
.wse{word-spacing:-2.688000pt;}
.ws29{word-spacing:-2.400000pt;}
.ws30{word-spacing:-2.352000pt;}
.ws6b{word-spacing:-2.346667pt;}
.ws85{word-spacing:-2.048000pt;}
.wsc{word-spacing:-1.824000pt;}
.ws17{word-spacing:-1.776000pt;}
.ws79{word-spacing:-1.706667pt;}
.ws5d{word-spacing:-1.578667pt;}
.ws66{word-spacing:-1.365333pt;}
.ws5c{word-spacing:-1.280000pt;}
.ws68{word-spacing:-1.066667pt;}
.ws1b{word-spacing:-1.056000pt;}
.ws35{word-spacing:-0.960000pt;}
.ws8d{word-spacing:-0.938667pt;}
.ws26{word-spacing:-0.768000pt;}
.ws19{word-spacing:-0.624000pt;}
.ws8a{word-spacing:-0.597333pt;}
.ws59{word-spacing:-0.512000pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws76{word-spacing:-0.298667pt;}
.ws3a{word-spacing:-0.096000pt;}
.ws8{word-spacing:0.000000pt;}
.wsd{word-spacing:0.240000pt;}
.ws91{word-spacing:0.384000pt;}
.ws5a{word-spacing:0.426667pt;}
.wsa{word-spacing:0.522667pt;}
.ws1e{word-spacing:0.576000pt;}
.ws4b{word-spacing:0.672000pt;}
.ws22{word-spacing:0.768000pt;}
.ws74{word-spacing:0.853333pt;}
.ws4a{word-spacing:1.008000pt;}
.ws96{word-spacing:1.024000pt;}
.ws41{word-spacing:1.152000pt;}
.ws13{word-spacing:1.450667pt;}
.ws1c{word-spacing:1.488000pt;}
.ws25{word-spacing:1.584000pt;}
.ws23{word-spacing:1.632000pt;}
.ws34{word-spacing:1.680000pt;}
.ws69{word-spacing:1.706667pt;}
.ws9{word-spacing:1.792000pt;}
.ws55{word-spacing:1.962667pt;}
.ws33{word-spacing:2.064000pt;}
.ws93{word-spacing:2.346667pt;}
.ws52{word-spacing:2.432000pt;}
.ws56{word-spacing:2.560000pt;}
.ws80{word-spacing:2.645333pt;}
.ws28{word-spacing:2.784000pt;}
.ws71{word-spacing:2.858667pt;}
.ws77{word-spacing:2.986667pt;}
.ws75{word-spacing:3.157333pt;}
.ws15{word-spacing:3.216000pt;}
.ws18{word-spacing:3.264000pt;}
.ws51{word-spacing:3.370667pt;}
.ws86{word-spacing:3.541333pt;}
.ws6d{word-spacing:3.754667pt;}
.ws47{word-spacing:3.792000pt;}
.ws36{word-spacing:3.840000pt;}
.ws6c{word-spacing:3.925333pt;}
.ws31{word-spacing:3.936000pt;}
.ws94{word-spacing:4.010667pt;}
.ws3f{word-spacing:4.032000pt;}
.wsf{word-spacing:4.176000pt;}
.ws2a{word-spacing:4.272000pt;}
.ws8e{word-spacing:4.352000pt;}
.ws2f{word-spacing:4.512000pt;}
.ws4d{word-spacing:4.704000pt;}
.ws67{word-spacing:4.821333pt;}
.ws2d{word-spacing:5.040000pt;}
.ws53{word-spacing:5.162667pt;}
.ws46{word-spacing:5.232000pt;}
.ws64{word-spacing:5.589333pt;}
.ws70{word-spacing:5.632000pt;}
.ws2e{word-spacing:5.664000pt;}
.ws3c{word-spacing:6.048000pt;}
.ws78{word-spacing:6.101333pt;}
.ws16{word-spacing:6.240000pt;}
.ws81{word-spacing:6.272000pt;}
.ws7e{word-spacing:6.528000pt;}
.ws72{word-spacing:6.656000pt;}
.ws3e{word-spacing:6.672000pt;}
.ws37{word-spacing:6.960000pt;}
.ws89{word-spacing:7.082667pt;}
.ws1d{word-spacing:7.104000pt;}
.ws24{word-spacing:7.248000pt;}
.ws38{word-spacing:7.296000pt;}
.wsb{word-spacing:7.392000pt;}
.ws5e{word-spacing:7.722667pt;}
.ws39{word-spacing:7.728000pt;}
.ws8f{word-spacing:7.765333pt;}
.ws65{word-spacing:7.893333pt;}
.ws8c{word-spacing:8.064000pt;}
.ws21{word-spacing:8.208000pt;}
.ws7a{word-spacing:8.362667pt;}
.ws57{word-spacing:8.448000pt;}
.ws3b{word-spacing:8.496000pt;}
.ws73{word-spacing:8.618667pt;}
.ws43{word-spacing:8.784000pt;}
.ws27{word-spacing:9.168000pt;}
.ws1a{word-spacing:9.504000pt;}
.ws5b{word-spacing:9.600000pt;}
.ws62{word-spacing:9.685333pt;}
.ws6f{word-spacing:9.770667pt;}
.ws54{word-spacing:10.154667pt;}
.ws5f{word-spacing:10.197333pt;}
.ws7f{word-spacing:10.624000pt;}
.ws6a{word-spacing:10.666667pt;}
.ws3d{word-spacing:10.896000pt;}
.ws8b{word-spacing:11.434667pt;}
.ws20{word-spacing:11.520000pt;}
.ws48{word-spacing:11.712000pt;}
.ws84{word-spacing:11.861333pt;}
.ws63{word-spacing:11.904000pt;}
.ws7b{word-spacing:12.330667pt;}
.ws82{word-spacing:12.373333pt;}
.ws61{word-spacing:13.440000pt;}
.ws4c{word-spacing:13.680000pt;}
.ws32{word-spacing:13.776000pt;}
.ws7d{word-spacing:13.952000pt;}
.ws44{word-spacing:13.968000pt;}
.ws50{word-spacing:15.189333pt;}
.ws7c{word-spacing:15.530667pt;}
.ws40{word-spacing:16.464000pt;}
.ws60{word-spacing:18.304000pt;}
.ws2c{word-spacing:21.168000pt;}
.ws45{word-spacing:23.568000pt;}
.ws58{word-spacing:24.490667pt;}
.ws87{word-spacing:27.392000pt;}
.ws10{word-spacing:28.261333pt;}
.ws4e{word-spacing:32.640000pt;}
.ws4{word-spacing:43.417600pt;}
.ws2{word-spacing:65.564800pt;}
.ws3{word-spacing:89.750400pt;}
.ws7{word-spacing:1252.224000pt;}
._23{margin-left:-27.393600pt;}
._22{margin-left:-11.776000pt;}
._1d{margin-left:-9.062400pt;}
._19{margin-left:-7.776000pt;}
._a{margin-left:-6.187200pt;}
._5{margin-left:-5.272704pt;}
._e{margin-left:-4.355733pt;}
._1{margin-left:-2.937600pt;}
._0{margin-left:-1.866667pt;}
._6{margin-left:-0.900267pt;}
._3{width:1.556267pt;}
._4{width:2.486229pt;}
._b{width:3.382933pt;}
._8{width:4.334400pt;}
._d{width:5.678400pt;}
._7{width:6.691200pt;}
._c{width:7.656000pt;}
._10{width:8.630400pt;}
._9{width:9.696000pt;}
._f{width:10.841600pt;}
._11{width:12.044800pt;}
._1e{width:13.546667pt;}
._14{width:14.534400pt;}
._12{width:16.310400pt;}
._13{width:17.736000pt;}
._18{width:19.012800pt;}
._17{width:20.016000pt;}
._16{width:21.633600pt;}
._21{width:23.022933pt;}
._1f{width:24.533333pt;}
._1b{width:26.625600pt;}
._1a{width:27.705600pt;}
._1c{width:32.654400pt;}
._20{width:33.654400pt;}
._15{width:34.756800pt;}
._2{width:108.726400pt;}
.fs6{font-size:24.874667pt;}
.fs4{font-size:27.984000pt;}
.fs2{font-size:32.000000pt;}
.fs5{font-size:42.666667pt;}
.fs3{font-size:48.000000pt;}
.fs1{font-size:50.666667pt;}
.fs7{font-size:58.666667pt;}
.fs0{font-size:74.666667pt;}
.y0{bottom:0.000000pt;}
.y2{bottom:44.018133pt;}
.y41{bottom:44.019733pt;}
.ya{bottom:44.332800pt;}
.y89{bottom:44.334933pt;}
.y226{bottom:82.519733pt;}
.y193{bottom:82.563733pt;}
.y76{bottom:82.575733pt;}
.y87{bottom:82.579733pt;}
.y120{bottom:82.599733pt;}
.yb6{bottom:82.615733pt;}
.y1ca{bottom:82.639733pt;}
.y9{bottom:82.828800pt;}
.yf2{bottom:82.855733pt;}
.y8{bottom:92.428800pt;}
.y225{bottom:98.519733pt;}
.y192{bottom:98.559733pt;}
.y75{bottom:98.571733pt;}
.y86{bottom:98.575733pt;}
.y11f{bottom:98.595733pt;}
.yb5{bottom:98.611733pt;}
.y1c9{bottom:98.635733pt;}
.y15b{bottom:98.835733pt;}
.yf1{bottom:98.851733pt;}
.y7{bottom:102.028800pt;}
.y6{bottom:111.628800pt;}
.y20e{bottom:114.519733pt;}
.y191{bottom:114.555733pt;}
.y74{bottom:114.567733pt;}
.y85{bottom:114.571733pt;}
.y1de{bottom:114.579733pt;}
.y11e{bottom:114.591733pt;}
.yb4{bottom:114.607733pt;}
.y1c8{bottom:114.631733pt;}
.y15a{bottom:114.831733pt;}
.yf0{bottom:114.847733pt;}
.y5{bottom:121.228800pt;}
.y20d{bottom:130.519733pt;}
.y190{bottom:130.551733pt;}
.y73{bottom:130.563733pt;}
.y84{bottom:130.567733pt;}
.y1dd{bottom:130.575733pt;}
.y11d{bottom:130.587733pt;}
.yb3{bottom:130.603733pt;}
.y1c7{bottom:130.627733pt;}
.y159{bottom:130.827733pt;}
.y4{bottom:130.828800pt;}
.yef{bottom:130.843733pt;}
.y20c{bottom:146.519733pt;}
.y18f{bottom:146.547733pt;}
.y72{bottom:146.559733pt;}
.y83{bottom:146.563733pt;}
.y1dc{bottom:146.571733pt;}
.y11c{bottom:146.583733pt;}
.yb2{bottom:146.599733pt;}
.y1c6{bottom:146.623733pt;}
.y158{bottom:146.823733pt;}
.yee{bottom:146.839733pt;}
.y3{bottom:150.028800pt;}
.y224{bottom:162.519733pt;}
.y18e{bottom:162.543733pt;}
.y71{bottom:162.555733pt;}
.y82{bottom:162.559733pt;}
.y1db{bottom:162.567733pt;}
.y11b{bottom:162.579733pt;}
.yb1{bottom:162.595733pt;}
.y1c5{bottom:162.619733pt;}
.y157{bottom:162.819733pt;}
.yed{bottom:162.835733pt;}
.y20b{bottom:178.519733pt;}
.y18d{bottom:178.539733pt;}
.y70{bottom:178.551733pt;}
.y81{bottom:178.555733pt;}
.y1da{bottom:178.563733pt;}
.y11a{bottom:178.575733pt;}
.yb0{bottom:178.591733pt;}
.y1c4{bottom:178.615733pt;}
.y156{bottom:178.815733pt;}
.yec{bottom:178.831733pt;}
.y223{bottom:194.519733pt;}
.y18c{bottom:194.535733pt;}
.y6f{bottom:194.547733pt;}
.y80{bottom:194.551733pt;}
.y1d9{bottom:194.559733pt;}
.y119{bottom:194.571733pt;}
.yaf{bottom:194.587733pt;}
.y1c3{bottom:194.611733pt;}
.y3d{bottom:194.707733pt;}
.y155{bottom:194.811733pt;}
.yeb{bottom:194.827733pt;}
.y222{bottom:210.519733pt;}
.y18b{bottom:210.531733pt;}
.y6e{bottom:210.543733pt;}
.y7f{bottom:210.547733pt;}
.y1d8{bottom:210.555733pt;}
.y118{bottom:210.567733pt;}
.yae{bottom:210.583733pt;}
.y1c2{bottom:210.607733pt;}
.y3c{bottom:210.703733pt;}
.y154{bottom:210.807733pt;}
.yea{bottom:210.823733pt;}
.y221{bottom:226.519733pt;}
.y18a{bottom:226.527733pt;}
.y6d{bottom:226.539733pt;}
.y7e{bottom:226.543733pt;}
.y1d7{bottom:226.551733pt;}
.y117{bottom:226.563733pt;}
.yad{bottom:226.579733pt;}
.y20a{bottom:226.599733pt;}
.y1c1{bottom:226.603733pt;}
.y3b{bottom:226.699733pt;}
.y153{bottom:226.803733pt;}
.ye9{bottom:226.819733pt;}
.y220{bottom:242.519733pt;}
.y189{bottom:242.523733pt;}
.y6c{bottom:242.535733pt;}
.y7d{bottom:242.539733pt;}
.y1d6{bottom:242.547733pt;}
.y116{bottom:242.559733pt;}
.yac{bottom:242.575733pt;}
.y209{bottom:242.595733pt;}
.y1c0{bottom:242.599733pt;}
.y3a{bottom:242.695733pt;}
.y152{bottom:242.799733pt;}
.ye8{bottom:242.815733pt;}
.y188{bottom:258.519733pt;}
.y6b{bottom:258.531733pt;}
.y7c{bottom:258.535733pt;}
.y1d5{bottom:258.543733pt;}
.y115{bottom:258.555733pt;}
.yab{bottom:258.571733pt;}
.y208{bottom:258.591733pt;}
.y1bf{bottom:258.595733pt;}
.y39{bottom:258.691733pt;}
.y151{bottom:258.795733pt;}
.ye7{bottom:258.811733pt;}
.y21f{bottom:274.519733pt;}
.y6a{bottom:274.527733pt;}
.y7b{bottom:274.531733pt;}
.y1d4{bottom:274.539733pt;}
.y114{bottom:274.551733pt;}
.yaa{bottom:274.567733pt;}
.y207{bottom:274.587733pt;}
.y1be{bottom:274.591733pt;}
.y38{bottom:274.687733pt;}
.y150{bottom:274.791733pt;}
.ye6{bottom:274.807733pt;}
.y187{bottom:290.519733pt;}
.y69{bottom:290.523733pt;}
.y7a{bottom:290.527733pt;}
.y1d3{bottom:290.535733pt;}
.y113{bottom:290.547733pt;}
.ya9{bottom:290.563733pt;}
.y206{bottom:290.583733pt;}
.y1bd{bottom:290.587733pt;}
.y37{bottom:290.683733pt;}
.y14f{bottom:290.787733pt;}
.ye5{bottom:290.803733pt;}
.y68{bottom:306.519733pt;}
.y79{bottom:306.523733pt;}
.y1d2{bottom:306.531733pt;}
.y112{bottom:306.543733pt;}
.ya8{bottom:306.559733pt;}
.y205{bottom:306.579733pt;}
.y1bc{bottom:306.583733pt;}
.y36{bottom:306.679733pt;}
.y14e{bottom:306.783733pt;}
.ye4{bottom:306.799733pt;}
.y21e{bottom:322.519733pt;}
.y1d1{bottom:322.527733pt;}
.y111{bottom:322.539733pt;}
.ya7{bottom:322.555733pt;}
.y78{bottom:322.575733pt;}
.y1bb{bottom:322.579733pt;}
.y35{bottom:322.675733pt;}
.y14d{bottom:322.779733pt;}
.ye3{bottom:322.795733pt;}
.y67{bottom:338.519733pt;}
.y1d0{bottom:338.523733pt;}
.y110{bottom:338.535733pt;}
.ya6{bottom:338.551733pt;}
.y77{bottom:338.571733pt;}
.y1ba{bottom:338.575733pt;}
.y34{bottom:338.671733pt;}
.y186{bottom:338.679733pt;}
.y14c{bottom:338.775733pt;}
.ye2{bottom:338.791733pt;}
.y1cf{bottom:354.519733pt;}
.y10f{bottom:354.531733pt;}
.ya5{bottom:354.547733pt;}
.y204{bottom:354.567733pt;}
.y1b9{bottom:354.571733pt;}
.y33{bottom:354.667733pt;}
.y185{bottom:354.675733pt;}
.y14b{bottom:354.771733pt;}
.ye1{bottom:354.787733pt;}
.y21d{bottom:370.519733pt;}
.y10e{bottom:370.527733pt;}
.ya4{bottom:370.543733pt;}
.y203{bottom:370.563733pt;}
.y1b8{bottom:370.567733pt;}
.y32{bottom:370.663733pt;}
.y184{bottom:370.671733pt;}
.y14a{bottom:370.767733pt;}
.ye0{bottom:370.783733pt;}
.y66{bottom:386.519733pt;}
.y10d{bottom:386.523733pt;}
.ya3{bottom:386.539733pt;}
.y202{bottom:386.559733pt;}
.y1b7{bottom:386.563733pt;}
.y31{bottom:386.659733pt;}
.y183{bottom:386.667733pt;}
.y149{bottom:386.763733pt;}
.ydf{bottom:386.779733pt;}
.y10c{bottom:402.519733pt;}
.ya2{bottom:402.535733pt;}
.y201{bottom:402.555733pt;}
.y1b6{bottom:402.559733pt;}
.y30{bottom:402.655733pt;}
.y182{bottom:402.663733pt;}
.y148{bottom:402.759733pt;}
.yde{bottom:402.775733pt;}
.y65{bottom:418.519733pt;}
.ya1{bottom:418.531733pt;}
.y200{bottom:418.551733pt;}
.y1b5{bottom:418.555733pt;}
.y2f{bottom:418.651733pt;}
.y181{bottom:418.659733pt;}
.y147{bottom:418.755733pt;}
.ydd{bottom:418.771733pt;}
.y10b{bottom:431.319733pt;}
.y64{bottom:434.519733pt;}
.ya0{bottom:434.527733pt;}
.y1ff{bottom:434.547733pt;}
.y1b4{bottom:434.551733pt;}
.y2e{bottom:434.647733pt;}
.y180{bottom:434.655733pt;}
.y1ce{bottom:434.667733pt;}
.y146{bottom:434.751733pt;}
.ydc{bottom:434.767733pt;}
.y10a{bottom:448.919733pt;}
.y63{bottom:450.519733pt;}
.y9f{bottom:450.523733pt;}
.y1fe{bottom:450.543733pt;}
.y1b3{bottom:450.547733pt;}
.y2d{bottom:450.643733pt;}
.y17f{bottom:450.651733pt;}
.y1cd{bottom:450.663733pt;}
.y145{bottom:450.747733pt;}
.ydb{bottom:450.763733pt;}
.y62{bottom:466.519733pt;}
.y1fd{bottom:466.539733pt;}
.y1b2{bottom:466.543733pt;}
.y2c{bottom:466.639733pt;}
.y17e{bottom:466.647733pt;}
.y1cc{bottom:466.659733pt;}
.y144{bottom:466.743733pt;}
.yda{bottom:466.759733pt;}
.y61{bottom:482.519733pt;}
.y1fc{bottom:482.535733pt;}
.y1b1{bottom:482.539733pt;}
.y2b{bottom:482.635733pt;}
.y17d{bottom:482.643733pt;}
.y1cb{bottom:482.655733pt;}
.y143{bottom:482.739733pt;}
.yd9{bottom:482.755733pt;}
.y60{bottom:498.519733pt;}
.y1fb{bottom:498.531733pt;}
.y1b0{bottom:498.535733pt;}
.y2a{bottom:498.631733pt;}
.y17c{bottom:498.639733pt;}
.y109{bottom:498.651733pt;}
.y142{bottom:498.735733pt;}
.yd8{bottom:498.751733pt;}
.y5f{bottom:514.519733pt;}
.y1fa{bottom:514.527733pt;}
.y1af{bottom:514.531733pt;}
.y29{bottom:514.627733pt;}
.y17b{bottom:514.635733pt;}
.y108{bottom:514.647733pt;}
.y141{bottom:514.731733pt;}
.yd7{bottom:514.747733pt;}
.y5e{bottom:530.519733pt;}
.y1f9{bottom:530.523733pt;}
.y1ae{bottom:530.527733pt;}
.y28{bottom:530.623733pt;}
.y17a{bottom:530.631733pt;}
.y107{bottom:530.643733pt;}
.y140{bottom:530.727733pt;}
.yd6{bottom:530.743733pt;}
.y5d{bottom:546.519733pt;}
.y1ad{bottom:546.523733pt;}
.y9e{bottom:546.595733pt;}
.y27{bottom:546.619733pt;}
.y179{bottom:546.627733pt;}
.y106{bottom:546.639733pt;}
.y13f{bottom:546.723733pt;}
.yd5{bottom:546.739733pt;}
.y5c{bottom:562.519733pt;}
.y9d{bottom:562.591733pt;}
.y26{bottom:562.615733pt;}
.y178{bottom:562.623733pt;}
.y105{bottom:562.635733pt;}
.y13e{bottom:562.719733pt;}
.yd4{bottom:562.735733pt;}
.y5b{bottom:578.519733pt;}
.y9c{bottom:578.587733pt;}
.y25{bottom:578.611733pt;}
.y177{bottom:578.619733pt;}
.y104{bottom:578.631733pt;}
.y13d{bottom:578.715733pt;}
.yd3{bottom:578.731733pt;}
.y5a{bottom:594.519733pt;}
.y9b{bottom:594.583733pt;}
.y24{bottom:594.607733pt;}
.y176{bottom:594.615733pt;}
.y103{bottom:594.627733pt;}
.y13c{bottom:594.711733pt;}
.yd2{bottom:594.727733pt;}
.y59{bottom:610.519733pt;}
.y9a{bottom:610.579733pt;}
.y23{bottom:610.603733pt;}
.y175{bottom:610.611733pt;}
.y102{bottom:610.623733pt;}
.y13b{bottom:610.707733pt;}
.yd1{bottom:610.723733pt;}
.y58{bottom:626.519733pt;}
.y99{bottom:626.575733pt;}
.y22{bottom:626.599733pt;}
.y174{bottom:626.607733pt;}
.y101{bottom:626.619733pt;}
.y1f8{bottom:626.679733pt;}
.y13a{bottom:626.703733pt;}
.yd0{bottom:626.719733pt;}
.y57{bottom:642.519733pt;}
.y98{bottom:642.571733pt;}
.y21{bottom:642.595733pt;}
.y173{bottom:642.603733pt;}
.y100{bottom:642.615733pt;}
.y1ac{bottom:642.663733pt;}
.y1f7{bottom:642.675733pt;}
.y139{bottom:642.699733pt;}
.ycf{bottom:642.715733pt;}
.y56{bottom:658.519733pt;}
.y97{bottom:658.567733pt;}
.y20{bottom:658.591733pt;}
.y172{bottom:658.599733pt;}
.yff{bottom:658.611733pt;}
.y1ab{bottom:658.659733pt;}
.y1f6{bottom:658.671733pt;}
.y138{bottom:658.695733pt;}
.yce{bottom:658.711733pt;}
.y21c{bottom:674.519733pt;}
.y96{bottom:674.563733pt;}
.y1f{bottom:674.587733pt;}
.y171{bottom:674.595733pt;}
.yfe{bottom:674.607733pt;}
.y1aa{bottom:674.655733pt;}
.y1f5{bottom:674.667733pt;}
.y137{bottom:674.691733pt;}
.ycd{bottom:674.707733pt;}
.y55{bottom:690.519733pt;}
.y95{bottom:690.559733pt;}
.y1e{bottom:690.583733pt;}
.y170{bottom:690.591733pt;}
.yfd{bottom:690.603733pt;}
.y1a9{bottom:690.651733pt;}
.y1f4{bottom:690.663733pt;}
.y136{bottom:690.687733pt;}
.ycc{bottom:690.703733pt;}
.y54{bottom:706.519733pt;}
.y94{bottom:706.555733pt;}
.y1d{bottom:706.579733pt;}
.y16f{bottom:706.587733pt;}
.yfc{bottom:706.599733pt;}
.y1a8{bottom:706.647733pt;}
.y1f3{bottom:706.659733pt;}
.y135{bottom:706.683733pt;}
.ycb{bottom:706.699733pt;}
.y53{bottom:722.519733pt;}
.y93{bottom:722.551733pt;}
.y1c{bottom:722.575733pt;}
.y16e{bottom:722.583733pt;}
.yfb{bottom:722.595733pt;}
.y1a7{bottom:722.643733pt;}
.y1f2{bottom:722.655733pt;}
.y134{bottom:722.679733pt;}
.yca{bottom:722.695733pt;}
.y21b{bottom:738.519733pt;}
.y92{bottom:738.547733pt;}
.y1b{bottom:738.571733pt;}
.y16d{bottom:738.579733pt;}
.yfa{bottom:738.591733pt;}
.y1a6{bottom:738.639733pt;}
.y1f1{bottom:738.651733pt;}
.y133{bottom:738.675733pt;}
.yc9{bottom:738.691733pt;}
.y21a{bottom:754.519733pt;}
.y91{bottom:754.543733pt;}
.y1a{bottom:754.567733pt;}
.y16c{bottom:754.575733pt;}
.yf9{bottom:754.587733pt;}
.y1a5{bottom:754.635733pt;}
.y1f0{bottom:754.647733pt;}
.y132{bottom:754.671733pt;}
.yc8{bottom:754.687733pt;}
.y52{bottom:758.071733pt;}
.y219{bottom:770.519733pt;}
.y90{bottom:770.539733pt;}
.y19{bottom:770.563733pt;}
.y16b{bottom:770.571733pt;}
.yf8{bottom:770.583733pt;}
.y1a4{bottom:770.631733pt;}
.y1ef{bottom:770.643733pt;}
.y131{bottom:770.667733pt;}
.yc7{bottom:770.683733pt;}
.y51{bottom:774.071733pt;}
.y218{bottom:786.519733pt;}
.y8f{bottom:786.535733pt;}
.y18{bottom:786.559733pt;}
.y16a{bottom:786.567733pt;}
.yf7{bottom:786.579733pt;}
.y1a3{bottom:786.627733pt;}
.y1ee{bottom:786.639733pt;}
.y130{bottom:786.663733pt;}
.yc6{bottom:786.679733pt;}
.y50{bottom:790.071733pt;}
.y217{bottom:802.519733pt;}
.y8e{bottom:802.531733pt;}
.y17{bottom:802.555733pt;}
.y169{bottom:802.563733pt;}
.yf6{bottom:802.575733pt;}
.y1a2{bottom:802.623733pt;}
.y1ed{bottom:802.635733pt;}
.y12f{bottom:802.659733pt;}
.yc5{bottom:802.675733pt;}
.y4f{bottom:806.071733pt;}
.y216{bottom:818.519733pt;}
.y8d{bottom:818.527733pt;}
.y16{bottom:818.551733pt;}
.y168{bottom:818.559733pt;}
.yf5{bottom:818.571733pt;}
.y1a1{bottom:818.619733pt;}
.y1ec{bottom:818.631733pt;}
.y12e{bottom:818.655733pt;}
.yc4{bottom:818.671733pt;}
.y4e{bottom:822.071733pt;}
.y215{bottom:834.519733pt;}
.y8c{bottom:834.523733pt;}
.y15{bottom:834.547733pt;}
.y167{bottom:834.555733pt;}
.yf4{bottom:834.567733pt;}
.y1a0{bottom:834.615733pt;}
.y1eb{bottom:834.627733pt;}
.y12d{bottom:834.651733pt;}
.yc3{bottom:834.667733pt;}
.y4d{bottom:838.071733pt;}
.y8b{bottom:850.519733pt;}
.y14{bottom:850.543733pt;}
.y166{bottom:850.551733pt;}
.yf3{bottom:850.563733pt;}
.y19f{bottom:850.611733pt;}
.y1ea{bottom:850.623733pt;}
.y12c{bottom:850.647733pt;}
.yc2{bottom:850.663733pt;}
.y214{bottom:866.519733pt;}
.y13{bottom:866.539733pt;}
.y165{bottom:866.547733pt;}
.y4c{bottom:866.559733pt;}
.y19e{bottom:866.607733pt;}
.y1e9{bottom:866.619733pt;}
.y12b{bottom:866.643733pt;}
.yc1{bottom:866.659733pt;}
.y8a{bottom:882.519733pt;}
.y12{bottom:882.535733pt;}
.y164{bottom:882.543733pt;}
.y4b{bottom:882.555733pt;}
.y19d{bottom:882.603733pt;}
.y1e8{bottom:882.615733pt;}
.y12a{bottom:882.639733pt;}
.yc0{bottom:882.655733pt;}
.y213{bottom:898.519733pt;}
.y11{bottom:898.531733pt;}
.y163{bottom:898.539733pt;}
.y4a{bottom:898.551733pt;}
.y19c{bottom:898.599733pt;}
.y1e7{bottom:898.611733pt;}
.y129{bottom:898.635733pt;}
.ybf{bottom:898.651733pt;}
.y212{bottom:914.519733pt;}
.y10{bottom:914.527733pt;}
.y162{bottom:914.535733pt;}
.y49{bottom:914.547733pt;}
.y19b{bottom:914.595733pt;}
.y1e6{bottom:914.607733pt;}
.y128{bottom:914.631733pt;}
.ybe{bottom:914.647733pt;}
.y211{bottom:930.519733pt;}
.yf{bottom:930.523733pt;}
.y161{bottom:930.531733pt;}
.y48{bottom:930.543733pt;}
.y19a{bottom:930.591733pt;}
.y1e5{bottom:930.603733pt;}
.y127{bottom:930.627733pt;}
.ybd{bottom:930.643733pt;}
.y210{bottom:946.519733pt;}
.ye{bottom:946.523733pt;}
.y160{bottom:946.527733pt;}
.y47{bottom:946.539733pt;}
.y199{bottom:946.587733pt;}
.y1e4{bottom:946.599733pt;}
.y126{bottom:946.623733pt;}
.ybc{bottom:946.639733pt;}
.y40{bottom:947.834933pt;}
.yd{bottom:962.519733pt;}
.y15f{bottom:962.523733pt;}
.y46{bottom:962.535733pt;}
.y198{bottom:962.583733pt;}
.y1e3{bottom:962.595733pt;}
.y125{bottom:962.619733pt;}
.ybb{bottom:962.635733pt;}
.y15e{bottom:978.519733pt;}
.y45{bottom:978.531733pt;}
.y197{bottom:978.579733pt;}
.y1e2{bottom:978.591733pt;}
.y124{bottom:978.615733pt;}
.yba{bottom:978.631733pt;}
.y20f{bottom:994.519733pt;}
.y44{bottom:994.527733pt;}
.y196{bottom:994.575733pt;}
.y1e1{bottom:994.587733pt;}
.y123{bottom:994.611733pt;}
.yb9{bottom:994.627733pt;}
.yc{bottom:1003.196533pt;}
.y227{bottom:1010.519733pt;}
.y43{bottom:1010.523733pt;}
.y195{bottom:1010.571733pt;}
.y1e0{bottom:1010.583733pt;}
.y122{bottom:1010.607733pt;}
.yb8{bottom:1010.623733pt;}
.y15d{bottom:1010.908667pt;}
.y1{bottom:1022.519733pt;}
.yb{bottom:1025.596533pt;}
.y42{bottom:1026.519733pt;}
.y194{bottom:1026.567733pt;}
.y1df{bottom:1026.579733pt;}
.y121{bottom:1026.603733pt;}
.yb7{bottom:1026.619733pt;}
.y15c{bottom:1028.508667pt;}
.y3f{bottom:1096.842000pt;}
.y88{bottom:1097.563067pt;}
.y3e{bottom:1097.754133pt;}
.h4{height:23.296875pt;}
.h5{height:23.703125pt;}
.h10{height:24.042000pt;}
.h6{height:28.687500pt;}
.h13{height:31.062500pt;}
.h14{height:31.604167pt;}
.he{height:34.945312pt;}
.h15{height:35.466667pt;}
.h7{height:35.475200pt;}
.hb{height:35.554688pt;}
.h3{height:35.973333pt;}
.h12{height:36.488383pt;}
.h9{height:36.712383pt;}
.hf{height:36.733333pt;}
.hd{height:38.250000pt;}
.h11{height:42.710938pt;}
.ha{height:43.015250pt;}
.hc{height:43.031250pt;}
.h2{height:52.864000pt;}
.h8{height:54.359375pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x6{left:7.461200pt;}
.x5{left:26.089200pt;}
.x3{left:56.674533pt;}
.x7{left:64.252000pt;}
.xd{left:75.456400pt;}
.x8{left:83.152000pt;}
.xc{left:252.141333pt;}
.x4{left:359.836667pt;}
.xe{left:408.048400pt;}
.x9{left:415.744000pt;}
.xf{left:426.948400pt;}
.xa{left:434.643867pt;}
.xb{left:650.078667pt;}
.x2{left:763.038667pt;}
.x1{left:767.666667pt;}
}




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