
    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_47b45ecad088ac34b3ece899.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.912109;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_65d817667a635efeecc04eaf.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.893555;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_bc9f866da125867678c83035.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.893555;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_d8c3af4e55287697d25cd46e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.858398;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_cb82649e50579acb1880ab82.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.093262;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_7c211cffad7c74942b078151.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.866699;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_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_eb1afd4077e9cd5c72dee87d.woff2')format("woff");}.ff9{font-family:ff9;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:ffa;src:url('chunks/assets/font_35b667f0f5548f2b6eb90291.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_c7e72335f2c64f6391c1efa3.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;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_78491af130a5a6994d2b6279.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893066;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_234d08298c6ecf3df3d79467.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893555;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_64983fb0821428bcf3c81f47.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910645;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_57556403c7885296f57aec51.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_0db42f02678cb98fd372a9d0.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;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_76c9a3be93be961d010af460.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.093262;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_a0d843b22d7027b34e88ce62.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.858398;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_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_f0605bc187c098c548764f44.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.910156;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_4de10dc8996ff87a663bfb0e.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.093262;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_21cc9fd16a4b2e2a28c14dcc.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.893555;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_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_17e6ba2795828d9855992201.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.910156;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_b7d08a29ae45fad85cb4d6fd.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.858398;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_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_16e6d307780b379c1bb79a13.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.093262;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_3acd130b4badb23f92beb1b0.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.893555;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_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_eb1afd4077e9cd5c72dee87d.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_35b667f0f5548f2b6eb90291.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_b2d471b0a312cfb88da43887.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.858398;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:ff22;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_e749bf393aeefdf94973a256.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.093262;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:ff24;src:url('chunks/assets/font_2b3e9377e2bd787dcb64996b.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.893555;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:ff25;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_e0000b1bfcdcc16c01eb29a0.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.893066;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:ff27;src:url('chunks/assets/font_23feb88f39aa2088af05c46b.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.910156;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:ff28;src:url('chunks/assets/font_181f6bc812d10ba81db2ea6f.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.893555;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:ff29;src:url('chunks/assets/font_e9f92bc4c8da53ff20d12f76.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.910645;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:ff2a;src:url('chunks/assets/font_d5167eb84517d51d105e0d9d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.858398;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:ff2b;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_22cb18b2ab7b5a5cc2f3a18f.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.093262;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:ff2d;src:url('chunks/assets/font_324ceb24b01f30e69ae5cb9d.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.893555;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:ff2e;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_006ae01c047bd545b718bd6a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.093262;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:ff30;src:url('chunks/assets/font_9c31c894f9c1f041218038aa.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.858398;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:ff31;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_c4b253d084f3d1a55beba1d2.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.893555;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:ff33;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_d9d982472c9550e6fa9a16c4.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.910156;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:ff35;src:url('chunks/assets/font_fc98c9995e4766807247e470.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.858398;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:ff36;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_fd87a4785a38c767a6b1c580.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.093262;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:ff38;src:url('chunks/assets/font_51ec84d5c864054b315b4d94.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.893555;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:ff39;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff39{font-family:ff39;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:ff3a;src:url('chunks/assets/font_eb1afd4077e9cd5c72dee87d.woff2')format("woff");}.ff3a{font-family:ff3a;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:ff3b;src:url('chunks/assets/font_35b667f0f5548f2b6eb90291.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_a092dd788ff8b6dd20d5b80c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.093262;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:ff3d;src:url('chunks/assets/font_5a324211171bcffc13d36c56.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.858398;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:ff3e;src:url('chunks/assets/font_3dead44a0267e5a57abb3f3f.woff2')format("woff");}.ff3e{font-family:ff3e;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:ff3f;src:url('chunks/assets/font_90b18725a833f3e05f9e018f.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.910156;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:ff40;src:url('chunks/assets/font_02c9498cd323604f6574908e.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.093262;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:ff41;src:url('chunks/assets/font_40a6901567009ce9c8c46518.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.ls19{letter-spacing:-2.352960px;}
.ls2f{letter-spacing:-0.656640px;}
.ls30{letter-spacing:-0.601920px;}
.ls15{letter-spacing:-0.492480px;}
.ls2e{letter-spacing:-0.437760px;}
.ls38{letter-spacing:-0.423360px;}
.ls17{letter-spacing:-0.383040px;}
.ls1b{letter-spacing:-0.362880px;}
.ls14{letter-spacing:-0.328320px;}
.lsc{letter-spacing:-0.302400px;}
.ls16{letter-spacing:-0.273600px;}
.lsb{letter-spacing:-0.241920px;}
.ls18{letter-spacing:-0.218880px;}
.ls9{letter-spacing:-0.192960px;}
.lsd{letter-spacing:-0.181440px;}
.ls1a{letter-spacing:-0.164160px;}
.lsa{letter-spacing:-0.120960px;}
.ls8{letter-spacing:0.000000px;}
.ls42{letter-spacing:0.006048px;}
.ls23{letter-spacing:0.018144px;}
.ls3c{letter-spacing:0.030240px;}
.ls37{letter-spacing:0.042336px;}
.ls43{letter-spacing:0.060480px;}
.ls1d{letter-spacing:0.278208px;}
.ls34{letter-spacing:0.423360px;}
.lsf{letter-spacing:1.028160px;}
.ls11{letter-spacing:1.149120px;}
.ls0{letter-spacing:1.209600px;}
.lse{letter-spacing:1.451520px;}
.ls2a{letter-spacing:1.632960px;}
.ls44{letter-spacing:1.995840px;}
.ls3d{letter-spacing:2.116800px;}
.ls2b{letter-spacing:2.437344px;}
.ls1c{letter-spacing:2.479680px;}
.ls10{letter-spacing:2.721600px;}
.ls3f{letter-spacing:2.842560px;}
.ls3e{letter-spacing:3.193344px;}
.ls32{letter-spacing:3.749760px;}
.ls33{letter-spacing:3.870720px;}
.ls25{letter-spacing:4.052160px;}
.ls26{letter-spacing:4.112640px;}
.ls2d{letter-spacing:4.415040px;}
.ls2c{letter-spacing:4.487616px;}
.ls39{letter-spacing:4.536000px;}
.ls28{letter-spacing:4.959360px;}
.ls1f{letter-spacing:4.983552px;}
.ls24{letter-spacing:5.019840px;}
.ls6{letter-spacing:5.328288px;}
.ls35{letter-spacing:5.564160px;}
.ls41{letter-spacing:5.745600px;}
.ls47{letter-spacing:6.048000px;}
.ls20{letter-spacing:6.410880px;}
.ls1{letter-spacing:7.378560px;}
.ls2{letter-spacing:7.439040px;}
.ls3a{letter-spacing:7.741440px;}
.ls29{letter-spacing:8.043840px;}
.ls3b{letter-spacing:8.811936px;}
.ls31{letter-spacing:8.951040px;}
.ls3{letter-spacing:9.313920px;}
.ls40{letter-spacing:10.281600px;}
.ls1e{letter-spacing:10.886400px;}
.ls36{letter-spacing:11.249280px;}
.ls21{letter-spacing:13.426560px;}
.ls27{letter-spacing:13.849920px;}
.ls4{letter-spacing:14.031360px;}
.ls5{letter-spacing:14.091840px;}
.ls12{letter-spacing:19.414080px;}
.ls22{letter-spacing:29.332800px;}
.ls13{letter-spacing:35.017920px;}
.ls7{letter-spacing:63.564480px;}
.ls46{letter-spacing:100.941120px;}
.ls45{letter-spacing:130.939200px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-35.985600px;}
.ws1{word-spacing:-15.120000px;}
.ws3{word-spacing:-14.999040px;}
.ws5{word-spacing:-14.938560px;}
.ws2{word-spacing:-14.878080px;}
.ws1e{word-spacing:-14.817600px;}
.ws14{word-spacing:-14.757120px;}
.ws23{word-spacing:-14.696640px;}
.wsf{word-spacing:-13.680000px;}
.ws10{word-spacing:-13.461120px;}
.wse{word-spacing:-13.351680px;}
.ws11{word-spacing:-13.296960px;}
.ws1f{word-spacing:-13.242240px;}
.ws13{word-spacing:-13.187520px;}
.ws21{word-spacing:-13.078080px;}
.ws20{word-spacing:-13.023360px;}
.ws12{word-spacing:-11.327040px;}
.ws24{word-spacing:-0.241920px;}
.wsd{word-spacing:-0.120960px;}
.ws22{word-spacing:-0.109440px;}
.ws4{word-spacing:-0.060480px;}
.ws19{word-spacing:-0.054720px;}
.ws6{word-spacing:0.000000px;}
.wsc{word-spacing:0.060480px;}
.ws15{word-spacing:0.109440px;}
.ws8{word-spacing:0.120960px;}
.ws1d{word-spacing:0.164160px;}
.wsb{word-spacing:0.181440px;}
.ws7{word-spacing:0.192960px;}
.ws1b{word-spacing:0.218880px;}
.ws9{word-spacing:0.241920px;}
.ws18{word-spacing:0.273600px;}
.wsa{word-spacing:0.302400px;}
.ws16{word-spacing:0.328320px;}
.ws25{word-spacing:0.362880px;}
.ws1a{word-spacing:0.383040px;}
.ws17{word-spacing:0.492480px;}
.ws1c{word-spacing:2.352960px;}
._18{margin-left:-7.797600px;}
._17{margin-left:-5.207040px;}
._8{margin-left:-3.665088px;}
._a{margin-left:-2.600640px;}
._0{margin-left:-1.041984px;}
._7{width:1.935360px;}
._c{width:3.749760px;}
._4{width:4.898880px;}
._5{width:5.945184px;}
._6{width:7.662816px;}
._d{width:9.072000px;}
._b{width:10.632384px;}
._3{width:11.721024px;}
._e{width:13.420512px;}
._10{width:16.553376px;}
._11{width:17.908128px;}
._2{width:19.184256px;}
._1{width:20.684160px;}
._9{width:22.178016px;}
._f{width:23.623488px;}
._1d{width:24.899616px;}
._13{width:26.187840px;}
._1e{width:27.355104px;}
._16{width:28.709856px;}
._15{width:29.883168px;}
._1f{width:31.020192px;}
._25{width:32.368896px;}
._21{width:33.445440px;}
._12{width:35.078400px;}
._33{width:36.783936px;}
._30{width:38.489472px;}
._1a{width:39.626496px;}
._19{width:41.440896px;}
._14{width:42.541632px;}
._26{width:46.291392px;}
._38{width:48.583584px;}
._2c{width:51.988608px;}
._2d{width:53.234496px;}
._28{width:58.665600px;}
._1b{width:61.145280px;}
._31{width:62.415360px;}
._2a{width:71.124480px;}
._1c{width:79.410240px;}
._29{width:80.952480px;}
._34{width:100.578240px;}
._22{width:104.569920px;}
._23{width:105.900480px;}
._36{width:112.117824px;}
._20{width:121.522464px;}
._24{width:135.414720px;}
._2f{width:237.625920px;}
._35{width:272.341440px;}
._32{width:356.408640px;}
._37{width:386.406720px;}
._2e{width:693.887040px;}
._27{width:802.569600px;}
._2b{width:892.805760px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:2.880000px;}
.fs4{font-size:54.720000px;}
.fs0{font-size:60.000000px;}
.fs2{font-size:60.480000px;}
.fs3{font-size:72.000000px;}
.fs1{font-size:96.480000px;}
.y0{bottom:0.000000px;}
.y1ca{bottom:3.179700px;}
.y1c7{bottom:3.359700px;}
.y6b{bottom:3.419700px;}
.y207{bottom:3.421200px;}
.y76{bottom:3.479700px;}
.y63{bottom:3.533940px;}
.y1c4{bottom:3.539700px;}
.y215{bottom:3.659700px;}
.y1d3{bottom:3.779700px;}
.y1d0{bottom:3.959700px;}
.y1c2{bottom:4.013940px;}
.y67{bottom:4.079700px;}
.y20a{bottom:4.137540px;}
.y20b{bottom:4.139700px;}
.y1cd{bottom:4.141200px;}
.y204{bottom:4.199700px;}
.y218{bottom:4.379040px;}
.y219{bottom:4.381200px;}
.y212{bottom:4.439700px;}
.y6{bottom:4.679700px;}
.ya{bottom:8.699700px;}
.y1c9{bottom:18.659700px;}
.y1c6{bottom:18.839700px;}
.y75{bottom:18.959700px;}
.y62{bottom:19.019700px;}
.y1d2{bottom:19.259700px;}
.y1cf{bottom:19.439700px;}
.y1c1{bottom:19.499700px;}
.y1cc{bottom:19.621200px;}
.y206{bottom:20.701200px;}
.y214{bottom:20.939700px;}
.y209{bottom:21.419700px;}
.y203{bottom:21.479700px;}
.y217{bottom:21.661200px;}
.y211{bottom:21.719700px;}
.y20d{bottom:22.139700px;}
.y1{bottom:34.152300px;}
.y69{bottom:34.379700px;}
.y71{bottom:35.219700px;}
.y65{bottom:35.399700px;}
.y8{bottom:41.459700px;}
.y6d{bottom:50.219700px;}
.y7a{bottom:51.059700px;}
.y358{bottom:110.830380px;}
.y36{bottom:113.083980px;}
.y188{bottom:113.320140px;}
.y28e{bottom:113.385660px;}
.y320{bottom:116.231100px;}
.y152{bottom:117.024540px;}
.ybf{bottom:121.132140px;}
.y357{bottom:128.112540px;}
.y187{bottom:131.312940px;}
.y28d{bottom:131.378460px;}
.y127{bottom:131.393580px;}
.y35{bottom:131.439660px;}
.y31f{bottom:133.150380px;}
.y151{bottom:135.017340px;}
.y9e{bottom:137.537340px;}
.ybe{bottom:139.124940px;}
.y2c0{bottom:142.345500px;}
.y1df{bottom:142.549980px;}
.y5f{bottom:143.520540px;}
.y2e8{bottom:143.887740px;}
.y1d9{bottom:144.681900px;}
.y229{bottom:145.085820px;}
.y237{bottom:145.131180px;}
.y356{bottom:145.394700px;}
.y34{bottom:149.432460px;}
.y186{bottom:149.668620px;}
.y28c{bottom:149.734140px;}
.y126{bottom:149.749260px;}
.y31e{bottom:150.432540px;}
.yf2{bottom:151.306620px;}
.y150{bottom:153.373020px;}
.y9d{bottom:155.530140px;}
.ybd{bottom:157.480620px;}
.y258{bottom:160.287900px;}
.y2bf{bottom:160.701180px;}
.y1de{bottom:160.905660px;}
.y2e7{bottom:161.169900px;}
.y5e{bottom:161.513340px;}
.y382{bottom:162.668940px;}
.y355{bottom:162.671100px;}
.y1d8{bottom:162.674700px;}
.y228{bottom:163.078620px;}
.y236{bottom:163.123980px;}
.y33{bottom:167.425260px;}
.y185{bottom:167.661420px;}
.y31d{bottom:167.714700px;}
.y28b{bottom:167.726940px;}
.y125{bottom:167.742060px;}
.yf1{bottom:169.299420px;}
.y9c{bottom:173.522940px;}
.y257{bottom:178.280700px;}
.y2e6{bottom:178.452060px;}
.y2be{bottom:178.693980px;}
.y1dd{bottom:178.898460px;}
.y5d{bottom:179.869020px;}
.y381{bottom:179.951100px;}
.y354{bottom:179.953260px;}
.y14f{bottom:180.377340px;}
.y227{bottom:181.434300px;}
.y235{bottom:181.479660px;}
.ybc{bottom:184.484940px;}
.y31c{bottom:184.994700px;}
.y32{bottom:185.418060px;}
.y124{bottom:185.734860px;}
.yf0{bottom:187.655100px;}
.y1d7{bottom:190.394700px;}
.y9b{bottom:191.878620px;}
.y184{bottom:194.665740px;}
.y28a{bottom:194.731260px;}
.y2e5{bottom:195.734220px;}
.y256{bottom:196.636380px;}
.y2bd{bottom:196.686780px;}
.y380{bottom:196.870380px;}
.y353{bottom:196.872540px;}
.y1dc{bottom:196.891260px;}
.y5c{bottom:197.861820px;}
.y226{bottom:199.427100px;}
.y234{bottom:199.472460px;}
.y31b{bottom:202.268220px;}
.ybb{bottom:202.477740px;}
.y31{bottom:203.773740px;}
.y123{bottom:204.090540px;}
.yef{bottom:205.647900px;}
.y1d6{bottom:212.354700px;}
.y2e4{bottom:213.016380px;}
.y183{bottom:213.021420px;}
.y289{bottom:213.086940px;}
.y37f{bottom:214.152540px;}
.y352{bottom:214.154700px;}
.y255{bottom:214.629180px;}
.y1db{bottom:215.246940px;}
.y5b{bottom:215.854620px;}
.y14e{bottom:216.378060px;}
.y225{bottom:217.419900px;}
.y233{bottom:217.465260px;}
.y9a{bottom:218.882940px;}
.y31a{bottom:219.550380px;}
.yba{bottom:220.833420px;}
.y30{bottom:221.766540px;}
.y122{bottom:222.083340px;}
.yee{bottom:223.640700px;}
.y2bc{bottom:223.691100px;}
.y288{bottom:231.079740px;}
.y2e3{bottom:231.372060px;}
.y351{bottom:231.426060px;}
.y37e{bottom:231.434700px;}
.y254{bottom:232.621980px;}
.y1da{bottom:233.239740px;}
.y5a{bottom:234.210300px;}
.y14d{bottom:234.370860px;}
.y319{bottom:236.832540px;}
.yb9{bottom:238.826220px;}
.y121{bottom:240.076140px;}
.yed{bottom:241.633500px;}
.y224{bottom:244.787100px;}
.y232{bottom:244.832460px;}
.y2e2{bottom:248.654220px;}
.y350{bottom:248.708220px;}
.y2f{bottom:248.770860px;}
.y182{bottom:249.022140px;}
.y287{bottom:249.072540px;}
.y253{bottom:250.614780px;}
.y1d5{bottom:251.230380px;}
.y59{bottom:252.203100px;}
.y14c{bottom:252.726540px;}
.y318{bottom:254.114700px;}
.y99{bottom:254.883660px;}
.yb8{bottom:256.819020px;}
.y120{bottom:258.431820px;}
.yec{bottom:259.989180px;}
.y2bb{bottom:260.054700px;}
.y223{bottom:262.779900px;}
.y34f{bottom:265.990380px;}
.y2e1{bottom:267.009900px;}
.y181{bottom:267.014940px;}
.y2e{bottom:267.126540px;}
.y286{bottom:267.428220px;}
.y252{bottom:268.970460px;}
.y58{bottom:270.195900px;}
.y14b{bottom:270.719340px;}
.y317{bottom:271.394700px;}
.y98{bottom:273.239340px;}
.yb7{bottom:275.174700px;}
.yeb{bottom:277.981980px;}
.y2ba{bottom:278.047500px;}
.y1d4{bottom:278.234700px;}
.y222{bottom:280.772700px;}
.y231{bottom:280.833180px;}
.y34e{bottom:283.272540px;}
.y2e0{bottom:284.292060px;}
.y2d{bottom:285.119340px;}
.y180{bottom:285.370620px;}
.y285{bottom:285.421020px;}
.y11f{bottom:285.436140px;}
.y57{bottom:288.551580px;}
.y316{bottom:288.671100px;}
.y14a{bottom:288.712140px;}
.y97{bottom:291.232140px;}
.yb6{bottom:293.167500px;}
.yea{bottom:295.974780px;}
.y230{bottom:298.825980px;}
.y221{bottom:299.128380px;}
.y34d{bottom:300.554700px;}
.y1d1{bottom:301.455000px;}
.y2df{bottom:302.284860px;}
.y2c{bottom:303.112140px;}
.y17f{bottom:303.363420px;}
.y2b9{bottom:305.051820px;}
.y315{bottom:305.953260px;}
.y149{bottom:307.067820px;}
.y96{bottom:309.224940px;}
.yb5{bottom:311.160300px;}
.y284{bottom:312.425340px;}
.y251{bottom:313.967580px;}
.ye9{bottom:314.330460px;}
.y56{bottom:315.555900px;}
.y220{bottom:317.121180px;}
.y22f{bottom:317.181660px;}
.y34c{bottom:317.826780px;}
.y2de{bottom:319.567020px;}
.y17e{bottom:321.356220px;}
.y11e{bottom:321.436860px;}
.y2b{bottom:321.467820px;}
.y314{bottom:322.872540px;}
.y2b8{bottom:323.407500px;}
.y148{bottom:325.060620px;}
.y95{bottom:327.580620px;}
.yb4{bottom:329.153100px;}
.y283{bottom:330.781020px;}
.ye8{bottom:332.323260px;}
.y1ce{bottom:332.955000px;}
.y55{bottom:333.548700px;}
.y34b{bottom:335.108940px;}
.y21f{bottom:335.113980px;}
.y22e{bottom:335.174460px;}
.y2dd{bottom:337.922700px;}
.y2a{bottom:339.460620px;}
.y17d{bottom:339.711900px;}
.y11d{bottom:339.792540px;}
.y313{bottom:340.154700px;}
.y2b7{bottom:341.400300px;}
.y147{bottom:343.053420px;}
.y94{bottom:345.573420px;}
.yb3{bottom:347.508780px;}
.y282{bottom:348.773820px;}
.y250{bottom:350.316060px;}
.y54{bottom:351.904380px;}
.y34a{bottom:352.391100px;}
.y21e{bottom:353.106780px;}
.y22d{bottom:353.167260px;}
.y2dc{bottom:355.204860px;}
.y312{bottom:357.428220px;}
.y29{bottom:357.453420px;}
.y17c{bottom:357.704700px;}
.y11c{bottom:357.785340px;}
.ye7{bottom:359.327580px;}
.y2b6{bottom:359.393100px;}
.y146{bottom:361.409100px;}
.y93{bottom:363.566220px;}
.y1cb{bottom:364.453500px;}
.yb2{bottom:365.501580px;}
.y281{bottom:366.766620px;}
.y24f{bottom:368.308860px;}
.y349{bottom:369.673260px;}
.y22c{bottom:371.160060px;}
.y21d{bottom:371.462460px;}
.y2db{bottom:373.560540px;}
.y311{bottom:374.710380px;}
.y17b{bottom:375.697500px;}
.y11b{bottom:375.778140px;}
.y28{bottom:375.809100px;}
.ye6{bottom:377.683260px;}
.y2b5{bottom:377.748780px;}
.y145{bottom:379.401900px;}
.y53{bottom:379.982220px;}
.y92{bottom:381.921900px;}
.yb1{bottom:383.494380px;}
.y280{bottom:384.759420px;}
.y348{bottom:386.592540px;}
.y24e{bottom:386.664540px;}
.y2da{bottom:390.842700px;}
.y310{bottom:391.992540px;}
.y17a{bottom:393.690300px;}
.y11a{bottom:393.770940px;}
.y27{bottom:393.801900px;}
.ye5{bottom:395.676060px;}
.y2b4{bottom:395.741580px;}
.y144{bottom:397.394700px;}
.y1c8{bottom:397.455000px;}
.y52{bottom:397.975020px;}
.y21c{bottom:398.466780px;}
.y22b{bottom:398.527260px;}
.y91{bottom:399.914700px;}
.yb0{bottom:401.850060px;}
.y27f{bottom:403.115100px;}
.y347{bottom:403.874700px;}
.y24d{bottom:404.657340px;}
.y2d9{bottom:409.198380px;}
.y30f{bottom:409.274700px;}
.y26{bottom:411.794700px;}
.y119{bottom:412.126620px;}
.ye4{bottom:413.668860px;}
.y2b3{bottom:413.734380px;}
.y51{bottom:415.967820px;}
.y22a{bottom:416.520060px;}
.yaf{bottom:419.842860px;}
.y179{bottom:421.057500px;}
.y27e{bottom:421.107900px;}
.y346{bottom:421.146060px;}
.y37d{bottom:421.150380px;}
.y24c{bottom:422.650140px;}
.y143{bottom:425.474700px;}
.y30e{bottom:426.543900px;}
.y2d8{bottom:427.191180px;}
.y90{bottom:427.634700px;}
.y1c5{bottom:428.955000px;}
.y25{bottom:429.787500px;}
.y118{bottom:430.119420px;}
.ye3{bottom:432.024540px;}
.y50{bottom:434.323500px;}
.y21b{bottom:434.467500px;}
.yae{bottom:437.835660px;}
.y345{bottom:438.428220px;}
.y37c{bottom:438.432540px;}
.y178{bottom:439.050300px;}
.y27d{bottom:439.100700px;}
.y24b{bottom:441.005820px;}
.y2b2{bottom:441.101580px;}
.y30d{bottom:443.826060px;}
.y2d7{bottom:445.183980px;}
.y142{bottom:447.074700px;}
.y117{bottom:448.112220px;}
.y8f{bottom:449.594700px;}
.ye2{bottom:450.017340px;}
.y344{bottom:455.710380px;}
.y37b{bottom:455.714700px;}
.y177{bottom:457.043100px;}
.y24{bottom:457.154700px;}
.y27c{bottom:457.456380px;}
.y24a{bottom:458.998620px;}
.y2b1{bottom:459.094380px;}
.y1c3{bottom:460.455000px;}
.y30c{bottom:461.108220px;}
.y21a{bottom:461.834700px;}
.y4f{bottom:462.401340px;}
.yad{bottom:465.202860px;}
.ye1{bottom:468.010140px;}
.y2d6{bottom:468.937500px;}
.y8e{bottom:471.194700px;}
.y343{bottom:472.992540px;}
.y37a{bottom:472.994700px;}
.y176{bottom:475.398780px;}
.y27b{bottom:475.449180px;}
.y116{bottom:475.479420px;}
.y2b0{bottom:477.087180px;}
.y30b{bottom:478.390380px;}
.y4e{bottom:480.394140px;}
.yac{bottom:483.195660px;}
.y216{bottom:484.453500px;}
.ye0{bottom:486.002940px;}
.y141{bottom:486.043980px;}
.y379{bottom:490.270380px;}
.y342{bottom:490.274700px;}
.y175{bottom:493.391580px;}
.y1c0{bottom:493.455000px;}
.y115{bottom:493.472220px;}
.y23{bottom:493.874700px;}
.y2af{bottom:495.079980px;}
.y30a{bottom:495.672540px;}
.y4d{bottom:498.749820px;}
.yab{bottom:501.188460px;}
.y27a{bottom:502.453500px;}
.y140{bottom:504.399660px;}
.y341{bottom:507.546060px;}
.y378{bottom:507.552540px;}
.y8d{bottom:510.136620px;}
.y174{bottom:511.384380px;}
.y114{bottom:511.465020px;}
.y309{bottom:512.954700px;}
.ydf{bottom:513.370140px;}
.y2ae{bottom:513.435660px;}
.yaa{bottom:519.544140px;}
.y213{bottom:520.455000px;}
.y249{bottom:522.003660px;}
.y13f{bottom:522.392460px;}
.y340{bottom:524.828220px;}
.y377{bottom:524.834700px;}
.y4c{bottom:526.827660px;}
.y8c{bottom:528.492300px;}
.y173{bottom:529.740060px;}
.y113{bottom:529.820700px;}
.y308{bottom:529.868220px;}
.y2ad{bottom:531.428460px;}
.y22{bottom:532.885740px;}
.ya9{bottom:537.536940px;}
.y279{bottom:538.817100px;}
.y248{bottom:540.359340px;}
.y33f{bottom:542.110380px;}
.y376{bottom:542.111100px;}
.y4b{bottom:544.820460px;}
.y8b{bottom:546.485100px;}
.y307{bottom:547.150380px;}
.y172{bottom:547.732860px;}
.y1bf{bottom:547.763820px;}
.y112{bottom:547.813500px;}
.yde{bottom:549.370860px;}
.y13e{bottom:549.396780px;}
.y21{bottom:551.241420px;}
.y210{bottom:554.955000px;}
.ya8{bottom:555.529740px;}
.y278{bottom:556.809900px;}
.y247{bottom:558.352140px;}
.y2ac{bottom:558.432780px;}
.y33e{bottom:559.392540px;}
.y375{bottom:559.393260px;}
.y4a{bottom:563.176140px;}
.y306{bottom:564.432540px;}
.y8a{bottom:564.477900px;}
.y111{bottom:565.806300px;}
.y1be{bottom:566.119500px;}
.ydd{bottom:567.363660px;}
.y13d{bottom:567.752460px;}
.y20{bottom:569.234220px;}
.ya7{bottom:573.522540px;}
.y171{bottom:574.737180px;}
.y277{bottom:574.802700px;}
.y246{bottom:576.344940px;}
.y33d{bottom:576.674700px;}
.y374{bottom:576.675420px;}
.y49{bottom:581.168940px;}
.y305{bottom:581.714700px;}
.y89{bottom:582.470700px;}
.y1bd{bottom:584.112300px;}
.y110{bottom:584.161980px;}
.ydc{bottom:585.719340px;}
.y1f{bottom:587.227020px;}
.y20c{bottom:589.455000px;}
.y20e{bottom:590.955000px;}
.ya6{bottom:591.878220px;}
.y1a0{bottom:593.002860px;}
.y170{bottom:593.092860px;}
.y276{bottom:593.158380px;}
.y33c{bottom:593.586060px;}
.y373{bottom:593.594700px;}
.y20f{bottom:594.314700px;}
.y245{bottom:594.700620px;}
.y2ab{bottom:594.796380px;}
.y13c{bottom:595.830300px;}
.y48{bottom:599.161740px;}
.y1bc{bottom:602.105100px;}
.ydb{bottom:603.712140px;}
.y1e{bottom:605.582700px;}
.y304{bottom:609.434700px;}
.y88{bottom:609.837900px;}
.y372{bottom:610.866060px;}
.y33b{bottom:610.868220px;}
.y19f{bottom:610.995660px;}
.y16f{bottom:611.085660px;}
.y275{bottom:611.151180px;}
.y10f{bottom:611.166300px;}
.y244{bottom:612.693420px;}
.y13b{bottom:613.823100px;}
.ya5{bottom:618.882540px;}
.y1bb{bottom:620.097900px;}
.yda{bottom:621.704940px;}
.y2aa{bottom:621.800700px;}
.y1d{bottom:623.575500px;}
.y208{bottom:625.455000px;}
.y47{bottom:626.528940px;}
.y87{bottom:627.830700px;}
.y371{bottom:628.148220px;}
.y33a{bottom:628.150380px;}
.y19e{bottom:628.988460px;}
.y16e{bottom:629.078460px;}
.y274{bottom:629.143980px;}
.y10e{bottom:629.159100px;}
.y243{bottom:630.686220px;}
.y1ba{bottom:638.453580px;}
.y2a9{bottom:639.793500px;}
.yd9{bottom:640.060620px;}
.y1c{bottom:641.568300px;}
.y13a{bottom:641.900940px;}
.y370{bottom:645.430380px;}
.y339{bottom:645.432540px;}
.y86{bottom:645.823500px;}
.ya4{bottom:645.886860px;}
.y16d{bottom:647.071260px;}
.y273{bottom:647.136780px;}
.y10d{bottom:647.151900px;}
.y19d{bottom:647.344140px;}
.y303{bottom:648.771180px;}
.y242{bottom:649.041900px;}
.y1b9{bottom:656.446380px;}
.yd8{bottom:658.053420px;}
.y2a8{bottom:658.149180px;}
.y1b{bottom:659.923980px;}
.y205{bottom:661.453500px;}
.y46{bottom:662.529660px;}
.y36f{bottom:662.712540px;}
.y338{bottom:662.714700px;}
.y85{bottom:664.179180px;}
.ya3{bottom:664.242540px;}
.y19c{bottom:665.336940px;}
.y16c{bottom:665.426940px;}
.y272{bottom:665.492460px;}
.y10c{bottom:665.507580px;}
.y302{bottom:666.763980px;}
.y241{bottom:667.034700px;}
.y139{bottom:669.268140px;}
.y1b8{bottom:674.439180px;}
.yd7{bottom:676.046220px;}
.y2a7{bottom:676.141980px;}
.y1a{bottom:677.916780px;}
.y337{bottom:679.994700px;}
.y45{bottom:680.522460px;}
.y84{bottom:682.171980px;}
.ya2{bottom:682.235340px;}
.y19b{bottom:683.329740px;}
.y16b{bottom:683.419740px;}
.y10b{bottom:683.500380px;}
.y301{bottom:684.756780px;}
.y138{bottom:687.260940px;}
.y271{bottom:692.496780px;}
.y1b7{bottom:692.794860px;}
.y2a6{bottom:694.134780px;}
.yd6{bottom:694.401900px;}
.y240{bottom:694.754700px;}
.y19{bottom:695.909580px;}
.y202{bottom:695.955000px;}
.y36e{bottom:697.266060px;}
.y336{bottom:697.268220px;}
.y44{bottom:698.515260px;}
.y83{bottom:700.164780px;}
.ya1{bottom:700.228140px;}
.y16a{bottom:701.412540px;}
.y10a{bottom:701.493180px;}
.y19a{bottom:701.685420px;}
.y300{bottom:703.112460px;}
.y270{bottom:710.489580px;}
.y1b6{bottom:710.787660px;}
.yd5{bottom:712.394700px;}
.y2a5{bottom:712.490460px;}
.y18{bottom:714.265260px;}
.y36d{bottom:714.548220px;}
.y335{bottom:714.550380px;}
.y137{bottom:715.338780px;}
.y23f{bottom:716.714700px;}
.y43{bottom:716.870940px;}
.y82{bottom:718.520460px;}
.ya0{bottom:718.583820px;}
.y199{bottom:719.678220px;}
.y109{bottom:719.848860px;}
.y169{bottom:728.779740px;}
.y26f{bottom:728.845260px;}
.y2ff{bottom:730.116780px;}
.y2a4{bottom:730.483260px;}
.y36c{bottom:731.830380px;}
.y334{bottom:731.832540px;}
.y17{bottom:732.258060px;}
.y201{bottom:733.455000px;}
.y136{bottom:733.694460px;}
.y42{bottom:734.863740px;}
.y81{bottom:736.513260px;}
.y9f{bottom:736.576620px;}
.y1b5{bottom:737.791980px;}
.yd4{bottom:740.114700px;}
.y198{bottom:746.682540px;}
.y26e{bottom:746.838060px;}
.y108{bottom:746.853180px;}
.y2d5{bottom:746.858220px;}
.y2fe{bottom:748.109580px;}
.y2a3{bottom:748.476060px;}
.y36b{bottom:749.112540px;}
.y333{bottom:749.114700px;}
.y16{bottom:750.250860px;}
.y41{bottom:752.856540px;}
.y23e{bottom:755.694060px;}
.y1b4{bottom:756.147660px;}
.y135{bottom:761.772300px;}
.yd3{bottom:762.074700px;}
.y80{bottom:763.517580px;}
.y168{bottom:764.780460px;}
.y26d{bottom:764.830860px;}
.y2d4{bottom:765.213900px;}
.y332{bottom:766.391100px;}
.y36a{bottom:766.394700px;}
.y2fd{bottom:766.465260px;}
.y2a2{bottom:766.468860px;}
.y15{bottom:768.243660px;}
.y40{bottom:771.212220px;}
.y23d{bottom:773.686860px;}
.y134{bottom:779.765100px;}
.y167{bottom:782.773260px;}
.y107{bottom:782.853900px;}
.y1ec{bottom:783.015900px;}
.y197{bottom:783.046140px;}
.y26c{bottom:783.186540px;}
.y369{bottom:783.303900px;}
.y331{bottom:783.310380px;}
.y2fc{bottom:784.458060px;}
.y14{bottom:786.599340px;}
.y3f{bottom:789.205020px;}
.y23c{bottom:792.042540px;}
.y200{bottom:792.103020px;}
.y1b3{bottom:792.148380px;}
.y2d3{bottom:792.218220px;}
.y2a1{bottom:793.836060px;}
.y7f{bottom:798.792540px;}
.y368{bottom:800.586060px;}
.y330{bottom:800.592540px;}
.y1eb{bottom:801.008700px;}
.yd2{bottom:801.038940px;}
.y166{bottom:801.128940px;}
.y26b{bottom:801.179340px;}
.y106{bottom:801.209580px;}
.y2fb{bottom:802.450860px;}
.y13{bottom:804.592140px;}
.y3e{bottom:807.197820px;}
.y133{bottom:808.205820px;}
.y23b{bottom:810.035340px;}
.y1ff{bottom:810.095820px;}
.y1b2{bottom:810.141180px;}
.y2d2{bottom:810.211020px;}
.y2a0{bottom:811.828860px;}
.y7e{bottom:816.074700px;}
.y367{bottom:817.868220px;}
.y32f{bottom:817.874700px;}
.yd1{bottom:819.031740px;}
.y196{bottom:819.046860px;}
.y165{bottom:819.121740px;}
.y26a{bottom:819.172140px;}
.y105{bottom:819.202380px;}
.y1ea{bottom:819.364380px;}
.y2fa{bottom:820.806540px;}
.y12{bottom:822.584940px;}
.y3d{bottom:825.553500px;}
.y132{bottom:826.198620px;}
.y23a{bottom:828.028140px;}
.y1fe{bottom:828.088620px;}
.y1b1{bottom:828.496860px;}
.y2d1{bottom:828.566700px;}
.y79{bottom:829.455000px;}
.y29f{bottom:829.821660px;}
.y78{bottom:832.994700px;}
.y7d{bottom:833.707500px;}
.y366{bottom:835.150380px;}
.y32e{bottom:835.154700px;}
.y195{bottom:837.039660px;}
.y164{bottom:837.114540px;}
.y104{bottom:837.195180px;}
.yd0{bottom:837.387420px;}
.y2f9{bottom:838.799340px;}
.y11{bottom:840.940620px;}
.y77{bottom:842.714700px;}
.y1e9{bottom:846.368700px;}
.y239{bottom:846.383820px;}
.y1fd{bottom:846.444300px;}
.y1b0{bottom:846.489660px;}
.y269{bottom:846.539340px;}
.y2d0{bottom:846.559500px;}
.y29e{bottom:848.177340px;}
.y7c{bottom:849.193260px;}
.y32d{bottom:852.426060px;}
.y365{bottom:852.432540px;}
.y3c{bottom:852.557820px;}
.y131{bottom:854.276460px;}
.ycf{bottom:855.380220px;}
.y194{bottom:855.395340px;}
.y163{bottom:855.470220px;}
.y103{bottom:855.550860px;}
.y74{bottom:857.955000px;}
.y10{bottom:858.933420px;}
.y1e8{bottom:864.361500px;}
.y238{bottom:864.376620px;}
.y1af{bottom:864.482460px;}
.y268{bottom:864.532140px;}
.y2cf{bottom:864.552300px;}
.y7b{bottom:865.034700px;}
.y2f8{bottom:865.803660px;}
.y29d{bottom:866.170140px;}
.y32c{bottom:869.708220px;}
.y364{bottom:869.714700px;}
.y3b{bottom:870.550620px;}
.y130{bottom:872.269260px;}
.yce{bottom:873.373020px;}
.y193{bottom:873.388140px;}
.y1fc{bottom:873.448620px;}
.y162{bottom:873.463020px;}
.y102{bottom:873.543660px;}
.yf{bottom:876.926220px;}
.y1e7{bottom:882.354300px;}
.y267{bottom:882.524940px;}
.y2ce{bottom:882.545100px;}
.y2f7{bottom:883.796460px;}
.y29c{bottom:884.162940px;}
.y363{bottom:886.986060px;}
.y32b{bottom:886.990380px;}
.y3a{bottom:888.906300px;}
.ycd{bottom:891.365820px;}
.y192{bottom:891.380940px;}
.y1fb{bottom:891.441420px;}
.y161{bottom:891.455820px;}
.y1ae{bottom:891.486780px;}
.y101{bottom:891.536460px;}
.y70{bottom:892.455000px;}
.ye{bottom:895.281900px;}
.y73{bottom:896.708940px;}
.y266{bottom:900.517740px;}
.y12f{bottom:900.709980px;}
.y2cd{bottom:900.900780px;}
.y2f6{bottom:902.152140px;}
.y29b{bottom:902.518620px;}
.y362{bottom:904.268220px;}
.y32a{bottom:904.272540px;}
.y39{bottom:906.899100px;}
.y191{bottom:909.373740px;}
.y1fa{bottom:909.434220px;}
.y100{bottom:909.529260px;}
.ycc{bottom:909.721500px;}
.y1ad{bottom:909.842460px;}
.y72{bottom:912.194700px;}
.yd{bottom:913.274700px;}
.y160{bottom:918.460140px;}
.y1e6{bottom:918.702780px;}
.y265{bottom:918.873420px;}
.y2cc{bottom:918.893580px;}
.y2f5{bottom:920.144940px;}
.y361{bottom:921.550380px;}
.y329{bottom:921.554700px;}
.y38{bottom:924.891900px;}
.y12e{bottom:927.714300px;}
.y190{bottom:927.729420px;}
.y1f9{bottom:927.789900px;}
.y1ac{bottom:927.835260px;}
.yff{bottom:927.884940px;}
.y29a{bottom:929.522940px;}
.ycb{bottom:936.725820px;}
.y15f{bottom:936.815820px;}
.y264{bottom:936.866220px;}
.y2cb{bottom:936.886380px;}
.y2f4{bottom:938.137740px;}
.y328{bottom:938.831100px;}
.y360{bottom:938.832540px;}
.yc{bottom:939.914700px;}
.y6c{bottom:940.455000px;}
.y37{bottom:942.884700px;}
.y12d{bottom:945.707100px;}
.y18f{bottom:945.722220px;}
.y1f8{bottom:945.782700px;}
.y1ab{bottom:945.828060px;}
.yfe{bottom:945.877740px;}
.yca{bottom:954.718620px;}
.y15e{bottom:954.808620px;}
.y263{bottom:954.859020px;}
.y327{bottom:956.113260px;}
.y35f{bottom:956.114700px;}
.y2f3{bottom:956.493420px;}
.y6f{bottom:959.353260px;}
.y18e{bottom:963.715020px;}
.y1f7{bottom:963.775500px;}
.yfd{bottom:963.870540px;}
.y12c{bottom:964.062780px;}
.y1aa{bottom:964.183740px;}
.y2ca{bottom:964.253580px;}
.y299{bottom:965.523660px;}
.y15d{bottom:972.801420px;}
.yc9{bottom:973.074300px;}
.y262{bottom:973.214700px;}
.y35e{bottom:973.394700px;}
.y326{bottom:973.395420px;}
.y2f2{bottom:974.486220px;}
.y6e{bottom:975.194700px;}
.y7{bottom:979.455000px;}
.y1e5{bottom:982.055580px;}
.y18d{bottom:982.070700px;}
.y1a9{bottom:982.176540px;}
.y298{bottom:983.879340px;}
.yb{bottom:988.154700px;}
.y35d{bottom:990.306060px;}
.y325{bottom:990.314700px;}
.yc8{bottom:991.067100px;}
.y1f6{bottom:991.142700px;}
.y15c{bottom:991.157100px;}
.yfc{bottom:991.237740px;}
.y2f1{bottom:992.479020px;}
.y1e4{bottom:1000.048380px;}
.y261{bottom:1000.219020px;}
.y2c9{bottom:1000.254300px;}
.y297{bottom:1001.872140px;}
.y68{bottom:1003.455000px;}
.y9{bottom:1005.074700px;}
.y324{bottom:1007.588220px;}
.yc7{bottom:1009.059900px;}
.y18c{bottom:1009.075020px;}
.y1f5{bottom:1009.135500px;}
.y15b{bottom:1009.149900px;}
.y1a8{bottom:1009.180860px;}
.yfb{bottom:1009.230540px;}
.y2f0{bottom:1010.834700px;}
.y1e3{bottom:1018.404060px;}
.y296{bottom:1019.864940px;}
.y6a{bottom:1022.354700px;}
.y323{bottom:1024.870380px;}
.y18b{bottom:1027.067820px;}
.y1f4{bottom:1027.128300px;}
.y15a{bottom:1027.142700px;}
.yfa{bottom:1027.223340px;}
.y2c8{bottom:1027.258620px;}
.yc6{bottom:1027.415580px;}
.y260{bottom:1036.219740px;}
.y1e2{bottom:1036.396860px;}
.y295{bottom:1037.857740px;}
.y2ef{bottom:1038.554700px;}
.y322{bottom:1042.152540px;}
.y5{bottom:1043.955000px;}
.yc5{bottom:1045.408380px;}
.y12b{bottom:1045.423500px;}
.y1f3{bottom:1045.483980px;}
.y159{bottom:1045.498380px;}
.y1a7{bottom:1045.544460px;}
.yf9{bottom:1045.579020px;}
.y2c7{bottom:1045.614300px;}
.y64{bottom:1049.955000px;}
.y25f{bottom:1054.575420px;}
.y294{bottom:1056.213420px;}
.y321{bottom:1059.434700px;}
.yc4{bottom:1063.401180px;}
.y12a{bottom:1063.416300px;}
.y1f2{bottom:1063.476780px;}
.y158{bottom:1063.491180px;}
.y1a6{bottom:1063.537260px;}
.yf8{bottom:1063.571820px;}
.y2c6{bottom:1063.607100px;}
.y66{bottom:1069.514700px;}
.y25e{bottom:1072.568220px;}
.y293{bottom:1074.206220px;}
.y2ee{bottom:1076.703900px;}
.y35c{bottom:1076.708220px;}
.y129{bottom:1081.409100px;}
.y1f1{bottom:1081.469580px;}
.y1a5{bottom:1081.530060px;}
.yf7{bottom:1081.564620px;}
.y2c5{bottom:1081.599900px;}
.y1e1{bottom:1081.756860px;}
.y4{bottom:1082.490180px;}
.y157{bottom:1090.495500px;}
.y25d{bottom:1090.561020px;}
.yc3{bottom:1090.768380px;}
.y292{bottom:1092.199020px;}
.y2ed{bottom:1093.986060px;}
.y35b{bottom:1093.990380px;}
.y61{bottom:1099.455000px;}
.y18a{bottom:1099.764780px;}
.y1f0{bottom:1099.825260px;}
.y1a4{bottom:1099.885740px;}
.yf6{bottom:1099.920300px;}
.y2c4{bottom:1099.955580px;}
.y1e0{bottom:1108.761180px;}
.y128{bottom:1108.776300px;}
.y156{bottom:1108.851180px;}
.y25c{bottom:1108.916700px;}
.y291{bottom:1110.554700px;}
.y2ec{bottom:1111.268220px;}
.y35a{bottom:1111.272540px;}
.y189{bottom:1117.757580px;}
.y1ef{bottom:1117.818060px;}
.y1a3{bottom:1117.878540px;}
.yf5{bottom:1117.913100px;}
.y3{bottom:1119.200820px;}
.yc2{bottom:1126.769100px;}
.y155{bottom:1126.843980px;}
.y25b{bottom:1126.909500px;}
.y2c3{bottom:1126.959900px;}
.y385{bottom:1128.542460px;}
.y2eb{bottom:1128.550380px;}
.y359{bottom:1128.554700px;}
.y1a2{bottom:1135.871340px;}
.yf4{bottom:1135.905900px;}
.y290{bottom:1138.274700px;}
.y60{bottom:1144.754700px;}
.yc1{bottom:1144.761900px;}
.y1ee{bottom:1144.822380px;}
.y154{bottom:1144.836780px;}
.y25a{bottom:1144.902300px;}
.y2c2{bottom:1144.952700px;}
.y384{bottom:1145.824620px;}
.y2ea{bottom:1145.832540px;}
.y2{bottom:1146.914700px;}
.y28f{bottom:1159.874700px;}
.yc0{bottom:1162.754700px;}
.y1ed{bottom:1162.815180px;}
.y153{bottom:1162.829580px;}
.y1a1{bottom:1162.875660px;}
.y259{bottom:1162.895100px;}
.yf3{bottom:1162.910220px;}
.y2c1{bottom:1162.945500px;}
.y383{bottom:1163.106780px;}
.y2e9{bottom:1163.114700px;}
.h12{height:1.919531px;}
.h17{height:18.000000px;}
.h4{height:19.500000px;}
.hc{height:31.500000px;}
.h15{height:31.501500px;}
.h14{height:33.000000px;}
.h16{height:33.001500px;}
.h19{height:35.998500px;}
.h18{height:36.000000px;}
.hd{height:37.085625px;}
.h1a{height:37.500000px;}
.he{height:38.020781px;}
.hf{height:38.043821px;}
.hb{height:40.959844px;}
.h5{height:40.989375px;}
.h9{height:41.018906px;}
.h2{height:41.777344px;}
.ha{height:41.993438px;}
.h10{height:48.000000px;}
.h6{height:48.796875px;}
.h8{height:53.067656px;}
.h7{height:55.500000px;}
.h11{height:63.000000px;}
.h13{height:64.500000px;}
.h3{height:65.387812px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w9{width:76.500000px;}
.wb{width:100.500000px;}
.wa{width:101.998500px;}
.w5{width:106.500000px;}
.we{width:109.500000px;}
.w4{width:121.500000px;}
.w7{width:126.000000px;}
.wc{width:135.000000px;}
.w8{width:138.001500px;}
.w14{width:156.000000px;}
.w10{width:157.500000px;}
.w6{width:166.500000px;}
.wd{width:177.000000px;}
.w12{width:180.000000px;}
.w11{width:182.998500px;}
.wf{width:211.500000px;}
.w13{width:213.000000px;}
.w2{width:237.000000px;}
.w3{width:288.000000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:1.019850px;}
.x1e{left:8.280000px;}
.x14{left:10.687500px;}
.x33{left:12.518850px;}
.x32{left:13.642800px;}
.x37{left:14.735250px;}
.x3b{left:16.785000px;}
.x40{left:18.311100px;}
.x16{left:21.090450px;}
.x1d{left:23.200950px;}
.x39{left:24.507000px;}
.x2d{left:28.626000px;}
.x3f{left:29.763000px;}
.x1a{left:31.520700px;}
.x3e{left:33.332400px;}
.x35{left:36.869700px;}
.x36{left:41.805000px;}
.x3a{left:42.932400px;}
.x18{left:44.498250px;}
.xb{left:46.451400px;}
.x3c{left:49.045350px;}
.x9{left:50.153700px;}
.x49{left:52.112850px;}
.xe{left:53.466750px;}
.x31{left:55.212150px;}
.x43{left:59.734200px;}
.x41{left:62.163000px;}
.x3d{left:64.222950px;}
.x48{left:66.050100px;}
.x38{left:67.069350px;}
.x42{left:68.900100px;}
.x34{left:71.934000px;}
.xd{left:75.172200px;}
.x8{left:80.757000px;}
.x26{left:82.590450px;}
.x6{left:84.079500px;}
.x2b{left:87.586950px;}
.x1f{left:89.280000px;}
.x23{left:91.500000px;}
.x4b{left:93.335100px;}
.x45{left:97.109850px;}
.x4d{left:100.599150px;}
.x2a{left:107.659440px;}
.x27{left:119.850450px;}
.x50{left:134.648640px;}
.x11{left:174.329400px;}
.x44{left:178.077750px;}
.x5{left:184.972500px;}
.x4c{left:188.591100px;}
.x29{left:194.109450px;}
.x2{left:196.173900px;}
.x15{left:202.500000px;}
.xa{left:204.419550px;}
.x10{left:206.325900px;}
.x2c{left:209.104950px;}
.x22{left:210.239850px;}
.x2e{left:216.000000px;}
.x4e{left:218.103150px;}
.x46{left:237.000000px;}
.x28{left:247.614450px;}
.x17{left:309.000000px;}
.x3{left:316.484460px;}
.xc{left:375.447150px;}
.x2f{left:391.500000px;}
.x47{left:420.000000px;}
.x7{left:421.974000px;}
.x1{left:438.956700px;}
.x25{left:446.114850px;}
.x4{left:462.121020px;}
.x12{left:463.800600px;}
.x19{left:474.000000px;}
.x20{left:482.760000px;}
.x13{left:490.850280px;}
.x51{left:517.328640px;}
.x1b{left:598.500000px;}
.x30{left:600.000000px;}
.x21{left:607.680000px;}
.x4a{left:646.460700px;}
.xf{left:655.470300px;}
.x1c{left:735.000000px;}
.x4f{left:777.188160px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls19{letter-spacing:-2.091520pt;}
.ls2f{letter-spacing:-0.583680pt;}
.ls30{letter-spacing:-0.535040pt;}
.ls15{letter-spacing:-0.437760pt;}
.ls2e{letter-spacing:-0.389120pt;}
.ls38{letter-spacing:-0.376320pt;}
.ls17{letter-spacing:-0.340480pt;}
.ls1b{letter-spacing:-0.322560pt;}
.ls14{letter-spacing:-0.291840pt;}
.lsc{letter-spacing:-0.268800pt;}
.ls16{letter-spacing:-0.243200pt;}
.lsb{letter-spacing:-0.215040pt;}
.ls18{letter-spacing:-0.194560pt;}
.ls9{letter-spacing:-0.171520pt;}
.lsd{letter-spacing:-0.161280pt;}
.ls1a{letter-spacing:-0.145920pt;}
.lsa{letter-spacing:-0.107520pt;}
.ls8{letter-spacing:0.000000pt;}
.ls42{letter-spacing:0.005376pt;}
.ls23{letter-spacing:0.016128pt;}
.ls3c{letter-spacing:0.026880pt;}
.ls37{letter-spacing:0.037632pt;}
.ls43{letter-spacing:0.053760pt;}
.ls1d{letter-spacing:0.247296pt;}
.ls34{letter-spacing:0.376320pt;}
.lsf{letter-spacing:0.913920pt;}
.ls11{letter-spacing:1.021440pt;}
.ls0{letter-spacing:1.075200pt;}
.lse{letter-spacing:1.290240pt;}
.ls2a{letter-spacing:1.451520pt;}
.ls44{letter-spacing:1.774080pt;}
.ls3d{letter-spacing:1.881600pt;}
.ls2b{letter-spacing:2.166528pt;}
.ls1c{letter-spacing:2.204160pt;}
.ls10{letter-spacing:2.419200pt;}
.ls3f{letter-spacing:2.526720pt;}
.ls3e{letter-spacing:2.838528pt;}
.ls32{letter-spacing:3.333120pt;}
.ls33{letter-spacing:3.440640pt;}
.ls25{letter-spacing:3.601920pt;}
.ls26{letter-spacing:3.655680pt;}
.ls2d{letter-spacing:3.924480pt;}
.ls2c{letter-spacing:3.988992pt;}
.ls39{letter-spacing:4.032000pt;}
.ls28{letter-spacing:4.408320pt;}
.ls1f{letter-spacing:4.429824pt;}
.ls24{letter-spacing:4.462080pt;}
.ls6{letter-spacing:4.736256pt;}
.ls35{letter-spacing:4.945920pt;}
.ls41{letter-spacing:5.107200pt;}
.ls47{letter-spacing:5.376000pt;}
.ls20{letter-spacing:5.698560pt;}
.ls1{letter-spacing:6.558720pt;}
.ls2{letter-spacing:6.612480pt;}
.ls3a{letter-spacing:6.881280pt;}
.ls29{letter-spacing:7.150080pt;}
.ls3b{letter-spacing:7.832832pt;}
.ls31{letter-spacing:7.956480pt;}
.ls3{letter-spacing:8.279040pt;}
.ls40{letter-spacing:9.139200pt;}
.ls1e{letter-spacing:9.676800pt;}
.ls36{letter-spacing:9.999360pt;}
.ls21{letter-spacing:11.934720pt;}
.ls27{letter-spacing:12.311040pt;}
.ls4{letter-spacing:12.472320pt;}
.ls5{letter-spacing:12.526080pt;}
.ls12{letter-spacing:17.256960pt;}
.ls22{letter-spacing:26.073600pt;}
.ls13{letter-spacing:31.127040pt;}
.ls7{letter-spacing:56.501760pt;}
.ls46{letter-spacing:89.725440pt;}
.ls45{letter-spacing:116.390400pt;}
.ws0{word-spacing:-31.987200pt;}
.ws1{word-spacing:-13.440000pt;}
.ws3{word-spacing:-13.332480pt;}
.ws5{word-spacing:-13.278720pt;}
.ws2{word-spacing:-13.224960pt;}
.ws1e{word-spacing:-13.171200pt;}
.ws14{word-spacing:-13.117440pt;}
.ws23{word-spacing:-13.063680pt;}
.wsf{word-spacing:-12.160000pt;}
.ws10{word-spacing:-11.965440pt;}
.wse{word-spacing:-11.868160pt;}
.ws11{word-spacing:-11.819520pt;}
.ws1f{word-spacing:-11.770880pt;}
.ws13{word-spacing:-11.722240pt;}
.ws21{word-spacing:-11.624960pt;}
.ws20{word-spacing:-11.576320pt;}
.ws12{word-spacing:-10.068480pt;}
.ws24{word-spacing:-0.215040pt;}
.wsd{word-spacing:-0.107520pt;}
.ws22{word-spacing:-0.097280pt;}
.ws4{word-spacing:-0.053760pt;}
.ws19{word-spacing:-0.048640pt;}
.ws6{word-spacing:0.000000pt;}
.wsc{word-spacing:0.053760pt;}
.ws15{word-spacing:0.097280pt;}
.ws8{word-spacing:0.107520pt;}
.ws1d{word-spacing:0.145920pt;}
.wsb{word-spacing:0.161280pt;}
.ws7{word-spacing:0.171520pt;}
.ws1b{word-spacing:0.194560pt;}
.ws9{word-spacing:0.215040pt;}
.ws18{word-spacing:0.243200pt;}
.wsa{word-spacing:0.268800pt;}
.ws16{word-spacing:0.291840pt;}
.ws25{word-spacing:0.322560pt;}
.ws1a{word-spacing:0.340480pt;}
.ws17{word-spacing:0.437760pt;}
.ws1c{word-spacing:2.091520pt;}
._18{margin-left:-6.931200pt;}
._17{margin-left:-4.628480pt;}
._8{margin-left:-3.257856pt;}
._a{margin-left:-2.311680pt;}
._0{margin-left:-0.926208pt;}
._7{width:1.720320pt;}
._c{width:3.333120pt;}
._4{width:4.354560pt;}
._5{width:5.284608pt;}
._6{width:6.811392pt;}
._d{width:8.064000pt;}
._b{width:9.451008pt;}
._3{width:10.418688pt;}
._e{width:11.929344pt;}
._10{width:14.714112pt;}
._11{width:15.918336pt;}
._2{width:17.052672pt;}
._1{width:18.385920pt;}
._9{width:19.713792pt;}
._f{width:20.998656pt;}
._1d{width:22.132992pt;}
._13{width:23.278080pt;}
._1e{width:24.315648pt;}
._16{width:25.519872pt;}
._15{width:26.562816pt;}
._1f{width:27.573504pt;}
._25{width:28.772352pt;}
._21{width:29.729280pt;}
._12{width:31.180800pt;}
._33{width:32.696832pt;}
._30{width:34.212864pt;}
._1a{width:35.223552pt;}
._19{width:36.836352pt;}
._14{width:37.814784pt;}
._26{width:41.147904pt;}
._38{width:43.185408pt;}
._2c{width:46.212096pt;}
._2d{width:47.319552pt;}
._28{width:52.147200pt;}
._1b{width:54.351360pt;}
._31{width:55.480320pt;}
._2a{width:63.221760pt;}
._1c{width:70.586880pt;}
._29{width:71.957760pt;}
._34{width:89.402880pt;}
._22{width:92.951040pt;}
._23{width:94.133760pt;}
._36{width:99.660288pt;}
._20{width:108.019968pt;}
._24{width:120.368640pt;}
._2f{width:211.223040pt;}
._35{width:242.081280pt;}
._32{width:316.807680pt;}
._37{width:343.472640pt;}
._2e{width:616.788480pt;}
._27{width:713.395200pt;}
._2b{width:793.605120pt;}
.fs5{font-size:2.560000pt;}
.fs4{font-size:48.640000pt;}
.fs0{font-size:53.333333pt;}
.fs2{font-size:53.760000pt;}
.fs3{font-size:64.000000pt;}
.fs1{font-size:85.760000pt;}
.y0{bottom:0.000000pt;}
.y1ca{bottom:2.826400pt;}
.y1c7{bottom:2.986400pt;}
.y6b{bottom:3.039733pt;}
.y207{bottom:3.041067pt;}
.y76{bottom:3.093067pt;}
.y63{bottom:3.141280pt;}
.y1c4{bottom:3.146400pt;}
.y215{bottom:3.253067pt;}
.y1d3{bottom:3.359733pt;}
.y1d0{bottom:3.519733pt;}
.y1c2{bottom:3.567947pt;}
.y67{bottom:3.626400pt;}
.y20a{bottom:3.677813pt;}
.y20b{bottom:3.679733pt;}
.y1cd{bottom:3.681067pt;}
.y204{bottom:3.733067pt;}
.y218{bottom:3.892480pt;}
.y219{bottom:3.894400pt;}
.y212{bottom:3.946400pt;}
.y6{bottom:4.159733pt;}
.ya{bottom:7.733067pt;}
.y1c9{bottom:16.586400pt;}
.y1c6{bottom:16.746400pt;}
.y75{bottom:16.853067pt;}
.y62{bottom:16.906400pt;}
.y1d2{bottom:17.119733pt;}
.y1cf{bottom:17.279733pt;}
.y1c1{bottom:17.333067pt;}
.y1cc{bottom:17.441067pt;}
.y206{bottom:18.401067pt;}
.y214{bottom:18.613067pt;}
.y209{bottom:19.039733pt;}
.y203{bottom:19.093067pt;}
.y217{bottom:19.254400pt;}
.y211{bottom:19.306400pt;}
.y20d{bottom:19.679733pt;}
.y1{bottom:30.357600pt;}
.y69{bottom:30.559733pt;}
.y71{bottom:31.306400pt;}
.y65{bottom:31.466400pt;}
.y8{bottom:36.853067pt;}
.y6d{bottom:44.639733pt;}
.y7a{bottom:45.386400pt;}
.y358{bottom:98.515893pt;}
.y36{bottom:100.519093pt;}
.y188{bottom:100.729013pt;}
.y28e{bottom:100.787253pt;}
.y320{bottom:103.316533pt;}
.y152{bottom:104.021813pt;}
.ybf{bottom:107.673013pt;}
.y357{bottom:113.877813pt;}
.y187{bottom:116.722613pt;}
.y28d{bottom:116.780853pt;}
.y127{bottom:116.794293pt;}
.y35{bottom:116.835253pt;}
.y31f{bottom:118.355893pt;}
.y151{bottom:120.015413pt;}
.y9e{bottom:122.255413pt;}
.ybe{bottom:123.666613pt;}
.y2c0{bottom:126.529333pt;}
.y1df{bottom:126.711093pt;}
.y5f{bottom:127.573813pt;}
.y2e8{bottom:127.900213pt;}
.y1d9{bottom:128.606133pt;}
.y229{bottom:128.965173pt;}
.y237{bottom:129.005493pt;}
.y356{bottom:129.239733pt;}
.y34{bottom:132.828853pt;}
.y186{bottom:133.038773pt;}
.y28c{bottom:133.097013pt;}
.y126{bottom:133.110453pt;}
.y31e{bottom:133.717813pt;}
.yf2{bottom:134.494773pt;}
.y150{bottom:136.331573pt;}
.y9d{bottom:138.249013pt;}
.ybd{bottom:139.982773pt;}
.y258{bottom:142.478133pt;}
.y2bf{bottom:142.845493pt;}
.y1de{bottom:143.027253pt;}
.y2e7{bottom:143.262133pt;}
.y5e{bottom:143.567413pt;}
.y382{bottom:144.594613pt;}
.y355{bottom:144.596533pt;}
.y1d8{bottom:144.599733pt;}
.y228{bottom:144.958773pt;}
.y236{bottom:144.999093pt;}
.y33{bottom:148.822453pt;}
.y185{bottom:149.032373pt;}
.y31d{bottom:149.079733pt;}
.y28b{bottom:149.090613pt;}
.y125{bottom:149.104053pt;}
.yf1{bottom:150.488373pt;}
.y9c{bottom:154.242613pt;}
.y257{bottom:158.471733pt;}
.y2e6{bottom:158.624053pt;}
.y2be{bottom:158.839093pt;}
.y1dd{bottom:159.020853pt;}
.y5d{bottom:159.883573pt;}
.y381{bottom:159.956533pt;}
.y354{bottom:159.958453pt;}
.y14f{bottom:160.335413pt;}
.y227{bottom:161.274933pt;}
.y235{bottom:161.315253pt;}
.ybc{bottom:163.986613pt;}
.y31c{bottom:164.439733pt;}
.y32{bottom:164.816053pt;}
.y124{bottom:165.097653pt;}
.yf0{bottom:166.804533pt;}
.y1d7{bottom:169.239733pt;}
.y9b{bottom:170.558773pt;}
.y184{bottom:173.036213pt;}
.y28a{bottom:173.094453pt;}
.y2e5{bottom:173.985973pt;}
.y256{bottom:174.787893pt;}
.y2bd{bottom:174.832693pt;}
.y380{bottom:174.995893pt;}
.y353{bottom:174.997813pt;}
.y1dc{bottom:175.014453pt;}
.y5c{bottom:175.877173pt;}
.y226{bottom:177.268533pt;}
.y234{bottom:177.308853pt;}
.y31b{bottom:179.793973pt;}
.ybb{bottom:179.980213pt;}
.y31{bottom:181.132213pt;}
.y123{bottom:181.413813pt;}
.yef{bottom:182.798133pt;}
.y1d6{bottom:188.759733pt;}
.y2e4{bottom:189.347893pt;}
.y183{bottom:189.352373pt;}
.y289{bottom:189.410613pt;}
.y37f{bottom:190.357813pt;}
.y352{bottom:190.359733pt;}
.y255{bottom:190.781493pt;}
.y1db{bottom:191.330613pt;}
.y5b{bottom:191.870773pt;}
.y14e{bottom:192.336053pt;}
.y225{bottom:193.262133pt;}
.y233{bottom:193.302453pt;}
.y9a{bottom:194.562613pt;}
.y31a{bottom:195.155893pt;}
.yba{bottom:196.296373pt;}
.y30{bottom:197.125813pt;}
.y122{bottom:197.407413pt;}
.yee{bottom:198.791733pt;}
.y2bc{bottom:198.836533pt;}
.y288{bottom:205.404213pt;}
.y2e3{bottom:205.664053pt;}
.y351{bottom:205.712053pt;}
.y37e{bottom:205.719733pt;}
.y254{bottom:206.775093pt;}
.y1da{bottom:207.324213pt;}
.y5a{bottom:208.186933pt;}
.y14d{bottom:208.329653pt;}
.y319{bottom:210.517813pt;}
.yb9{bottom:212.289973pt;}
.y121{bottom:213.401013pt;}
.yed{bottom:214.785333pt;}
.y224{bottom:217.588533pt;}
.y232{bottom:217.628853pt;}
.y2e2{bottom:221.025973pt;}
.y350{bottom:221.073973pt;}
.y2f{bottom:221.129653pt;}
.y182{bottom:221.353013pt;}
.y287{bottom:221.397813pt;}
.y253{bottom:222.768693pt;}
.y1d5{bottom:223.315893pt;}
.y59{bottom:224.180533pt;}
.y14c{bottom:224.645813pt;}
.y318{bottom:225.879733pt;}
.y99{bottom:226.563253pt;}
.yb8{bottom:228.283573pt;}
.y120{bottom:229.717173pt;}
.yec{bottom:231.101493pt;}
.y2bb{bottom:231.159733pt;}
.y223{bottom:233.582133pt;}
.y34f{bottom:236.435893pt;}
.y2e1{bottom:237.342133pt;}
.y181{bottom:237.346613pt;}
.y2e{bottom:237.445813pt;}
.y286{bottom:237.713973pt;}
.y252{bottom:239.084853pt;}
.y58{bottom:240.174133pt;}
.y14b{bottom:240.639413pt;}
.y317{bottom:241.239733pt;}
.y98{bottom:242.879413pt;}
.yb7{bottom:244.599733pt;}
.yeb{bottom:247.095093pt;}
.y2ba{bottom:247.153333pt;}
.y1d4{bottom:247.319733pt;}
.y222{bottom:249.575733pt;}
.y231{bottom:249.629493pt;}
.y34e{bottom:251.797813pt;}
.y2e0{bottom:252.704053pt;}
.y2d{bottom:253.439413pt;}
.y180{bottom:253.662773pt;}
.y285{bottom:253.707573pt;}
.y11f{bottom:253.721013pt;}
.y57{bottom:256.490293pt;}
.y316{bottom:256.596533pt;}
.y14a{bottom:256.633013pt;}
.y97{bottom:258.873013pt;}
.yb6{bottom:260.593333pt;}
.yea{bottom:263.088693pt;}
.y230{bottom:265.623093pt;}
.y221{bottom:265.891893pt;}
.y34d{bottom:267.159733pt;}
.y1d1{bottom:267.960000pt;}
.y2df{bottom:268.697653pt;}
.y2c{bottom:269.433013pt;}
.y17f{bottom:269.656373pt;}
.y2b9{bottom:271.157173pt;}
.y315{bottom:271.958453pt;}
.y149{bottom:272.949173pt;}
.y96{bottom:274.866613pt;}
.yb5{bottom:276.586933pt;}
.y284{bottom:277.711413pt;}
.y251{bottom:279.082293pt;}
.ye9{bottom:279.404853pt;}
.y56{bottom:280.494133pt;}
.y220{bottom:281.885493pt;}
.y22f{bottom:281.939253pt;}
.y34c{bottom:282.512693pt;}
.y2de{bottom:284.059573pt;}
.y17e{bottom:285.649973pt;}
.y11e{bottom:285.721653pt;}
.y2b{bottom:285.749173pt;}
.y314{bottom:286.997813pt;}
.y2b8{bottom:287.473333pt;}
.y148{bottom:288.942773pt;}
.y95{bottom:291.182773pt;}
.yb4{bottom:292.580533pt;}
.y283{bottom:294.027573pt;}
.ye8{bottom:295.398453pt;}
.y1ce{bottom:295.960000pt;}
.y55{bottom:296.487733pt;}
.y34b{bottom:297.874613pt;}
.y21f{bottom:297.879093pt;}
.y22e{bottom:297.932853pt;}
.y2dd{bottom:300.375733pt;}
.y2a{bottom:301.742773pt;}
.y17d{bottom:301.966133pt;}
.y11d{bottom:302.037813pt;}
.y313{bottom:302.359733pt;}
.y2b7{bottom:303.466933pt;}
.y147{bottom:304.936373pt;}
.y94{bottom:307.176373pt;}
.yb3{bottom:308.896693pt;}
.y282{bottom:310.021173pt;}
.y250{bottom:311.392053pt;}
.y54{bottom:312.803893pt;}
.y34a{bottom:313.236533pt;}
.y21e{bottom:313.872693pt;}
.y22d{bottom:313.926453pt;}
.y2dc{bottom:315.737653pt;}
.y312{bottom:317.713973pt;}
.y29{bottom:317.736373pt;}
.y17c{bottom:317.959733pt;}
.y11c{bottom:318.031413pt;}
.ye7{bottom:319.402293pt;}
.y2b6{bottom:319.460533pt;}
.y146{bottom:321.252533pt;}
.y93{bottom:323.169973pt;}
.y1cb{bottom:323.958667pt;}
.yb2{bottom:324.890293pt;}
.y281{bottom:326.014773pt;}
.y24f{bottom:327.385653pt;}
.y349{bottom:328.598453pt;}
.y22c{bottom:329.920053pt;}
.y21d{bottom:330.188853pt;}
.y2db{bottom:332.053813pt;}
.y311{bottom:333.075893pt;}
.y17b{bottom:333.953333pt;}
.y11b{bottom:334.025013pt;}
.y28{bottom:334.052533pt;}
.ye6{bottom:335.718453pt;}
.y2b5{bottom:335.776693pt;}
.y145{bottom:337.246133pt;}
.y53{bottom:337.761973pt;}
.y92{bottom:339.486133pt;}
.yb1{bottom:340.883893pt;}
.y280{bottom:342.008373pt;}
.y348{bottom:343.637813pt;}
.y24e{bottom:343.701813pt;}
.y2da{bottom:347.415733pt;}
.y310{bottom:348.437813pt;}
.y17a{bottom:349.946933pt;}
.y11a{bottom:350.018613pt;}
.y27{bottom:350.046133pt;}
.ye5{bottom:351.712053pt;}
.y2b4{bottom:351.770293pt;}
.y144{bottom:353.239733pt;}
.y1c8{bottom:353.293333pt;}
.y52{bottom:353.755573pt;}
.y21c{bottom:354.192693pt;}
.y22b{bottom:354.246453pt;}
.y91{bottom:355.479733pt;}
.yb0{bottom:357.200053pt;}
.y27f{bottom:358.324533pt;}
.y347{bottom:358.999733pt;}
.y24d{bottom:359.695413pt;}
.y2d9{bottom:363.731893pt;}
.y30f{bottom:363.799733pt;}
.y26{bottom:366.039733pt;}
.y119{bottom:366.334773pt;}
.ye4{bottom:367.705653pt;}
.y2b3{bottom:367.763893pt;}
.y51{bottom:369.749173pt;}
.y22a{bottom:370.240053pt;}
.yaf{bottom:373.193653pt;}
.y179{bottom:374.273333pt;}
.y27e{bottom:374.318133pt;}
.y346{bottom:374.352053pt;}
.y37d{bottom:374.355893pt;}
.y24c{bottom:375.689013pt;}
.y143{bottom:378.199733pt;}
.y30e{bottom:379.150133pt;}
.y2d8{bottom:379.725493pt;}
.y90{bottom:380.119733pt;}
.y1c5{bottom:381.293333pt;}
.y25{bottom:382.033333pt;}
.y118{bottom:382.328373pt;}
.ye3{bottom:384.021813pt;}
.y50{bottom:386.065333pt;}
.y21b{bottom:386.193333pt;}
.yae{bottom:389.187253pt;}
.y345{bottom:389.713973pt;}
.y37c{bottom:389.717813pt;}
.y178{bottom:390.266933pt;}
.y27d{bottom:390.311733pt;}
.y24b{bottom:392.005173pt;}
.y2b2{bottom:392.090293pt;}
.y30d{bottom:394.512053pt;}
.y2d7{bottom:395.719093pt;}
.y142{bottom:397.399733pt;}
.y117{bottom:398.321973pt;}
.y8f{bottom:399.639733pt;}
.ye2{bottom:400.015413pt;}
.y344{bottom:405.075893pt;}
.y37b{bottom:405.079733pt;}
.y177{bottom:406.260533pt;}
.y24{bottom:406.359733pt;}
.y27c{bottom:406.627893pt;}
.y24a{bottom:407.998773pt;}
.y2b1{bottom:408.083893pt;}
.y1c3{bottom:409.293333pt;}
.y30c{bottom:409.873973pt;}
.y21a{bottom:410.519733pt;}
.y4f{bottom:411.023413pt;}
.yad{bottom:413.513653pt;}
.ye1{bottom:416.009013pt;}
.y2d6{bottom:416.833333pt;}
.y8e{bottom:418.839733pt;}
.y343{bottom:420.437813pt;}
.y37a{bottom:420.439733pt;}
.y176{bottom:422.576693pt;}
.y27b{bottom:422.621493pt;}
.y116{bottom:422.648373pt;}
.y2b0{bottom:424.077493pt;}
.y30b{bottom:425.235893pt;}
.y4e{bottom:427.017013pt;}
.yac{bottom:429.507253pt;}
.y216{bottom:430.625333pt;}
.ye0{bottom:432.002613pt;}
.y141{bottom:432.039093pt;}
.y379{bottom:435.795893pt;}
.y342{bottom:435.799733pt;}
.y175{bottom:438.570293pt;}
.y1c0{bottom:438.626667pt;}
.y115{bottom:438.641973pt;}
.y23{bottom:438.999733pt;}
.y2af{bottom:440.071093pt;}
.y30a{bottom:440.597813pt;}
.y4d{bottom:443.333173pt;}
.yab{bottom:445.500853pt;}
.y27a{bottom:446.625333pt;}
.y140{bottom:448.355253pt;}
.y341{bottom:451.152053pt;}
.y378{bottom:451.157813pt;}
.y8d{bottom:453.454773pt;}
.y174{bottom:454.563893pt;}
.y114{bottom:454.635573pt;}
.y309{bottom:455.959733pt;}
.ydf{bottom:456.329013pt;}
.y2ae{bottom:456.387253pt;}
.yaa{bottom:461.817013pt;}
.y213{bottom:462.626667pt;}
.y249{bottom:464.003253pt;}
.y13f{bottom:464.348853pt;}
.y340{bottom:466.513973pt;}
.y377{bottom:466.519733pt;}
.y4c{bottom:468.291253pt;}
.y8c{bottom:469.770933pt;}
.y173{bottom:470.880053pt;}
.y113{bottom:470.951733pt;}
.y308{bottom:470.993973pt;}
.y2ad{bottom:472.380853pt;}
.y22{bottom:473.676213pt;}
.ya9{bottom:477.810613pt;}
.y279{bottom:478.948533pt;}
.y248{bottom:480.319413pt;}
.y33f{bottom:481.875893pt;}
.y376{bottom:481.876533pt;}
.y4b{bottom:484.284853pt;}
.y8b{bottom:485.764533pt;}
.y307{bottom:486.355893pt;}
.y172{bottom:486.873653pt;}
.y1bf{bottom:486.901173pt;}
.y112{bottom:486.945333pt;}
.yde{bottom:488.329653pt;}
.y13e{bottom:488.352693pt;}
.y21{bottom:489.992373pt;}
.y210{bottom:493.293333pt;}
.ya8{bottom:493.804213pt;}
.y278{bottom:494.942133pt;}
.y247{bottom:496.313013pt;}
.y2ac{bottom:496.384693pt;}
.y33e{bottom:497.237813pt;}
.y375{bottom:497.238453pt;}
.y4a{bottom:500.601013pt;}
.y306{bottom:501.717813pt;}
.y8a{bottom:501.758133pt;}
.y111{bottom:502.938933pt;}
.y1be{bottom:503.217333pt;}
.ydd{bottom:504.323253pt;}
.y13d{bottom:504.668853pt;}
.y20{bottom:505.985973pt;}
.ya7{bottom:509.797813pt;}
.y171{bottom:510.877493pt;}
.y277{bottom:510.935733pt;}
.y246{bottom:512.306613pt;}
.y33d{bottom:512.599733pt;}
.y374{bottom:512.600373pt;}
.y49{bottom:516.594613pt;}
.y305{bottom:517.079733pt;}
.y89{bottom:517.751733pt;}
.y1bd{bottom:519.210933pt;}
.y110{bottom:519.255093pt;}
.ydc{bottom:520.639413pt;}
.y1f{bottom:521.979573pt;}
.y20c{bottom:523.960000pt;}
.y20e{bottom:525.293333pt;}
.ya6{bottom:526.113973pt;}
.y1a0{bottom:527.113653pt;}
.y170{bottom:527.193653pt;}
.y276{bottom:527.251893pt;}
.y33c{bottom:527.632053pt;}
.y373{bottom:527.639733pt;}
.y20f{bottom:528.279733pt;}
.y245{bottom:528.622773pt;}
.y2ab{bottom:528.707893pt;}
.y13c{bottom:529.626933pt;}
.y48{bottom:532.588213pt;}
.y1bc{bottom:535.204533pt;}
.ydb{bottom:536.633013pt;}
.y1e{bottom:538.295733pt;}
.y304{bottom:541.719733pt;}
.y88{bottom:542.078133pt;}
.y372{bottom:542.992053pt;}
.y33b{bottom:542.993973pt;}
.y19f{bottom:543.107253pt;}
.y16f{bottom:543.187253pt;}
.y275{bottom:543.245493pt;}
.y10f{bottom:543.258933pt;}
.y244{bottom:544.616373pt;}
.y13b{bottom:545.620533pt;}
.ya5{bottom:550.117813pt;}
.y1bb{bottom:551.198133pt;}
.yda{bottom:552.626613pt;}
.y2aa{bottom:552.711733pt;}
.y1d{bottom:554.289333pt;}
.y208{bottom:555.960000pt;}
.y47{bottom:556.914613pt;}
.y87{bottom:558.071733pt;}
.y371{bottom:558.353973pt;}
.y33a{bottom:558.355893pt;}
.y19e{bottom:559.100853pt;}
.y16e{bottom:559.180853pt;}
.y274{bottom:559.239093pt;}
.y10e{bottom:559.252533pt;}
.y243{bottom:560.609973pt;}
.y1ba{bottom:567.514293pt;}
.y2a9{bottom:568.705333pt;}
.yd9{bottom:568.942773pt;}
.y1c{bottom:570.282933pt;}
.y13a{bottom:570.578613pt;}
.y370{bottom:573.715893pt;}
.y339{bottom:573.717813pt;}
.y86{bottom:574.065333pt;}
.ya4{bottom:574.121653pt;}
.y16d{bottom:575.174453pt;}
.y273{bottom:575.232693pt;}
.y10d{bottom:575.246133pt;}
.y19d{bottom:575.417013pt;}
.y303{bottom:576.685493pt;}
.y242{bottom:576.926133pt;}
.y1b9{bottom:583.507893pt;}
.yd8{bottom:584.936373pt;}
.y2a8{bottom:585.021493pt;}
.y1b{bottom:586.599093pt;}
.y205{bottom:587.958667pt;}
.y46{bottom:588.915253pt;}
.y36f{bottom:589.077813pt;}
.y338{bottom:589.079733pt;}
.y85{bottom:590.381493pt;}
.ya3{bottom:590.437813pt;}
.y19c{bottom:591.410613pt;}
.y16c{bottom:591.490613pt;}
.y272{bottom:591.548853pt;}
.y10c{bottom:591.562293pt;}
.y302{bottom:592.679093pt;}
.y241{bottom:592.919733pt;}
.y139{bottom:594.905013pt;}
.y1b8{bottom:599.501493pt;}
.yd7{bottom:600.929973pt;}
.y2a7{bottom:601.015093pt;}
.y1a{bottom:602.592693pt;}
.y337{bottom:604.439733pt;}
.y45{bottom:604.908853pt;}
.y84{bottom:606.375093pt;}
.ya2{bottom:606.431413pt;}
.y19b{bottom:607.404213pt;}
.y16b{bottom:607.484213pt;}
.y10b{bottom:607.555893pt;}
.y301{bottom:608.672693pt;}
.y138{bottom:610.898613pt;}
.y271{bottom:615.552693pt;}
.y1b7{bottom:615.817653pt;}
.y2a6{bottom:617.008693pt;}
.yd6{bottom:617.246133pt;}
.y240{bottom:617.559733pt;}
.y19{bottom:618.586293pt;}
.y202{bottom:618.626667pt;}
.y36e{bottom:619.792053pt;}
.y336{bottom:619.793973pt;}
.y44{bottom:620.902453pt;}
.y83{bottom:622.368693pt;}
.ya1{bottom:622.425013pt;}
.y16a{bottom:623.477813pt;}
.y10a{bottom:623.549493pt;}
.y19a{bottom:623.720373pt;}
.y300{bottom:624.988853pt;}
.y270{bottom:631.546293pt;}
.y1b6{bottom:631.811253pt;}
.yd5{bottom:633.239733pt;}
.y2a5{bottom:633.324853pt;}
.y18{bottom:634.902453pt;}
.y36d{bottom:635.153973pt;}
.y335{bottom:635.155893pt;}
.y137{bottom:635.856693pt;}
.y23f{bottom:637.079733pt;}
.y43{bottom:637.218613pt;}
.y82{bottom:638.684853pt;}
.ya0{bottom:638.741173pt;}
.y199{bottom:639.713973pt;}
.y109{bottom:639.865653pt;}
.y169{bottom:647.804213pt;}
.y26f{bottom:647.862453pt;}
.y2ff{bottom:648.992693pt;}
.y2a4{bottom:649.318453pt;}
.y36c{bottom:650.515893pt;}
.y334{bottom:650.517813pt;}
.y17{bottom:650.896053pt;}
.y201{bottom:651.960000pt;}
.y136{bottom:652.172853pt;}
.y42{bottom:653.212213pt;}
.y81{bottom:654.678453pt;}
.y9f{bottom:654.734773pt;}
.y1b5{bottom:655.815093pt;}
.yd4{bottom:657.879733pt;}
.y198{bottom:663.717813pt;}
.y26e{bottom:663.856053pt;}
.y108{bottom:663.869493pt;}
.y2d5{bottom:663.873973pt;}
.y2fe{bottom:664.986293pt;}
.y2a3{bottom:665.312053pt;}
.y36b{bottom:665.877813pt;}
.y333{bottom:665.879733pt;}
.y16{bottom:666.889653pt;}
.y41{bottom:669.205813pt;}
.y23e{bottom:671.728053pt;}
.y1b4{bottom:672.131253pt;}
.y135{bottom:677.130933pt;}
.yd3{bottom:677.399733pt;}
.y80{bottom:678.682293pt;}
.y168{bottom:679.804853pt;}
.y26d{bottom:679.849653pt;}
.y2d4{bottom:680.190133pt;}
.y332{bottom:681.236533pt;}
.y36a{bottom:681.239733pt;}
.y2fd{bottom:681.302453pt;}
.y2a2{bottom:681.305653pt;}
.y15{bottom:682.883253pt;}
.y40{bottom:685.521973pt;}
.y23d{bottom:687.721653pt;}
.y134{bottom:693.124533pt;}
.y167{bottom:695.798453pt;}
.y107{bottom:695.870133pt;}
.y1ec{bottom:696.014133pt;}
.y197{bottom:696.041013pt;}
.y26c{bottom:696.165813pt;}
.y369{bottom:696.270133pt;}
.y331{bottom:696.275893pt;}
.y2fc{bottom:697.296053pt;}
.y14{bottom:699.199413pt;}
.y3f{bottom:701.515573pt;}
.y23c{bottom:704.037813pt;}
.y200{bottom:704.091573pt;}
.y1b3{bottom:704.131893pt;}
.y2d3{bottom:704.193973pt;}
.y2a1{bottom:705.632053pt;}
.y7f{bottom:710.037813pt;}
.y368{bottom:711.632053pt;}
.y330{bottom:711.637813pt;}
.y1eb{bottom:712.007733pt;}
.yd2{bottom:712.034613pt;}
.y166{bottom:712.114613pt;}
.y26b{bottom:712.159413pt;}
.y106{bottom:712.186293pt;}
.y2fb{bottom:713.289653pt;}
.y13{bottom:715.193013pt;}
.y3e{bottom:717.509173pt;}
.y133{bottom:718.405173pt;}
.y23b{bottom:720.031413pt;}
.y1ff{bottom:720.085173pt;}
.y1b2{bottom:720.125493pt;}
.y2d2{bottom:720.187573pt;}
.y2a0{bottom:721.625653pt;}
.y7e{bottom:725.399733pt;}
.y367{bottom:726.993973pt;}
.y32f{bottom:726.999733pt;}
.yd1{bottom:728.028213pt;}
.y196{bottom:728.041653pt;}
.y165{bottom:728.108213pt;}
.y26a{bottom:728.153013pt;}
.y105{bottom:728.179893pt;}
.y1ea{bottom:728.323893pt;}
.y2fa{bottom:729.605813pt;}
.y12{bottom:731.186613pt;}
.y3d{bottom:733.825333pt;}
.y132{bottom:734.398773pt;}
.y23a{bottom:736.025013pt;}
.y1fe{bottom:736.078773pt;}
.y1b1{bottom:736.441653pt;}
.y2d1{bottom:736.503733pt;}
.y79{bottom:737.293333pt;}
.y29f{bottom:737.619253pt;}
.y78{bottom:740.439733pt;}
.y7d{bottom:741.073333pt;}
.y366{bottom:742.355893pt;}
.y32e{bottom:742.359733pt;}
.y195{bottom:744.035253pt;}
.y164{bottom:744.101813pt;}
.y104{bottom:744.173493pt;}
.yd0{bottom:744.344373pt;}
.y2f9{bottom:745.599413pt;}
.y11{bottom:747.502773pt;}
.y77{bottom:749.079733pt;}
.y1e9{bottom:752.327733pt;}
.y239{bottom:752.341173pt;}
.y1fd{bottom:752.394933pt;}
.y1b0{bottom:752.435253pt;}
.y269{bottom:752.479413pt;}
.y2d0{bottom:752.497333pt;}
.y29e{bottom:753.935413pt;}
.y7c{bottom:754.838453pt;}
.y32d{bottom:757.712053pt;}
.y365{bottom:757.717813pt;}
.y3c{bottom:757.829173pt;}
.y131{bottom:759.356853pt;}
.ycf{bottom:760.337973pt;}
.y194{bottom:760.351413pt;}
.y163{bottom:760.417973pt;}
.y103{bottom:760.489653pt;}
.y74{bottom:762.626667pt;}
.y10{bottom:763.496373pt;}
.y1e8{bottom:768.321333pt;}
.y238{bottom:768.334773pt;}
.y1af{bottom:768.428853pt;}
.y268{bottom:768.473013pt;}
.y2cf{bottom:768.490933pt;}
.y7b{bottom:768.919733pt;}
.y2f8{bottom:769.603253pt;}
.y29d{bottom:769.929013pt;}
.y32c{bottom:773.073973pt;}
.y364{bottom:773.079733pt;}
.y3b{bottom:773.822773pt;}
.y130{bottom:775.350453pt;}
.yce{bottom:776.331573pt;}
.y193{bottom:776.345013pt;}
.y1fc{bottom:776.398773pt;}
.y162{bottom:776.411573pt;}
.y102{bottom:776.483253pt;}
.yf{bottom:779.489973pt;}
.y1e7{bottom:784.314933pt;}
.y267{bottom:784.466613pt;}
.y2ce{bottom:784.484533pt;}
.y2f7{bottom:785.596853pt;}
.y29c{bottom:785.922613pt;}
.y363{bottom:788.432053pt;}
.y32b{bottom:788.435893pt;}
.y3a{bottom:790.138933pt;}
.ycd{bottom:792.325173pt;}
.y192{bottom:792.338613pt;}
.y1fb{bottom:792.392373pt;}
.y161{bottom:792.405173pt;}
.y1ae{bottom:792.432693pt;}
.y101{bottom:792.476853pt;}
.y70{bottom:793.293333pt;}
.ye{bottom:795.806133pt;}
.y73{bottom:797.074613pt;}
.y266{bottom:800.460213pt;}
.y12f{bottom:800.631093pt;}
.y2cd{bottom:800.800693pt;}
.y2f6{bottom:801.913013pt;}
.y29b{bottom:802.238773pt;}
.y362{bottom:803.793973pt;}
.y32a{bottom:803.797813pt;}
.y39{bottom:806.132533pt;}
.y191{bottom:808.332213pt;}
.y1fa{bottom:808.385973pt;}
.y100{bottom:808.470453pt;}
.ycc{bottom:808.641333pt;}
.y1ad{bottom:808.748853pt;}
.y72{bottom:810.839733pt;}
.yd{bottom:811.799733pt;}
.y160{bottom:816.409013pt;}
.y1e6{bottom:816.624693pt;}
.y265{bottom:816.776373pt;}
.y2cc{bottom:816.794293pt;}
.y2f5{bottom:817.906613pt;}
.y361{bottom:819.155893pt;}
.y329{bottom:819.159733pt;}
.y38{bottom:822.126133pt;}
.y12e{bottom:824.634933pt;}
.y190{bottom:824.648373pt;}
.y1f9{bottom:824.702133pt;}
.y1ac{bottom:824.742453pt;}
.yff{bottom:824.786613pt;}
.y29a{bottom:826.242613pt;}
.ycb{bottom:832.645173pt;}
.y15f{bottom:832.725173pt;}
.y264{bottom:832.769973pt;}
.y2cb{bottom:832.787893pt;}
.y2f4{bottom:833.900213pt;}
.y328{bottom:834.516533pt;}
.y360{bottom:834.517813pt;}
.yc{bottom:835.479733pt;}
.y6c{bottom:835.960000pt;}
.y37{bottom:838.119733pt;}
.y12d{bottom:840.628533pt;}
.y18f{bottom:840.641973pt;}
.y1f8{bottom:840.695733pt;}
.y1ab{bottom:840.736053pt;}
.yfe{bottom:840.780213pt;}
.yca{bottom:848.638773pt;}
.y15e{bottom:848.718773pt;}
.y263{bottom:848.763573pt;}
.y327{bottom:849.878453pt;}
.y35f{bottom:849.879733pt;}
.y2f3{bottom:850.216373pt;}
.y6f{bottom:852.758453pt;}
.y18e{bottom:856.635573pt;}
.y1f7{bottom:856.689333pt;}
.yfd{bottom:856.773813pt;}
.y12c{bottom:856.944693pt;}
.y1aa{bottom:857.052213pt;}
.y2ca{bottom:857.114293pt;}
.y299{bottom:858.243253pt;}
.y15d{bottom:864.712373pt;}
.yc9{bottom:864.954933pt;}
.y262{bottom:865.079733pt;}
.y35e{bottom:865.239733pt;}
.y326{bottom:865.240373pt;}
.y2f2{bottom:866.209973pt;}
.y6e{bottom:866.839733pt;}
.y7{bottom:870.626667pt;}
.y1e5{bottom:872.938293pt;}
.y18d{bottom:872.951733pt;}
.y1a9{bottom:873.045813pt;}
.y298{bottom:874.559413pt;}
.yb{bottom:878.359733pt;}
.y35d{bottom:880.272053pt;}
.y325{bottom:880.279733pt;}
.yc8{bottom:880.948533pt;}
.y1f6{bottom:881.015733pt;}
.y15c{bottom:881.028533pt;}
.yfc{bottom:881.100213pt;}
.y2f1{bottom:882.203573pt;}
.y1e4{bottom:888.931893pt;}
.y261{bottom:889.083573pt;}
.y2c9{bottom:889.114933pt;}
.y297{bottom:890.553013pt;}
.y68{bottom:891.960000pt;}
.y9{bottom:893.399733pt;}
.y324{bottom:895.633973pt;}
.yc7{bottom:896.942133pt;}
.y18c{bottom:896.955573pt;}
.y1f5{bottom:897.009333pt;}
.y15b{bottom:897.022133pt;}
.y1a8{bottom:897.049653pt;}
.yfb{bottom:897.093813pt;}
.y2f0{bottom:898.519733pt;}
.y1e3{bottom:905.248053pt;}
.y296{bottom:906.546613pt;}
.y6a{bottom:908.759733pt;}
.y323{bottom:910.995893pt;}
.y18b{bottom:912.949173pt;}
.y1f4{bottom:913.002933pt;}
.y15a{bottom:913.015733pt;}
.yfa{bottom:913.087413pt;}
.y2c8{bottom:913.118773pt;}
.yc6{bottom:913.258293pt;}
.y260{bottom:921.084213pt;}
.y1e2{bottom:921.241653pt;}
.y295{bottom:922.540213pt;}
.y2ef{bottom:923.159733pt;}
.y322{bottom:926.357813pt;}
.y5{bottom:927.960000pt;}
.yc5{bottom:929.251893pt;}
.y12b{bottom:929.265333pt;}
.y1f3{bottom:929.319093pt;}
.y159{bottom:929.331893pt;}
.y1a7{bottom:929.372853pt;}
.yf9{bottom:929.403573pt;}
.y2c7{bottom:929.434933pt;}
.y64{bottom:933.293333pt;}
.y25f{bottom:937.400373pt;}
.y294{bottom:938.856373pt;}
.y321{bottom:941.719733pt;}
.yc4{bottom:945.245493pt;}
.y12a{bottom:945.258933pt;}
.y1f2{bottom:945.312693pt;}
.y158{bottom:945.325493pt;}
.y1a6{bottom:945.366453pt;}
.yf8{bottom:945.397173pt;}
.y2c6{bottom:945.428533pt;}
.y66{bottom:950.679733pt;}
.y25e{bottom:953.393973pt;}
.y293{bottom:954.849973pt;}
.y2ee{bottom:957.070133pt;}
.y35c{bottom:957.073973pt;}
.y129{bottom:961.252533pt;}
.y1f1{bottom:961.306293pt;}
.y1a5{bottom:961.360053pt;}
.yf7{bottom:961.390773pt;}
.y2c5{bottom:961.422133pt;}
.y1e1{bottom:961.561653pt;}
.y4{bottom:962.213493pt;}
.y157{bottom:969.329333pt;}
.y25d{bottom:969.387573pt;}
.yc3{bottom:969.571893pt;}
.y292{bottom:970.843573pt;}
.y2ed{bottom:972.432053pt;}
.y35b{bottom:972.435893pt;}
.y61{bottom:977.293333pt;}
.y18a{bottom:977.568693pt;}
.y1f0{bottom:977.622453pt;}
.y1a4{bottom:977.676213pt;}
.yf6{bottom:977.706933pt;}
.y2c4{bottom:977.738293pt;}
.y1e0{bottom:985.565493pt;}
.y128{bottom:985.578933pt;}
.y156{bottom:985.645493pt;}
.y25c{bottom:985.703733pt;}
.y291{bottom:987.159733pt;}
.y2ec{bottom:987.793973pt;}
.y35a{bottom:987.797813pt;}
.y189{bottom:993.562293pt;}
.y1ef{bottom:993.616053pt;}
.y1a3{bottom:993.669813pt;}
.yf5{bottom:993.700533pt;}
.y3{bottom:994.845173pt;}
.yc2{bottom:1001.572533pt;}
.y155{bottom:1001.639093pt;}
.y25b{bottom:1001.697333pt;}
.y2c3{bottom:1001.742133pt;}
.y385{bottom:1003.148853pt;}
.y2eb{bottom:1003.155893pt;}
.y359{bottom:1003.159733pt;}
.y1a2{bottom:1009.663413pt;}
.yf4{bottom:1009.694133pt;}
.y290{bottom:1011.799733pt;}
.y60{bottom:1017.559733pt;}
.yc1{bottom:1017.566133pt;}
.y1ee{bottom:1017.619893pt;}
.y154{bottom:1017.632693pt;}
.y25a{bottom:1017.690933pt;}
.y2c2{bottom:1017.735733pt;}
.y384{bottom:1018.510773pt;}
.y2ea{bottom:1018.517813pt;}
.y2{bottom:1019.479733pt;}
.y28f{bottom:1030.999733pt;}
.yc0{bottom:1033.559733pt;}
.y1ed{bottom:1033.613493pt;}
.y153{bottom:1033.626293pt;}
.y1a1{bottom:1033.667253pt;}
.y259{bottom:1033.684533pt;}
.yf3{bottom:1033.697973pt;}
.y2c1{bottom:1033.729333pt;}
.y383{bottom:1033.872693pt;}
.y2e9{bottom:1033.879733pt;}
.h12{height:1.706250pt;}
.h17{height:16.000000pt;}
.h4{height:17.333333pt;}
.hc{height:28.000000pt;}
.h15{height:28.001333pt;}
.h14{height:29.333333pt;}
.h16{height:29.334667pt;}
.h19{height:31.998667pt;}
.h18{height:32.000000pt;}
.hd{height:32.965000pt;}
.h1a{height:33.333333pt;}
.he{height:33.796250pt;}
.hf{height:33.816730pt;}
.hb{height:36.408750pt;}
.h5{height:36.435000pt;}
.h9{height:36.461250pt;}
.h2{height:37.135417pt;}
.ha{height:37.327500pt;}
.h10{height:42.666667pt;}
.h6{height:43.375000pt;}
.h8{height:47.171250pt;}
.h7{height:49.333333pt;}
.h11{height:56.000000pt;}
.h13{height:57.333333pt;}
.h3{height:58.122500pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w9{width:68.000000pt;}
.wb{width:89.333333pt;}
.wa{width:90.665333pt;}
.w5{width:94.666667pt;}
.we{width:97.333333pt;}
.w4{width:108.000000pt;}
.w7{width:112.000000pt;}
.wc{width:120.000000pt;}
.w8{width:122.668000pt;}
.w14{width:138.666667pt;}
.w10{width:140.000000pt;}
.w6{width:148.000000pt;}
.wd{width:157.333333pt;}
.w12{width:160.000000pt;}
.w11{width:162.665333pt;}
.wf{width:188.000000pt;}
.w13{width:189.333333pt;}
.w2{width:210.666667pt;}
.w3{width:256.000000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:0.906533pt;}
.x1e{left:7.360000pt;}
.x14{left:9.500000pt;}
.x33{left:11.127867pt;}
.x32{left:12.126933pt;}
.x37{left:13.098000pt;}
.x3b{left:14.920000pt;}
.x40{left:16.276533pt;}
.x16{left:18.747067pt;}
.x1d{left:20.623067pt;}
.x39{left:21.784000pt;}
.x2d{left:25.445333pt;}
.x3f{left:26.456000pt;}
.x1a{left:28.018400pt;}
.x3e{left:29.628800pt;}
.x35{left:32.773067pt;}
.x36{left:37.160000pt;}
.x3a{left:38.162133pt;}
.x18{left:39.554000pt;}
.xb{left:41.290133pt;}
.x3c{left:43.595867pt;}
.x9{left:44.581067pt;}
.x49{left:46.322533pt;}
.xe{left:47.526000pt;}
.x31{left:49.077467pt;}
.x43{left:53.097067pt;}
.x41{left:55.256000pt;}
.x3d{left:57.087067pt;}
.x48{left:58.711200pt;}
.x38{left:59.617200pt;}
.x42{left:61.244533pt;}
.x34{left:63.941333pt;}
.xd{left:66.819733pt;}
.x8{left:71.784000pt;}
.x26{left:73.413733pt;}
.x6{left:74.737333pt;}
.x2b{left:77.855067pt;}
.x1f{left:79.360000pt;}
.x23{left:81.333333pt;}
.x4b{left:82.964533pt;}
.x45{left:86.319867pt;}
.x4d{left:89.421467pt;}
.x2a{left:95.697280pt;}
.x27{left:106.533733pt;}
.x50{left:119.687680pt;}
.x11{left:154.959467pt;}
.x44{left:158.291333pt;}
.x5{left:164.420000pt;}
.x4c{left:167.636533pt;}
.x29{left:172.541733pt;}
.x2{left:174.376800pt;}
.x15{left:180.000000pt;}
.xa{left:181.706267pt;}
.x10{left:183.400800pt;}
.x2c{left:185.871067pt;}
.x22{left:186.879867pt;}
.x2e{left:192.000000pt;}
.x4e{left:193.869467pt;}
.x46{left:210.666667pt;}
.x28{left:220.101733pt;}
.x17{left:274.666667pt;}
.x3{left:281.319520pt;}
.xc{left:333.730800pt;}
.x2f{left:348.000000pt;}
.x47{left:373.333333pt;}
.x7{left:375.088000pt;}
.x1{left:390.183733pt;}
.x25{left:396.546533pt;}
.x4{left:410.774240pt;}
.x12{left:412.267200pt;}
.x19{left:421.333333pt;}
.x20{left:429.120000pt;}
.x13{left:436.311360pt;}
.x51{left:459.847680pt;}
.x1b{left:532.000000pt;}
.x30{left:533.333333pt;}
.x21{left:540.160000pt;}
.x4a{left:574.631733pt;}
.xf{left:582.640267pt;}
.x1c{left:653.333333pt;}
.x4f{left:690.833920pt;}
}




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