
    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_dd32a7ab92f312010e93d28e.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.094000;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_efec6bf904bc796125935fd0.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.993000;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_3cd2ff945bc91beb3132c77b.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.089000;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_d07968137bd0545019ef32c6.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;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_439cf162f27ed17033d10f30.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989000;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_57b0ecaf8047f7bb0a56bf42.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743000;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_d145f94b0f6743133b737a37.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;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_fccd53d22c1ce8c7bd92f4dc.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781250;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_0a447c02cc6dbcda34ef2161.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;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_3ea638f1eaebf77fd56b56fe.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989000;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_d145f94b0f6743133b737a37.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;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_57b0ecaf8047f7bb0a56bf42.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;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_0a447c02cc6dbcda34ef2161.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;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_aec3a290349820045ae1109d.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.989000;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_c5463b9ac7bdb56eeebdde6d.woff2')format("woff");}.fff{font-family:fff;line-height:0.980000;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_57b0ecaf8047f7bb0a56bf42.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.743000;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_d145f94b0f6743133b737a37.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100098;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_0a447c02cc6dbcda34ef2161.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.100098;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_3ea638f1eaebf77fd56b56fe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.989000;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:ff14;src:url('chunks/assets/font_74815e28e895f5e924141942.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.989000;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:ff15;src:url('chunks/assets/font_22425398385f2d24a95af11f.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.993000;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:ff16;src:url('chunks/assets/font_d9f51690f858f7200d3d4ad2.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.993000;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:ff17;src:url('chunks/assets/font_7aed893b6783e0fc5e23e50a.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.089000;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:ff18;src:url('chunks/assets/font_6f211f81c0b1c0f7c42a0894.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.989000;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:ff19;src:url('chunks/assets/font_a7d98ac32185eb98c01a7e8a.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.993000;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:ff1a;src:url('chunks/assets/font_4ebab36bb9d725ca0c4ac6e6.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.989000;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:ff1b;src:url('chunks/assets/font_d45ef2c50f81fb2c24918cf6.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.993000;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:ff1c;src:url('chunks/assets/font_d145f94b0f6743133b737a37.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.100098;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:ff1d;src:url('chunks/assets/font_57b0ecaf8047f7bb0a56bf42.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.743000;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:ff1e;src:url('chunks/assets/font_0a447c02cc6dbcda34ef2161.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.100098;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:ff1f;src:url('chunks/assets/font_c72cf5578b51257d185d688c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.989000;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:ff20;src:url('chunks/assets/font_9c76d660f4b8464f3767b970.woff2')format("woff");}.ff20{font-family:ff20;line-height:1.087000;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;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v7{vertical-align:-42.598406px;}
.v6{vertical-align:-28.341508px;}
.v8{vertical-align:-18.583011px;}
.v5{vertical-align:-14.429187px;}
.v9{vertical-align:-11.145000px;}
.v1{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:10.604576px;}
.v2{vertical-align:11.637000px;}
.v3{vertical-align:37.446194px;}
.ls0{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls3{letter-spacing:0.077689px;}
.ls4{letter-spacing:0.195430px;}
.ls16{letter-spacing:0.250800px;}
.ls20{letter-spacing:0.287400px;}
.ls23{letter-spacing:0.597000px;}
.ls18{letter-spacing:0.858000px;}
.ls1c{letter-spacing:0.918000px;}
.ls15{letter-spacing:1.384200px;}
.ls26{letter-spacing:2.028600px;}
.ls25{letter-spacing:2.128200px;}
.ls1b{letter-spacing:2.497200px;}
.ls29{letter-spacing:2.808000px;}
.ls8{letter-spacing:2.885837px;}
.ls19{letter-spacing:3.070200px;}
.ls22{letter-spacing:3.607800px;}
.ls24{letter-spacing:4.447200px;}
.ls21{letter-spacing:5.140800px;}
.ls1f{letter-spacing:7.087200px;}
.ls1a{letter-spacing:7.733400px;}
.ls17{letter-spacing:8.095200px;}
.ls27{letter-spacing:8.552400px;}
.ls28{letter-spacing:8.599800px;}
.ls1e{letter-spacing:10.359600px;}
.ls1d{letter-spacing:16.153200px;}
.ls6{letter-spacing:34.543904px;}
.ls11{letter-spacing:120.559088px;}
.ls9{letter-spacing:142.698199px;}
.lsc{letter-spacing:176.682164px;}
.ls5{letter-spacing:186.545698px;}
.ls10{letter-spacing:232.417591px;}
.ls14{letter-spacing:287.248502px;}
.lsf{letter-spacing:298.361129px;}
.ls12{letter-spacing:309.129179px;}
.lse{letter-spacing:309.172252px;}
.lsd{letter-spacing:320.284879px;}
.lsa{letter-spacing:322.783067px;}
.lsb{letter-spacing:331.052929px;}
.ls13{letter-spacing:342.208629px;}
.ls7{letter-spacing:344.706817px;}
.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;}
}
.ws9{word-spacing:-9.072000px;}
.ws21{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws2{word-spacing:-7.920000px;}
.wse{word-spacing:-6.977696px;}
.wsf{word-spacing:-5.627005px;}
.ws25{word-spacing:-2.808000px;}
.ws15{word-spacing:-0.918000px;}
.ws1e{word-spacing:-0.594000px;}
.ws14{word-spacing:-0.162000px;}
.ws6{word-spacing:-0.048000px;}
.ws3{word-spacing:0.000000px;}
.ws16{word-spacing:0.270000px;}
.ws1a{word-spacing:0.648000px;}
.ws18{word-spacing:0.864000px;}
.ws1f{word-spacing:0.918000px;}
.ws27{word-spacing:2.106000px;}
.ws1d{word-spacing:2.484000px;}
.ws19{word-spacing:3.078000px;}
.ws1c{word-spacing:3.726000px;}
.ws26{word-spacing:4.428000px;}
.ws24{word-spacing:7.074000px;}
.ws1b{word-spacing:7.722000px;}
.ws17{word-spacing:8.100000px;}
.ws28{word-spacing:8.586000px;}
.ws22{word-spacing:9.774000px;}
.ws23{word-spacing:10.368000px;}
.ws13{word-spacing:12.798000px;}
.ws4{word-spacing:17.514000px;}
.ws5{word-spacing:26.208000px;}
.wsb{word-spacing:30.971160px;}
.ws10{word-spacing:60.889754px;}
.wsa{word-spacing:66.103800px;}
.ws8{word-spacing:67.272000px;}
.ws20{word-spacing:68.440200px;}
.ws7{word-spacing:75.508800px;}
.ws11{word-spacing:76.677000px;}
.ws12{word-spacing:97.520400px;}
.wsd{word-spacing:138.563267px;}
.wsc{word-spacing:182.367695px;}
.ws1{word-spacing:934.747800px;}
._9{margin-left:-1595.613600px;}
._8{margin-left:-1399.185000px;}
._55{margin-left:-80.931618px;}
._64{margin-left:-5.472000px;}
._2f{margin-left:-4.344000px;}
._c{margin-left:-3.162000px;}
._6{margin-left:-2.160000px;}
._4{margin-left:-1.096200px;}
._3{width:1.328400px;}
._1{width:2.462400px;}
._0{width:3.834000px;}
._2{width:4.924800px;}
._b{width:6.128400px;}
._d{width:7.347600px;}
._f{width:8.470800px;}
._5{width:10.589400px;}
._11{width:12.073200px;}
._e{width:13.926000px;}
._10{width:15.216000px;}
._2e{width:17.052000px;}
._24{width:19.694212px;}
._63{width:20.946633px;}
._13{width:22.102577px;}
._18{width:23.967118px;}
._2c{width:26.608551px;}
._1c{width:29.016916px;}
._26{width:33.328667px;}
._41{width:34.543904px;}
._3d{width:36.912875px;}
._44{width:40.057146px;}
._1e{width:42.729060px;}
._30{width:44.656920px;}
._61{width:48.142156px;}
._1a{width:49.895678px;}
._4a{width:55.884038px;}
._53{width:60.682914px;}
._19{width:63.840889px;}
._21{width:65.938498px;}
._1d{width:67.325162px;}
._2d{width:70.479280px;}
._54{width:72.540286px;}
._14{width:74.076652px;}
._5c{width:75.135879px;}
._16{width:76.174261px;}
._62{width:77.666566px;}
._3c{width:112.235936px;}
._15{width:119.070314px;}
._52{width:121.461781px;}
._5a{width:136.111388px;}
._5d{width:137.149769px;}
._32{width:139.080134px;}
._40{width:145.627108px;}
._29{width:147.687169px;}
._59{width:149.984003px;}
._60{width:152.311221px;}
._5f{width:153.546556px;}
._5e{width:166.120481px;}
._5b{width:168.150199px;}
._58{width:169.400644px;}
._48{width:177.529039px;}
._4b{width:178.855169px;}
._57{width:182.009304px;}
._35{width:189.431536px;}
._56{width:211.768371px;}
._1f{width:216.403267px;}
._20{width:218.462030px;}
._3e{width:226.301339px;}
._51{width:232.417591px;}
._33{width:240.412181px;}
._28{width:247.945082px;}
._50{width:266.038909px;}
._49{width:277.151537px;}
._42{width:279.649724px;}
._39{width:295.279326px;}
._45{width:297.605225px;}
._3a{width:306.391954px;}
._25{width:313.747834px;}
._4c{width:317.011392px;}
._34{width:322.955356px;}
._3f{width:325.238182px;}
._4d{width:328.167092px;}
._47{width:330.665279px;}
._36{width:334.067983px;}
._12{width:346.815672px;}
._3b{width:353.235112px;}
._2a{width:356.010759px;}
._43{width:358.403776px;}
._17{width:359.429084px;}
._1b{width:361.449003px;}
._46{width:363.227863px;}
._38{width:370.793318px;}
._2b{width:375.238836px;}
._22{width:378.668244px;}
._23{width:380.338562px;}
._31{width:384.936251px;}
._37{width:389.353662px;}
._4e{width:395.532013px;}
._27{width:479.148141px;}
._4f{width:518.330855px;}
._7{width:1039.935000px;}
._a{width:1337.568600px;}
.fca{color:rgb(4,6,6);}
.fc8{color:rgb(101,151,45);}
.fc7{color:rgb(53,145,165);}
.fc5{color:rgb(64,172,173);}
.fc4{color:rgb(254,255,253);}
.fc3{color:rgb(103,104,102);}
.fc1{color:rgb(224,63,93);}
.fc9{color:rgb(80,80,80);}
.fc6{color:rgb(46,46,46);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsc{font-size:34.734600px;}
.fs9{font-size:35.640000px;}
.fs6{font-size:36.000000px;}
.fsb{font-size:37.892400px;}
.fs7{font-size:38.844600px;}
.fs4{font-size:42.000000px;}
.fsa{font-size:43.072200px;}
.fs8{font-size:43.560000px;}
.fs0{font-size:48.000000px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:126.000000px;}
.y0{bottom:0.000000px;}
.y20{bottom:25.267500px;}
.y41{bottom:27.364200px;}
.y21{bottom:28.176750px;}
.y194{bottom:66.339600px;}
.y149{bottom:71.670000px;}
.y1bb{bottom:71.839950px;}
.yc8{bottom:72.238200px;}
.y141{bottom:73.986450px;}
.y93{bottom:74.128200px;}
.y40{bottom:74.648100px;}
.ya9{bottom:74.747250px;}
.y1ac{bottom:74.877347px;}
.y116{bottom:75.082518px;}
.y193{bottom:77.139600px;}
.y23a{bottom:79.934550px;}
.y1e7{bottom:80.128350px;}
.y148{bottom:82.470000px;}
.y1ba{bottom:82.639950px;}
.yc7{bottom:83.038200px;}
.y115{bottom:85.318070px;}
.y1e{bottom:86.748450px;}
.y192{bottom:87.939600px;}
.y6a{bottom:89.624400px;}
.y140{bottom:91.986450px;}
.y92{bottom:92.128200px;}
.y3f{bottom:92.648100px;}
.ya8{bottom:92.747250px;}
.y147{bottom:93.270000px;}
.y1ab{bottom:93.503776px;}
.y239{bottom:94.503300px;}
.y15{bottom:94.537800px;}
.y114{bottom:96.447048px;}
.y1e6{bottom:98.128350px;}
.yc6{bottom:99.271200px;}
.y1b5{bottom:100.064850px;}
.y1be{bottom:100.206300px;}
.y18d{bottom:106.890900px;}
.y113{bottom:107.576026px;}
.y69{bottom:107.624400px;}
.y238{bottom:109.072050px;}
.y13f{bottom:109.986450px;}
.y91{bottom:110.128200px;}
.y3e{bottom:110.648100px;}
.ya7{bottom:110.747250px;}
.y1aa{bottom:112.138889px;}
.y143{bottom:112.820700px;}
.y211{bottom:113.022000px;}
.yc5{bottom:113.671200px;}
.y111{bottom:121.346437px;}
.y196{bottom:123.261000px;}
.y68{bottom:125.624400px;}
.y14b{bottom:127.631550px;}
.y13e{bottom:127.986450px;}
.yd8{bottom:128.128200px;}
.y1e5{bottom:128.128350px;}
.y3d{bottom:128.648100px;}
.ya6{bottom:128.747250px;}
.y1a9{bottom:130.921624px;}
.y210{bottom:131.022000px;}
.y260{bottom:131.588250px;}
.y112{bottom:131.591700px;}
.y110{bottom:131.592614px;}
.yc9{bottom:132.480150px;}
.y14{bottom:132.989700px;}
.y237{bottom:135.640800px;}
.y90{bottom:140.128200px;}
.y10f{bottom:143.595596px;}
.y67{bottom:143.624400px;}
.y13d{bottom:145.986450px;}
.yd7{bottom:146.128200px;}
.y1e4{bottom:146.128350px;}
.y25f{bottom:146.157000px;}
.ya5{bottom:146.747100px;}
.y20f{bottom:149.022000px;}
.y13{bottom:149.189700px;}
.y1a8{bottom:149.556737px;}
.y236{bottom:150.209550px;}
.y10e{bottom:153.840859px;}
.y3c{bottom:158.648100px;}
.y25e{bottom:160.725750px;}
.y10d{bottom:161.085377px;}
.y66{bottom:161.624400px;}
.y13c{bottom:163.986450px;}
.yd6{bottom:164.128200px;}
.y1e3{bottom:164.128350px;}
.ya4{bottom:164.747100px;}
.y235{bottom:164.778300px;}
.y12{bottom:165.389700px;}
.y20e{bottom:167.022000px;}
.y1a7{bottom:168.192568px;}
.y8f{bottom:170.128200px;}
.y10c{bottom:174.865499px;}
.y3b{bottom:176.648100px;}
.y65{bottom:179.624400px;}
.y19d{bottom:180.514668px;}
.y11{bottom:181.589700px;}
.y13b{bottom:181.986450px;}
.yd5{bottom:182.128200px;}
.y1e2{bottom:182.128350px;}
.ya3{bottom:182.747100px;}
.y20d{bottom:185.022000px;}
.y1a6{bottom:186.818998px;}
.y25d{bottom:187.294500px;}
.y8e{bottom:188.128200px;}
.y10b{bottom:188.635909px;}
.y234{bottom:191.347050px;}
.y1a0{bottom:192.993073px;}
.y10a{bottom:193.268128px;}
.y3a{bottom:194.648100px;}
.y64{bottom:197.624400px;}
.y10{bottom:197.789700px;}
.y13a{bottom:199.986450px;}
.yd4{bottom:200.128200px;}
.y1e1{bottom:200.128350px;}
.y25c{bottom:201.863250px;}
.y1a5{bottom:205.315172px;}
.y8d{bottom:206.128200px;}
.y19c{bottom:209.248866px;}
.y19e{bottom:209.952241px;}
.y39{bottom:212.648100px;}
.ya2{bottom:212.747100px;}
.yf{bottom:213.989700px;}
.y20c{bottom:215.022000px;}
.y63{bottom:215.624400px;}
.y109{bottom:216.759400px;}
.y19a{bottom:217.619904px;}
.y1a4{bottom:217.628588px;}
.y233{bottom:217.915800px;}
.yd3{bottom:218.128200px;}
.y1e0{bottom:218.128350px;}
.y1a3{bottom:218.340647px;}
.y1a1{bottom:218.427484px;}
.y19f{bottom:219.981857px;}
.y19b{bottom:220.329203px;}
.y8c{bottom:224.128200px;}
.y108{bottom:227.878666px;}
.y25b{bottom:228.432000px;}
.y199{bottom:229.933320px;}
.y1a2{bottom:229.942004px;}
.y139{bottom:229.986450px;}
.ye{bottom:230.189700px;}
.y38{bottom:230.648100px;}
.y20b{bottom:233.022000px;}
.y62{bottom:233.624400px;}
.yd2{bottom:236.128200px;}
.y106{bottom:239.881648px;}
.y105{bottom:239.885324px;}
.ya1{bottom:242.747100px;}
.y25a{bottom:243.000750px;}
.y232{bottom:244.484550px;}
.yd{bottom:246.389700px;}
.y138{bottom:247.986450px;}
.y1df{bottom:248.128350px;}
.y37{bottom:248.648100px;}
.y198{bottom:249.038520px;}
.y107{bottom:250.117200px;}
.y104{bottom:250.120876px;}
.y20a{bottom:251.022000px;}
.y8b{bottom:254.128200px;}
.y231{bottom:259.053300px;}
.ya0{bottom:260.747100px;}
.y197{bottom:261.353550px;}
.y103{bottom:263.007572px;}
.y61{bottom:263.624400px;}
.y137{bottom:265.986450px;}
.y1de{bottom:266.128350px;}
.y36{bottom:266.648100px;}
.y209{bottom:269.022000px;}
.y259{bottom:269.569500px;}
.y8a{bottom:272.128200px;}
.y102{bottom:272.369121px;}
.yfb{bottom:276.593471px;}
.y9f{bottom:278.747100px;}
.yc{bottom:278.789700px;}
.y60{bottom:281.624400px;}
.y101{bottom:283.488387px;}
.y136{bottom:283.986450px;}
.y1dd{bottom:284.128350px;}
.y258{bottom:284.138250px;}
.y35{bottom:284.648100px;}
.y230{bottom:285.622050px;}
.yff{bottom:285.867619px;}
.y208{bottom:287.022000px;}
.y89{bottom:290.128200px;}
.y100{bottom:292.849936px;}
.y9e{bottom:296.747100px;}
.y5f{bottom:299.624400px;}
.y22f{bottom:300.190800px;}
.y135{bottom:301.986450px;}
.yd1{bottom:302.128200px;}
.y1dc{bottom:302.128350px;}
.y34{bottom:302.648100px;}
.y166{bottom:303.941700px;}
.y1b9{bottom:307.234500px;}
.y88{bottom:308.128200px;}
.y257{bottom:310.707000px;}
.yfd{bottom:313.408441px;}
.y9d{bottom:314.747100px;}
.yfe{bottom:315.340959px;}
.y207{bottom:317.022000px;}
.y5e{bottom:317.624400px;}
.y1b8{bottom:318.034350px;}
.yb{bottom:319.899150px;}
.y134{bottom:319.986450px;}
.yd0{bottom:320.128200px;}
.y1db{bottom:320.128350px;}
.y33{bottom:320.648100px;}
.y165{bottom:321.941700px;}
.y256{bottom:325.275750px;}
.y87{bottom:326.128200px;}
.y22e{bottom:326.759550px;}
.yfc{bottom:327.188562px;}
.yc4{bottom:332.128200px;}
.y9c{bottom:332.747100px;}
.y206{bottom:335.022000px;}
.y1b4{bottom:335.459250px;}
.y5d{bottom:335.624400px;}
.y1bd{bottom:336.663750px;}
.y133{bottom:337.986450px;}
.ycf{bottom:338.128200px;}
.y1da{bottom:338.128350px;}
.y164{bottom:339.941700px;}
.y22d{bottom:341.328300px;}
.yc3{bottom:350.128200px;}
.y32{bottom:350.648100px;}
.y255{bottom:351.844500px;}
.y205{bottom:353.022000px;}
.ya{bottom:353.199150px;}
.y5c{bottom:353.624400px;}
.y132{bottom:355.986450px;}
.y86{bottom:356.128200px;}
.y1d9{bottom:356.128350px;}
.y163{bottom:357.941700px;}
.yf9{bottom:360.119072px;}
.y9b{bottom:362.747100px;}
.y22c{bottom:367.897050px;}
.yc2{bottom:368.128200px;}
.y31{bottom:368.648100px;}
.y9{bottom:369.399150px;}
.y204{bottom:371.022000px;}
.yf8{bottom:371.245900px;}
.yfa{bottom:371.248050px;}
.y5b{bottom:371.624400px;}
.y131{bottom:373.986450px;}
.y85{bottom:374.128200px;}
.y1d8{bottom:374.128350px;}
.y162{bottom:375.941700px;}
.y146{bottom:376.748700px;}
.y254{bottom:378.413250px;}
.y9a{bottom:380.747100px;}
.yf7{bottom:381.481452px;}
.y22b{bottom:382.465800px;}
.y8{bottom:385.599150px;}
.yc1{bottom:386.128200px;}
.y30{bottom:386.648100px;}
.y145{bottom:387.548700px;}
.y203{bottom:389.022000px;}
.y5a{bottom:389.624400px;}
.yf6{bottom:391.726715px;}
.y130{bottom:391.986450px;}
.y84{bottom:392.128200px;}
.y253{bottom:392.982000px;}
.y22a{bottom:397.034550px;}
.y144{bottom:398.348700px;}
.y7{bottom:401.799150px;}
.y1d7{bottom:404.128350px;}
.y2f{bottom:404.648100px;}
.yf5{bottom:405.497126px;}
.y202{bottom:407.022000px;}
.y12f{bottom:409.986450px;}
.y83{bottom:410.128200px;}
.y99{bottom:410.747100px;}
.y18a{bottom:410.862537px;}
.y191{bottom:412.705050px;}
.yc0{bottom:416.128200px;}
.yf4{bottom:417.509818px;}
.y142{bottom:417.899550px;}
.y6{bottom:417.999150px;}
.y252{bottom:419.550750px;}
.y59{bottom:419.624400px;}
.y1d6{bottom:422.128350px;}
.y2e{bottom:422.648100px;}
.y190{bottom:423.505050px;}
.y229{bottom:423.603300px;}
.yf2{bottom:424.229934px;}
.y201{bottom:425.022000px;}
.y12e{bottom:427.986450px;}
.y82{bottom:428.128200px;}
.y189{bottom:430.320403px;}
.yf3{bottom:431.280229px;}
.y14a{bottom:432.710250px;}
.y251{bottom:434.119500px;}
.ybf{bottom:434.128200px;}
.y5{bottom:434.199150px;}
.y18f{bottom:434.305050px;}
.y58{bottom:437.624400px;}
.y228{bottom:438.172050px;}
.y98{bottom:438.947100px;}
.yce{bottom:440.128200px;}
.y1d5{bottom:440.128350px;}
.y2d{bottom:440.648100px;}
.yf1{bottom:441.428381px;}
.yf0{bottom:441.525492px;}
.y200{bottom:443.022000px;}
.y18e{bottom:445.105050px;}
.y12d{bottom:445.986450px;}
.y81{bottom:446.128200px;}
.y188{bottom:449.778270px;}
.y4{bottom:450.399150px;}
.y159{bottom:451.486890px;}
.ybe{bottom:452.128200px;}
.y227{bottom:452.740800px;}
.y57{bottom:455.624400px;}
.y97{bottom:456.947100px;}
.y1d4{bottom:458.128350px;}
.y250{bottom:460.688250px;}
.y12c{bottom:463.986450px;}
.y18c{bottom:463.997250px;}
.y1b2{bottom:464.128200px;}
.yef{bottom:465.647989px;}
.y3{bottom:466.599150px;}
.y156{bottom:469.029300px;}
.y187{bottom:469.193064px;}
.y158{bottom:470.055330px;}
.ybd{bottom:470.128200px;}
.y2c{bottom:470.648100px;}
.y1ff{bottom:473.022000px;}
.y56{bottom:473.624400px;}
.y96{bottom:474.947100px;}
.y24f{bottom:475.257000px;}
.y80{bottom:476.128200px;}
.y1d3{bottom:476.128350px;}
.y18b{bottom:478.397250px;}
.y226{bottom:479.309550px;}
.y184{bottom:481.041249px;}
.y185{bottom:481.059455px;}
.y12b{bottom:481.986450px;}
.y155{bottom:482.097300px;}
.y1b1{bottom:482.128200px;}
.y2{bottom:482.799150px;}
.y15e{bottom:483.072840px;}
.ybc{bottom:488.128200px;}
.y2b{bottom:488.648100px;}
.y55{bottom:491.624400px;}
.yed{bottom:491.926650px;}
.yee{bottom:491.936072px;}
.y95{bottom:492.947100px;}
.y225{bottom:493.878300px;}
.y1d2{bottom:494.128350px;}
.y195{bottom:494.767200px;}
.y154{bottom:495.165300px;}
.y15d{bottom:496.090350px;}
.y183{bottom:496.310344px;}
.y12a{bottom:499.986450px;}
.y1b0{bottom:500.128200px;}
.y24e{bottom:501.825750px;}
.yec{bottom:503.055627px;}
.y7f{bottom:506.128200px;}
.y2a{bottom:506.648100px;}
.y153{bottom:508.233300px;}
.y160{bottom:508.804920px;}
.y54{bottom:509.624400px;}
.y94{bottom:510.947100px;}
.y1fe{bottom:511.525950px;}
.y182{bottom:511.579439px;}
.y186{bottom:511.597645px;}
.y1d1{bottom:512.128350px;}
.yeb{bottom:514.174894px;}
.y1{bottom:515.199150px;}
.y24d{bottom:516.394500px;}
.y181{bottom:516.597350px;}
.y224{bottom:520.447050px;}
.y152{bottom:521.301300px;}
.y15f{bottom:522.089730px;}
.y7e{bottom:524.128200px;}
.y29{bottom:524.648100px;}
.yea{bottom:525.303872px;}
.y1fd{bottom:529.525950px;}
.y129{bottom:529.986450px;}
.y1af{bottom:530.128200px;}
.y1d0{bottom:530.128350px;}
.y151{bottom:534.369300px;}
.y223{bottom:535.015800px;}
.y15c{bottom:535.151790px;}
.ye9{bottom:538.190568px;}
.y180{bottom:538.908750px;}
.y53{bottom:539.624400px;}
.ye1{bottom:539.627700px;}
.y7d{bottom:542.128200px;}
.y28{bottom:542.648100px;}
.y24c{bottom:542.963250px;}
.yae{bottom:545.937900px;}
.y150{bottom:547.437300px;}
.y1fc{bottom:547.525950px;}
.ye8{bottom:547.552117px;}
.y128{bottom:547.986450px;}
.y1ae{bottom:548.128200px;}
.y222{bottom:549.584550px;}
.ye0{bottom:550.427700px;}
.ybb{bottom:554.128200px;}
.yad{bottom:556.737900px;}
.y52{bottom:557.624400px;}
.y17f{bottom:558.528137px;}
.ycd{bottom:560.128200px;}
.y1cf{bottom:560.128350px;}
.ye7{bottom:560.438813px;}
.y14f{bottom:560.505300px;}
.y27{bottom:560.648100px;}
.y161{bottom:561.168990px;}
.ydf{bottom:561.227700px;}
.y1fb{bottom:565.525950px;}
.y127{bottom:565.986450px;}
.y1ad{bottom:566.128200px;}
.yac{bottom:567.537900px;}
.y17{bottom:569.122500px;}
.y24b{bottom:569.532000px;}
.ye6{bottom:569.800361px;}
.yde{bottom:572.027700px;}
.y7c{bottom:572.128200px;}
.y15b{bottom:572.956920px;}
.y14e{bottom:573.573300px;}
.y51{bottom:575.624400px;}
.y221{bottom:576.153300px;}
.y17e{bottom:578.093684px;}
.ycc{bottom:578.128200px;}
.y1ce{bottom:578.128350px;}
.ydd{bottom:582.827700px;}
.y1fa{bottom:583.525950px;}
.y126{bottom:583.986450px;}
.y24a{bottom:584.100750px;}
.yba{bottom:584.128200px;}
.yab{bottom:585.222300px;}
.y15a{bottom:586.446660px;}
.y14d{bottom:586.641300px;}
.y1a{bottom:588.262200px;}
.ye5{bottom:590.630778px;}
.y26{bottom:590.648100px;}
.y220{bottom:590.722050px;}
.y50{bottom:593.624400px;}
.ycb{bottom:596.128200px;}
.y1cd{bottom:596.128350px;}
.y17d{bottom:597.659231px;}
.yda{bottom:598.548900px;}
.y249{bottom:598.669500px;}
.yaa{bottom:599.622300px;}
.y14c{bottom:599.709300px;}
.y157{bottom:599.936400px;}
.y19{bottom:600.862200px;}
.y125{bottom:601.986450px;}
.y7b{bottom:602.128200px;}
.ye4{bottom:604.410900px;}
.y25{bottom:608.648100px;}
.y1ea{bottom:611.405850px;}
.y1f9{bottom:613.525950px;}
.y1cc{bottom:614.128350px;}
.yaf{bottom:614.433150px;}
.y18{bottom:615.262200px;}
.ye3{bottom:616.608000px;}
.y17c{bottom:617.181705px;}
.y21f{bottom:617.290800px;}
.y124{bottom:619.986450px;}
.y7a{bottom:620.128200px;}
.y1e9{bottom:622.205850px;}
.y4f{bottom:623.624400px;}
.y248{bottom:625.238250px;}
.yca{bottom:626.128200px;}
.y24{bottom:626.648100px;}
.y17a{bottom:628.358941px;}
.y21e{bottom:631.859550px;}
.y1cb{bottom:632.128350px;}
.y16{bottom:637.656150px;}
.y179{bottom:637.770217px;}
.y123{bottom:637.986450px;}
.y79{bottom:638.128200px;}
.y1e8{bottom:639.781200px;}
.y247{bottom:639.807000px;}
.y1f8{bottom:643.525950px;}
.y23{bottom:644.648100px;}
.y17b{bottom:653.028544px;}
.y178{bottom:653.039312px;}
.y4e{bottom:653.624400px;}
.y122{bottom:655.986450px;}
.y78{bottom:656.128200px;}
.y1eb{bottom:656.151150px;}
.y21d{bottom:658.428300px;}
.y1f7{bottom:661.525950px;}
.y1ca{bottom:662.128350px;}
.y246{bottom:666.375750px;}
.yb9{bottom:668.128200px;}
.y177{bottom:672.324889px;}
.y21c{bottom:672.997050px;}
.y121{bottom:673.986450px;}
.y77{bottom:674.128200px;}
.y22{bottom:674.648100px;}
.y1f6{bottom:679.525950px;}
.y1c9{bottom:680.128350px;}
.y176{bottom:680.863953px;}
.y245{bottom:680.944500px;}
.y21b{bottom:687.565800px;}
.y174{bottom:689.661450px;}
.y172{bottom:689.672511px;}
.y120{bottom:691.986450px;}
.y1b7{bottom:692.081550px;}
.y76{bottom:692.128200px;}
.y4d{bottom:692.128350px;}
.y1f5{bottom:697.525950px;}
.yb8{bottom:698.128200px;}
.y1c8{bottom:698.128350px;}
.y175{bottom:700.375660px;}
.y171{bottom:700.440561px;}
.y173{bottom:700.451329px;}
.y1d{bottom:700.594050px;}
.y1b6{bottom:702.881550px;}
.y244{bottom:707.513250px;}
.y11f{bottom:709.986450px;}
.y75{bottom:710.128200px;}
.y4c{bottom:710.128350px;}
.y21a{bottom:714.134550px;}
.y1f4{bottom:715.525950px;}
.yb7{bottom:716.128200px;}
.y1c7{bottom:716.128350px;}
.y170{bottom:719.973804px;}
.y1b3{bottom:720.306450px;}
.y1bc{bottom:721.510950px;}
.y243{bottom:722.082000px;}
.y74{bottom:728.128200px;}
.y4b{bottom:728.128350px;}
.y219{bottom:728.703300px;}
.yb6{bottom:734.128200px;}
.y1c6{bottom:734.128350px;}
.y242{bottom:736.650750px;}
.y1c{bottom:738.394050px;}
.y16f{bottom:739.496279px;}
.y11e{bottom:739.986450px;}
.y1f3{bottom:745.525950px;}
.y73{bottom:746.128200px;}
.y4a{bottom:746.128350px;}
.yb5{bottom:752.128200px;}
.y1c5{bottom:752.128350px;}
.y218{bottom:755.272050px;}
.y11d{bottom:757.986450px;}
.y16e{bottom:758.975681px;}
.y241{bottom:763.219500px;}
.y1f2{bottom:763.525950px;}
.y72{bottom:764.128200px;}
.y49{bottom:764.128350px;}
.y217{bottom:769.840800px;}
.y1c4{bottom:770.128350px;}
.y11c{bottom:775.986450px;}
.y1b{bottom:776.194050px;}
.y240{bottom:777.788250px;}
.y16d{bottom:778.164346px;}
.y1f1{bottom:781.525950px;}
.yb4{bottom:782.128200px;}
.y11b{bottom:793.986450px;}
.y71{bottom:794.128200px;}
.y48{bottom:794.128350px;}
.y216{bottom:796.409550px;}
.yb3{bottom:800.128200px;}
.y1c3{bottom:800.128350px;}
.y16c{bottom:802.672428px;}
.y23f{bottom:804.357000px;}
.y1f0{bottom:811.525950px;}
.y11a{bottom:811.986450px;}
.y70{bottom:812.128200px;}
.y47{bottom:812.128350px;}
.yb2{bottom:818.128200px;}
.y1c2{bottom:818.128350px;}
.y23e{bottom:818.925750px;}
.y16b{bottom:822.162598px;}
.y215{bottom:822.978300px;}
.y1ef{bottom:829.525950px;}
.y119{bottom:829.986450px;}
.y6f{bottom:830.128200px;}
.y46{bottom:830.128350px;}
.yb1{bottom:836.128200px;}
.y1c1{bottom:836.128350px;}
.y214{bottom:837.547050px;}
.y16a{bottom:841.609697px;}
.y23d{bottom:845.494500px;}
.y1ee{bottom:847.525950px;}
.y118{bottom:847.986450px;}
.y6e{bottom:848.128200px;}
.y45{bottom:848.128350px;}
.yb0{bottom:854.128200px;}
.y1c0{bottom:854.128350px;}
.ydc{bottom:857.163450px;}
.y23c{bottom:860.063250px;}
.y169{bottom:861.046027px;}
.y213{bottom:864.115800px;}
.y1ed{bottom:865.525950px;}
.y117{bottom:865.986450px;}
.y6d{bottom:866.128200px;}
.y44{bottom:866.128350px;}
.ydb{bottom:867.963300px;}
.y1bf{bottom:872.128350px;}
.y23b{bottom:874.632000px;}
.y168{bottom:880.439285px;}
.y212{bottom:881.470800px;}
.y1ec{bottom:883.525950px;}
.y6c{bottom:884.128200px;}
.y43{bottom:884.128350px;}
.yd9{bottom:887.682750px;}
.y167{bottom:900.015600px;}
.y6b{bottom:902.128200px;}
.y42{bottom:902.128350px;}
.ye2{bottom:905.741700px;}
.y1f{bottom:965.135850px;}
.h22{height:28.239230px;}
.h1b{height:28.975320px;}
.h21{height:30.654952px;}
.h13{height:31.425281px;}
.h14{height:31.580660px;}
.h17{height:31.589260px;}
.h16{height:31.618350px;}
.h10{height:32.616000px;}
.h11{height:33.978000px;}
.h1c{height:34.845410px;}
.h1f{height:34.918233px;}
.h1d{height:35.017699px;}
.h1e{height:35.060771px;}
.h20{height:35.103843px;}
.h19{height:35.414280px;}
.h7{height:38.052000px;}
.hf{height:38.928000px;}
.h1a{height:39.465360px;}
.hc{height:39.945112px;}
.h18{height:42.029857px;}
.ha{height:43.195312px;}
.h12{height:43.308000px;}
.h6{height:43.488000px;}
.h9{height:43.686000px;}
.h24{height:43.794000px;}
.h4{height:43.872000px;}
.hb{height:46.875000px;}
.h2{height:48.780000px;}
.h3{height:48.924000px;}
.h5{height:49.356000px;}
.h23{height:52.098000px;}
.he{height:54.360000px;}
.hd{height:54.840000px;}
.h15{height:69.026854px;}
.h8{height:115.164000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x0{left:0.000000px;}
.x1f{left:11.240550px;}
.x12{left:13.181100px;}
.x1e{left:20.041950px;}
.x1d{left:40.330650px;}
.x6a{left:42.209850px;}
.x26{left:47.386200px;}
.x22{left:59.860350px;}
.x23{left:61.425900px;}
.x11{left:66.470700px;}
.x25{left:68.356050px;}
.xf{left:77.171100px;}
.x24{left:82.764000px;}
.x17{left:85.464600px;}
.x69{left:87.164100px;}
.x21{left:92.751900px;}
.x27{left:97.353000px;}
.x2{left:106.299150px;}
.x58{left:108.231600px;}
.x5{left:109.349550px;}
.x20{left:114.437250px;}
.x4{left:117.578250px;}
.x18{left:127.564350px;}
.x5a{left:136.707300px;}
.x57{left:140.295600px;}
.x7{left:141.539400px;}
.x55{left:144.724350px;}
.x59{left:165.856800px;}
.x10{left:168.377850px;}
.x13{left:170.078700px;}
.x6b{left:183.819450px;}
.x6{left:186.531900px;}
.xe{left:203.789550px;}
.x1a{left:210.902850px;}
.x14{left:212.603700px;}
.x28{left:220.736550px;}
.x29{left:224.138400px;}
.x56{left:243.060900px;}
.x68{left:265.748100px;}
.x33{left:272.976442px;}
.x2a{left:278.485200px;}
.x5b{left:287.917950px;}
.x34{left:303.925877px;}
.x2f{left:307.987674px;}
.xb{left:329.524800px;}
.x4b{left:334.582050px;}
.x5c{left:340.009215px;}
.x4c{left:344.380200px;}
.x63{left:349.908576px;}
.xd{left:361.101750px;}
.x53{left:373.318876px;}
.x4a{left:377.101650px;}
.x5d{left:381.117614px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.xc{left:398.067300px;}
.x30{left:399.864864px;}
.x64{left:403.994639px;}
.x15{left:413.253600px;}
.x5e{left:414.905696px;}
.x5f{left:454.694180px;}
.x2d{left:463.404918px;}
.x36{left:468.141750px;}
.x3a{left:470.288220px;}
.x51{left:473.041787px;}
.x19{left:483.522900px;}
.x3c{left:494.115540px;}
.x38{left:499.299180px;}
.x2b{left:501.899917px;}
.x3f{left:506.813280px;}
.x67{left:512.362200px;}
.x66{left:513.637800px;}
.x65{left:516.614100px;}
.x39{left:525.478740px;}
.x31{left:531.412102px;}
.x4d{left:532.562642px;}
.x35{left:535.109514px;}
.x32{left:537.227433px;}
.x8{left:541.060350px;}
.x4e{left:542.943042px;}
.x3e{left:551.440500px;}
.x40{left:557.037960px;}
.x60{left:562.432226px;}
.x37{left:567.176550px;}
.xa{left:574.721700px;}
.x52{left:582.089830px;}
.x54{left:584.835697px;}
.x3b{left:585.950910px;}
.x3d{left:594.303540px;}
.x9{left:609.602700px;}
.x61{left:615.168032px;}
.x42{left:616.859520px;}
.x2c{left:623.765138px;}
.x49{left:632.808420px;}
.x1c{left:650.551200px;}
.x48{left:651.911460px;}
.x47{left:657.364380px;}
.x45{left:660.375960px;}
.x43{left:674.293380px;}
.x41{left:676.583250px;}
.x62{left:684.133581px;}
.x2e{left:687.858728px;}
.x4f{left:693.506843px;}
.x50{left:698.987780px;}
.x44{left:705.246720px;}
.x1b{left:723.712950px;}
.x16{left:725.763750px;}
.x46{left:768.596820px;}
@media print{
.v7{vertical-align:-37.865250pt;}
.v6{vertical-align:-25.192451pt;}
.v8{vertical-align:-16.518232pt;}
.v5{vertical-align:-12.825944pt;}
.v9{vertical-align:-9.906667pt;}
.v1{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:9.426290pt;}
.v2{vertical-align:10.344000pt;}
.v3{vertical-align:33.285506pt;}
.ls0{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls3{letter-spacing:0.069057pt;}
.ls4{letter-spacing:0.173715pt;}
.ls16{letter-spacing:0.222933pt;}
.ls20{letter-spacing:0.255467pt;}
.ls23{letter-spacing:0.530667pt;}
.ls18{letter-spacing:0.762667pt;}
.ls1c{letter-spacing:0.816000pt;}
.ls15{letter-spacing:1.230400pt;}
.ls26{letter-spacing:1.803200pt;}
.ls25{letter-spacing:1.891733pt;}
.ls1b{letter-spacing:2.219733pt;}
.ls29{letter-spacing:2.496000pt;}
.ls8{letter-spacing:2.565189pt;}
.ls19{letter-spacing:2.729067pt;}
.ls22{letter-spacing:3.206933pt;}
.ls24{letter-spacing:3.953067pt;}
.ls21{letter-spacing:4.569600pt;}
.ls1f{letter-spacing:6.299733pt;}
.ls1a{letter-spacing:6.874133pt;}
.ls17{letter-spacing:7.195733pt;}
.ls27{letter-spacing:7.602133pt;}
.ls28{letter-spacing:7.644267pt;}
.ls1e{letter-spacing:9.208533pt;}
.ls1d{letter-spacing:14.358400pt;}
.ls6{letter-spacing:30.705693pt;}
.ls11{letter-spacing:107.163634pt;}
.ls9{letter-spacing:126.842843pt;}
.lsc{letter-spacing:157.050813pt;}
.ls5{letter-spacing:165.818398pt;}
.ls10{letter-spacing:206.593414pt;}
.ls14{letter-spacing:255.332002pt;}
.lsf{letter-spacing:265.209893pt;}
.ls12{letter-spacing:274.781493pt;}
.lse{letter-spacing:274.819779pt;}
.lsd{letter-spacing:284.697670pt;}
.lsa{letter-spacing:286.918282pt;}
.lsb{letter-spacing:294.269270pt;}
.ls13{letter-spacing:304.185448pt;}
.ls7{letter-spacing:306.406059pt;}
.ws9{word-spacing:-8.064000pt;}
.ws21{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws2{word-spacing:-7.040000pt;}
.wse{word-spacing:-6.202397pt;}
.wsf{word-spacing:-5.001782pt;}
.ws25{word-spacing:-2.496000pt;}
.ws15{word-spacing:-0.816000pt;}
.ws1e{word-spacing:-0.528000pt;}
.ws14{word-spacing:-0.144000pt;}
.ws6{word-spacing:-0.042667pt;}
.ws3{word-spacing:0.000000pt;}
.ws16{word-spacing:0.240000pt;}
.ws1a{word-spacing:0.576000pt;}
.ws18{word-spacing:0.768000pt;}
.ws1f{word-spacing:0.816000pt;}
.ws27{word-spacing:1.872000pt;}
.ws1d{word-spacing:2.208000pt;}
.ws19{word-spacing:2.736000pt;}
.ws1c{word-spacing:3.312000pt;}
.ws26{word-spacing:3.936000pt;}
.ws24{word-spacing:6.288000pt;}
.ws1b{word-spacing:6.864000pt;}
.ws17{word-spacing:7.200000pt;}
.ws28{word-spacing:7.632000pt;}
.ws22{word-spacing:8.688000pt;}
.ws23{word-spacing:9.216000pt;}
.ws13{word-spacing:11.376000pt;}
.ws4{word-spacing:15.568000pt;}
.ws5{word-spacing:23.296000pt;}
.wsb{word-spacing:27.529920pt;}
.ws10{word-spacing:54.124226pt;}
.wsa{word-spacing:58.758933pt;}
.ws8{word-spacing:59.797333pt;}
.ws20{word-spacing:60.835733pt;}
.ws7{word-spacing:67.118933pt;}
.ws11{word-spacing:68.157333pt;}
.ws12{word-spacing:86.684800pt;}
.wsd{word-spacing:123.167349pt;}
.wsc{word-spacing:162.104618pt;}
.ws1{word-spacing:830.886933pt;}
._9{margin-left:-1418.323200pt;}
._8{margin-left:-1243.720000pt;}
._55{margin-left:-71.939216pt;}
._64{margin-left:-4.864000pt;}
._2f{margin-left:-3.861333pt;}
._c{margin-left:-2.810667pt;}
._6{margin-left:-1.920000pt;}
._4{margin-left:-0.974400pt;}
._3{width:1.180800pt;}
._1{width:2.188800pt;}
._0{width:3.408000pt;}
._2{width:4.377600pt;}
._b{width:5.447467pt;}
._d{width:6.531200pt;}
._f{width:7.529600pt;}
._5{width:9.412800pt;}
._11{width:10.731733pt;}
._e{width:12.378667pt;}
._10{width:13.525333pt;}
._2e{width:15.157333pt;}
._24{width:17.505966pt;}
._63{width:18.619229pt;}
._13{width:19.646735pt;}
._18{width:21.304105pt;}
._2c{width:23.652045pt;}
._1c{width:25.792814pt;}
._26{width:29.625482pt;}
._41{width:30.705693pt;}
._3d{width:32.811445pt;}
._44{width:35.606352pt;}
._1e{width:37.981387pt;}
._30{width:39.695040pt;}
._61{width:42.793027pt;}
._1a{width:44.351714pt;}
._4a{width:49.674701pt;}
._53{width:53.940368pt;}
._19{width:56.747457pt;}
._21{width:58.611998pt;}
._1d{width:59.844589pt;}
._2d{width:62.648249pt;}
._54{width:64.480254pt;}
._14{width:65.845913pt;}
._5c{width:66.787448pt;}
._16{width:67.710454pt;}
._62{width:69.036947pt;}
._3c{width:99.765277pt;}
._15{width:105.840279pt;}
._52{width:107.966027pt;}
._5a{width:120.987900pt;}
._5d{width:121.910906pt;}
._32{width:123.626786pt;}
._40{width:129.446318pt;}
._29{width:131.277484pt;}
._59{width:133.319114pt;}
._60{width:135.387752pt;}
._5f{width:136.485828pt;}
._5e{width:147.662650pt;}
._5b{width:149.466843pt;}
._58{width:150.578350pt;}
._48{width:157.803590pt;}
._4b{width:158.982373pt;}
._57{width:161.786048pt;}
._35{width:168.383587pt;}
._56{width:188.238552pt;}
._1f{width:192.358459pt;}
._20{width:194.188471pt;}
._3e{width:201.156746pt;}
._51{width:206.593414pt;}
._33{width:213.699717pt;}
._28{width:220.395628pt;}
._50{width:236.479030pt;}
._49{width:246.356922pt;}
._42{width:248.577533pt;}
._39{width:262.470512pt;}
._45{width:264.537978pt;}
._3a{width:272.348403pt;}
._25{width:278.886964pt;}
._4c{width:281.787904pt;}
._34{width:287.071427pt;}
._3f{width:289.100606pt;}
._4d{width:291.704082pt;}
._47{width:293.924693pt;}
._36{width:296.949318pt;}
._12{width:308.280597pt;}
._3b{width:313.986766pt;}
._2a{width:316.454008pt;}
._43{width:318.581134pt;}
._17{width:319.492519pt;}
._1b{width:321.288003pt;}
._46{width:322.869211pt;}
._38{width:329.594060pt;}
._2b{width:333.545632pt;}
._22{width:336.593995pt;}
._23{width:338.078722pt;}
._31{width:342.165557pt;}
._37{width:346.092144pt;}
._4e{width:351.584011pt;}
._27{width:425.909459pt;}
._4f{width:460.738538pt;}
._7{width:924.386667pt;}
._a{width:1188.949867pt;}
.fsc{font-size:30.875200pt;}
.fs9{font-size:31.680000pt;}
.fs6{font-size:32.000000pt;}
.fsb{font-size:33.682133pt;}
.fs7{font-size:34.528533pt;}
.fs4{font-size:37.333333pt;}
.fsa{font-size:38.286400pt;}
.fs8{font-size:38.720000pt;}
.fs0{font-size:42.666667pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:112.000000pt;}
.y0{bottom:0.000000pt;}
.y20{bottom:22.460000pt;}
.y41{bottom:24.323733pt;}
.y21{bottom:25.046000pt;}
.y194{bottom:58.968533pt;}
.y149{bottom:63.706667pt;}
.y1bb{bottom:63.857733pt;}
.yc8{bottom:64.211733pt;}
.y141{bottom:65.765733pt;}
.y93{bottom:65.891733pt;}
.y40{bottom:66.353867pt;}
.ya9{bottom:66.442000pt;}
.y1ac{bottom:66.557642pt;}
.y116{bottom:66.740016pt;}
.y193{bottom:68.568533pt;}
.y23a{bottom:71.052933pt;}
.y1e7{bottom:71.225200pt;}
.y148{bottom:73.306667pt;}
.y1ba{bottom:73.457733pt;}
.yc7{bottom:73.811733pt;}
.y115{bottom:75.838285pt;}
.y1e{bottom:77.109733pt;}
.y192{bottom:78.168533pt;}
.y6a{bottom:79.666133pt;}
.y140{bottom:81.765733pt;}
.y92{bottom:81.891733pt;}
.y3f{bottom:82.353867pt;}
.ya8{bottom:82.442000pt;}
.y147{bottom:82.906667pt;}
.y1ab{bottom:83.114468pt;}
.y239{bottom:84.002933pt;}
.y15{bottom:84.033600pt;}
.y114{bottom:85.730709pt;}
.y1e6{bottom:87.225200pt;}
.yc6{bottom:88.241067pt;}
.y1b5{bottom:88.946533pt;}
.y1be{bottom:89.072267pt;}
.y18d{bottom:95.014133pt;}
.y113{bottom:95.623134pt;}
.y69{bottom:95.666133pt;}
.y238{bottom:96.952933pt;}
.y13f{bottom:97.765733pt;}
.y91{bottom:97.891733pt;}
.y3e{bottom:98.353867pt;}
.ya7{bottom:98.442000pt;}
.y1aa{bottom:99.679013pt;}
.y143{bottom:100.285067pt;}
.y211{bottom:100.464000pt;}
.yc5{bottom:101.041067pt;}
.y111{bottom:107.863499pt;}
.y196{bottom:109.565333pt;}
.y68{bottom:111.666133pt;}
.y14b{bottom:113.450267pt;}
.y13e{bottom:113.765733pt;}
.yd8{bottom:113.891733pt;}
.y1e5{bottom:113.891867pt;}
.y3d{bottom:114.353867pt;}
.ya6{bottom:114.442000pt;}
.y1a9{bottom:116.374777pt;}
.y210{bottom:116.464000pt;}
.y260{bottom:116.967333pt;}
.y112{bottom:116.970400pt;}
.y110{bottom:116.971213pt;}
.yc9{bottom:117.760133pt;}
.y14{bottom:118.213067pt;}
.y237{bottom:120.569600pt;}
.y90{bottom:124.558400pt;}
.y10f{bottom:127.640529pt;}
.y67{bottom:127.666133pt;}
.y13d{bottom:129.765733pt;}
.yd7{bottom:129.891733pt;}
.y1e4{bottom:129.891867pt;}
.y25f{bottom:129.917333pt;}
.ya5{bottom:130.441867pt;}
.y20f{bottom:132.464000pt;}
.y13{bottom:132.613067pt;}
.y1a8{bottom:132.939322pt;}
.y236{bottom:133.519600pt;}
.y10e{bottom:136.747430pt;}
.y3c{bottom:141.020533pt;}
.y25e{bottom:142.867333pt;}
.y10d{bottom:143.187002pt;}
.y66{bottom:143.666133pt;}
.y13c{bottom:145.765733pt;}
.yd6{bottom:145.891733pt;}
.y1e3{bottom:145.891867pt;}
.ya4{bottom:146.441867pt;}
.y235{bottom:146.469600pt;}
.y12{bottom:147.013067pt;}
.y20e{bottom:148.464000pt;}
.y1a7{bottom:149.504505pt;}
.y8f{bottom:151.225067pt;}
.y10c{bottom:155.435999pt;}
.y3b{bottom:157.020533pt;}
.y65{bottom:159.666133pt;}
.y19d{bottom:160.457483pt;}
.y11{bottom:161.413067pt;}
.y13b{bottom:161.765733pt;}
.yd5{bottom:161.891733pt;}
.y1e2{bottom:161.891867pt;}
.ya3{bottom:162.441867pt;}
.y20d{bottom:164.464000pt;}
.y1a6{bottom:166.061331pt;}
.y25d{bottom:166.484000pt;}
.y8e{bottom:167.225067pt;}
.y10b{bottom:167.676364pt;}
.y234{bottom:170.086267pt;}
.y1a0{bottom:171.549398pt;}
.y10a{bottom:171.793891pt;}
.y3a{bottom:173.020533pt;}
.y64{bottom:175.666133pt;}
.y10{bottom:175.813067pt;}
.y13a{bottom:177.765733pt;}
.yd4{bottom:177.891733pt;}
.y1e1{bottom:177.891867pt;}
.y25c{bottom:179.434000pt;}
.y1a5{bottom:182.502375pt;}
.y8d{bottom:183.225067pt;}
.y19c{bottom:185.998992pt;}
.y19e{bottom:186.624215pt;}
.y39{bottom:189.020533pt;}
.ya2{bottom:189.108533pt;}
.yf{bottom:190.213067pt;}
.y20c{bottom:191.130667pt;}
.y63{bottom:191.666133pt;}
.y109{bottom:192.675022pt;}
.y19a{bottom:193.439915pt;}
.y1a4{bottom:193.447634pt;}
.y233{bottom:193.702933pt;}
.yd3{bottom:193.891733pt;}
.y1e0{bottom:193.891867pt;}
.y1a3{bottom:194.080575pt;}
.y1a1{bottom:194.157763pt;}
.y19f{bottom:195.539429pt;}
.y19b{bottom:195.848181pt;}
.y8c{bottom:199.225067pt;}
.y108{bottom:202.558815pt;}
.y25b{bottom:203.050667pt;}
.y199{bottom:204.385173pt;}
.y1a2{bottom:204.392892pt;}
.y139{bottom:204.432400pt;}
.ye{bottom:204.613067pt;}
.y38{bottom:205.020533pt;}
.y20b{bottom:207.130667pt;}
.y62{bottom:207.666133pt;}
.yd2{bottom:209.891733pt;}
.y106{bottom:213.228131pt;}
.y105{bottom:213.231399pt;}
.ya1{bottom:215.775200pt;}
.y25a{bottom:216.000667pt;}
.y232{bottom:217.319600pt;}
.yd{bottom:219.013067pt;}
.y138{bottom:220.432400pt;}
.y1df{bottom:220.558533pt;}
.y37{bottom:221.020533pt;}
.y198{bottom:221.367573pt;}
.y107{bottom:222.326400pt;}
.y104{bottom:222.329668pt;}
.y20a{bottom:223.130667pt;}
.y8b{bottom:225.891733pt;}
.y231{bottom:230.269600pt;}
.ya0{bottom:231.775200pt;}
.y197{bottom:232.314267pt;}
.y103{bottom:233.784509pt;}
.y61{bottom:234.332800pt;}
.y137{bottom:236.432400pt;}
.y1de{bottom:236.558533pt;}
.y36{bottom:237.020533pt;}
.y209{bottom:239.130667pt;}
.y259{bottom:239.617333pt;}
.y8a{bottom:241.891733pt;}
.y102{bottom:242.105885pt;}
.yfb{bottom:245.860863pt;}
.y9f{bottom:247.775200pt;}
.yc{bottom:247.813067pt;}
.y60{bottom:250.332800pt;}
.y101{bottom:251.989678pt;}
.y136{bottom:252.432400pt;}
.y1dd{bottom:252.558533pt;}
.y258{bottom:252.567333pt;}
.y35{bottom:253.020533pt;}
.y230{bottom:253.886267pt;}
.yff{bottom:254.104550pt;}
.y208{bottom:255.130667pt;}
.y89{bottom:257.891733pt;}
.y100{bottom:260.311054pt;}
.y9e{bottom:263.775200pt;}
.y5f{bottom:266.332800pt;}
.y22f{bottom:266.836267pt;}
.y135{bottom:268.432400pt;}
.yd1{bottom:268.558400pt;}
.y1dc{bottom:268.558533pt;}
.y34{bottom:269.020533pt;}
.y166{bottom:270.170400pt;}
.y1b9{bottom:273.097333pt;}
.y88{bottom:273.891733pt;}
.y257{bottom:276.184000pt;}
.yfd{bottom:278.585281pt;}
.y9d{bottom:279.775200pt;}
.yfe{bottom:280.303075pt;}
.y207{bottom:281.797333pt;}
.y5e{bottom:282.332800pt;}
.y1b8{bottom:282.697200pt;}
.yb{bottom:284.354800pt;}
.y134{bottom:284.432400pt;}
.yd0{bottom:284.558400pt;}
.y1db{bottom:284.558533pt;}
.y33{bottom:285.020533pt;}
.y165{bottom:286.170400pt;}
.y256{bottom:289.134000pt;}
.y87{bottom:289.891733pt;}
.y22e{bottom:290.452933pt;}
.yfc{bottom:290.834278pt;}
.yc4{bottom:295.225067pt;}
.y9c{bottom:295.775200pt;}
.y206{bottom:297.797333pt;}
.y1b4{bottom:298.186000pt;}
.y5d{bottom:298.332800pt;}
.y1bd{bottom:299.256667pt;}
.y133{bottom:300.432400pt;}
.ycf{bottom:300.558400pt;}
.y1da{bottom:300.558533pt;}
.y164{bottom:302.170400pt;}
.y22d{bottom:303.402933pt;}
.yc3{bottom:311.225067pt;}
.y32{bottom:311.687200pt;}
.y255{bottom:312.750667pt;}
.y205{bottom:313.797333pt;}
.ya{bottom:313.954800pt;}
.y5c{bottom:314.332800pt;}
.y132{bottom:316.432400pt;}
.y86{bottom:316.558400pt;}
.y1d9{bottom:316.558533pt;}
.y163{bottom:318.170400pt;}
.yf9{bottom:320.105842pt;}
.y9b{bottom:322.441867pt;}
.y22c{bottom:327.019600pt;}
.yc2{bottom:327.225067pt;}
.y31{bottom:327.687200pt;}
.y9{bottom:328.354800pt;}
.y204{bottom:329.797333pt;}
.yf8{bottom:329.996355pt;}
.yfa{bottom:329.998267pt;}
.y5b{bottom:330.332800pt;}
.y131{bottom:332.432400pt;}
.y85{bottom:332.558400pt;}
.y1d8{bottom:332.558533pt;}
.y162{bottom:334.170400pt;}
.y146{bottom:334.887733pt;}
.y254{bottom:336.367333pt;}
.y9a{bottom:338.441867pt;}
.yf7{bottom:339.094624pt;}
.y22b{bottom:339.969600pt;}
.y8{bottom:342.754800pt;}
.yc1{bottom:343.225067pt;}
.y30{bottom:343.687200pt;}
.y145{bottom:344.487733pt;}
.y203{bottom:345.797333pt;}
.y5a{bottom:346.332800pt;}
.yf6{bottom:348.201525pt;}
.y130{bottom:348.432400pt;}
.y84{bottom:348.558400pt;}
.y253{bottom:349.317333pt;}
.y22a{bottom:352.919600pt;}
.y144{bottom:354.087733pt;}
.y7{bottom:357.154800pt;}
.y1d7{bottom:359.225200pt;}
.y2f{bottom:359.687200pt;}
.yf5{bottom:360.441890pt;}
.y202{bottom:361.797333pt;}
.y12f{bottom:364.432400pt;}
.y83{bottom:364.558400pt;}
.y99{bottom:365.108533pt;}
.y18a{bottom:365.211144pt;}
.y191{bottom:366.848933pt;}
.yc0{bottom:369.891733pt;}
.yf4{bottom:371.119839pt;}
.y142{bottom:371.466267pt;}
.y6{bottom:371.554800pt;}
.y252{bottom:372.934000pt;}
.y59{bottom:372.999467pt;}
.y1d6{bottom:375.225200pt;}
.y2e{bottom:375.687200pt;}
.y190{bottom:376.448933pt;}
.y229{bottom:376.536267pt;}
.yf2{bottom:377.093275pt;}
.y201{bottom:377.797333pt;}
.y12e{bottom:380.432400pt;}
.y82{bottom:380.558400pt;}
.y189{bottom:382.507025pt;}
.yf3{bottom:383.360204pt;}
.y14a{bottom:384.631333pt;}
.y251{bottom:385.884000pt;}
.ybf{bottom:385.891733pt;}
.y5{bottom:385.954800pt;}
.y18f{bottom:386.048933pt;}
.y58{bottom:388.999467pt;}
.y228{bottom:389.486267pt;}
.y98{bottom:390.175200pt;}
.yce{bottom:391.225067pt;}
.y1d5{bottom:391.225200pt;}
.y2d{bottom:391.687200pt;}
.yf1{bottom:392.380783pt;}
.yf0{bottom:392.467104pt;}
.y200{bottom:393.797333pt;}
.y18e{bottom:395.648933pt;}
.y12d{bottom:396.432400pt;}
.y81{bottom:396.558400pt;}
.y188{bottom:399.802907pt;}
.y4{bottom:400.354800pt;}
.y159{bottom:401.321680pt;}
.ybe{bottom:401.891733pt;}
.y227{bottom:402.436267pt;}
.y57{bottom:404.999467pt;}
.y97{bottom:406.175200pt;}
.y1d4{bottom:407.225200pt;}
.y250{bottom:409.500667pt;}
.y12c{bottom:412.432400pt;}
.y18c{bottom:412.442000pt;}
.y1b2{bottom:412.558400pt;}
.yef{bottom:413.909324pt;}
.y3{bottom:414.754800pt;}
.y156{bottom:416.914933pt;}
.y187{bottom:417.060501pt;}
.y158{bottom:417.826960pt;}
.ybd{bottom:417.891733pt;}
.y2c{bottom:418.353867pt;}
.y1ff{bottom:420.464000pt;}
.y56{bottom:420.999467pt;}
.y96{bottom:422.175200pt;}
.y24f{bottom:422.450667pt;}
.y80{bottom:423.225067pt;}
.y1d3{bottom:423.225200pt;}
.y18b{bottom:425.242000pt;}
.y226{bottom:426.052933pt;}
.y184{bottom:427.592222pt;}
.y185{bottom:427.608405pt;}
.y12b{bottom:428.432400pt;}
.y155{bottom:428.530933pt;}
.y1b1{bottom:428.558400pt;}
.y2{bottom:429.154800pt;}
.y15e{bottom:429.398080pt;}
.ybc{bottom:433.891733pt;}
.y2b{bottom:434.353867pt;}
.y55{bottom:436.999467pt;}
.yed{bottom:437.268133pt;}
.yee{bottom:437.276509pt;}
.y95{bottom:438.175200pt;}
.y225{bottom:439.002933pt;}
.y1d2{bottom:439.225200pt;}
.y195{bottom:439.793067pt;}
.y154{bottom:440.146933pt;}
.y15d{bottom:440.969200pt;}
.y183{bottom:441.164750pt;}
.y12a{bottom:444.432400pt;}
.y1b0{bottom:444.558400pt;}
.y24e{bottom:446.067333pt;}
.yec{bottom:447.160558pt;}
.y7f{bottom:449.891733pt;}
.y2a{bottom:450.353867pt;}
.y153{bottom:451.762933pt;}
.y160{bottom:452.271040pt;}
.y54{bottom:452.999467pt;}
.y94{bottom:454.175200pt;}
.y1fe{bottom:454.689733pt;}
.y182{bottom:454.737279pt;}
.y186{bottom:454.753462pt;}
.y1d1{bottom:455.225200pt;}
.yeb{bottom:457.044350pt;}
.y1{bottom:457.954800pt;}
.y24d{bottom:459.017333pt;}
.y181{bottom:459.197645pt;}
.y224{bottom:462.619600pt;}
.y152{bottom:463.378933pt;}
.y15f{bottom:464.079760pt;}
.y7e{bottom:465.891733pt;}
.y29{bottom:466.353867pt;}
.yea{bottom:466.936775pt;}
.y1fd{bottom:470.689733pt;}
.y129{bottom:471.099067pt;}
.y1af{bottom:471.225067pt;}
.y1d0{bottom:471.225200pt;}
.y151{bottom:474.994933pt;}
.y223{bottom:475.569600pt;}
.y15c{bottom:475.690480pt;}
.ye9{bottom:478.391616pt;}
.y180{bottom:479.030000pt;}
.y53{bottom:479.666133pt;}
.ye1{bottom:479.669067pt;}
.y7d{bottom:481.891733pt;}
.y28{bottom:482.353867pt;}
.y24c{bottom:482.634000pt;}
.yae{bottom:485.278133pt;}
.y150{bottom:486.610933pt;}
.y1fc{bottom:486.689733pt;}
.ye8{bottom:486.712993pt;}
.y128{bottom:487.099067pt;}
.y1ae{bottom:487.225067pt;}
.y222{bottom:488.519600pt;}
.ye0{bottom:489.269067pt;}
.ybb{bottom:492.558400pt;}
.yad{bottom:494.878133pt;}
.y52{bottom:495.666133pt;}
.y17f{bottom:496.469455pt;}
.ycd{bottom:497.891733pt;}
.y1cf{bottom:497.891867pt;}
.ye7{bottom:498.167834pt;}
.y14f{bottom:498.226933pt;}
.y27{bottom:498.353867pt;}
.y161{bottom:498.816880pt;}
.ydf{bottom:498.869067pt;}
.y1fb{bottom:502.689733pt;}
.y127{bottom:503.099067pt;}
.y1ad{bottom:503.225067pt;}
.yac{bottom:504.478133pt;}
.y17{bottom:505.886667pt;}
.y24b{bottom:506.250667pt;}
.ye6{bottom:506.489210pt;}
.yde{bottom:508.469067pt;}
.y7c{bottom:508.558400pt;}
.y15b{bottom:509.295040pt;}
.y14e{bottom:509.842933pt;}
.y51{bottom:511.666133pt;}
.y221{bottom:512.136267pt;}
.y17e{bottom:513.861052pt;}
.ycc{bottom:513.891733pt;}
.y1ce{bottom:513.891867pt;}
.ydd{bottom:518.069067pt;}
.y1fa{bottom:518.689733pt;}
.y126{bottom:519.099067pt;}
.y24a{bottom:519.200667pt;}
.yba{bottom:519.225067pt;}
.yab{bottom:520.197600pt;}
.y15a{bottom:521.285920pt;}
.y14d{bottom:521.458933pt;}
.y1a{bottom:522.899733pt;}
.ye5{bottom:525.005136pt;}
.y26{bottom:525.020533pt;}
.y220{bottom:525.086267pt;}
.y50{bottom:527.666133pt;}
.ycb{bottom:529.891733pt;}
.y1cd{bottom:529.891867pt;}
.y17d{bottom:531.252650pt;}
.yda{bottom:532.043467pt;}
.y249{bottom:532.150667pt;}
.yaa{bottom:532.997600pt;}
.y14c{bottom:533.074933pt;}
.y157{bottom:533.276800pt;}
.y19{bottom:534.099733pt;}
.y125{bottom:535.099067pt;}
.y7b{bottom:535.225067pt;}
.ye4{bottom:537.254133pt;}
.y25{bottom:541.020533pt;}
.y1ea{bottom:543.471867pt;}
.y1f9{bottom:545.356400pt;}
.y1cc{bottom:545.891867pt;}
.yaf{bottom:546.162800pt;}
.y18{bottom:546.899733pt;}
.ye3{bottom:548.096000pt;}
.y17c{bottom:548.605960pt;}
.y21f{bottom:548.702933pt;}
.y124{bottom:551.099067pt;}
.y7a{bottom:551.225067pt;}
.y1e9{bottom:553.071867pt;}
.y4f{bottom:554.332800pt;}
.y248{bottom:555.767333pt;}
.yca{bottom:556.558400pt;}
.y24{bottom:557.020533pt;}
.y17a{bottom:558.541281pt;}
.y21e{bottom:561.652933pt;}
.y1cb{bottom:561.891867pt;}
.y16{bottom:566.805467pt;}
.y179{bottom:566.906860pt;}
.y123{bottom:567.099067pt;}
.y79{bottom:567.225067pt;}
.y1e8{bottom:568.694400pt;}
.y247{bottom:568.717333pt;}
.y1f8{bottom:572.023067pt;}
.y23{bottom:573.020533pt;}
.y17b{bottom:580.469817pt;}
.y178{bottom:580.479388pt;}
.y4e{bottom:580.999467pt;}
.y122{bottom:583.099067pt;}
.y78{bottom:583.225067pt;}
.y1eb{bottom:583.245467pt;}
.y21d{bottom:585.269600pt;}
.y1f7{bottom:588.023067pt;}
.y1ca{bottom:588.558533pt;}
.y246{bottom:592.334000pt;}
.yb9{bottom:593.891733pt;}
.y177{bottom:597.622124pt;}
.y21c{bottom:598.219600pt;}
.y121{bottom:599.099067pt;}
.y77{bottom:599.225067pt;}
.y22{bottom:599.687200pt;}
.y1f6{bottom:604.023067pt;}
.y1c9{bottom:604.558533pt;}
.y176{bottom:605.212403pt;}
.y245{bottom:605.284000pt;}
.y21b{bottom:611.169600pt;}
.y174{bottom:613.032400pt;}
.y172{bottom:613.042232pt;}
.y120{bottom:615.099067pt;}
.y1b7{bottom:615.183600pt;}
.y76{bottom:615.225067pt;}
.y4d{bottom:615.225200pt;}
.y1f5{bottom:620.023067pt;}
.yb8{bottom:620.558400pt;}
.y1c8{bottom:620.558533pt;}
.y175{bottom:622.556142pt;}
.y171{bottom:622.613832pt;}
.y173{bottom:622.623404pt;}
.y1d{bottom:622.750267pt;}
.y1b6{bottom:624.783600pt;}
.y244{bottom:628.900667pt;}
.y11f{bottom:631.099067pt;}
.y75{bottom:631.225067pt;}
.y4c{bottom:631.225200pt;}
.y21a{bottom:634.786267pt;}
.y1f4{bottom:636.023067pt;}
.yb7{bottom:636.558400pt;}
.y1c7{bottom:636.558533pt;}
.y170{bottom:639.976715pt;}
.y1b3{bottom:640.272400pt;}
.y1bc{bottom:641.343067pt;}
.y243{bottom:641.850667pt;}
.y74{bottom:647.225067pt;}
.y4b{bottom:647.225200pt;}
.y219{bottom:647.736267pt;}
.yb6{bottom:652.558400pt;}
.y1c6{bottom:652.558533pt;}
.y242{bottom:654.800667pt;}
.y1c{bottom:656.350267pt;}
.y16f{bottom:657.330025pt;}
.y11e{bottom:657.765733pt;}
.y1f3{bottom:662.689733pt;}
.y73{bottom:663.225067pt;}
.y4a{bottom:663.225200pt;}
.yb5{bottom:668.558400pt;}
.y1c5{bottom:668.558533pt;}
.y218{bottom:671.352933pt;}
.y11d{bottom:673.765733pt;}
.y16e{bottom:674.645050pt;}
.y241{bottom:678.417333pt;}
.y1f2{bottom:678.689733pt;}
.y72{bottom:679.225067pt;}
.y49{bottom:679.225200pt;}
.y217{bottom:684.302933pt;}
.y1c4{bottom:684.558533pt;}
.y11c{bottom:689.765733pt;}
.y1b{bottom:689.950267pt;}
.y240{bottom:691.367333pt;}
.y16d{bottom:691.701641pt;}
.y1f1{bottom:694.689733pt;}
.yb4{bottom:695.225067pt;}
.y11b{bottom:705.765733pt;}
.y71{bottom:705.891733pt;}
.y48{bottom:705.891867pt;}
.y216{bottom:707.919600pt;}
.yb3{bottom:711.225067pt;}
.y1c3{bottom:711.225200pt;}
.y16c{bottom:713.486603pt;}
.y23f{bottom:714.984000pt;}
.y1f0{bottom:721.356400pt;}
.y11a{bottom:721.765733pt;}
.y70{bottom:721.891733pt;}
.y47{bottom:721.891867pt;}
.yb2{bottom:727.225067pt;}
.y1c2{bottom:727.225200pt;}
.y23e{bottom:727.934000pt;}
.y16b{bottom:730.811199pt;}
.y215{bottom:731.536267pt;}
.y1ef{bottom:737.356400pt;}
.y119{bottom:737.765733pt;}
.y6f{bottom:737.891733pt;}
.y46{bottom:737.891867pt;}
.yb1{bottom:743.225067pt;}
.y1c1{bottom:743.225200pt;}
.y214{bottom:744.486267pt;}
.y16a{bottom:748.097508pt;}
.y23d{bottom:751.550667pt;}
.y1ee{bottom:753.356400pt;}
.y118{bottom:753.765733pt;}
.y6e{bottom:753.891733pt;}
.y45{bottom:753.891867pt;}
.yb0{bottom:759.225067pt;}
.y1c0{bottom:759.225200pt;}
.ydc{bottom:761.923067pt;}
.y23c{bottom:764.500667pt;}
.y169{bottom:765.374246pt;}
.y213{bottom:768.102933pt;}
.y1ed{bottom:769.356400pt;}
.y117{bottom:769.765733pt;}
.y6d{bottom:769.891733pt;}
.y44{bottom:769.891867pt;}
.ydb{bottom:771.522933pt;}
.y1bf{bottom:775.225200pt;}
.y23b{bottom:777.450667pt;}
.y168{bottom:782.612698pt;}
.y212{bottom:783.529600pt;}
.y1ec{bottom:785.356400pt;}
.y6c{bottom:785.891733pt;}
.y43{bottom:785.891867pt;}
.yd9{bottom:789.051333pt;}
.y167{bottom:800.013867pt;}
.y6b{bottom:801.891733pt;}
.y42{bottom:801.891867pt;}
.ye2{bottom:805.103733pt;}
.y1f{bottom:857.898533pt;}
.h22{height:25.101538pt;}
.h1b{height:25.755840pt;}
.h21{height:27.248846pt;}
.h13{height:27.933583pt;}
.h14{height:28.071698pt;}
.h17{height:28.079342pt;}
.h16{height:28.105200pt;}
.h10{height:28.992000pt;}
.h11{height:30.202667pt;}
.h1c{height:30.973698pt;}
.h1f{height:31.038429pt;}
.h1d{height:31.126843pt;}
.h1e{height:31.165130pt;}
.h20{height:31.203416pt;}
.h19{height:31.479360pt;}
.h7{height:33.824000pt;}
.hf{height:34.602667pt;}
.h1a{height:35.080320pt;}
.hc{height:35.506767pt;}
.h18{height:37.359873pt;}
.ha{height:38.395833pt;}
.h12{height:38.496000pt;}
.h6{height:38.656000pt;}
.h9{height:38.832000pt;}
.h24{height:38.928000pt;}
.h4{height:38.997333pt;}
.hb{height:41.666667pt;}
.h2{height:43.360000pt;}
.h3{height:43.488000pt;}
.h5{height:43.872000pt;}
.h23{height:46.309333pt;}
.he{height:48.320000pt;}
.hd{height:48.746667pt;}
.h15{height:61.357204pt;}
.h8{height:102.368000pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x0{left:0.000000pt;}
.x1f{left:9.991600pt;}
.x12{left:11.716533pt;}
.x1e{left:17.815067pt;}
.x1d{left:35.849467pt;}
.x6a{left:37.519867pt;}
.x26{left:42.121067pt;}
.x22{left:53.209200pt;}
.x23{left:54.600800pt;}
.x11{left:59.085067pt;}
.x25{left:60.760933pt;}
.xf{left:68.596533pt;}
.x24{left:73.568000pt;}
.x17{left:75.968533pt;}
.x69{left:77.479200pt;}
.x21{left:82.446133pt;}
.x27{left:86.536000pt;}
.x2{left:94.488133pt;}
.x58{left:96.205867pt;}
.x5{left:97.199600pt;}
.x20{left:101.722000pt;}
.x4{left:104.514000pt;}
.x18{left:113.390533pt;}
.x5a{left:121.517600pt;}
.x57{left:124.707200pt;}
.x7{left:125.812800pt;}
.x55{left:128.643867pt;}
.x59{left:147.428267pt;}
.x10{left:149.669200pt;}
.x13{left:151.181067pt;}
.x6b{left:163.395067pt;}
.x6{left:165.806133pt;}
.xe{left:181.146267pt;}
.x1a{left:187.469200pt;}
.x14{left:188.981067pt;}
.x28{left:196.210267pt;}
.x29{left:199.234133pt;}
.x56{left:216.054133pt;}
.x68{left:236.220533pt;}
.x33{left:242.645726pt;}
.x2a{left:247.542400pt;}
.x5b{left:255.927067pt;}
.x34{left:270.156335pt;}
.x2f{left:273.766821pt;}
.xb{left:292.910933pt;}
.x4b{left:297.406267pt;}
.x5c{left:302.230413pt;}
.x4c{left:306.115733pt;}
.x63{left:311.029845pt;}
.xd{left:320.979333pt;}
.x53{left:331.839001pt;}
.x4a{left:335.201467pt;}
.x5d{left:338.771212pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.xc{left:353.837600pt;}
.x30{left:355.435435pt;}
.x64{left:359.106346pt;}
.x15{left:367.336533pt;}
.x5e{left:368.805063pt;}
.x5f{left:404.172605pt;}
.x2d{left:411.915483pt;}
.x36{left:416.126000pt;}
.x3a{left:418.033973pt;}
.x51{left:420.481589pt;}
.x19{left:429.798133pt;}
.x3c{left:439.213813pt;}
.x38{left:443.821493pt;}
.x2b{left:446.133259pt;}
.x3f{left:450.500693pt;}
.x67{left:455.433067pt;}
.x66{left:456.566933pt;}
.x65{left:459.212533pt;}
.x39{left:467.092213pt;}
.x31{left:472.366313pt;}
.x4d{left:473.389015pt;}
.x35{left:475.652901pt;}
.x32{left:477.535496pt;}
.x8{left:480.942533pt;}
.x4e{left:482.616037pt;}
.x3e{left:490.169333pt;}
.x40{left:495.144853pt;}
.x60{left:499.939756pt;}
.x37{left:504.156933pt;}
.xa{left:510.863733pt;}
.x52{left:517.413182pt;}
.x54{left:519.853953pt;}
.x3b{left:520.845253pt;}
.x3d{left:528.269813pt;}
.x9{left:541.869067pt;}
.x61{left:546.816029pt;}
.x42{left:548.319573pt;}
.x2c{left:554.457901pt;}
.x49{left:562.496373pt;}
.x1c{left:578.267733pt;}
.x48{left:579.476853pt;}
.x47{left:584.323893pt;}
.x45{left:587.000853pt;}
.x43{left:599.371893pt;}
.x41{left:601.407333pt;}
.x62{left:608.118738pt;}
.x2e{left:611.429981pt;}
.x4f{left:616.450527pt;}
.x50{left:621.322471pt;}
.x44{left:626.885973pt;}
.x1b{left:643.300400pt;}
.x16{left:645.123333pt;}
.x46{left:683.197173pt;}
}




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