
    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_7542c28d82bb15f02a28abff.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.916992;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_809f4aeef952e4a4da5108ea.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;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_3bbea79acfe4e125a2cc7721.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_db23970db924785b04628d7c.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_10926ffb944a801e99703176.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.136000;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_3e16aaf6300721cb425aef32.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.104004;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_0c1e2532ddd6cc5c3d74abf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.712000;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_0c1e2532ddd6cc5c3d74abf0.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.712000;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_4d409e77a012062603e153a3.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_e87e7f3007eff6d4aa5c6cdf.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.903320;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_a4ac4c30d72b32c1bae33b8a.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.681641;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_0945cf9349c8b9473c275bd2.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_0945cf9349c8b9473c275bd2.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_e919f0bd66c6a62d32d94594.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.675781;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_617660c3815fef5304b35720.woff2')format("woff");}.fff{font-family:fff;line-height:0.678223;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_0945cf9349c8b9473c275bd2.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_0945cf9349c8b9473c275bd2.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_0945cf9349c8b9473c275bd2.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_0945cf9349c8b9473c275bd2.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_2d2fcf551403713b4e5af795.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.687500;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_35d5a5a7d2c462d3587e810e.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.675781;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_d88f77401afaf476b878b267.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_54d625a179caf42146dced22.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_ee7bc34bf41e6129040d178c.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.746094;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_bd79dd976954a57ab6f09dfe.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.144531;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_cfc5a50329ffc06d165a6cfa.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.144531;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_77b2913815155f8e5ceee90e.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.881836;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_7a11933ad63dc3a105b32774.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.987793;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_fab4ebf7cb68cc183d5597ea.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_3f3f10cdae7e78f9c38c679e.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.867676;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_bce887a807468b2e521e60e7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_a055abc83a18f65375226f06.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.708008;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_776a3c187c5980498c413dbc.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.845215;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_abf75ffe54bc3794c68b1e7e.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.894531;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_0945cf9349c8b9473c275bd2.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_bcd55f3746b5dd49dc547abd.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.860840;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_fb1fd5111aab0f302716a151.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_a7b9bf242297724c9367e404.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_2282fc940cf2c8e46f0b3da8.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.706055;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_65bc071de9b9cc5467e653e6.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.708008;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;}
.m3{transform:matrix(0.000000,-0.249719,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.249719,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.249719,0.250000,0.000000,0,0);}
.m1{transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-ms-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);-webkit-transform:matrix(0.242536,0.000000,-0.060634,0.242536,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250281,0.000000,0.000000,0.250000,0,0);}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:33.120000px;}
.ls64{letter-spacing:-0.410256px;}
.ls53{letter-spacing:-0.356400px;}
.ls56{letter-spacing:-0.181152px;}
.ls67{letter-spacing:-0.122400px;}
.ls68{letter-spacing:-0.108000px;}
.ls37{letter-spacing:-0.086400px;}
.ls39{letter-spacing:-0.079200px;}
.ls83{letter-spacing:-0.072000px;}
.ls38{letter-spacing:-0.064800px;}
.ls3e{letter-spacing:-0.057600px;}
.ls7f{letter-spacing:-0.050400px;}
.ls24{letter-spacing:-0.043200px;}
.ls5a{letter-spacing:-0.038444px;}
.ls3d{letter-spacing:-0.036000px;}
.ls23{letter-spacing:-0.028800px;}
.ls8f{letter-spacing:-0.025459px;}
.ls22{letter-spacing:-0.021600px;}
.ls18{letter-spacing:-0.014400px;}
.ls91{letter-spacing:-0.010184px;}
.ls82{letter-spacing:-0.007200px;}
.ls90{letter-spacing:-0.005092px;}
.ls9{letter-spacing:0.000000px;}
.ls44{letter-spacing:0.000540px;}
.ls42{letter-spacing:0.000600px;}
.ls8d{letter-spacing:0.005092px;}
.ls8e{letter-spacing:0.010184px;}
.ls92{letter-spacing:0.010195px;}
.ls13{letter-spacing:0.014400px;}
.ls93{letter-spacing:0.020390px;}
.ls3a{letter-spacing:0.062208px;}
.ls3b{letter-spacing:0.069984px;}
.ls62{letter-spacing:0.085248px;}
.ls86{letter-spacing:0.090600px;}
.ls40{letter-spacing:0.108864px;}
.ls3f{letter-spacing:0.116640px;}
.ls31{letter-spacing:0.116928px;}
.ls8b{letter-spacing:0.117000px;}
.ls3c{letter-spacing:0.119400px;}
.ls32{letter-spacing:0.120000px;}
.ls2e{letter-spacing:0.120060px;}
.ls69{letter-spacing:0.120600px;}
.ls5{letter-spacing:0.132240px;}
.ls7{letter-spacing:0.132840px;}
.ls78{letter-spacing:0.160740px;}
.ls4d{letter-spacing:0.166320px;}
.ls60{letter-spacing:0.181152px;}
.ls45{letter-spacing:0.186624px;}
.ls17{letter-spacing:0.200448px;}
.ls4e{letter-spacing:0.209088px;}
.ls1f{letter-spacing:0.233856px;}
.ls54{letter-spacing:0.237600px;}
.ls2d{letter-spacing:0.242064px;}
.ls1c{letter-spacing:0.242208px;}
.ls61{letter-spacing:0.245088px;}
.ls4f{letter-spacing:0.247104px;}
.ls6{letter-spacing:0.250560px;}
.ls8a{letter-spacing:0.253872px;}
.ls4{letter-spacing:0.275616px;}
.ls19{letter-spacing:0.298080px;}
.ls12{letter-spacing:0.300000px;}
.ls6b{letter-spacing:0.300060px;}
.ls55{letter-spacing:0.308880px;}
.lsd{letter-spacing:0.309024px;}
.ls10{letter-spacing:0.309600px;}
.ls79{letter-spacing:0.317376px;}
.ls77{letter-spacing:0.324000px;}
.ls1e{letter-spacing:0.325728px;}
.lse{letter-spacing:0.342432px;}
.ls58{letter-spacing:0.356976px;}
.ls1d{letter-spacing:0.359136px;}
.ls5c{letter-spacing:0.362304px;}
.ls5b{letter-spacing:0.373454px;}
.ls73{letter-spacing:0.399600px;}
.ls6a{letter-spacing:0.400200px;}
.ls2c{letter-spacing:0.401760px;}
.ls52{letter-spacing:0.408672px;}
.lsa{letter-spacing:0.410688px;}
.ls47{letter-spacing:0.442224px;}
.ls50{letter-spacing:0.451440px;}
.ls30{letter-spacing:0.478224px;}
.ls2a{letter-spacing:0.479520px;}
.ls5f{letter-spacing:0.506160px;}
.ls2{letter-spacing:0.511056px;}
.ls0{letter-spacing:0.524160px;}
.ls2b{letter-spacing:0.524880px;}
.ls59{letter-spacing:0.527472px;}
.ls1{letter-spacing:0.550368px;}
.ls26{letter-spacing:0.550800px;}
.ls3{letter-spacing:0.563472px;}
.ls5d{letter-spacing:0.587642px;}
.ls89{letter-spacing:0.596160px;}
.ls7e{letter-spacing:0.599400px;}
.ls6f{letter-spacing:0.599940px;}
.ls15{letter-spacing:0.600000px;}
.ls25{letter-spacing:0.602640px;}
.ls6e{letter-spacing:0.609120px;}
.ls6c{letter-spacing:0.647400px;}
.ls6d{letter-spacing:0.648000px;}
.ls8{letter-spacing:0.667440px;}
.ls51{letter-spacing:0.671328px;}
.ls76{letter-spacing:0.673920px;}
.ls57{letter-spacing:0.676656px;}
.ls29{letter-spacing:0.680400px;}
.ls2f{letter-spacing:0.702576px;}
.ls4a{letter-spacing:0.724608px;}
.ls28{letter-spacing:0.725760px;}
.lsf{letter-spacing:0.732240px;}
.ls84{letter-spacing:0.759000px;}
.ls70{letter-spacing:0.797040px;}
.ls46{letter-spacing:0.823680px;}
.ls27{letter-spacing:0.874800px;}
.ls65{letter-spacing:0.916800px;}
.ls75{letter-spacing:0.920160px;}
.ls63{letter-spacing:0.932400px;}
.ls5e{letter-spacing:1.044288px;}
.lsc{letter-spacing:1.048320px;}
.ls72{letter-spacing:1.075680px;}
.lsb{letter-spacing:1.105920px;}
.ls71{letter-spacing:1.121040px;}
.ls95{letter-spacing:1.330200px;}
.ls94{letter-spacing:1.395000px;}
.ls7c{letter-spacing:1.650600px;}
.ls36{letter-spacing:1.797000px;}
.ls35{letter-spacing:1.798800px;}
.ls21{letter-spacing:1.838400px;}
.ls85{letter-spacing:2.165400px;}
.ls66{letter-spacing:2.327400px;}
.ls81{letter-spacing:2.439000px;}
.ls11{letter-spacing:2.712000px;}
.ls7a{letter-spacing:2.811000px;}
.ls7b{letter-spacing:2.812800px;}
.ls7d{letter-spacing:4.372200px;}
.ls88{letter-spacing:6.515340px;}
.ls96{letter-spacing:6.639000px;}
.ls8c{letter-spacing:7.164600px;}
.ls87{letter-spacing:8.715600px;}
.ls20{letter-spacing:8.958600px;}
.ls14{letter-spacing:10.200000px;}
.ls16{letter-spacing:11.399400px;}
.ls74{letter-spacing:12.360000px;}
.ls1b{letter-spacing:14.385000px;}
.ls80{letter-spacing:16.363800px;}
.ls97{letter-spacing:17.825400px;}
.ls1a{letter-spacing:21.781380px;}
.ls34{letter-spacing:24.656400px;}
.ls33{letter-spacing:24.657600px;}
.ls41{letter-spacing:44.005200px;}
.ls4b{letter-spacing:68.918400px;}
.ls48{letter-spacing:83.491200px;}
.ls49{letter-spacing:90.257760px;}
.ls4c{letter-spacing:165.398400px;}
.ls43{letter-spacing:237.939000px;}
.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:-23.527584px;}
.ws1{word-spacing:-23.494176px;}
.ws9{word-spacing:-21.239136px;}
.ws2b{word-spacing:-21.197376px;}
.ws8{word-spacing:-21.122208px;}
.ws3{word-spacing:-21.080448px;}
.ws2f{word-spacing:-20.880000px;}
.ws13{word-spacing:-19.626624px;}
.ws11{word-spacing:-19.556640px;}
.ws12{word-spacing:-19.548864px;}
.wsa{word-spacing:-18.014400px;}
.ws5{word-spacing:-18.000000px;}
.ws7{word-spacing:-17.985600px;}
.ws30{word-spacing:-17.971200px;}
.ws65{word-spacing:-17.964000px;}
.wsb{word-spacing:-17.956800px;}
.ws2c{word-spacing:-17.942400px;}
.ws10{word-spacing:-17.935200px;}
.ws31{word-spacing:-17.928000px;}
.ws2a{word-spacing:-17.920800px;}
.ws14{word-spacing:-17.728101px;}
.ws16{word-spacing:-17.513136px;}
.ws26{word-spacing:-17.321040px;}
.ws15{word-spacing:-17.198784px;}
.ws28{word-spacing:-17.120160px;}
.wsc{word-spacing:-17.074800px;}
.ws23{word-spacing:-16.997040px;}
.ws29{word-spacing:-16.925760px;}
.ws2d{word-spacing:-16.880400px;}
.ws27{word-spacing:-16.809120px;}
.wsd{word-spacing:-16.802640px;}
.ws33{word-spacing:-16.796160px;}
.wsf{word-spacing:-16.724880px;}
.wse{word-spacing:-16.679520px;}
.ws24{word-spacing:-16.601760px;}
.ws2e{word-spacing:-16.524000px;}
.ws25{word-spacing:-16.200000px;}
.ws32{word-spacing:-15.462576px;}
.ws1f{word-spacing:-0.985680px;}
.ws19{word-spacing:-0.777888px;}
.ws17{word-spacing:-0.559440px;}
.ws4{word-spacing:-0.381600px;}
.ws1b{word-spacing:-0.298368px;}
.ws1a{word-spacing:-0.234432px;}
.ws1d{word-spacing:-0.138528px;}
.ws6{word-spacing:-0.072000px;}
.ws64{word-spacing:-0.050975px;}
.ws22{word-spacing:-0.050400px;}
.ws37{word-spacing:-0.045826px;}
.ws2{word-spacing:0.000000px;}
.ws20{word-spacing:0.356976px;}
.ws51{word-spacing:58.083136px;}
.ws1e{word-spacing:67.425120px;}
.ws4e{word-spacing:74.438297px;}
.ws1c{word-spacing:90.465120px;}
.ws38{word-spacing:90.845239px;}
.ws50{word-spacing:96.859011px;}
.ws21{word-spacing:113.505120px;}
.ws41{word-spacing:116.021010px;}
.ws58{word-spacing:118.641199px;}
.ws55{word-spacing:118.687025px;}
.ws4f{word-spacing:118.941958px;}
.ws61{word-spacing:124.688896px;}
.ws4b{word-spacing:126.895295px;}
.ws3e{word-spacing:132.465723px;}
.ws3b{word-spacing:137.038128px;}
.ws5b{word-spacing:138.081940px;}
.ws44{word-spacing:141.986957px;}
.ws4a{word-spacing:157.289758px;}
.ws52{word-spacing:160.712781px;}
.ws47{word-spacing:177.639855px;}
.ws5e{word-spacing:179.156834px;}
.ws18{word-spacing:199.905120px;}
.ws34{word-spacing:235.663869px;}
.ws46{word-spacing:330.931017px;}
.ws54{word-spacing:351.773471px;}
.ws45{word-spacing:372.316921px;}
.ws53{word-spacing:393.532446px;}
.ws3d{word-spacing:409.376758px;}
.ws63{word-spacing:422.279028px;}
.ws3a{word-spacing:430.204785px;}
.ws3c{word-spacing:453.282111px;}
.ws39{word-spacing:457.179621px;}
.ws49{word-spacing:461.566900px;}
.ws62{word-spacing:466.011786px;}
.ws48{word-spacing:504.200211px;}
.ws5d{word-spacing:533.157341px;}
.ws43{word-spacing:547.648242px;}
.ws4d{word-spacing:549.905416px;}
.ws60{word-spacing:550.214154px;}
.ws5a{word-spacing:551.645277px;}
.ws5f{word-spacing:580.230745px;}
.ws5c{word-spacing:580.576461px;}
.ws59{word-spacing:584.473970px;}
.ws36{word-spacing:591.191231px;}
.ws42{word-spacing:593.306136px;}
.ws4c{word-spacing:597.549361px;}
.ws3f{word-spacing:602.366170px;}
.ws57{word-spacing:606.169569px;}
.ws35{word-spacing:613.625772px;}
.ws56{word-spacing:643.877920px;}
.ws40{word-spacing:673.828418px;}
._39{margin-left:-43.961520px;}
._42{margin-left:-16.080600px;}
._9{margin-left:-9.622920px;}
._3c{margin-left:-2.361900px;}
._0{margin-left:-1.209600px;}
._2b{width:1.906140px;}
._2f{width:2.924520px;}
._22{width:4.291200px;}
._2e{width:5.553840px;}
._2d{width:7.372800px;}
._2c{width:8.596800px;}
._28{width:10.008720px;}
._21{width:11.282280px;}
._2a{width:12.806400px;}
._26{width:14.385600px;}
._27{width:15.400080px;}
._29{width:16.983000px;}
._30{width:19.029240px;}
._23{width:20.397780px;}
._24{width:21.431700px;}
._25{width:22.467480px;}
._33{width:24.031200px;}
._32{width:25.290000px;}
._37{width:27.093600px;}
._51{width:28.108680px;}
._36{width:29.620800px;}
._41{width:30.765600px;}
._3e{width:31.788000px;}
._4f{width:33.703200px;}
._34{width:35.330400px;}
._53{width:36.986400px;}
._55{width:37.994880px;}
._56{width:39.290400px;}
._54{width:41.846400px;}
._38{width:43.992000px;}
._50{width:48.429960px;}
._52{width:49.989840px;}
._3f{width:52.868160px;}
._40{width:53.953920px;}
._49{width:55.135680px;}
._4e{width:56.405280px;}
._48{width:61.228800px;}
._31{width:64.008000px;}
._4d{width:66.000000px;}
._4b{width:80.200800px;}
._4c{width:92.505600px;}
._47{width:102.000000px;}
._4a{width:111.981600px;}
._46{width:135.423702px;}
._45{width:138.411465px;}
._4{width:193.793400px;}
._3d{width:200.213112px;}
._11{width:201.622920px;}
._6{width:228.000000px;}
._3a{width:233.798400px;}
._3b{width:237.835680px;}
._35{width:248.999880px;}
._44{width:316.800480px;}
._12{width:507.431280px;}
._43{width:549.899280px;}
._1d{width:641.639280px;}
._17{width:1079.591280px;}
._5{width:1167.647280px;}
._8{width:1217.567280px;}
._1f{width:1245.623280px;}
._7{width:1365.527280px;}
._19{width:1482.935280px;}
._10{width:1523.567280px;}
._1a{width:1571.567280px;}
._e{width:1573.463280px;}
._a{width:1589.062200px;}
._1e{width:1597.487280px;}
._b{width:1617.527280px;}
._c{width:1639.679280px;}
._f{width:1663.463280px;}
._18{width:1673.519280px;}
._2{width:1859.567280px;}
._1c{width:1865.480880px;}
._3{width:1875.488880px;}
._15{width:1891.319280px;}
._20{width:1895.931720px;}
._1b{width:1913.375280px;}
._d{width:1935.455280px;}
._13{width:2047.271280px;}
._1{width:2099.399280px;}
._16{width:2201.423280px;}
._14{width:2531.399280px;}
.fc6{color:rgb(79,129,189);}
.fc4{color:rgb(0,0,255);}
.fc3{color:rgb(60,66,69);}
.fc2{color:transparent;}
.fc5{color:rgb(255,255,255);}
.fc1{color:rgb(51,51,51);}
.fc0{color:rgb(0,0,0);}
.fs9{font-size:47.520000px;}
.fs8{font-size:50.400000px;}
.fsd{font-size:50.917650px;}
.fse{font-size:50.974950px;}
.fsb{font-size:53.280000px;}
.fsc{font-size:54.919767px;}
.fs3{font-size:59.040000px;}
.fs2{font-size:64.800000px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:77.760000px;}
.fs1{font-size:83.520000px;}
.fs4{font-size:89.280000px;}
.fs6{font-size:100.800000px;}
.fs7{font-size:131.040000px;}
.fs5{font-size:172.800000px;}
.y17f{bottom:-19.800000px;}
.y183{bottom:-16.920000px;}
.y17b{bottom:-13.320000px;}
.yab{bottom:-5.760000px;}
.ybe{bottom:-5.400000px;}
.y17e{bottom:-0.360000px;}
.y0{bottom:0.000000px;}
.y199{bottom:0.720000px;}
.y17a{bottom:2.520000px;}
.y21c{bottom:3.240000px;}
.yac{bottom:3.600000px;}
.y2{bottom:3.960000px;}
.y191{bottom:4.320000px;}
.y21e{bottom:4.680000px;}
.y2db{bottom:5.834250px;}
.y2d5{bottom:5.834305px;}
.y181{bottom:6.480000px;}
.y186{bottom:7.920000px;}
.y290{bottom:11.880000px;}
.yb8{bottom:12.240000px;}
.y1ce{bottom:12.960000px;}
.y2df{bottom:13.237180px;}
.y2d9{bottom:13.259850px;}
.yaf{bottom:13.320000px;}
.y3{bottom:13.500000px;}
.y1d5{bottom:13.680000px;}
.y1d4{bottom:14.040000px;}
.y2de{bottom:14.320590px;}
.y2b4{bottom:14.400000px;}
.y2bb{bottom:14.760000px;}
.y2dc{bottom:17.492209px;}
.y2d7{bottom:18.563700px;}
.y1e5{bottom:19.800000px;}
.y2d4{bottom:21.746065px;}
.yae{bottom:22.680000px;}
.yb2{bottom:23.040000px;}
.y1d0{bottom:27.000000px;}
.y2af{bottom:27.360000px;}
.y2b1{bottom:29.520000px;}
.y2b2{bottom:29.880000px;}
.y2b6{bottom:30.240000px;}
.y1{bottom:32.340030px;}
.yb4{bottom:32.400000px;}
.y2d3{bottom:37.657840px;}
.y1d1{bottom:41.400000px;}
.yb0{bottom:41.760000px;}
.y2b3{bottom:45.360000px;}
.y2b7{bottom:45.720000px;}
.yb9{bottom:51.480000px;}
.yb7{bottom:51.840000px;}
.y2d2{bottom:53.569540px;}
.yba{bottom:60.840000px;}
.y2d1{bottom:70.542190px;}
.y2d0{bottom:86.453890px;}
.y193{bottom:96.120000px;}
.y178{bottom:98.760030px;}
.y2ff{bottom:100.560030px;}
.y297{bottom:102.000030px;}
.y2cf{bottom:102.365740px;}
.y6a{bottom:103.080030px;}
.ycf{bottom:103.440015px;}
.y1df{bottom:104.160030px;}
.y105{bottom:104.520030px;}
.ya8{bottom:105.600030px;}
.y28d{bottom:106.680030px;}
.y2c0{bottom:108.480015px;}
.y13c{bottom:108.840030px;}
.y283{bottom:110.640030px;}
.y209{bottom:111.000030px;}
.y24b{bottom:112.080030px;}
.y2ad{bottom:112.800030px;}
.ye4{bottom:116.040030px;}
.y47{bottom:117.480015px;}
.y2ce{bottom:118.277440px;}
.y253{bottom:119.280030px;}
.y1ae{bottom:121.080030px;}
.y2c1{bottom:121.665255px;}
.y23{bottom:123.240030px;}
.y69{bottom:123.600030px;}
.y2dd{bottom:123.786810px;}
.y229{bottom:123.960015px;}
.y120{bottom:124.320030px;}
.y170{bottom:125.040030px;}
.y23c{bottom:126.120030px;}
.y274{bottom:127.560030px;}
.y23f{bottom:129.720030px;}
.y190{bottom:130.980030px;}
.y187{bottom:130.980045px;}
.y2fe{bottom:131.520030px;}
.y2cd{bottom:134.189140px;}
.yce{bottom:134.760030px;}
.y1de{bottom:135.120030px;}
.ya7{bottom:136.920000px;}
.y18f{bottom:137.280000px;}
.y28c{bottom:138.000000px;}
.y104{bottom:138.360000px;}
.y13b{bottom:139.800000px;}
.y282{bottom:141.600000px;}
.y208{bottom:141.960000px;}
.y24a{bottom:143.040000px;}
.y2ac{bottom:144.120000px;}
.y46{bottom:147.000000px;}
.y217{bottom:148.080000px;}
.y188{bottom:148.679955px;}
.y252{bottom:150.240000px;}
.y296{bottom:151.140000px;}
.y2cc{bottom:151.161790px;}
.ye3{bottom:152.040000px;}
.y258{bottom:152.400000px;}
.y18e{bottom:153.120000px;}
.y68{bottom:154.920000px;}
.y22{bottom:155.280000px;}
.y16f{bottom:156.000000px;}
.y23b{bottom:157.080000px;}
.y273{bottom:158.520000px;}
.y1f8{bottom:160.680000px;}
.y2fd{bottom:162.480000px;}
.ycd{bottom:165.720000px;}
.y1dd{bottom:166.440000px;}
.y2cb{bottom:167.073490px;}
.ya6{bottom:167.880000px;}
.y103{bottom:169.320000px;}
.y28b{bottom:170.040000px;}
.y13a{bottom:171.120000px;}
.y281{bottom:172.560000px;}
.y155{bottom:172.920000px;}
.y249{bottom:174.360000px;}
.y45{bottom:175.080000px;}
.y228{bottom:175.800000px;}
.ye2{bottom:176.160000px;}
.y16e{bottom:176.880000px;}
.y216{bottom:179.400000px;}
.y295{bottom:181.020000px;}
.y251{bottom:181.200000px;}
.y2ca{bottom:182.985340px;}
.y1ad{bottom:183.000000px;}
.y257{bottom:183.360000px;}
.y21{bottom:183.720000px;}
.y18d{bottom:185.520000px;}
.y67{bottom:185.880000px;}
.y201{bottom:186.600000px;}
.y1f0{bottom:186.960000px;}
.y23a{bottom:188.040000px;}
.y2e7{bottom:188.400000px;}
.y2da{bottom:188.494650px;}
.y272{bottom:189.480000px;}
.y1f7{bottom:191.640000px;}
.y2fc{bottom:193.800000px;}
.y2ab{bottom:195.600000px;}
.ycc{bottom:196.680000px;}
.y1dc{bottom:197.400000px;}
.ya5{bottom:198.840000px;}
.y2c9{bottom:198.897040px;}
.y102{bottom:200.640000px;}
.y18c{bottom:201.720000px;}
.y139{bottom:202.080000px;}
.y154{bottom:203.880000px;}
.y44{bottom:204.960000px;}
.y248{bottom:205.320000px;}
.y227{bottom:206.760000px;}
.y11f{bottom:207.120000px;}
.y16d{bottom:207.840000px;}
.y239{bottom:208.920000px;}
.y20{bottom:210.000000px;}
.y215{bottom:210.360000px;}
.y294{bottom:210.540000px;}
.y1f6{bottom:212.520000px;}
.y1ac{bottom:213.960000px;}
.y256{bottom:214.320000px;}
.y2c8{bottom:215.869540px;}
.y66{bottom:216.840000px;}
.y200{bottom:217.560000px;}
.y18b{bottom:217.920000px;}
.ya4{bottom:219.720000px;}
.y271{bottom:220.800000px;}
.y28a{bottom:222.600000px;}
.y2fb{bottom:224.760000px;}
.y2aa{bottom:226.920000px;}
.ycb{bottom:227.640000px;}
.y1db{bottom:228.360000px;}
.y2f7{bottom:229.800000px;}
.y101{bottom:231.600000px;}
.y2c7{bottom:231.781390px;}
.y138{bottom:233.040000px;}
.y18a{bottom:234.120000px;}
.y43{bottom:234.480000px;}
.y1ab{bottom:234.840000px;}
.y153{bottom:235.200000px;}
.y247{bottom:236.280000px;}
.y1f{bottom:236.640000px;}
.y226{bottom:237.720000px;}
.y11e{bottom:238.080000px;}
.y16c{bottom:238.800000px;}
.y238{bottom:239.880000px;}
.y293{bottom:240.420000px;}
.y214{bottom:241.320000px;}
.y1f5{bottom:243.480000px;}
.y1c0{bottom:245.280000px;}
.y2c6{bottom:247.693090px;}
.y65{bottom:247.800000px;}
.y1ff{bottom:248.520000px;}
.y189{bottom:250.320000px;}
.ya3{bottom:250.680000px;}
.y270{bottom:251.760000px;}
.y137{bottom:253.920000px;}
.y2fa{bottom:255.720000px;}
.y1e{bottom:256.080000px;}
.y246{bottom:256.800000px;}
.y1da{bottom:257.880000px;}
.yca{bottom:258.960000px;}
.y2f6{bottom:261.120000px;}
.y100{bottom:262.560000px;}
.y2c5{bottom:263.604940px;}
.y250{bottom:264.000000px;}
.y42{bottom:264.360000px;}
.y1aa{bottom:265.800000px;}
.y152{bottom:266.160000px;}
.y225{bottom:268.680000px;}
.y11d{bottom:269.040000px;}
.y2d8{bottom:269.114250px;}
.y185{bottom:269.220000px;}
.y1fe{bottom:269.400000px;}
.y1ef{bottom:269.760000px;}
.y16b{bottom:270.120000px;}
.y292{bottom:270.300000px;}
.y237{bottom:270.840000px;}
.y213{bottom:272.280000px;}
.y1f4{bottom:274.440000px;}
.y23e{bottom:275.520000px;}
.y136{bottom:276.240000px;}
.y255{bottom:276.600000px;}
.y1d9{bottom:277.320000px;}
.y1d{bottom:277.680000px;}
.y64{bottom:279.120000px;}
.y2c4{bottom:279.516640px;}
.ya2{bottom:281.640000px;}
.y26f{bottom:282.720000px;}
.y289{bottom:284.880000px;}
.y2f9{bottom:286.680000px;}
.y245{bottom:288.120000px;}
.yc9{bottom:289.920000px;}
.y2f5{bottom:292.080000px;}
.y1c{bottom:292.800000px;}
.y212{bottom:293.160000px;}
.y41{bottom:293.880000px;}
.y1f3{bottom:295.320000px;}
.y2c3{bottom:295.428490px;}
.y1d8{bottom:296.400000px;}
.y135{bottom:296.760000px;}
.y151{bottom:297.120000px;}
.y224{bottom:300.000000px;}
.y291{bottom:300.180000px;}
.y11c{bottom:300.360000px;}
.y16a{bottom:301.080000px;}
.y85{bottom:302.160000px;}
.y2e6{bottom:302.520000px;}
.y236{bottom:302.880000px;}
.y26e{bottom:303.600000px;}
.y288{bottom:305.400000px;}
.y254{bottom:307.560000px;}
.y63{bottom:310.080000px;}
.y2a9{bottom:311.520000px;}
.y2c2{bottom:312.400990px;}
.ya1{bottom:312.600000px;}
.y1d7{bottom:315.120000px;}
.y1b{bottom:315.840000px;}
.y2f8{bottom:318.000000px;}
.y244{bottom:319.080000px;}
.y223{bottom:320.520000px;}
.yc8{bottom:320.880000px;}
.y2f4{bottom:323.040000px;}
.y40{bottom:323.760000px;}
.y211{bottom:324.120000px;}
.yff{bottom:324.840000px;}
.y235{bottom:325.200000px;}
.y1bf{bottom:326.280000px;}
.y134{bottom:328.080000px;}
.y28f{bottom:329.700000px;}
.y1a{bottom:330.960000px;}
.y11b{bottom:331.320000px;}
.y169{bottom:332.040000px;}
.y184{bottom:332.580000px;}
.y2e5{bottom:333.480000px;}
.y2d6{bottom:333.822150px;}
.y1d6{bottom:334.200000px;}
.y26d{bottom:334.560000px;}
.y287{bottom:336.720000px;}
.y84{bottom:338.520000px;}
.y62{bottom:341.040000px;}
.ya0{bottom:343.920000px;}
.yfe{bottom:345.360000px;}
.y24f{bottom:346.800000px;}
.y280{bottom:348.600000px;}
.y150{bottom:348.960000px;}
.y243{bottom:350.040000px;}
.y222{bottom:351.480000px;}
.yc7{bottom:351.840000px;}
.y168{bottom:352.920000px;}
.y3f{bottom:353.280000px;}
.y2f3{bottom:354.000000px;}
.y210{bottom:355.080000px;}
.y19{bottom:356.160000px;}
.y1be{bottom:357.240000px;}
.y133{bottom:359.040000px;}
.y207{bottom:359.400000px;}
.y28e{bottom:359.580000px;}
.y234{bottom:361.920000px;}
.y11a{bottom:362.280000px;}
.y1ee{bottom:363.000000px;}
.y1d3{bottom:364.260000px;}
.y2e4{bottom:364.440000px;}
.y26c{bottom:365.520000px;}
.y286{bottom:367.680000px;}
.y242{bottom:370.560000px;}
.y61{bottom:372.000000px;}
.y83{bottom:374.880000px;}
.yfd{bottom:376.680000px;}
.y24e{bottom:378.120000px;}
.y2a8{bottom:378.840000px;}
.y27f{bottom:379.560000px;}
.y14f{bottom:379.920000px;}
.y18{bottom:381.360000px;}
.yc6{bottom:382.800000px;}
.y3e{bottom:383.160000px;}
.y167{bottom:384.960000px;}
.y2f2{bottom:385.320000px;}
.y20f{bottom:386.400000px;}
.y1bd{bottom:388.200000px;}
.y241{bottom:389.640000px;}
.y132{bottom:390.000000px;}
.y23d{bottom:390.360000px;}
.y182{bottom:392.700000px;}
.y119{bottom:393.240000px;}
.y1ed{bottom:393.960000px;}
.y1d2{bottom:394.500000px;}
.y2e3{bottom:395.400000px;}
.y26b{bottom:396.480000px;}
.y233{bottom:398.280000px;}
.y285{bottom:398.640000px;}
.y60{bottom:403.320000px;}
.yc5{bottom:403.680000px;}
.y9f{bottom:405.840000px;}
.y17{bottom:406.200000px;}
.y166{bottom:406.920000px;}
.yfc{bottom:407.640000px;}
.y240{bottom:408.360000px;}
.y24d{bottom:409.080000px;}
.y2a7{bottom:409.800000px;}
.y82{bottom:410.880000px;}
.y3d{bottom:412.680000px;}
.y221{bottom:413.760000px;}
.y1fd{bottom:414.120000px;}
.y2e2{bottom:416.280000px;}
.y20e{bottom:417.360000px;}
.y180{bottom:417.540000px;}
.y1bc{bottom:419.520000px;}
.y232{bottom:421.320000px;}
.y1cf{bottom:423.300000px;}
.y118{bottom:424.560000px;}
.y1ec{bottom:425.280000px;}
.y26a{bottom:428.520000px;}
.y16{bottom:431.400000px;}
.y5f{bottom:434.280000px;}
.yc4{bottom:434.640000px;}
.y9e{bottom:436.800000px;}
.y165{bottom:438.240000px;}
.yfb{bottom:438.600000px;}
.y1bb{bottom:440.040000px;}
.y2a6{bottom:440.760000px;}
.y131{bottom:441.840000px;}
.y14e{bottom:442.200000px;}
.y3c{bottom:442.560000px;}
.y117{bottom:445.080000px;}
.y81{bottom:447.240000px;}
.y20d{bottom:449.400000px;}
.y2e1{bottom:449.760000px;}
.y269{bottom:450.480000px;}
.y231{bottom:452.280000px;}
.y15{bottom:454.800000px;}
.y220{bottom:455.160000px;}
.yc3{bottom:455.520000px;}
.y1eb{bottom:456.240000px;}
.y9d{bottom:457.680000px;}
.y27e{bottom:462.360000px;}
.y17d{bottom:463.980000px;}
.y5e{bottom:465.240000px;}
.y2bf{bottom:468.120000px;}
.y164{bottom:469.200000px;}
.yfa{bottom:469.560000px;}
.y14{bottom:469.920000px;}
.y1ba{bottom:471.000000px;}
.y3b{bottom:472.080000px;}
.y130{bottom:472.800000px;}
.y14d{bottom:473.160000px;}
.y21f{bottom:475.680000px;}
.yc2{bottom:476.040000px;}
.y116{bottom:476.400000px;}
.y1ea{bottom:476.760000px;}
.y2f1{bottom:478.200000px;}
.y80{bottom:480.720000px;}
.y268{bottom:481.440000px;}
.y1cd{bottom:481.620000px;}
.y230{bottom:483.600000px;}
.y13{bottom:485.040000px;}
.y9c{bottom:488.640000px;}
.yf9{bottom:490.800000px;}
.y14c{bottom:493.680000px;}
.y1e9{bottom:495.480000px;}
.y5d{bottom:496.200000px;}
.yc1{bottom:496.920000px;}
.y2be{bottom:499.080000px;}
.y12{bottom:499.800000px;}
.y163{bottom:500.160000px;}
.y3a{bottom:501.960000px;}
.y1b9{bottom:502.320000px;}
.y17c{bottom:502.500000px;}
.y2a5{bottom:503.040000px;}
.y12f{bottom:503.760000px;}
.y206{bottom:504.120000px;}
.y21d{bottom:505.740000px;}
.y115{bottom:507.360000px;}
.y2f0{bottom:509.520000px;}
.y7f{bottom:511.680000px;}
.y267{bottom:512.400000px;}
.y1e8{bottom:514.560000px;}
.y11{bottom:514.920000px;}
.y9b{bottom:519.600000px;}
.y27d{bottom:524.640000px;}
.y14b{bottom:525.000000px;}
.y21b{bottom:526.980000px;}
.y5c{bottom:527.520000px;}
.y162{bottom:531.120000px;}
.y39{bottom:531.480000px;}
.y1b8{bottom:533.280000px;}
.y1e7{bottom:533.640000px;}
.y2a4{bottom:534.000000px;}
.y10{bottom:534.360000px;}
.yc0{bottom:534.900000px;}
.y12e{bottom:535.080000px;}
.y114{bottom:538.320000px;}
.yf8{bottom:538.680000px;}
.y2ef{bottom:540.480000px;}
.y179{bottom:541.380000px;}
.y7e{bottom:543.000000px;}
.y266{bottom:543.360000px;}
.ye1{bottom:544.800000px;}
.y22f{bottom:545.520000px;}
.y21a{bottom:548.220000px;}
.y9a{bottom:550.920000px;}
.y1e6{bottom:552.360000px;}
.y2bd{bottom:553.440000px;}
.y1f2{bottom:553.800000px;}
.y2a3{bottom:554.520000px;}
.y27c{bottom:555.600000px;}
.y14a{bottom:555.960000px;}
.y5b{bottom:558.480000px;}
.yf7{bottom:559.200000px;}
.y38{bottom:561.360000px;}
.y161{bottom:562.440000px;}
.y1b7{bottom:564.240000px;}
.y24c{bottom:565.320000px;}
.y12d{bottom:566.040000px;}
.ybf{bottom:566.220000px;}
.y205{bottom:566.400000px;}
.y2ee{bottom:571.440000px;}
.yf{bottom:573.600000px;}
.y7d{bottom:573.960000px;}
.y265{bottom:574.680000px;}
.ye0{bottom:575.760000px;}
.y22e{bottom:576.480000px;}
.y99{bottom:581.880000px;}
.y1e4{bottom:582.420000px;}
.y192{bottom:584.220000px;}
.y1b6{bottom:584.760000px;}
.y27b{bottom:586.560000px;}
.y149{bottom:586.920000px;}
.y198{bottom:587.640000px;}
.y5a{bottom:589.440000px;}
.y113{bottom:590.160000px;}
.yf6{bottom:590.520000px;}
.y37{bottom:590.880000px;}
.y2a2{bottom:592.320000px;}
.y160{bottom:593.400000px;}
.y1cc{bottom:595.200000px;}
.y12c{bottom:597.000000px;}
.y204{bottom:597.360000px;}
.y2ed{bottom:602.400000px;}
.y197{bottom:603.480000px;}
.y7c{bottom:604.920000px;}
.y264{bottom:605.640000px;}
.ydf{bottom:606.720000px;}
.y27a{bottom:607.440000px;}
.y22d{bottom:607.800000px;}
.y2a1{bottom:611.400000px;}
.ye{bottom:612.840000px;}
.y1b5{bottom:616.080000px;}
.ybd{bottom:616.260000px;}
.y148{bottom:617.880000px;}
.y196{bottom:619.320000px;}
.y59{bottom:620.400000px;}
.y36{bottom:620.760000px;}
.y112{bottom:621.120000px;}
.yf5{bottom:621.480000px;}
.y15f{bottom:624.360000px;}
.y1e3{bottom:624.540000px;}
.y20c{bottom:626.160000px;}
.y12b{bottom:627.960000px;}
.y203{bottom:628.320000px;}
.y2ec{bottom:633.360000px;}
.y195{bottom:635.160000px;}
.y7b{bottom:635.880000px;}
.y263{bottom:636.600000px;}
.yde{bottom:637.680000px;}
.y279{bottom:638.400000px;}
.y147{bottom:638.760000px;}
.y2bc{bottom:641.460000px;}
.y98{bottom:643.800000px;}
.y1b4{bottom:647.040000px;}
.ybc{bottom:647.940000px;}
.y1a9{bottom:648.840000px;}
.y202{bottom:649.200000px;}
.y35{bottom:650.280000px;}
.y194{bottom:651.000000px;}
.y58{bottom:651.360000px;}
.y111{bottom:652.080000px;}
.yd{bottom:652.440000px;}
.y15e{bottom:655.320000px;}
.y20b{bottom:657.480000px;}
.y12a{bottom:659.280000px;}
.y2eb{bottom:664.680000px;}
.ydd{bottom:669.000000px;}
.y7a{bottom:669.720000px;}
.y278{bottom:670.440000px;}
.y2ba{bottom:672.420000px;}
.y110{bottom:673.320000px;}
.y97{bottom:674.760000px;}
.y15d{bottom:676.560000px;}
.y1b3{bottom:678.000000px;}
.ybb{bottom:679.260000px;}
.y1a8{bottom:679.800000px;}
.y34{bottom:680.160000px;}
.y57{bottom:682.680000px;}
.y1e2{bottom:682.860000px;}
.yf4{bottom:683.400000px;}
.y262{bottom:688.440000px;}
.y129{bottom:690.240000px;}
.y219{bottom:690.600000px;}
.y277{bottom:692.760000px;}
.y2ea{bottom:695.640000px;}
.y146{bottom:700.680000px;}
.y79{bottom:703.200000px;}
.y2b9{bottom:703.740000px;}
.y96{bottom:706.080000px;}
.y177{bottom:706.800000px;}
.y1b2{bottom:708.960000px;}
.y33{bottom:709.680000px;}
.y10f{bottom:710.040000px;}
.y1a7{bottom:710.760000px;}
.y128{bottom:711.120000px;}
.y56{bottom:713.640000px;}
.yf3{bottom:714.720000px;}
.y1fc{bottom:715.080000px;}
.y261{bottom:719.400000px;}
.ydc{bottom:720.840000px;}
.y218{bottom:721.560000px;}
.y95{bottom:726.600000px;}
.y276{bottom:729.480000px;}
.y145{bottom:732.000000px;}
.y78{bottom:734.160000px;}
.y2b8{bottom:734.700000px;}
.y1fb{bottom:737.040000px;}
.y176{bottom:737.760000px;}
.y32{bottom:739.560000px;}
.y1b1{bottom:740.280000px;}
.y1a6{bottom:741.720000px;}
.y127{bottom:742.080000px;}
.y55{bottom:744.600000px;}
.yf2{bottom:745.680000px;}
.y10e{bottom:746.400000px;}
.yb6{bottom:748.380000px;}
.y260{bottom:750.360000px;}
.y22c{bottom:752.520000px;}
.y94{bottom:757.560000px;}
.y15c{bottom:760.080000px;}
.y1a5{bottom:762.600000px;}
.y144{bottom:762.960000px;}
.y77{bottom:765.480000px;}
.y2b5{bottom:765.660000px;}
.yc{bottom:766.560000px;}
.y1fa{bottom:768.000000px;}
.y31{bottom:769.080000px;}
.y1b0{bottom:771.240000px;}
.y284{bottom:772.320000px;}
.ydb{bottom:773.040000px;}
.y1e1{bottom:773.400000px;}
.y54{bottom:775.560000px;}
.yf1{bottom:776.640000px;}
.y10d{bottom:779.880000px;}
.y25f{bottom:781.680000px;}
.y22b{bottom:783.480000px;}
.y93{bottom:788.880000px;}
.y1a4{bottom:793.560000px;}
.y143{bottom:793.920000px;}
.y76{bottom:796.440000px;}
.y15b{bottom:798.600000px;}
.y30{bottom:798.960000px;}
.y175{bottom:800.040000px;}
.yb{bottom:801.120000px;}
.y1cb{bottom:802.200000px;}
.y1af{bottom:803.280000px;}
.yda{bottom:804.000000px;}
.y1e0{bottom:804.360000px;}
.y53{bottom:806.880000px;}
.yf0{bottom:807.600000px;}
.y10c{bottom:811.200000px;}
.y25e{bottom:812.640000px;}
.y2e0{bottom:814.800000px;}
.y92{bottom:819.840000px;}
.y174{bottom:820.920000px;}
.y1ca{bottom:823.080000px;}
.y1a3{bottom:824.520000px;}
.y142{bottom:824.880000px;}
.y75{bottom:827.400000px;}
.y2b0{bottom:827.940000px;}
.y2f{bottom:828.480000px;}
.y25d{bottom:833.160000px;}
.yd9{bottom:834.960000px;}
.y126{bottom:835.320000px;}
.yb5{bottom:836.580000px;}
.y52{bottom:837.840000px;}
.yef{bottom:838.920000px;}
.y10b{bottom:842.160000px;}
.y15a{bottom:844.680000px;}
.y275{bottom:845.760000px;}
.y91{bottom:850.800000px;}
.y1f9{bottom:853.680000px;}
.y1c9{bottom:854.040000px;}
.y173{bottom:854.760000px;}
.y141{bottom:856.200000px;}
.y1a2{bottom:856.560000px;}
.y2e{bottom:858.360000px;}
.y25c{bottom:864.480000px;}
.yd8{bottom:865.920000px;}
.y125{bottom:866.280000px;}
.y51{bottom:868.800000px;}
.yee{bottom:869.880000px;}
.y2e9{bottom:871.680000px;}
.y10a{bottom:873.120000px;}
.y159{bottom:875.640000px;}
.y172{bottom:876.720000px;}
.y1a1{bottom:878.520000px;}
.y90{bottom:881.760000px;}
.y1c8{bottom:885.000000px;}
.y124{bottom:887.160000px;}
.y2d{bottom:887.880000px;}
.y74{bottom:889.680000px;}
.y2ae{bottom:891.300000px;}
.y25b{bottom:895.440000px;}
.yd7{bottom:897.240000px;}
.y22a{bottom:897.600000px;}
.y50{bottom:899.760000px;}
.yed{bottom:900.840000px;}
.y109{bottom:904.440000px;}
.y2e8{bottom:905.160000px;}
.yb3{bottom:906.060000px;}
.y171{bottom:907.680000px;}
.y1a0{bottom:912.000000px;}
.y8f{bottom:913.080000px;}
.ya{bottom:913.800000px;}
.y1c7{bottom:915.960000px;}
.y2c{bottom:917.760000px;}
.y123{bottom:918.120000px;}
.y73{bottom:920.640000px;}
.yec{bottom:921.720000px;}
.y158{bottom:922.080000px;}
.y25a{bottom:926.400000px;}
.y4f{bottom:931.080000px;}
.y108{bottom:935.400000px;}
.y19f{bottom:936.120000px;}
.y140{bottom:939.000000px;}
.y9{bottom:939.720000px;}
.y2a0{bottom:940.440000px;}
.y8e{bottom:944.040000px;}
.y2b{bottom:947.280000px;}
.y20a{bottom:948.000000px;}
.yd6{bottom:949.080000px;}
.y72{bottom:951.600000px;}
.yeb{bottom:952.680000px;}
.y107{bottom:956.640000px;}
.y8{bottom:960.600000px;}
.y4e{bottom:962.040000px;}
.y13f{bottom:969.960000px;}
.y29f{bottom:971.760000px;}
.y19e{bottom:972.480000px;}
.y157{bottom:973.920000px;}
.y8d{bottom:975.000000px;}
.yb1{bottom:975.180000px;}
.y7{bottom:975.720000px;}
.y2a{bottom:977.160000px;}
.y1c6{bottom:978.240000px;}
.y122{bottom:980.040000px;}
.yd5{bottom:980.400000px;}
.y106{bottom:980.760000px;}
.y71{bottom:982.560000px;}
.yea{bottom:983.640000px;}
.y6{bottom:987.600000px;}
.y4d{bottom:993.000000px;}
.y8c{bottom:995.880000px;}
.y156{bottom:998.040000px;}
.y13e{bottom:1000.920000px;}
.y29e{bottom:1002.720000px;}
.y19d{bottom:1005.960000px;}
.y29{bottom:1006.680000px;}
.y1c5{bottom:1009.200000px;}
.y1f1{bottom:1010.280000px;}
.yd4{bottom:1011.360000px;}
.y70{bottom:1013.880000px;}
.ye9{bottom:1014.600000px;}
.y8b{bottom:1016.400000px;}
.y4c{bottom:1023.960000px;}
.y1c4{bottom:1030.080000px;}
.y13d{bottom:1031.880000px;}
.y29d{bottom:1033.680000px;}
.y28{bottom:1036.560000px;}
.y19c{bottom:1037.280000px;}
.y8a{bottom:1037.640000px;}
.y259{bottom:1040.160000px;}
.yd3{bottom:1042.320000px;}
.yad{bottom:1044.660000px;}
.y6f{bottom:1044.840000px;}
.ye8{bottom:1045.920000px;}
.y29c{bottom:1054.200000px;}
.y4b{bottom:1055.280000px;}
.y1c3{bottom:1061.040000px;}
.y89{bottom:1061.760000px;}
.y121{bottom:1063.200000px;}
.y27{bottom:1066.080000px;}
.y19b{bottom:1068.240000px;}
.y29b{bottom:1072.920000px;}
.yd2{bottom:1073.280000px;}
.y6e{bottom:1075.800000px;}
.ye7{bottom:1076.880000px;}
.y88{bottom:1085.880000px;}
.y4a{bottom:1086.240000px;}
.y19a{bottom:1088.760000px;}
.y29a{bottom:1090.200000px;}
.y1c2{bottom:1092.000000px;}
.yd1{bottom:1094.160000px;}
.y26{bottom:1095.960000px;}
.ye6{bottom:1098.120000px;}
.y6d{bottom:1106.760000px;}
.y299{bottom:1107.480000px;}
.yaa{bottom:1109.460000px;}
.y49{bottom:1120.080000px;}
.ye5{bottom:1122.240000px;}
.y87{bottom:1122.600000px;}
.y1c1{bottom:1124.040000px;}
.yd0{bottom:1125.120000px;}
.y25{bottom:1125.480000px;}
.y298{bottom:1126.560000px;}
.y5{bottom:1129.080000px;}
.ya9{bottom:1132.860000px;}
.y6c{bottom:1138.080000px;}
.y4{bottom:1155.360000px;}
.y24{bottom:1155.720000px;}
.y48{bottom:1156.080000px;}
.y6b{bottom:1158.600000px;}
.y86{bottom:1179.480000px;}
.h23{height:11.160003px;}
.h22{height:11.519990px;}
.h1f{height:14.039978px;}
.h14{height:18.719970px;}
.h19{height:18.720015px;}
.h13{height:19.079955px;}
.h1a{height:19.080000px;}
.h2d{height:19.800015px;}
.h24{height:20.519985px;}
.h1{height:20.880000px;}
.h2e{height:21.240000px;}
.h29{height:28.439985px;}
.h31{height:28.440015px;}
.h2a{height:28.800015px;}
.h34{height:29.520000px;}
.h32{height:29.520015px;}
.h33{height:29.880000px;}
.h2b{height:30.239985px;}
.h37{height:30.959970px;}
.h39{height:30.960015px;}
.h38{height:31.320000px;}
.he{height:33.591797px;}
.h3b{height:35.403679px;}
.h3c{height:36.547337px;}
.h3e{height:36.588465px;}
.h28{height:37.670625px;}
.h1b{height:37.800015px;}
.h7{height:39.350391px;}
.h2c{height:42.119985px;}
.h26{height:43.013333px;}
.h5{height:43.189453px;}
.h20{height:44.666016px;}
.h30{height:44.992969px;}
.h1e{height:49.992188px;}
.h21{height:50.080078px;}
.h2{height:50.906250px;}
.h6{height:51.804141px;}
.h8{height:55.666406px;}
.h16{height:56.858203px;}
.h15{height:56.879970px;}
.h18{height:56.880015px;}
.h12{height:57.554297px;}
.h4{height:60.804844px;}
.h35{height:61.919955px;}
.h36{height:62.280030px;}
.h3f{height:62.586270px;}
.h11{height:63.175781px;}
.h10{height:63.949219px;}
.h1d{height:69.065156px;}
.h2f{height:73.283906px;}
.hf{height:74.181094px;}
.h1c{height:74.816016px;}
.h17{height:75.959970px;}
.hd{height:77.423040px;}
.h40{height:78.498045px;}
.h9{height:82.762560px;}
.hb{height:93.441600px;}
.h3d{height:94.409820px;}
.h27{height:108.720015px;}
.hc{height:121.474080px;}
.ha{height:153.478125px;}
.h25{height:162.720000px;}
.h3a{height:323.539200px;}
.h3{height:1236.000000px;}
.h0{height:1263.000000px;}
.w3{width:9.720016px;}
.w1{width:13.679993px;}
.wf{width:19.800015px;}
.w30{width:37.169235px;}
.w1b{width:48.960000px;}
.w17{width:89.640015px;}
.w1d{width:91.439985px;}
.w18{width:94.680000px;}
.w15{width:105.840000px;}
.w1a{width:111.600015px;}
.w10{width:118.080000px;}
.w21{width:119.160000px;}
.w22{width:121.320000px;}
.w19{width:124.559985px;}
.w24{width:127.439985px;}
.w16{width:133.920000px;}
.w2e{width:134.640015px;}
.w14{width:136.800000px;}
.w23{width:138.239985px;}
.w2d{width:140.040030px;}
.w1e{width:140.759955px;}
.w2a{width:142.920000px;}
.w20{width:154.440000px;}
.w28{width:159.480000px;}
.w2b{width:170.280000px;}
.w2c{width:174.960000px;}
.wb{width:175.680000px;}
.wc{width:176.040000px;}
.w13{width:176.760000px;}
.w27{width:180.720000px;}
.w1f{width:183.960000px;}
.w12{width:184.320000px;}
.w26{width:187.920000px;}
.w4{width:211.320000px;}
.w25{width:232.920000px;}
.w6{width:249.480000px;}
.w11{width:258.480000px;}
.w7{width:259.560000px;}
.wa{width:264.600000px;}
.w29{width:265.680000px;}
.wd{width:305.280000px;}
.w8{width:307.440000px;}
.w1c{width:338.400000px;}
.w9{width:367.920000px;}
.we{width:375.480000px;}
.w5{width:511.200000px;}
.w2f{width:675.418050px;}
.w2{width:865.500000px;}
.w0{width:892.500000px;}
.x0{left:0.000000px;}
.x14{left:1.080030px;}
.x4c{left:8.537850px;}
.x48{left:9.748950px;}
.x1b{left:10.800000px;}
.x4f{left:12.111525px;}
.x2{left:13.500000px;}
.x3c{left:15.548250px;}
.x27{left:16.920000px;}
.x43{left:18.452610px;}
.x52{left:19.543200px;}
.x55{left:20.917500px;}
.x3d{left:22.432650px;}
.x39{left:23.573250px;}
.x1f{left:25.200000px;}
.x54{left:26.415600px;}
.x42{left:27.935250px;}
.x44{left:28.952250px;}
.x3a{left:30.457650px;}
.x61{left:32.063700px;}
.x45{left:33.467250px;}
.x3f{left:35.722050px;}
.x2f{left:37.800000px;}
.x51{left:39.074850px;}
.x53{left:41.137200px;}
.x40{left:42.782850px;}
.x21{left:44.640000px;}
.x25{left:47.520000px;}
.x59{left:48.892350px;}
.x6b{left:49.912984px;}
.x41{left:51.747750px;}
.x23{left:52.920000px;}
.x4e{left:54.372750px;}
.x1a{left:56.160000px;}
.x67{left:57.542850px;}
.x46{left:61.264650px;}
.x35{left:63.208800px;}
.x5f{left:65.003175px;}
.x37{left:68.332365px;}
.x4{left:71.280030px;}
.x62{left:74.738700px;}
.x32{left:77.220000px;}
.x6a{left:78.586354px;}
.xb{left:81.032220px;}
.x13{left:83.700000px;}
.x69{left:85.931850px;}
.x28{left:88.560000px;}
.xa{left:90.503175px;}
.x58{left:94.986900px;}
.x11{left:98.280015px;}
.x4a{left:101.087700px;}
.x29{left:115.560000px;}
.x60{left:117.479850px;}
.x6c{left:119.280030px;}
.x9{left:121.127565px;}
.x17{left:125.280015px;}
.x7{left:133.417590px;}
.x5a{left:135.105090px;}
.x2c{left:142.560000px;}
.x8{left:147.929400px;}
.x2a{left:178.920000px;}
.x2b{left:188.280000px;}
.x47{left:192.060000px;}
.x33{left:195.300000px;}
.x63{left:207.540000px;}
.x38{left:214.020000px;}
.x5c{left:237.060000px;}
.x49{left:241.020000px;}
.x20{left:246.420000px;}
.x22{left:251.820000px;}
.x2d{left:260.640000px;}
.x15{left:297.180000px;}
.x6{left:299.563500px;}
.xc{left:303.500250px;}
.x56{left:316.980000px;}
.x3b{left:319.860000px;}
.x1c{left:355.140000px;}
.x2e{left:368.100000px;}
.x64{left:377.820000px;}
.x19{left:384.660000px;}
.x30{left:392.400000px;}
.x10{left:394.556100px;}
.x1d{left:406.620000px;}
.x5d{left:417.780000px;}
.x50{left:424.980000px;}
.x3{left:432.480150px;}
.x31{left:436.140000px;}
.x12{left:441.180000px;}
.x1e{left:451.260000px;}
.x34{left:453.780000px;}
.x57{left:455.220000px;}
.x26{left:458.460000px;}
.xf{left:534.485250px;}
.xd{left:536.774100px;}
.x3e{left:543.420000px;}
.x5{left:547.980150px;}
.x65{left:552.780000px;}
.x5e{left:577.260000px;}
.x4b{left:579.420000px;}
.xe{left:582.484500px;}
.x36{left:638.100000px;}
.x24{left:650.340000px;}
.x4d{left:670.860000px;}
.x66{left:692.820000px;}
.x5b{left:706.379850px;}
.x16{left:719.280000px;}
.x68{left:747.780000px;}
.x1{left:793.620000px;}
.x18{left:815.280000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:29.440000pt;}
.ls64{letter-spacing:-0.364672pt;}
.ls53{letter-spacing:-0.316800pt;}
.ls56{letter-spacing:-0.161024pt;}
.ls67{letter-spacing:-0.108800pt;}
.ls68{letter-spacing:-0.096000pt;}
.ls37{letter-spacing:-0.076800pt;}
.ls39{letter-spacing:-0.070400pt;}
.ls83{letter-spacing:-0.064000pt;}
.ls38{letter-spacing:-0.057600pt;}
.ls3e{letter-spacing:-0.051200pt;}
.ls7f{letter-spacing:-0.044800pt;}
.ls24{letter-spacing:-0.038400pt;}
.ls5a{letter-spacing:-0.034172pt;}
.ls3d{letter-spacing:-0.032000pt;}
.ls23{letter-spacing:-0.025600pt;}
.ls8f{letter-spacing:-0.022630pt;}
.ls22{letter-spacing:-0.019200pt;}
.ls18{letter-spacing:-0.012800pt;}
.ls91{letter-spacing:-0.009052pt;}
.ls82{letter-spacing:-0.006400pt;}
.ls90{letter-spacing:-0.004526pt;}
.ls9{letter-spacing:0.000000pt;}
.ls44{letter-spacing:0.000480pt;}
.ls42{letter-spacing:0.000533pt;}
.ls8d{letter-spacing:0.004526pt;}
.ls8e{letter-spacing:0.009052pt;}
.ls92{letter-spacing:0.009062pt;}
.ls13{letter-spacing:0.012800pt;}
.ls93{letter-spacing:0.018124pt;}
.ls3a{letter-spacing:0.055296pt;}
.ls3b{letter-spacing:0.062208pt;}
.ls62{letter-spacing:0.075776pt;}
.ls86{letter-spacing:0.080533pt;}
.ls40{letter-spacing:0.096768pt;}
.ls3f{letter-spacing:0.103680pt;}
.ls31{letter-spacing:0.103936pt;}
.ls8b{letter-spacing:0.104000pt;}
.ls3c{letter-spacing:0.106133pt;}
.ls32{letter-spacing:0.106667pt;}
.ls2e{letter-spacing:0.106720pt;}
.ls69{letter-spacing:0.107200pt;}
.ls5{letter-spacing:0.117547pt;}
.ls7{letter-spacing:0.118080pt;}
.ls78{letter-spacing:0.142880pt;}
.ls4d{letter-spacing:0.147840pt;}
.ls60{letter-spacing:0.161024pt;}
.ls45{letter-spacing:0.165888pt;}
.ls17{letter-spacing:0.178176pt;}
.ls4e{letter-spacing:0.185856pt;}
.ls1f{letter-spacing:0.207872pt;}
.ls54{letter-spacing:0.211200pt;}
.ls2d{letter-spacing:0.215168pt;}
.ls1c{letter-spacing:0.215296pt;}
.ls61{letter-spacing:0.217856pt;}
.ls4f{letter-spacing:0.219648pt;}
.ls6{letter-spacing:0.222720pt;}
.ls8a{letter-spacing:0.225664pt;}
.ls4{letter-spacing:0.244992pt;}
.ls19{letter-spacing:0.264960pt;}
.ls12{letter-spacing:0.266667pt;}
.ls6b{letter-spacing:0.266720pt;}
.ls55{letter-spacing:0.274560pt;}
.lsd{letter-spacing:0.274688pt;}
.ls10{letter-spacing:0.275200pt;}
.ls79{letter-spacing:0.282112pt;}
.ls77{letter-spacing:0.288000pt;}
.ls1e{letter-spacing:0.289536pt;}
.lse{letter-spacing:0.304384pt;}
.ls58{letter-spacing:0.317312pt;}
.ls1d{letter-spacing:0.319232pt;}
.ls5c{letter-spacing:0.322048pt;}
.ls5b{letter-spacing:0.331959pt;}
.ls73{letter-spacing:0.355200pt;}
.ls6a{letter-spacing:0.355733pt;}
.ls2c{letter-spacing:0.357120pt;}
.ls52{letter-spacing:0.363264pt;}
.lsa{letter-spacing:0.365056pt;}
.ls47{letter-spacing:0.393088pt;}
.ls50{letter-spacing:0.401280pt;}
.ls30{letter-spacing:0.425088pt;}
.ls2a{letter-spacing:0.426240pt;}
.ls5f{letter-spacing:0.449920pt;}
.ls2{letter-spacing:0.454272pt;}
.ls0{letter-spacing:0.465920pt;}
.ls2b{letter-spacing:0.466560pt;}
.ls59{letter-spacing:0.468864pt;}
.ls1{letter-spacing:0.489216pt;}
.ls26{letter-spacing:0.489600pt;}
.ls3{letter-spacing:0.500864pt;}
.ls5d{letter-spacing:0.522348pt;}
.ls89{letter-spacing:0.529920pt;}
.ls7e{letter-spacing:0.532800pt;}
.ls6f{letter-spacing:0.533280pt;}
.ls15{letter-spacing:0.533333pt;}
.ls25{letter-spacing:0.535680pt;}
.ls6e{letter-spacing:0.541440pt;}
.ls6c{letter-spacing:0.575467pt;}
.ls6d{letter-spacing:0.576000pt;}
.ls8{letter-spacing:0.593280pt;}
.ls51{letter-spacing:0.596736pt;}
.ls76{letter-spacing:0.599040pt;}
.ls57{letter-spacing:0.601472pt;}
.ls29{letter-spacing:0.604800pt;}
.ls2f{letter-spacing:0.624512pt;}
.ls4a{letter-spacing:0.644096pt;}
.ls28{letter-spacing:0.645120pt;}
.lsf{letter-spacing:0.650880pt;}
.ls84{letter-spacing:0.674667pt;}
.ls70{letter-spacing:0.708480pt;}
.ls46{letter-spacing:0.732160pt;}
.ls27{letter-spacing:0.777600pt;}
.ls65{letter-spacing:0.814933pt;}
.ls75{letter-spacing:0.817920pt;}
.ls63{letter-spacing:0.828800pt;}
.ls5e{letter-spacing:0.928256pt;}
.lsc{letter-spacing:0.931840pt;}
.ls72{letter-spacing:0.956160pt;}
.lsb{letter-spacing:0.983040pt;}
.ls71{letter-spacing:0.996480pt;}
.ls95{letter-spacing:1.182400pt;}
.ls94{letter-spacing:1.240000pt;}
.ls7c{letter-spacing:1.467200pt;}
.ls36{letter-spacing:1.597333pt;}
.ls35{letter-spacing:1.598933pt;}
.ls21{letter-spacing:1.634133pt;}
.ls85{letter-spacing:1.924800pt;}
.ls66{letter-spacing:2.068800pt;}
.ls81{letter-spacing:2.168000pt;}
.ls11{letter-spacing:2.410667pt;}
.ls7a{letter-spacing:2.498667pt;}
.ls7b{letter-spacing:2.500267pt;}
.ls7d{letter-spacing:3.886400pt;}
.ls88{letter-spacing:5.791413pt;}
.ls96{letter-spacing:5.901333pt;}
.ls8c{letter-spacing:6.368533pt;}
.ls87{letter-spacing:7.747200pt;}
.ls20{letter-spacing:7.963200pt;}
.ls14{letter-spacing:9.066667pt;}
.ls16{letter-spacing:10.132800pt;}
.ls74{letter-spacing:10.986667pt;}
.ls1b{letter-spacing:12.786667pt;}
.ls80{letter-spacing:14.545600pt;}
.ls97{letter-spacing:15.844800pt;}
.ls1a{letter-spacing:19.361227pt;}
.ls34{letter-spacing:21.916800pt;}
.ls33{letter-spacing:21.917867pt;}
.ls41{letter-spacing:39.115733pt;}
.ls4b{letter-spacing:61.260800pt;}
.ls48{letter-spacing:74.214400pt;}
.ls49{letter-spacing:80.229120pt;}
.ls4c{letter-spacing:147.020800pt;}
.ls43{letter-spacing:211.501333pt;}
.ws0{word-spacing:-20.913408pt;}
.ws1{word-spacing:-20.883712pt;}
.ws9{word-spacing:-18.879232pt;}
.ws2b{word-spacing:-18.842112pt;}
.ws8{word-spacing:-18.775296pt;}
.ws3{word-spacing:-18.738176pt;}
.ws2f{word-spacing:-18.560000pt;}
.ws13{word-spacing:-17.445888pt;}
.ws11{word-spacing:-17.383680pt;}
.ws12{word-spacing:-17.376768pt;}
.wsa{word-spacing:-16.012800pt;}
.ws5{word-spacing:-16.000000pt;}
.ws7{word-spacing:-15.987200pt;}
.ws30{word-spacing:-15.974400pt;}
.ws65{word-spacing:-15.968000pt;}
.wsb{word-spacing:-15.961600pt;}
.ws2c{word-spacing:-15.948800pt;}
.ws10{word-spacing:-15.942400pt;}
.ws31{word-spacing:-15.936000pt;}
.ws2a{word-spacing:-15.929600pt;}
.ws14{word-spacing:-15.758312pt;}
.ws16{word-spacing:-15.567232pt;}
.ws26{word-spacing:-15.396480pt;}
.ws15{word-spacing:-15.287808pt;}
.ws28{word-spacing:-15.217920pt;}
.wsc{word-spacing:-15.177600pt;}
.ws23{word-spacing:-15.108480pt;}
.ws29{word-spacing:-15.045120pt;}
.ws2d{word-spacing:-15.004800pt;}
.ws27{word-spacing:-14.941440pt;}
.wsd{word-spacing:-14.935680pt;}
.ws33{word-spacing:-14.929920pt;}
.wsf{word-spacing:-14.866560pt;}
.wse{word-spacing:-14.826240pt;}
.ws24{word-spacing:-14.757120pt;}
.ws2e{word-spacing:-14.688000pt;}
.ws25{word-spacing:-14.400000pt;}
.ws32{word-spacing:-13.744512pt;}
.ws1f{word-spacing:-0.876160pt;}
.ws19{word-spacing:-0.691456pt;}
.ws17{word-spacing:-0.497280pt;}
.ws4{word-spacing:-0.339200pt;}
.ws1b{word-spacing:-0.265216pt;}
.ws1a{word-spacing:-0.208384pt;}
.ws1d{word-spacing:-0.123136pt;}
.ws6{word-spacing:-0.064000pt;}
.ws64{word-spacing:-0.045311pt;}
.ws22{word-spacing:-0.044800pt;}
.ws37{word-spacing:-0.040734pt;}
.ws2{word-spacing:0.000000pt;}
.ws20{word-spacing:0.317312pt;}
.ws51{word-spacing:51.629454pt;}
.ws1e{word-spacing:59.933440pt;}
.ws4e{word-spacing:66.167375pt;}
.ws1c{word-spacing:80.413440pt;}
.ws38{word-spacing:80.751324pt;}
.ws50{word-spacing:86.096898pt;}
.ws21{word-spacing:100.893440pt;}
.ws41{word-spacing:103.129786pt;}
.ws58{word-spacing:105.458844pt;}
.ws55{word-spacing:105.499578pt;}
.ws4f{word-spacing:105.726185pt;}
.ws61{word-spacing:110.834574pt;}
.ws4b{word-spacing:112.795818pt;}
.ws3e{word-spacing:117.747310pt;}
.ws3b{word-spacing:121.811670pt;}
.ws5b{word-spacing:122.739502pt;}
.ws44{word-spacing:126.210628pt;}
.ws4a{word-spacing:139.813118pt;}
.ws52{word-spacing:142.855806pt;}
.ws47{word-spacing:157.902093pt;}
.ws5e{word-spacing:159.250519pt;}
.ws18{word-spacing:177.693440pt;}
.ws34{word-spacing:209.478995pt;}
.ws46{word-spacing:294.160904pt;}
.ws54{word-spacing:312.687530pt;}
.ws45{word-spacing:330.948374pt;}
.ws53{word-spacing:349.806618pt;}
.ws3d{word-spacing:363.890452pt;}
.ws63{word-spacing:375.359136pt;}
.ws3a{word-spacing:382.404253pt;}
.ws3c{word-spacing:402.917432pt;}
.ws39{word-spacing:406.381885pt;}
.ws49{word-spacing:410.281689pt;}
.ws62{word-spacing:414.232699pt;}
.ws48{word-spacing:448.177965pt;}
.ws5d{word-spacing:473.917636pt;}
.ws43{word-spacing:486.798437pt;}
.ws4d{word-spacing:488.804814pt;}
.ws60{word-spacing:489.079248pt;}
.ws5a{word-spacing:490.351357pt;}
.ws5f{word-spacing:515.760663pt;}
.ws5c{word-spacing:516.067965pt;}
.ws59{word-spacing:519.532418pt;}
.ws36{word-spacing:525.503317pt;}
.ws42{word-spacing:527.383232pt;}
.ws4c{word-spacing:531.154987pt;}
.ws3f{word-spacing:535.436596pt;}
.ws57{word-spacing:538.817395pt;}
.ws35{word-spacing:545.445131pt;}
.ws56{word-spacing:572.335929pt;}
.ws40{word-spacing:598.958594pt;}
._39{margin-left:-39.076907pt;}
._42{margin-left:-14.293867pt;}
._9{margin-left:-8.553707pt;}
._3c{margin-left:-2.099467pt;}
._0{margin-left:-1.075200pt;}
._2b{width:1.694347pt;}
._2f{width:2.599573pt;}
._22{width:3.814400pt;}
._2e{width:4.936747pt;}
._2d{width:6.553600pt;}
._2c{width:7.641600pt;}
._28{width:8.896640pt;}
._21{width:10.028693pt;}
._2a{width:11.383467pt;}
._26{width:12.787200pt;}
._27{width:13.688960pt;}
._29{width:15.096000pt;}
._30{width:16.914880pt;}
._23{width:18.131360pt;}
._24{width:19.050400pt;}
._25{width:19.971093pt;}
._33{width:21.361067pt;}
._32{width:22.480000pt;}
._37{width:24.083200pt;}
._51{width:24.985493pt;}
._36{width:26.329600pt;}
._41{width:27.347200pt;}
._3e{width:28.256000pt;}
._4f{width:29.958400pt;}
._34{width:31.404800pt;}
._53{width:32.876800pt;}
._55{width:33.773227pt;}
._56{width:34.924800pt;}
._54{width:37.196800pt;}
._38{width:39.104000pt;}
._50{width:43.048853pt;}
._52{width:44.435413pt;}
._3f{width:46.993920pt;}
._40{width:47.959040pt;}
._49{width:49.009493pt;}
._4e{width:50.138027pt;}
._48{width:54.425600pt;}
._31{width:56.896000pt;}
._4d{width:58.666667pt;}
._4b{width:71.289600pt;}
._4c{width:82.227200pt;}
._47{width:90.666667pt;}
._4a{width:99.539200pt;}
._46{width:120.376624pt;}
._45{width:123.032413pt;}
._4{width:172.260800pt;}
._3d{width:177.967211pt;}
._11{width:179.220373pt;}
._6{width:202.666667pt;}
._3a{width:207.820800pt;}
._3b{width:211.409493pt;}
._35{width:221.333227pt;}
._44{width:281.600427pt;}
._12{width:451.050027pt;}
._43{width:488.799360pt;}
._1d{width:570.346027pt;}
._17{width:959.636693pt;}
._5{width:1037.908693pt;}
._8{width:1082.282027pt;}
._1f{width:1107.220693pt;}
._7{width:1213.802027pt;}
._19{width:1318.164693pt;}
._10{width:1354.282027pt;}
._1a{width:1396.948693pt;}
._e{width:1398.634027pt;}
._a{width:1412.499733pt;}
._1e{width:1419.988693pt;}
._b{width:1437.802027pt;}
._c{width:1457.492693pt;}
._f{width:1478.634027pt;}
._18{width:1487.572693pt;}
._2{width:1652.948693pt;}
._1c{width:1658.205227pt;}
._3{width:1667.101227pt;}
._15{width:1681.172693pt;}
._20{width:1685.272640pt;}
._1b{width:1700.778027pt;}
._d{width:1720.404693pt;}
._13{width:1819.796693pt;}
._1{width:1866.132693pt;}
._16{width:1956.820693pt;}
._14{width:2250.132693pt;}
.fs9{font-size:42.240000pt;}
.fs8{font-size:44.800000pt;}
.fsd{font-size:45.260133pt;}
.fse{font-size:45.311067pt;}
.fsb{font-size:47.360000pt;}
.fsc{font-size:48.817571pt;}
.fs3{font-size:52.480000pt;}
.fs2{font-size:57.600000pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:69.120000pt;}
.fs1{font-size:74.240000pt;}
.fs4{font-size:79.360000pt;}
.fs6{font-size:89.600000pt;}
.fs7{font-size:116.480000pt;}
.fs5{font-size:153.600000pt;}
.y17f{bottom:-17.600000pt;}
.y183{bottom:-15.040000pt;}
.y17b{bottom:-11.840000pt;}
.yab{bottom:-5.120000pt;}
.ybe{bottom:-4.800000pt;}
.y17e{bottom:-0.320000pt;}
.y0{bottom:0.000000pt;}
.y199{bottom:0.640000pt;}
.y17a{bottom:2.240000pt;}
.y21c{bottom:2.880000pt;}
.yac{bottom:3.200000pt;}
.y2{bottom:3.520000pt;}
.y191{bottom:3.840000pt;}
.y21e{bottom:4.160000pt;}
.y2db{bottom:5.186000pt;}
.y2d5{bottom:5.186049pt;}
.y181{bottom:5.760000pt;}
.y186{bottom:7.040000pt;}
.y290{bottom:10.560000pt;}
.yb8{bottom:10.880000pt;}
.y1ce{bottom:11.520000pt;}
.y2df{bottom:11.766383pt;}
.y2d9{bottom:11.786533pt;}
.yaf{bottom:11.840000pt;}
.y3{bottom:12.000000pt;}
.y1d5{bottom:12.160000pt;}
.y1d4{bottom:12.480000pt;}
.y2de{bottom:12.729413pt;}
.y2b4{bottom:12.800000pt;}
.y2bb{bottom:13.120000pt;}
.y2dc{bottom:15.548630pt;}
.y2d7{bottom:16.501067pt;}
.y1e5{bottom:17.600000pt;}
.y2d4{bottom:19.329835pt;}
.yae{bottom:20.160000pt;}
.yb2{bottom:20.480000pt;}
.y1d0{bottom:24.000000pt;}
.y2af{bottom:24.320000pt;}
.y2b1{bottom:26.240000pt;}
.y2b2{bottom:26.560000pt;}
.y2b6{bottom:26.880000pt;}
.y1{bottom:28.746693pt;}
.yb4{bottom:28.800000pt;}
.y2d3{bottom:33.473635pt;}
.y1d1{bottom:36.800000pt;}
.yb0{bottom:37.120000pt;}
.y2b3{bottom:40.320000pt;}
.y2b7{bottom:40.640000pt;}
.yb9{bottom:45.760000pt;}
.yb7{bottom:46.080000pt;}
.y2d2{bottom:47.617369pt;}
.yba{bottom:54.080000pt;}
.y2d1{bottom:62.704169pt;}
.y2d0{bottom:76.847902pt;}
.y193{bottom:85.440000pt;}
.y178{bottom:87.786693pt;}
.y2ff{bottom:89.386693pt;}
.y297{bottom:90.666693pt;}
.y2cf{bottom:90.991769pt;}
.y6a{bottom:91.626693pt;}
.ycf{bottom:91.946680pt;}
.y1df{bottom:92.586693pt;}
.y105{bottom:92.906693pt;}
.ya8{bottom:93.866693pt;}
.y28d{bottom:94.826693pt;}
.y2c0{bottom:96.426680pt;}
.y13c{bottom:96.746693pt;}
.y283{bottom:98.346693pt;}
.y209{bottom:98.666693pt;}
.y24b{bottom:99.626693pt;}
.y2ad{bottom:100.266693pt;}
.ye4{bottom:103.146693pt;}
.y47{bottom:104.426680pt;}
.y2ce{bottom:105.135502pt;}
.y253{bottom:106.026693pt;}
.y1ae{bottom:107.626693pt;}
.y2c1{bottom:108.146893pt;}
.y23{bottom:109.546693pt;}
.y69{bottom:109.866693pt;}
.y2dd{bottom:110.032720pt;}
.y229{bottom:110.186680pt;}
.y120{bottom:110.506693pt;}
.y170{bottom:111.146693pt;}
.y23c{bottom:112.106693pt;}
.y274{bottom:113.386693pt;}
.y23f{bottom:115.306693pt;}
.y190{bottom:116.426693pt;}
.y187{bottom:116.426707pt;}
.y2fe{bottom:116.906693pt;}
.y2cd{bottom:119.279235pt;}
.yce{bottom:119.786693pt;}
.y1de{bottom:120.106693pt;}
.ya7{bottom:121.706667pt;}
.y18f{bottom:122.026667pt;}
.y28c{bottom:122.666667pt;}
.y104{bottom:122.986667pt;}
.y13b{bottom:124.266667pt;}
.y282{bottom:125.866667pt;}
.y208{bottom:126.186667pt;}
.y24a{bottom:127.146667pt;}
.y2ac{bottom:128.106667pt;}
.y46{bottom:130.666667pt;}
.y217{bottom:131.626667pt;}
.y188{bottom:132.159960pt;}
.y252{bottom:133.546667pt;}
.y296{bottom:134.346667pt;}
.y2cc{bottom:134.366035pt;}
.ye3{bottom:135.146667pt;}
.y258{bottom:135.466667pt;}
.y18e{bottom:136.106667pt;}
.y68{bottom:137.706667pt;}
.y22{bottom:138.026667pt;}
.y16f{bottom:138.666667pt;}
.y23b{bottom:139.626667pt;}
.y273{bottom:140.906667pt;}
.y1f8{bottom:142.826667pt;}
.y2fd{bottom:144.426667pt;}
.ycd{bottom:147.306667pt;}
.y1dd{bottom:147.946667pt;}
.y2cb{bottom:148.509769pt;}
.ya6{bottom:149.226667pt;}
.y103{bottom:150.506667pt;}
.y28b{bottom:151.146667pt;}
.y13a{bottom:152.106667pt;}
.y281{bottom:153.386667pt;}
.y155{bottom:153.706667pt;}
.y249{bottom:154.986667pt;}
.y45{bottom:155.626667pt;}
.y228{bottom:156.266667pt;}
.ye2{bottom:156.586667pt;}
.y16e{bottom:157.226667pt;}
.y216{bottom:159.466667pt;}
.y295{bottom:160.906667pt;}
.y251{bottom:161.066667pt;}
.y2ca{bottom:162.653635pt;}
.y1ad{bottom:162.666667pt;}
.y257{bottom:162.986667pt;}
.y21{bottom:163.306667pt;}
.y18d{bottom:164.906667pt;}
.y67{bottom:165.226667pt;}
.y201{bottom:165.866667pt;}
.y1f0{bottom:166.186667pt;}
.y23a{bottom:167.146667pt;}
.y2e7{bottom:167.466667pt;}
.y2da{bottom:167.550800pt;}
.y272{bottom:168.426667pt;}
.y1f7{bottom:170.346667pt;}
.y2fc{bottom:172.266667pt;}
.y2ab{bottom:173.866667pt;}
.ycc{bottom:174.826667pt;}
.y1dc{bottom:175.466667pt;}
.ya5{bottom:176.746667pt;}
.y2c9{bottom:176.797369pt;}
.y102{bottom:178.346667pt;}
.y18c{bottom:179.306667pt;}
.y139{bottom:179.626667pt;}
.y154{bottom:181.226667pt;}
.y44{bottom:182.186667pt;}
.y248{bottom:182.506667pt;}
.y227{bottom:183.786667pt;}
.y11f{bottom:184.106667pt;}
.y16d{bottom:184.746667pt;}
.y239{bottom:185.706667pt;}
.y20{bottom:186.666667pt;}
.y215{bottom:186.986667pt;}
.y294{bottom:187.146667pt;}
.y1f6{bottom:188.906667pt;}
.y1ac{bottom:190.186667pt;}
.y256{bottom:190.506667pt;}
.y2c8{bottom:191.884035pt;}
.y66{bottom:192.746667pt;}
.y200{bottom:193.386667pt;}
.y18b{bottom:193.706667pt;}
.ya4{bottom:195.306667pt;}
.y271{bottom:196.266667pt;}
.y28a{bottom:197.866667pt;}
.y2fb{bottom:199.786667pt;}
.y2aa{bottom:201.706667pt;}
.ycb{bottom:202.346667pt;}
.y1db{bottom:202.986667pt;}
.y2f7{bottom:204.266667pt;}
.y101{bottom:205.866667pt;}
.y2c7{bottom:206.027902pt;}
.y138{bottom:207.146667pt;}
.y18a{bottom:208.106667pt;}
.y43{bottom:208.426667pt;}
.y1ab{bottom:208.746667pt;}
.y153{bottom:209.066667pt;}
.y247{bottom:210.026667pt;}
.y1f{bottom:210.346667pt;}
.y226{bottom:211.306667pt;}
.y11e{bottom:211.626667pt;}
.y16c{bottom:212.266667pt;}
.y238{bottom:213.226667pt;}
.y293{bottom:213.706667pt;}
.y214{bottom:214.506667pt;}
.y1f5{bottom:216.426667pt;}
.y1c0{bottom:218.026667pt;}
.y2c6{bottom:220.171635pt;}
.y65{bottom:220.266667pt;}
.y1ff{bottom:220.906667pt;}
.y189{bottom:222.506667pt;}
.ya3{bottom:222.826667pt;}
.y270{bottom:223.786667pt;}
.y137{bottom:225.706667pt;}
.y2fa{bottom:227.306667pt;}
.y1e{bottom:227.626667pt;}
.y246{bottom:228.266667pt;}
.y1da{bottom:229.226667pt;}
.yca{bottom:230.186667pt;}
.y2f6{bottom:232.106667pt;}
.y100{bottom:233.386667pt;}
.y2c5{bottom:234.315502pt;}
.y250{bottom:234.666667pt;}
.y42{bottom:234.986667pt;}
.y1aa{bottom:236.266667pt;}
.y152{bottom:236.586667pt;}
.y225{bottom:238.826667pt;}
.y11d{bottom:239.146667pt;}
.y2d8{bottom:239.212667pt;}
.y185{bottom:239.306667pt;}
.y1fe{bottom:239.466667pt;}
.y1ef{bottom:239.786667pt;}
.y16b{bottom:240.106667pt;}
.y292{bottom:240.266667pt;}
.y237{bottom:240.746667pt;}
.y213{bottom:242.026667pt;}
.y1f4{bottom:243.946667pt;}
.y23e{bottom:244.906667pt;}
.y136{bottom:245.546667pt;}
.y255{bottom:245.866667pt;}
.y1d9{bottom:246.506667pt;}
.y1d{bottom:246.826667pt;}
.y64{bottom:248.106667pt;}
.y2c4{bottom:248.459235pt;}
.ya2{bottom:250.346667pt;}
.y26f{bottom:251.306667pt;}
.y289{bottom:253.226667pt;}
.y2f9{bottom:254.826667pt;}
.y245{bottom:256.106667pt;}
.yc9{bottom:257.706667pt;}
.y2f5{bottom:259.626667pt;}
.y1c{bottom:260.266667pt;}
.y212{bottom:260.586667pt;}
.y41{bottom:261.226667pt;}
.y1f3{bottom:262.506667pt;}
.y2c3{bottom:262.603102pt;}
.y1d8{bottom:263.466667pt;}
.y135{bottom:263.786667pt;}
.y151{bottom:264.106667pt;}
.y224{bottom:266.666667pt;}
.y291{bottom:266.826667pt;}
.y11c{bottom:266.986667pt;}
.y16a{bottom:267.626667pt;}
.y85{bottom:268.586667pt;}
.y2e6{bottom:268.906667pt;}
.y236{bottom:269.226667pt;}
.y26e{bottom:269.866667pt;}
.y288{bottom:271.466667pt;}
.y254{bottom:273.386667pt;}
.y63{bottom:275.626667pt;}
.y2a9{bottom:276.906667pt;}
.y2c2{bottom:277.689769pt;}
.ya1{bottom:277.866667pt;}
.y1d7{bottom:280.106667pt;}
.y1b{bottom:280.746667pt;}
.y2f8{bottom:282.666667pt;}
.y244{bottom:283.626667pt;}
.y223{bottom:284.906667pt;}
.yc8{bottom:285.226667pt;}
.y2f4{bottom:287.146667pt;}
.y40{bottom:287.786667pt;}
.y211{bottom:288.106667pt;}
.yff{bottom:288.746667pt;}
.y235{bottom:289.066667pt;}
.y1bf{bottom:290.026667pt;}
.y134{bottom:291.626667pt;}
.y28f{bottom:293.066667pt;}
.y1a{bottom:294.186667pt;}
.y11b{bottom:294.506667pt;}
.y169{bottom:295.146667pt;}
.y184{bottom:295.626667pt;}
.y2e5{bottom:296.426667pt;}
.y2d6{bottom:296.730800pt;}
.y1d6{bottom:297.066667pt;}
.y26d{bottom:297.386667pt;}
.y287{bottom:299.306667pt;}
.y84{bottom:300.906667pt;}
.y62{bottom:303.146667pt;}
.ya0{bottom:305.706667pt;}
.yfe{bottom:306.986667pt;}
.y24f{bottom:308.266667pt;}
.y280{bottom:309.866667pt;}
.y150{bottom:310.186667pt;}
.y243{bottom:311.146667pt;}
.y222{bottom:312.426667pt;}
.yc7{bottom:312.746667pt;}
.y168{bottom:313.706667pt;}
.y3f{bottom:314.026667pt;}
.y2f3{bottom:314.666667pt;}
.y210{bottom:315.626667pt;}
.y19{bottom:316.586667pt;}
.y1be{bottom:317.546667pt;}
.y133{bottom:319.146667pt;}
.y207{bottom:319.466667pt;}
.y28e{bottom:319.626667pt;}
.y234{bottom:321.706667pt;}
.y11a{bottom:322.026667pt;}
.y1ee{bottom:322.666667pt;}
.y1d3{bottom:323.786667pt;}
.y2e4{bottom:323.946667pt;}
.y26c{bottom:324.906667pt;}
.y286{bottom:326.826667pt;}
.y242{bottom:329.386667pt;}
.y61{bottom:330.666667pt;}
.y83{bottom:333.226667pt;}
.yfd{bottom:334.826667pt;}
.y24e{bottom:336.106667pt;}
.y2a8{bottom:336.746667pt;}
.y27f{bottom:337.386667pt;}
.y14f{bottom:337.706667pt;}
.y18{bottom:338.986667pt;}
.yc6{bottom:340.266667pt;}
.y3e{bottom:340.586667pt;}
.y167{bottom:342.186667pt;}
.y2f2{bottom:342.506667pt;}
.y20f{bottom:343.466667pt;}
.y1bd{bottom:345.066667pt;}
.y241{bottom:346.346667pt;}
.y132{bottom:346.666667pt;}
.y23d{bottom:346.986667pt;}
.y182{bottom:349.066667pt;}
.y119{bottom:349.546667pt;}
.y1ed{bottom:350.186667pt;}
.y1d2{bottom:350.666667pt;}
.y2e3{bottom:351.466667pt;}
.y26b{bottom:352.426667pt;}
.y233{bottom:354.026667pt;}
.y285{bottom:354.346667pt;}
.y60{bottom:358.506667pt;}
.yc5{bottom:358.826667pt;}
.y9f{bottom:360.746667pt;}
.y17{bottom:361.066667pt;}
.y166{bottom:361.706667pt;}
.yfc{bottom:362.346667pt;}
.y240{bottom:362.986667pt;}
.y24d{bottom:363.626667pt;}
.y2a7{bottom:364.266667pt;}
.y82{bottom:365.226667pt;}
.y3d{bottom:366.826667pt;}
.y221{bottom:367.786667pt;}
.y1fd{bottom:368.106667pt;}
.y2e2{bottom:370.026667pt;}
.y20e{bottom:370.986667pt;}
.y180{bottom:371.146667pt;}
.y1bc{bottom:372.906667pt;}
.y232{bottom:374.506667pt;}
.y1cf{bottom:376.266667pt;}
.y118{bottom:377.386667pt;}
.y1ec{bottom:378.026667pt;}
.y26a{bottom:380.906667pt;}
.y16{bottom:383.466667pt;}
.y5f{bottom:386.026667pt;}
.yc4{bottom:386.346667pt;}
.y9e{bottom:388.266667pt;}
.y165{bottom:389.546667pt;}
.yfb{bottom:389.866667pt;}
.y1bb{bottom:391.146667pt;}
.y2a6{bottom:391.786667pt;}
.y131{bottom:392.746667pt;}
.y14e{bottom:393.066667pt;}
.y3c{bottom:393.386667pt;}
.y117{bottom:395.626667pt;}
.y81{bottom:397.546667pt;}
.y20d{bottom:399.466667pt;}
.y2e1{bottom:399.786667pt;}
.y269{bottom:400.426667pt;}
.y231{bottom:402.026667pt;}
.y15{bottom:404.266667pt;}
.y220{bottom:404.586667pt;}
.yc3{bottom:404.906667pt;}
.y1eb{bottom:405.546667pt;}
.y9d{bottom:406.826667pt;}
.y27e{bottom:410.986667pt;}
.y17d{bottom:412.426667pt;}
.y5e{bottom:413.546667pt;}
.y2bf{bottom:416.106667pt;}
.y164{bottom:417.066667pt;}
.yfa{bottom:417.386667pt;}
.y14{bottom:417.706667pt;}
.y1ba{bottom:418.666667pt;}
.y3b{bottom:419.626667pt;}
.y130{bottom:420.266667pt;}
.y14d{bottom:420.586667pt;}
.y21f{bottom:422.826667pt;}
.yc2{bottom:423.146667pt;}
.y116{bottom:423.466667pt;}
.y1ea{bottom:423.786667pt;}
.y2f1{bottom:425.066667pt;}
.y80{bottom:427.306667pt;}
.y268{bottom:427.946667pt;}
.y1cd{bottom:428.106667pt;}
.y230{bottom:429.866667pt;}
.y13{bottom:431.146667pt;}
.y9c{bottom:434.346667pt;}
.yf9{bottom:436.266667pt;}
.y14c{bottom:438.826667pt;}
.y1e9{bottom:440.426667pt;}
.y5d{bottom:441.066667pt;}
.yc1{bottom:441.706667pt;}
.y2be{bottom:443.626667pt;}
.y12{bottom:444.266667pt;}
.y163{bottom:444.586667pt;}
.y3a{bottom:446.186667pt;}
.y1b9{bottom:446.506667pt;}
.y17c{bottom:446.666667pt;}
.y2a5{bottom:447.146667pt;}
.y12f{bottom:447.786667pt;}
.y206{bottom:448.106667pt;}
.y21d{bottom:449.546667pt;}
.y115{bottom:450.986667pt;}
.y2f0{bottom:452.906667pt;}
.y7f{bottom:454.826667pt;}
.y267{bottom:455.466667pt;}
.y1e8{bottom:457.386667pt;}
.y11{bottom:457.706667pt;}
.y9b{bottom:461.866667pt;}
.y27d{bottom:466.346667pt;}
.y14b{bottom:466.666667pt;}
.y21b{bottom:468.426667pt;}
.y5c{bottom:468.906667pt;}
.y162{bottom:472.106667pt;}
.y39{bottom:472.426667pt;}
.y1b8{bottom:474.026667pt;}
.y1e7{bottom:474.346667pt;}
.y2a4{bottom:474.666667pt;}
.y10{bottom:474.986667pt;}
.yc0{bottom:475.466667pt;}
.y12e{bottom:475.626667pt;}
.y114{bottom:478.506667pt;}
.yf8{bottom:478.826667pt;}
.y2ef{bottom:480.426667pt;}
.y179{bottom:481.226667pt;}
.y7e{bottom:482.666667pt;}
.y266{bottom:482.986667pt;}
.ye1{bottom:484.266667pt;}
.y22f{bottom:484.906667pt;}
.y21a{bottom:487.306667pt;}
.y9a{bottom:489.706667pt;}
.y1e6{bottom:490.986667pt;}
.y2bd{bottom:491.946667pt;}
.y1f2{bottom:492.266667pt;}
.y2a3{bottom:492.906667pt;}
.y27c{bottom:493.866667pt;}
.y14a{bottom:494.186667pt;}
.y5b{bottom:496.426667pt;}
.yf7{bottom:497.066667pt;}
.y38{bottom:498.986667pt;}
.y161{bottom:499.946667pt;}
.y1b7{bottom:501.546667pt;}
.y24c{bottom:502.506667pt;}
.y12d{bottom:503.146667pt;}
.ybf{bottom:503.306667pt;}
.y205{bottom:503.466667pt;}
.y2ee{bottom:507.946667pt;}
.yf{bottom:509.866667pt;}
.y7d{bottom:510.186667pt;}
.y265{bottom:510.826667pt;}
.ye0{bottom:511.786667pt;}
.y22e{bottom:512.426667pt;}
.y99{bottom:517.226667pt;}
.y1e4{bottom:517.706667pt;}
.y192{bottom:519.306667pt;}
.y1b6{bottom:519.786667pt;}
.y27b{bottom:521.386667pt;}
.y149{bottom:521.706667pt;}
.y198{bottom:522.346667pt;}
.y5a{bottom:523.946667pt;}
.y113{bottom:524.586667pt;}
.yf6{bottom:524.906667pt;}
.y37{bottom:525.226667pt;}
.y2a2{bottom:526.506667pt;}
.y160{bottom:527.466667pt;}
.y1cc{bottom:529.066667pt;}
.y12c{bottom:530.666667pt;}
.y204{bottom:530.986667pt;}
.y2ed{bottom:535.466667pt;}
.y197{bottom:536.426667pt;}
.y7c{bottom:537.706667pt;}
.y264{bottom:538.346667pt;}
.ydf{bottom:539.306667pt;}
.y27a{bottom:539.946667pt;}
.y22d{bottom:540.266667pt;}
.y2a1{bottom:543.466667pt;}
.ye{bottom:544.746667pt;}
.y1b5{bottom:547.626667pt;}
.ybd{bottom:547.786667pt;}
.y148{bottom:549.226667pt;}
.y196{bottom:550.506667pt;}
.y59{bottom:551.466667pt;}
.y36{bottom:551.786667pt;}
.y112{bottom:552.106667pt;}
.yf5{bottom:552.426667pt;}
.y15f{bottom:554.986667pt;}
.y1e3{bottom:555.146667pt;}
.y20c{bottom:556.586667pt;}
.y12b{bottom:558.186667pt;}
.y203{bottom:558.506667pt;}
.y2ec{bottom:562.986667pt;}
.y195{bottom:564.586667pt;}
.y7b{bottom:565.226667pt;}
.y263{bottom:565.866667pt;}
.yde{bottom:566.826667pt;}
.y279{bottom:567.466667pt;}
.y147{bottom:567.786667pt;}
.y2bc{bottom:570.186667pt;}
.y98{bottom:572.266667pt;}
.y1b4{bottom:575.146667pt;}
.ybc{bottom:575.946667pt;}
.y1a9{bottom:576.746667pt;}
.y202{bottom:577.066667pt;}
.y35{bottom:578.026667pt;}
.y194{bottom:578.666667pt;}
.y58{bottom:578.986667pt;}
.y111{bottom:579.626667pt;}
.yd{bottom:579.946667pt;}
.y15e{bottom:582.506667pt;}
.y20b{bottom:584.426667pt;}
.y12a{bottom:586.026667pt;}
.y2eb{bottom:590.826667pt;}
.ydd{bottom:594.666667pt;}
.y7a{bottom:595.306667pt;}
.y278{bottom:595.946667pt;}
.y2ba{bottom:597.706667pt;}
.y110{bottom:598.506667pt;}
.y97{bottom:599.786667pt;}
.y15d{bottom:601.386667pt;}
.y1b3{bottom:602.666667pt;}
.ybb{bottom:603.786667pt;}
.y1a8{bottom:604.266667pt;}
.y34{bottom:604.586667pt;}
.y57{bottom:606.826667pt;}
.y1e2{bottom:606.986667pt;}
.yf4{bottom:607.466667pt;}
.y262{bottom:611.946667pt;}
.y129{bottom:613.546667pt;}
.y219{bottom:613.866667pt;}
.y277{bottom:615.786667pt;}
.y2ea{bottom:618.346667pt;}
.y146{bottom:622.826667pt;}
.y79{bottom:625.066667pt;}
.y2b9{bottom:625.546667pt;}
.y96{bottom:627.626667pt;}
.y177{bottom:628.266667pt;}
.y1b2{bottom:630.186667pt;}
.y33{bottom:630.826667pt;}
.y10f{bottom:631.146667pt;}
.y1a7{bottom:631.786667pt;}
.y128{bottom:632.106667pt;}
.y56{bottom:634.346667pt;}
.yf3{bottom:635.306667pt;}
.y1fc{bottom:635.626667pt;}
.y261{bottom:639.466667pt;}
.ydc{bottom:640.746667pt;}
.y218{bottom:641.386667pt;}
.y95{bottom:645.866667pt;}
.y276{bottom:648.426667pt;}
.y145{bottom:650.666667pt;}
.y78{bottom:652.586667pt;}
.y2b8{bottom:653.066667pt;}
.y1fb{bottom:655.146667pt;}
.y176{bottom:655.786667pt;}
.y32{bottom:657.386667pt;}
.y1b1{bottom:658.026667pt;}
.y1a6{bottom:659.306667pt;}
.y127{bottom:659.626667pt;}
.y55{bottom:661.866667pt;}
.yf2{bottom:662.826667pt;}
.y10e{bottom:663.466667pt;}
.yb6{bottom:665.226667pt;}
.y260{bottom:666.986667pt;}
.y22c{bottom:668.906667pt;}
.y94{bottom:673.386667pt;}
.y15c{bottom:675.626667pt;}
.y1a5{bottom:677.866667pt;}
.y144{bottom:678.186667pt;}
.y77{bottom:680.426667pt;}
.y2b5{bottom:680.586667pt;}
.yc{bottom:681.386667pt;}
.y1fa{bottom:682.666667pt;}
.y31{bottom:683.626667pt;}
.y1b0{bottom:685.546667pt;}
.y284{bottom:686.506667pt;}
.ydb{bottom:687.146667pt;}
.y1e1{bottom:687.466667pt;}
.y54{bottom:689.386667pt;}
.yf1{bottom:690.346667pt;}
.y10d{bottom:693.226667pt;}
.y25f{bottom:694.826667pt;}
.y22b{bottom:696.426667pt;}
.y93{bottom:701.226667pt;}
.y1a4{bottom:705.386667pt;}
.y143{bottom:705.706667pt;}
.y76{bottom:707.946667pt;}
.y15b{bottom:709.866667pt;}
.y30{bottom:710.186667pt;}
.y175{bottom:711.146667pt;}
.yb{bottom:712.106667pt;}
.y1cb{bottom:713.066667pt;}
.y1af{bottom:714.026667pt;}
.yda{bottom:714.666667pt;}
.y1e0{bottom:714.986667pt;}
.y53{bottom:717.226667pt;}
.yf0{bottom:717.866667pt;}
.y10c{bottom:721.066667pt;}
.y25e{bottom:722.346667pt;}
.y2e0{bottom:724.266667pt;}
.y92{bottom:728.746667pt;}
.y174{bottom:729.706667pt;}
.y1ca{bottom:731.626667pt;}
.y1a3{bottom:732.906667pt;}
.y142{bottom:733.226667pt;}
.y75{bottom:735.466667pt;}
.y2b0{bottom:735.946667pt;}
.y2f{bottom:736.426667pt;}
.y25d{bottom:740.586667pt;}
.yd9{bottom:742.186667pt;}
.y126{bottom:742.506667pt;}
.yb5{bottom:743.626667pt;}
.y52{bottom:744.746667pt;}
.yef{bottom:745.706667pt;}
.y10b{bottom:748.586667pt;}
.y15a{bottom:750.826667pt;}
.y275{bottom:751.786667pt;}
.y91{bottom:756.266667pt;}
.y1f9{bottom:758.826667pt;}
.y1c9{bottom:759.146667pt;}
.y173{bottom:759.786667pt;}
.y141{bottom:761.066667pt;}
.y1a2{bottom:761.386667pt;}
.y2e{bottom:762.986667pt;}
.y25c{bottom:768.426667pt;}
.yd8{bottom:769.706667pt;}
.y125{bottom:770.026667pt;}
.y51{bottom:772.266667pt;}
.yee{bottom:773.226667pt;}
.y2e9{bottom:774.826667pt;}
.y10a{bottom:776.106667pt;}
.y159{bottom:778.346667pt;}
.y172{bottom:779.306667pt;}
.y1a1{bottom:780.906667pt;}
.y90{bottom:783.786667pt;}
.y1c8{bottom:786.666667pt;}
.y124{bottom:788.586667pt;}
.y2d{bottom:789.226667pt;}
.y74{bottom:790.826667pt;}
.y2ae{bottom:792.266667pt;}
.y25b{bottom:795.946667pt;}
.yd7{bottom:797.546667pt;}
.y22a{bottom:797.866667pt;}
.y50{bottom:799.786667pt;}
.yed{bottom:800.746667pt;}
.y109{bottom:803.946667pt;}
.y2e8{bottom:804.586667pt;}
.yb3{bottom:805.386667pt;}
.y171{bottom:806.826667pt;}
.y1a0{bottom:810.666667pt;}
.y8f{bottom:811.626667pt;}
.ya{bottom:812.266667pt;}
.y1c7{bottom:814.186667pt;}
.y2c{bottom:815.786667pt;}
.y123{bottom:816.106667pt;}
.y73{bottom:818.346667pt;}
.yec{bottom:819.306667pt;}
.y158{bottom:819.626667pt;}
.y25a{bottom:823.466667pt;}
.y4f{bottom:827.626667pt;}
.y108{bottom:831.466667pt;}
.y19f{bottom:832.106667pt;}
.y140{bottom:834.666667pt;}
.y9{bottom:835.306667pt;}
.y2a0{bottom:835.946667pt;}
.y8e{bottom:839.146667pt;}
.y2b{bottom:842.026667pt;}
.y20a{bottom:842.666667pt;}
.yd6{bottom:843.626667pt;}
.y72{bottom:845.866667pt;}
.yeb{bottom:846.826667pt;}
.y107{bottom:850.346667pt;}
.y8{bottom:853.866667pt;}
.y4e{bottom:855.146667pt;}
.y13f{bottom:862.186667pt;}
.y29f{bottom:863.786667pt;}
.y19e{bottom:864.426667pt;}
.y157{bottom:865.706667pt;}
.y8d{bottom:866.666667pt;}
.yb1{bottom:866.826667pt;}
.y7{bottom:867.306667pt;}
.y2a{bottom:868.586667pt;}
.y1c6{bottom:869.546667pt;}
.y122{bottom:871.146667pt;}
.yd5{bottom:871.466667pt;}
.y106{bottom:871.786667pt;}
.y71{bottom:873.386667pt;}
.yea{bottom:874.346667pt;}
.y6{bottom:877.866667pt;}
.y4d{bottom:882.666667pt;}
.y8c{bottom:885.226667pt;}
.y156{bottom:887.146667pt;}
.y13e{bottom:889.706667pt;}
.y29e{bottom:891.306667pt;}
.y19d{bottom:894.186667pt;}
.y29{bottom:894.826667pt;}
.y1c5{bottom:897.066667pt;}
.y1f1{bottom:898.026667pt;}
.yd4{bottom:898.986667pt;}
.y70{bottom:901.226667pt;}
.ye9{bottom:901.866667pt;}
.y8b{bottom:903.466667pt;}
.y4c{bottom:910.186667pt;}
.y1c4{bottom:915.626667pt;}
.y13d{bottom:917.226667pt;}
.y29d{bottom:918.826667pt;}
.y28{bottom:921.386667pt;}
.y19c{bottom:922.026667pt;}
.y8a{bottom:922.346667pt;}
.y259{bottom:924.586667pt;}
.yd3{bottom:926.506667pt;}
.yad{bottom:928.586667pt;}
.y6f{bottom:928.746667pt;}
.ye8{bottom:929.706667pt;}
.y29c{bottom:937.066667pt;}
.y4b{bottom:938.026667pt;}
.y1c3{bottom:943.146667pt;}
.y89{bottom:943.786667pt;}
.y121{bottom:945.066667pt;}
.y27{bottom:947.626667pt;}
.y19b{bottom:949.546667pt;}
.y29b{bottom:953.706667pt;}
.yd2{bottom:954.026667pt;}
.y6e{bottom:956.266667pt;}
.ye7{bottom:957.226667pt;}
.y88{bottom:965.226667pt;}
.y4a{bottom:965.546667pt;}
.y19a{bottom:967.786667pt;}
.y29a{bottom:969.066667pt;}
.y1c2{bottom:970.666667pt;}
.yd1{bottom:972.586667pt;}
.y26{bottom:974.186667pt;}
.ye6{bottom:976.106667pt;}
.y6d{bottom:983.786667pt;}
.y299{bottom:984.426667pt;}
.yaa{bottom:986.186667pt;}
.y49{bottom:995.626667pt;}
.ye5{bottom:997.546667pt;}
.y87{bottom:997.866667pt;}
.y1c1{bottom:999.146667pt;}
.yd0{bottom:1000.106667pt;}
.y25{bottom:1000.426667pt;}
.y298{bottom:1001.386667pt;}
.y5{bottom:1003.626667pt;}
.ya9{bottom:1006.986667pt;}
.y6c{bottom:1011.626667pt;}
.y4{bottom:1026.986667pt;}
.y24{bottom:1027.306667pt;}
.y48{bottom:1027.626667pt;}
.y6b{bottom:1029.866667pt;}
.y86{bottom:1048.426667pt;}
.h23{height:9.920003pt;}
.h22{height:10.239991pt;}
.h1f{height:12.479980pt;}
.h14{height:16.639973pt;}
.h19{height:16.640013pt;}
.h13{height:16.959960pt;}
.h1a{height:16.960000pt;}
.h2d{height:17.600013pt;}
.h24{height:18.239987pt;}
.h1{height:18.560000pt;}
.h2e{height:18.880000pt;}
.h29{height:25.279987pt;}
.h31{height:25.280013pt;}
.h2a{height:25.600013pt;}
.h34{height:26.240000pt;}
.h32{height:26.240013pt;}
.h33{height:26.560000pt;}
.h2b{height:26.879987pt;}
.h37{height:27.519973pt;}
.h39{height:27.520013pt;}
.h38{height:27.840000pt;}
.he{height:29.859375pt;}
.h3b{height:31.469936pt;}
.h3c{height:32.486521pt;}
.h3e{height:32.523080pt;}
.h28{height:33.485000pt;}
.h1b{height:33.600013pt;}
.h7{height:34.978125pt;}
.h2c{height:37.439987pt;}
.h26{height:38.234074pt;}
.h5{height:38.390625pt;}
.h20{height:39.703125pt;}
.h30{height:39.993750pt;}
.h1e{height:44.437500pt;}
.h21{height:44.515625pt;}
.h2{height:45.250000pt;}
.h6{height:46.048125pt;}
.h8{height:49.481250pt;}
.h16{height:50.540625pt;}
.h15{height:50.559973pt;}
.h18{height:50.560013pt;}
.h12{height:51.159375pt;}
.h4{height:54.048750pt;}
.h35{height:55.039960pt;}
.h36{height:55.360027pt;}
.h3f{height:55.632240pt;}
.h11{height:56.156250pt;}
.h10{height:56.843750pt;}
.h1d{height:61.391250pt;}
.h2f{height:65.141250pt;}
.hf{height:65.938750pt;}
.h1c{height:66.503125pt;}
.h17{height:67.519973pt;}
.hd{height:68.820480pt;}
.h40{height:69.776040pt;}
.h9{height:73.566720pt;}
.hb{height:83.059200pt;}
.h3d{height:83.919840pt;}
.h27{height:96.640013pt;}
.hc{height:107.976960pt;}
.ha{height:136.425000pt;}
.h25{height:144.640000pt;}
.h3a{height:287.590400pt;}
.h3{height:1098.666667pt;}
.h0{height:1122.666667pt;}
.w3{width:8.640015pt;}
.w1{width:12.159993pt;}
.wf{width:17.600013pt;}
.w30{width:33.039320pt;}
.w1b{width:43.520000pt;}
.w17{width:79.680013pt;}
.w1d{width:81.279987pt;}
.w18{width:84.160000pt;}
.w15{width:94.080000pt;}
.w1a{width:99.200013pt;}
.w10{width:104.960000pt;}
.w21{width:105.920000pt;}
.w22{width:107.840000pt;}
.w19{width:110.719987pt;}
.w24{width:113.279987pt;}
.w16{width:119.040000pt;}
.w2e{width:119.680013pt;}
.w14{width:121.600000pt;}
.w23{width:122.879987pt;}
.w2d{width:124.480027pt;}
.w1e{width:125.119960pt;}
.w2a{width:127.040000pt;}
.w20{width:137.280000pt;}
.w28{width:141.760000pt;}
.w2b{width:151.360000pt;}
.w2c{width:155.520000pt;}
.wb{width:156.160000pt;}
.wc{width:156.480000pt;}
.w13{width:157.120000pt;}
.w27{width:160.640000pt;}
.w1f{width:163.520000pt;}
.w12{width:163.840000pt;}
.w26{width:167.040000pt;}
.w4{width:187.840000pt;}
.w25{width:207.040000pt;}
.w6{width:221.760000pt;}
.w11{width:229.760000pt;}
.w7{width:230.720000pt;}
.wa{width:235.200000pt;}
.w29{width:236.160000pt;}
.wd{width:271.360000pt;}
.w8{width:273.280000pt;}
.w1c{width:300.800000pt;}
.w9{width:327.040000pt;}
.we{width:333.760000pt;}
.w5{width:454.400000pt;}
.w2f{width:600.371600pt;}
.w2{width:769.333333pt;}
.w0{width:793.333333pt;}
.x0{left:0.000000pt;}
.x14{left:0.960027pt;}
.x4c{left:7.589200pt;}
.x48{left:8.665733pt;}
.x1b{left:9.600000pt;}
.x4f{left:10.765800pt;}
.x2{left:12.000000pt;}
.x3c{left:13.820667pt;}
.x27{left:15.040000pt;}
.x43{left:16.402320pt;}
.x52{left:17.371733pt;}
.x55{left:18.593333pt;}
.x3d{left:19.940133pt;}
.x39{left:20.954000pt;}
.x1f{left:22.400000pt;}
.x54{left:23.480533pt;}
.x42{left:24.831333pt;}
.x44{left:25.735333pt;}
.x3a{left:27.073467pt;}
.x61{left:28.501067pt;}
.x45{left:29.748667pt;}
.x3f{left:31.752933pt;}
.x2f{left:33.600000pt;}
.x51{left:34.733200pt;}
.x53{left:36.566400pt;}
.x40{left:38.029200pt;}
.x21{left:39.680000pt;}
.x25{left:42.240000pt;}
.x59{left:43.459867pt;}
.x6b{left:44.367097pt;}
.x41{left:45.998000pt;}
.x23{left:47.040000pt;}
.x4e{left:48.331333pt;}
.x1a{left:49.920000pt;}
.x67{left:51.149200pt;}
.x46{left:54.457467pt;}
.x35{left:56.185600pt;}
.x5f{left:57.780600pt;}
.x37{left:60.739880pt;}
.x4{left:63.360027pt;}
.x62{left:66.434400pt;}
.x32{left:68.640000pt;}
.x6a{left:69.854537pt;}
.xb{left:72.028640pt;}
.x13{left:74.400000pt;}
.x69{left:76.383867pt;}
.x28{left:78.720000pt;}
.xa{left:80.447267pt;}
.x58{left:84.432800pt;}
.x11{left:87.360013pt;}
.x4a{left:89.855733pt;}
.x29{left:102.720000pt;}
.x60{left:104.426533pt;}
.x6c{left:106.026693pt;}
.x9{left:107.668947pt;}
.x17{left:111.360013pt;}
.x7{left:118.593413pt;}
.x5a{left:120.093413pt;}
.x2c{left:126.720000pt;}
.x8{left:131.492800pt;}
.x2a{left:159.040000pt;}
.x2b{left:167.360000pt;}
.x47{left:170.720000pt;}
.x33{left:173.600000pt;}
.x63{left:184.480000pt;}
.x38{left:190.240000pt;}
.x5c{left:210.720000pt;}
.x49{left:214.240000pt;}
.x20{left:219.040000pt;}
.x22{left:223.840000pt;}
.x2d{left:231.680000pt;}
.x15{left:264.160000pt;}
.x6{left:266.278667pt;}
.xc{left:269.778000pt;}
.x56{left:281.760000pt;}
.x3b{left:284.320000pt;}
.x1c{left:315.680000pt;}
.x2e{left:327.200000pt;}
.x64{left:335.840000pt;}
.x19{left:341.920000pt;}
.x30{left:348.800000pt;}
.x10{left:350.716533pt;}
.x1d{left:361.440000pt;}
.x5d{left:371.360000pt;}
.x50{left:377.760000pt;}
.x3{left:384.426800pt;}
.x31{left:387.680000pt;}
.x12{left:392.160000pt;}
.x1e{left:401.120000pt;}
.x34{left:403.360000pt;}
.x57{left:404.640000pt;}
.x26{left:407.520000pt;}
.xf{left:475.098000pt;}
.xd{left:477.132533pt;}
.x3e{left:483.040000pt;}
.x5{left:487.093467pt;}
.x65{left:491.360000pt;}
.x5e{left:513.120000pt;}
.x4b{left:515.040000pt;}
.xe{left:517.764000pt;}
.x36{left:567.200000pt;}
.x24{left:578.080000pt;}
.x4d{left:596.320000pt;}
.x66{left:615.840000pt;}
.x5b{left:627.893200pt;}
.x16{left:639.360000pt;}
.x68{left:664.693333pt;}
.x1{left:705.440000pt;}
.x18{left:724.693333pt;}
}




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