
    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_ca868babc8508bb1cb8c1a58.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.006000;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_bf959156e786e69381ea9386.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;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_99d7ce37bd3503008878f616.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.742000;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_a473e94e369f235051a8a519.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.920000;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_29e39b00bc655a7bad1d7cc6.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.703000;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_e639b33d662307e2012f8e60.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.920000;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_43425b7c454aada9b5da1359.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.152000;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_4f9feee5183048b811963ed7.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.945000;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_5414eeeedf18651dcc608115.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.128000;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_dda7544f9ab03ae80c9a6c6e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.888184;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_d12293a1a87ccd5e617192a1.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.684570;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_09595ac849207705be7858ee.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.894043;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_ccf31e38ac31396115f7662d.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.fff{font-family:fff;line-height:1.152000;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_d1700a9e7856d8c5908b3ab2.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.128000;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_4f9feee5183048b811963ed7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.945000;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_f41e69b62fc81f557dba1653.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.152000;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_2f53f6ad15a53822f9d14534.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.128000;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_4f9feee5183048b811963ed7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.945000;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_8220a6489f5fa69ca6f78c45.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.677246;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_43425b7c454aada9b5da1359.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.152000;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_b9de35fc1bb1f3c70a5f4567.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.128000;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_190c5335ae012f4e69950e59.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.945000;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_d6a3c7541b425216ac68f4bd.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.689941;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_43425b7c454aada9b5da1359.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.152000;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_2b90e6357d3282533695b951.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.128000;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_248052510d0fabadfe5390e1.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.945000;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_59accd04e342363ddbedcd5d.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.914000;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_43425b7c454aada9b5da1359.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.152000;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_403c104c52464efaebad8f3a.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.128000;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_681d9179a92bc5898d55aad9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.945000;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_46ca7051b6a6b4f5e30f1d0f.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.704590;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_a1ccfa2508e5ff8a9cc97d43.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.152000;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_55ad941fc14ccd8209319437.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.128000;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_4f9feee5183048b811963ed7.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.945000;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_d8a3f514f076f7234ef5760e.woff2')format("woff");}.ff26{font-family:ff26;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:ff27;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.152000;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_2eb63424d0dd5263a6e67ef0.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_4f9feee5183048b811963ed7.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.152000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_8e9585522345d9e51b6e36b7.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_4f9feee5183048b811963ed7.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_f9a24b4e622abfc29e1e19da.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.152000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_c5355811c95426532c4f5c61.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_f4b4206f7886e4ec356281ca.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.152000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_e5f0554bddc6a798a0e71859.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_4f9feee5183048b811963ed7.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_d428ad1057c58c892b22052c.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.678711;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_429197d40f64f358926f643a.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.152000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_f088d1159d24377013306343.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_198760675fcc95bbdf5cb004.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_59accd04e342363ddbedcd5d.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_04187e5ab9f386ae380399ab.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.877441;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.152000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_272fb64cd7e9fadc599c81d3.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_4f9feee5183048b811963ed7.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.945000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_59accd04e342363ddbedcd5d.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_942dd0324d43863528892b90.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.891113;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.152000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_0428daf71c0a071902df0c48.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.128000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_2dc8610d61c704f6ba40f3aa.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.945000;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:ff42;src:url('chunks/assets/font_b8d5a494098df44ea7ef039d.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.954000;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:ff43;src:url('chunks/assets/font_b2da3cc2d7f945ec05ea2a29.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.677246;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:ff44;src:url('chunks/assets/font_de249332c2eeff88b89dc5d5.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.152000;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:ff45;src:url('chunks/assets/font_b156e59962be6a537dfc67ef.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.128000;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:ff46;src:url('chunks/assets/font_8f02d2f0f49bf74be571a82c.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.945000;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:ff47;src:url('chunks/assets/font_59accd04e342363ddbedcd5d.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.914000;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:ff48;src:url('chunks/assets/font_d8a3f514f076f7234ef5760e.woff2')format("woff");}.ff48{font-family:ff48;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:ff49;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.152000;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:ff4a;src:url('chunks/assets/font_59c54b6b92e65635a1ca844e.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:1.128000;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:ff4b;src:url('chunks/assets/font_95a62a8e7f462441a6d3d7e3.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.945000;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:ff4c;src:url('chunks/assets/font_19bbc72f52a5c651ff63bc4d.woff2')format("woff");}.ff4c{font-family:ff4c;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:ff4d;src:url('chunks/assets/font_01e0ec0d84db1a195359f235.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:1.152000;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:ff4e;src:url('chunks/assets/font_bc15c26e263108f46a41c16e.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.128000;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:ff4f;src:url('chunks/assets/font_95a62a8e7f462441a6d3d7e3.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.945000;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:ff50;src:url('chunks/assets/font_43425b7c454aada9b5da1359.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.152000;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:ff51;src:url('chunks/assets/font_988cecf38f0b3af547d33723.woff2')format("woff");}.ff51{font-family:ff51;line-height:1.128000;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:ff52;src:url('chunks/assets/font_4f9feee5183048b811963ed7.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.945000;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:ff53;src:url('chunks/assets/font_97d4e7755ea1017fe12cdff5.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-11.907000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:10.881000px;}
.ls1a{letter-spacing:-1.566000px;}
.ls17{letter-spacing:-1.512000px;}
.ls15{letter-spacing:-1.500000px;}
.ls11{letter-spacing:-1.350000px;}
.lse{letter-spacing:-1.200000px;}
.ls1b{letter-spacing:-1.139400px;}
.ls16{letter-spacing:-1.080000px;}
.ls1c{letter-spacing:-0.961200px;}
.ls5{letter-spacing:-0.959988px;}
.ls12{letter-spacing:-0.660000px;}
.ls13{letter-spacing:-0.600000px;}
.ls9{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.480600px;}
.ls2{letter-spacing:-0.480000px;}
.lsd{letter-spacing:-0.420000px;}
.ls7{letter-spacing:-0.361800px;}
.ls1{letter-spacing:-0.360000px;}
.ls4{letter-spacing:-0.359996px;}
.ls0{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.426600px;}
.lsb{letter-spacing:0.599400px;}
.ls3{letter-spacing:0.600000px;}
.lsf{letter-spacing:0.720000px;}
.ls6{letter-spacing:0.840000px;}
.lsc{letter-spacing:0.900000px;}
.lsa{letter-spacing:1.080000px;}
.ls14{letter-spacing:15.309000px;}
.ls19{letter-spacing:18.025200px;}
.ls18{letter-spacing:22.447800px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws2{word-spacing:-15.000000px;}
.ws1{word-spacing:-13.500000px;}
.ws3{word-spacing:-12.960000px;}
.ws0{word-spacing:0.000000px;}
._36{margin-left:-8.947504px;}
._2a{margin-left:-5.832000px;}
._29{margin-left:-4.800000px;}
._11{margin-left:-3.396000px;}
._10{margin-left:-2.346000px;}
._12{margin-left:-1.002000px;}
._13{width:1.662000px;}
._8{width:3.468000px;}
._a{width:5.412000px;}
._4{width:7.001599px;}
._2{width:8.370000px;}
._3{width:9.428400px;}
._7{width:10.739936px;}
._d{width:11.777872px;}
._1{width:12.804064px;}
._15{width:14.507936px;}
._14{width:15.864000px;}
._b{width:17.052000px;}
._9{width:18.630000px;}
._6{width:20.466000px;}
._5{width:21.498000px;}
._0{width:23.328000px;}
._e{width:24.924000px;}
._f{width:25.950000px;}
._26{width:27.150000px;}
._2c{width:28.446000px;}
._27{width:29.754000px;}
._30{width:31.020000px;}
._32{width:32.389200px;}
._31{width:34.248000px;}
._2e{width:35.274000px;}
._33{width:36.379800px;}
._34{width:37.415400px;}
._2b{width:38.838000px;}
._28{width:40.224000px;}
._c{width:44.640000px;}
._2f{width:45.870000px;}
._38{width:47.760000px;}
._37{width:52.093200px;}
._35{width:64.870200px;}
._2d{width:110.577550px;}
._20{width:239.587866px;}
._24{width:303.218029px;}
._1a{width:445.376672px;}
._19{width:461.013230px;}
._1c{width:506.493179px;}
._1f{width:524.451942px;}
._21{width:546.496142px;}
._22{width:547.744619px;}
._18{width:576.051211px;}
._1d{width:641.266404px;}
._1b{width:659.746572px;}
._1e{width:692.152866px;}
._23{width:693.329801px;}
._16{width:1217.183164px;}
._17{width:1393.846871px;}
._25{width:1531.273321px;}
.fc1{color:rgb(19,24,22);}
.fc2{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs4{font-size:42.000000px;}
.fsc{font-size:47.999400px;}
.fsf{font-size:54.000000px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fse{font-size:66.000600px;}
.fs9{font-size:71.999400px;}
.fs0{font-size:72.000000px;}
.fs10{font-size:90.000000px;}
.fs8{font-size:95.998800px;}
.fsd{font-size:101.999400px;}
.fs2{font-size:102.000000px;}
.fs7{font-size:108.000000px;}
.fs6{font-size:120.000600px;}
.fsa{font-size:144.000000px;}
.fsb{font-size:150.186000px;}
.fs5{font-size:216.000000px;}
.y0{bottom:0.000000px;}
.y79{bottom:11.336850px;}
.ye3{bottom:46.011000px;}
.ye2{bottom:64.039500px;}
.y5{bottom:66.525004px;}
.y4{bottom:97.125005px;}
.y78{bottom:107.459100px;}
.y203{bottom:107.746500px;}
.yba{bottom:107.749500px;}
.yd0{bottom:107.751000px;}
.ye1{bottom:107.835000px;}
.y2fb{bottom:109.191150px;}
.y254{bottom:109.191300px;}
.y23d{bottom:112.252350px;}
.y23e{bottom:113.698500px;}
.y2e9{bottom:113.700000px;}
.y2c9{bottom:113.701500px;}
.y122{bottom:113.703000px;}
.y27e{bottom:115.228500px;}
.y29e{bottom:115.229100px;}
.y1ea{bottom:115.234500px;}
.y16c{bottom:118.205250px;}
.y33f{bottom:118.205850px;}
.y224{bottom:118.971000px;}
.y1c6{bottom:118.975500px;}
.y111{bottom:119.059500px;}
.y2ce{bottom:119.737500px;}
.y33e{bottom:120.507000px;}
.y377{bottom:122.712000px;}
.y258{bottom:124.243050px;}
.y2fa{bottom:124.243650px;}
.y24f{bottom:124.243800px;}
.y202{bottom:125.689500px;}
.ycf{bottom:125.694000px;}
.y47{bottom:125.778000px;}
.y23c{bottom:127.219800px;}
.y19d{bottom:128.751000px;}
.y27d{bottom:130.195950px;}
.y29d{bottom:130.196550px;}
.y2e8{bottom:131.727000px;}
.y2c8{bottom:131.730000px;}
.y121{bottom:131.731500px;}
.y333{bottom:133.257000px;}
.y16b{bottom:133.257750px;}
.yb3{bottom:133.258773px;}
.y1e9{bottom:133.261500px;}
.y223{bottom:136.999500px;}
.y1c5{bottom:137.004000px;}
.y110{bottom:137.088000px;}
.y376{bottom:137.679450px;}
.y2cd{bottom:137.764500px;}
.y33d{bottom:138.450000px;}
.y2f9{bottom:139.209750px;}
.y24e{bottom:139.209900px;}
.y257{bottom:139.210500px;}
.y22{bottom:139.264499px;}
.y23b{bottom:142.187250px;}
.y243{bottom:142.272300px;}
.y30e{bottom:143.716500px;}
.y19c{bottom:143.717100px;}
.y201{bottom:143.718000px;}
.y46{bottom:143.721000px;}
.yce{bottom:143.722500px;}
.ye0{bottom:143.806500px;}
.y29c{bottom:145.247700px;}
.y27c{bottom:145.248450px;}
.y16a{bottom:148.223850px;}
.y332{bottom:148.224450px;}
.y2e7{bottom:149.755500px;}
.y2c7{bottom:149.758500px;}
.y120{bottom:149.760000px;}
.y1e8{bottom:151.206000px;}
.y378{bottom:152.645550px;}
.y2f8{bottom:154.262250px;}
.y24d{bottom:154.262400px;}
.yf3{bottom:154.263000px;}
.y222{bottom:154.942500px;}
.y1c4{bottom:154.947000px;}
.y10f{bottom:155.031000px;}
.y2cc{bottom:155.707500px;}
.y72{bottom:155.796000px;}
.y27f{bottom:156.478500px;}
.y23a{bottom:157.238400px;}
.y303{bottom:158.008500px;}
.y19b{bottom:158.684550px;}
.y27b{bottom:160.214550px;}
.y29b{bottom:160.215150px;}
.y200{bottom:161.746500px;}
.y45{bottom:161.749500px;}
.ydf{bottom:161.835000px;}
.y169{bottom:163.191300px;}
.y331{bottom:163.191900px;}
.y14e{bottom:166.252350px;}
.y375{bottom:167.698050px;}
.y2e6{bottom:167.698500px;}
.y2c6{bottom:167.701500px;}
.y11f{bottom:167.703000px;}
.y30d{bottom:168.463500px;}
.y2f7{bottom:169.228350px;}
.y24c{bottom:169.228500px;}
.yf2{bottom:169.229100px;}
.y1e7{bottom:169.233000px;}
.ya6{bottom:170.763638px;}
.y239{bottom:172.205850px;}
.yb2{bottom:172.207377px;}
.y221{bottom:172.971000px;}
.y1c3{bottom:172.975500px;}
.y10e{bottom:173.059500px;}
.y19a{bottom:173.735700px;}
.y71{bottom:173.824500px;}
.y302{bottom:174.505500px;}
.y27a{bottom:175.182000px;}
.y29a{bottom:175.267650px;}
.y330{bottom:178.243050px;}
.y168{bottom:178.243800px;}
.y1ff{bottom:179.689500px;}
.y44{bottom:179.692500px;}
.ycd{bottom:179.694000px;}
.yde{bottom:179.778000px;}
.y2cb{bottom:180.453000px;}
.y14d{bottom:181.219800px;}
.y374{bottom:182.665500px;}
.y2f6{bottom:184.195800px;}
.y354{bottom:184.195950px;}
.yf1{bottom:184.196550px;}
.ya5{bottom:184.283869px;}
.y2e5{bottom:185.727000px;}
.y2c5{bottom:185.730000px;}
.y11e{bottom:185.731500px;}
.y238{bottom:187.257000px;}
.y1e6{bottom:187.261500px;}
.y199{bottom:188.703150px;}
.y299{bottom:190.233750px;}
.y279{bottom:190.234500px;}
.y220{bottom:190.999500px;}
.y1c2{bottom:191.004000px;}
.y10d{bottom:191.088000px;}
.y24a{bottom:192.448500px;}
.y167{bottom:193.209900px;}
.y32f{bottom:193.210500px;}
.y14c{bottom:196.187250px;}
.y19{bottom:196.933500px;}
.y1fe{bottom:197.716500px;}
.y373{bottom:197.716650px;}
.y2b0{bottom:197.718000px;}
.yb9{bottom:197.719500px;}
.ycc{bottom:197.721000px;}
.ydd{bottom:197.805000px;}
.yf0{bottom:199.247700px;}
.y2f5{bottom:199.248300px;}
.y353{bottom:199.248450px;}
.y237{bottom:202.224450px;}
.y31d{bottom:203.754000px;}
.y2e4{bottom:203.755500px;}
.y198{bottom:203.755650px;}
.y2c4{bottom:203.758500px;}
.y11d{bottom:203.760000px;}
.ya4{bottom:204.524016px;}
.y278{bottom:205.200600px;}
.y298{bottom:205.201200px;}
.y1e5{bottom:205.204500px;}
.y70{bottom:206.820000px;}
.y166{bottom:208.262400px;}
.y32e{bottom:208.263000px;}
.y21f{bottom:208.942500px;}
.y1c1{bottom:208.947000px;}
.y10c{bottom:209.031000px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y30c{bottom:209.709000px;}
.y242{bottom:210.477000px;}
.y14b{bottom:211.238400px;}
.yb1{bottom:211.240132px;}
.y372{bottom:212.684100px;}
.y2f4{bottom:214.214400px;}
.y352{bottom:214.214550px;}
.yef{bottom:214.215150px;}
.y2af{bottom:215.746500px;}
.y43{bottom:215.748000px;}
.ycb{bottom:215.749500px;}
.ydc{bottom:215.833500px;}
.y236{bottom:217.191900px;}
.y197{bottom:218.721750px;}
.y297{bottom:220.252350px;}
.y277{bottom:220.253100px;}
.y2e3{bottom:221.698500px;}
.y2c3{bottom:221.701500px;}
.y11c{bottom:221.703000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y1fd{bottom:222.463500px;}
.y165{bottom:223.228500px;}
.y32d{bottom:223.229100px;}
.y1e4{bottom:223.233000px;}
.ya3{bottom:224.762963px;}
.y6f{bottom:224.763000px;}
.y14a{bottom:226.205850px;}
.y21e{bottom:226.971000px;}
.y1c0{bottom:226.975500px;}
.y10b{bottom:227.059500px;}
.y371{bottom:227.650200px;}
.y30b{bottom:227.737500px;}
.y31c{bottom:228.501000px;}
.y33c{bottom:228.505500px;}
.y2f3{bottom:229.266900px;}
.y351{bottom:229.267050px;}
.yee{bottom:229.267650px;}
.y235{bottom:232.243050px;}
.y196{bottom:233.689200px;}
.y2ae{bottom:233.689500px;}
.y42{bottom:233.691000px;}
.yca{bottom:233.692500px;}
.ydb{bottom:233.776500px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.y276{bottom:235.219200px;}
.y296{bottom:235.219800px;}
.y164{bottom:238.195950px;}
.y32c{bottom:238.196550px;}
.ya2{bottom:238.284394px;}
.y2e2{bottom:239.727000px;}
.y2c2{bottom:239.730000px;}
.y11b{bottom:239.731500px;}
.y149{bottom:241.257000px;}
.y1e3{bottom:241.261500px;}
.y370{bottom:242.702700px;}
.y6e{bottom:242.791500px;}
.y2f2{bottom:244.233000px;}
.yed{bottom:244.233750px;}
.y350{bottom:244.234500px;}
.y21d{bottom:244.999500px;}
.y1bf{bottom:245.002500px;}
.y10a{bottom:245.088000px;}
.y30a{bottom:245.766000px;}
.y33b{bottom:246.448500px;}
.y234{bottom:247.210500px;}
.y195{bottom:248.740350px;}
.y275{bottom:250.186650px;}
.y295{bottom:250.187250px;}
.yb0{bottom:250.272887px;}
.y2ad{bottom:251.718000px;}
.y41{bottom:251.719500px;}
.ye4{bottom:251.721000px;}
.yda{bottom:251.805000px;}
.ya1{bottom:251.805825px;}
.y32b{bottom:253.247700px;}
.y163{bottom:253.248450px;}
.y148{bottom:256.224450px;}
.y36f{bottom:257.670150px;}
.y2e1{bottom:257.755500px;}
.y11a{bottom:257.758500px;}
.y34f{bottom:259.200600px;}
.yec{bottom:259.201200px;}
.y1e2{bottom:259.204500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y6d{bottom:260.820000px;}
.y233{bottom:262.263000px;}
.y21c{bottom:262.942500px;}
.y1be{bottom:262.947000px;}
.y109{bottom:263.031000px;}
.y194{bottom:263.707800px;}
.y1fc{bottom:263.709000px;}
.y33a{bottom:264.477000px;}
.y294{bottom:265.238400px;}
.y274{bottom:265.239150px;}
.y2f1{bottom:267.453000px;}
.y162{bottom:268.214550px;}
.y32a{bottom:268.215150px;}
.y2ac{bottom:269.745000px;}
.y31b{bottom:269.746500px;}
.y40{bottom:269.748000px;}
.yc9{bottom:269.749500px;}
.yd9{bottom:269.833500px;}
.y147{bottom:271.191900px;}
.ya0{bottom:272.044772px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y36e{bottom:272.636250px;}
.yeb{bottom:274.252350px;}
.y34e{bottom:274.253100px;}
.y2e0{bottom:275.698500px;}
.y119{bottom:275.701500px;}
.y232{bottom:277.229100px;}
.y1e1{bottom:277.233000px;}
.y193{bottom:278.760300px;}
.y273{bottom:280.205250px;}
.y293{bottom:280.205850px;}
.y21b{bottom:280.971000px;}
.y1bd{bottom:280.974000px;}
.y108{bottom:281.059500px;}
.y1fb{bottom:281.737500px;}
.y225{bottom:282.505500px;}
.y161{bottom:283.267050px;}
.y329{bottom:283.267650px;}
.y2ed{bottom:283.951500px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y9f{bottom:285.481004px;}
.y146{bottom:286.243050px;}
.y2ab{bottom:287.688000px;}
.y36d{bottom:287.688750px;}
.y31a{bottom:287.689500px;}
.y3f{bottom:287.691000px;}
.yc8{bottom:287.692500px;}
.yd8{bottom:287.776500px;}
.y34d{bottom:289.219200px;}
.yea{bottom:289.219800px;}
.yaf{bottom:289.221491px;}
.y231{bottom:292.196550px;}
.y192{bottom:293.726400px;}
.y2df{bottom:293.727000px;}
.y118{bottom:293.730000px;}
.y6c{bottom:293.814000px;}
.y292{bottom:295.257000px;}
.y272{bottom:295.257750px;}
.y1e0{bottom:295.261500px;}
.y328{bottom:298.233750px;}
.y160{bottom:298.234500px;}
.y21a{bottom:298.999500px;}
.y9e{bottom:299.002435px;}
.y1bc{bottom:299.002500px;}
.y107{bottom:299.086500px;}
.y309{bottom:299.764500px;}
.y1fa{bottom:299.766000px;}
.y2ea{bottom:300.448500px;}
.y145{bottom:301.210500px;}
.y36c{bottom:302.654850px;}
.y34c{bottom:304.186650px;}
.ye9{bottom:304.187250px;}
.y319{bottom:305.718000px;}
.y3e{bottom:305.719500px;}
.yc7{bottom:305.721000px;}
.yd7{bottom:305.805000px;}
.y230{bottom:307.247700px;}
.y191{bottom:308.693850px;}
.y271{bottom:310.223850px;}
.y291{bottom:310.224450px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y2de{bottom:311.754000px;}
.y2c1{bottom:311.757000px;}
.y6b{bottom:311.758500px;}
.y2aa{bottom:312.519000px;}
.y9d{bottom:312.522666px;}
.y15f{bottom:313.200600px;}
.y327{bottom:313.201200px;}
.y1df{bottom:313.204500px;}
.y144{bottom:316.263000px;}
.y219{bottom:316.942500px;}
.y1bb{bottom:316.945500px;}
.y106{bottom:317.029500px;}
.y36b{bottom:317.707350px;}
.y1f9{bottom:317.709000px;}
.y244{bottom:318.477000px;}
.ye8{bottom:319.238400px;}
.y34b{bottom:319.239150px;}
.y2ff{bottom:320.007000px;}
.y22f{bottom:322.215150px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y190{bottom:323.745000px;}
.y318{bottom:323.746500px;}
.y3d{bottom:323.748000px;}
.yc6{bottom:323.749500px;}
.yd6{bottom:323.833500px;}
.y308{bottom:324.510000px;}
.y270{bottom:325.191300px;}
.y290{bottom:325.191900px;}
.y9c{bottom:326.044097px;}
.y326{bottom:328.252350px;}
.y15e{bottom:328.253100px;}
.yae{bottom:328.254246px;}
.y2c0{bottom:329.700000px;}
.y117{bottom:329.701500px;}
.y6a{bottom:329.785500px;}
.y28{bottom:330.039000px;}
.y143{bottom:331.229100px;}
.y1de{bottom:331.233000px;}
.y36a{bottom:332.674800px;}
.y34a{bottom:334.205250px;}
.ye7{bottom:334.205850px;}
.y218{bottom:334.971000px;}
.y1ba{bottom:334.974000px;}
.y105{bottom:335.058000px;}
.y1f8{bottom:335.737500px;}
.y2dd{bottom:336.501000px;}
.y2fe{bottom:336.505500px;}
.y22e{bottom:337.267650px;}
.y341{bottom:337.950000px;}
.y18f{bottom:338.712450px;}
.y28f{bottom:340.243050px;}
.y26f{bottom:340.243800px;}
.y2eb{bottom:340.498950px;}
.y317{bottom:341.689500px;}
.y3c{bottom:341.691000px;}
.yc5{bottom:341.692500px;}
.yd5{bottom:341.776500px;}
.y15d{bottom:343.219200px;}
.y325{bottom:343.219800px;}
.y142{bottom:346.196550px;}
.y369{bottom:347.640900px;}
.y2bf{bottom:347.728500px;}
.y116{bottom:347.730000px;}
.y10{bottom:348.133500px;}
.y9b{bottom:348.494616px;}
.ye6{bottom:349.257000px;}
.y349{bottom:349.257750px;}
.y1dd{bottom:349.261500px;}
.y22d{bottom:352.233750px;}
.y217{bottom:352.998000px;}
.y1b9{bottom:353.002500px;}
.y104{bottom:353.086500px;}
.y1f7{bottom:353.764500px;}
.y18e{bottom:353.764950px;}
.y2a9{bottom:353.766000px;}
.y150{bottom:354.448500px;}
.y26e{bottom:355.209900px;}
.y28e{bottom:355.210500px;}
.y15c{bottom:358.186650px;}
.y324{bottom:358.187250px;}
.y316{bottom:359.718000px;}
.y3b{bottom:359.719500px;}
.yc4{bottom:359.721000px;}
.yd4{bottom:359.805000px;}
.y141{bottom:361.247700px;}
.y9a{bottom:362.016047px;}
.y368{bottom:362.693400px;}
.y69{bottom:362.781000px;}
.y27{bottom:363.033000px;}
.y348{bottom:364.223850px;}
.y307{bottom:365.755500px;}
.y2be{bottom:365.757000px;}
.y115{bottom:365.758500px;}
.yad{bottom:367.201200px;}
.y1dc{bottom:367.204500px;}
.y18d{bottom:368.731050px;}
.y26d{bottom:370.262400px;}
.y28d{bottom:370.263000px;}
.y216{bottom:370.941000px;}
.y1b8{bottom:370.945500px;}
.y103{bottom:371.029500px;}
.y2a8{bottom:371.709000px;}
.ye5{bottom:372.477000px;}
.y323{bottom:373.238400px;}
.y15b{bottom:373.239150px;}
.y2ef{bottom:374.007000px;}
.y99{bottom:375.537478px;}
.y140{bottom:376.215150px;}
.y367{bottom:377.659500px;}
.y315{bottom:377.745000px;}
.y2dc{bottom:377.746500px;}
.y3a{bottom:377.748000px;}
.yc3{bottom:377.749500px;}
.yd3{bottom:377.833500px;}
.y1f6{bottom:378.510000px;}
.y347{bottom:379.191300px;}
.y68{bottom:380.809500px;}
.y22c{bottom:382.252350px;}
.y18c{bottom:383.698500px;}
.y2bd{bottom:383.700000px;}
.y114{bottom:383.701500px;}
.y26c{bottom:385.228500px;}
.y28c{bottom:385.229100px;}
.y1db{bottom:385.231500px;}
.yf{bottom:386.785499px;}
.y15a{bottom:388.205250px;}
.y322{bottom:388.205850px;}
.y98{bottom:388.973710px;}
.y1b7{bottom:388.974000px;}
.y102{bottom:389.058000px;}
.y2a7{bottom:389.737500px;}
.y2ee{bottom:390.504000px;}
.y13f{bottom:391.267650px;}
.y31f{bottom:391.950000px;}
.y366{bottom:392.712000px;}
.y346{bottom:394.243800px;}
.y215{bottom:395.688000px;}
.y2db{bottom:395.689500px;}
.y39{bottom:395.691000px;}
.yc2{bottom:395.692500px;}
.yd2{bottom:395.776500px;}
.y22b{bottom:397.219800px;}
.y18b{bottom:398.751000px;}
.y26b{bottom:400.195950px;}
.y28b{bottom:400.196550px;}
.y306{bottom:401.727000px;}
.y2bc{bottom:401.728500px;}
.y113{bottom:401.730000px;}
.y314{bottom:402.490500px;}
.y97{bottom:402.493941px;}
.y321{bottom:403.257000px;}
.y159{bottom:403.257750px;}
.y1da{bottom:403.260000px;}
.y13e{bottom:406.233750px;}
.yac{bottom:406.233954px;}
.y1b6{bottom:407.002500px;}
.y101{bottom:407.086500px;}
.y365{bottom:407.679450px;}
.y2a6{bottom:407.766000px;}
.ye{bottom:408.044999px;}
.y31e{bottom:408.448500px;}
.y345{bottom:409.209900px;}
.y320{bottom:409.978500px;}
.y22a{bottom:412.187250px;}
.y18a{bottom:413.717100px;}
.y2da{bottom:413.718000px;}
.y38{bottom:413.719500px;}
.y67{bottom:413.805000px;}
.y28a{bottom:415.247700px;}
.y26a{bottom:415.248450px;}
.y96{bottom:416.015372px;}
.y158{bottom:418.223850px;}
.y1f5{bottom:419.755500px;}
.y2bb{bottom:419.757000px;}
.y134{bottom:419.758500px;}
.y13d{bottom:421.201200px;}
.y1d9{bottom:421.203000px;}
.y364{bottom:422.645550px;}
.y344{bottom:424.262400px;}
.y1b5{bottom:424.945500px;}
.y100{bottom:425.029500px;}
.y2a5{bottom:425.709000px;}
.y112{bottom:426.475500px;}
.y229{bottom:427.238400px;}
.y189{bottom:428.684550px;}
.y95{bottom:429.536803px;}
.y269{bottom:430.214550px;}
.y289{bottom:430.215150px;}
.y2d9{bottom:431.745000px;}
.y37{bottom:431.746500px;}
.yc1{bottom:431.748000px;}
.y66{bottom:431.832000px;}
.y157{bottom:433.191300px;}
.y13c{bottom:436.252350px;}
.y214{bottom:437.019000px;}
.y363{bottom:437.698050px;}
.y1f4{bottom:437.698500px;}
.y2ba{bottom:437.700000px;}
.y133{bottom:437.701500px;}
.y343{bottom:439.228500px;}
.y1d8{bottom:439.231500px;}
.y228{bottom:442.205850px;}
.y26{bottom:442.972327px;}
.y94{bottom:442.973035px;}
.y1b4{bottom:442.974000px;}
.yff{bottom:443.058000px;}
.y188{bottom:443.735700px;}
.y2a4{bottom:443.736000px;}
.y313{bottom:443.737500px;}
.y253{bottom:444.504000px;}
.y268{bottom:445.267050px;}
.y288{bottom:445.267650px;}
.yab{bottom:445.268359px;}
.y156{bottom:448.243800px;}
.y36{bottom:449.691000px;}
.y65{bottom:449.776500px;}
.y13b{bottom:451.219800px;}
.y362{bottom:452.665500px;}
.y213{bottom:454.962000px;}
.y1f3{bottom:455.727000px;}
.y2b9{bottom:455.728500px;}
.y132{bottom:455.730000px;}
.y2d8{bottom:456.490500px;}
.y93{bottom:456.494466px;}
.y227{bottom:457.257000px;}
.y1d7{bottom:457.260000px;}
.y187{bottom:458.703150px;}
.y287{bottom:460.233750px;}
.y267{bottom:460.234500px;}
.y1b3{bottom:461.002500px;}
.yfe{bottom:461.086500px;}
.y312{bottom:461.766000px;}
.y339{bottom:462.447000px;}
.y155{bottom:463.209900px;}
.y2f0{bottom:463.978500px;}
.y13a{bottom:466.187250px;}
.y361{bottom:467.716650px;}
.y35{bottom:467.718000px;}
.yc0{bottom:467.719500px;}
.y64{bottom:467.803500px;}
.y2a3{bottom:468.481500px;}
.y92{bottom:470.015897px;}
.y212{bottom:472.990500px;}
.y1f2{bottom:473.755500px;}
.y186{bottom:473.755650px;}
.y131{bottom:473.757000px;}
.y266{bottom:475.200600px;}
.y286{bottom:475.201200px;}
.y1d6{bottom:475.203000px;}
.y25{bottom:477.496500px;}
.y154{bottom:478.262400px;}
.y1b2{bottom:478.945500px;}
.yfd{bottom:479.029500px;}
.y311{bottom:479.709000px;}
.y226{bottom:480.475500px;}
.y139{bottom:481.238400px;}
.y360{bottom:482.684100px;}
.y91{bottom:483.536128px;}
.yaa{bottom:484.215313px;}
.yd{bottom:484.864502px;}
.y34{bottom:485.746500px;}
.ybf{bottom:485.748000px;}
.y63{bottom:485.832000px;}
.y185{bottom:488.721750px;}
.y285{bottom:490.252350px;}
.y265{bottom:490.253100px;}
.y211{bottom:491.019000px;}
.y1f1{bottom:491.698500px;}
.y2b8{bottom:491.700000px;}
.y130{bottom:491.701500px;}
.y153{bottom:493.228500px;}
.y1d5{bottom:493.231500px;}
.y138{bottom:496.205850px;}
.y90{bottom:496.972360px;}
.y1b1{bottom:496.974000px;}
.yfc{bottom:497.058000px;}
.y35f{bottom:497.650200px;}
.y2d7{bottom:497.737500px;}
.y250{bottom:498.504000px;}
.yc{bottom:502.864502px;}
.y184{bottom:503.689200px;}
.y33{bottom:503.689500px;}
.ybe{bottom:503.691000px;}
.y62{bottom:503.775000px;}
.y264{bottom:505.219200px;}
.y284{bottom:505.219800px;}
.y210{bottom:508.962000px;}
.y305{bottom:509.725500px;}
.y1f0{bottom:509.727000px;}
.y12f{bottom:509.728500px;}
.y8f{bottom:510.493791px;}
.y137{bottom:511.257000px;}
.y1d4{bottom:511.260000px;}
.y35e{bottom:512.702700px;}
.y1b0{bottom:515.001000px;}
.yfb{bottom:515.085000px;}
.y2d6{bottom:515.766000px;}
.y135{bottom:516.447000px;}
.y2fd{bottom:518.570250px;}
.y183{bottom:518.740350px;}
.y263{bottom:520.186650px;}
.y283{bottom:520.187250px;}
.yb{bottom:520.864502px;}
.y2fc{bottom:521.717100px;}
.y32{bottom:521.718000px;}
.ybd{bottom:521.719500px;}
.y61{bottom:521.803500px;}
.ya9{bottom:523.248068px;}
.y8e{bottom:524.015222px;}
.y20f{bottom:526.989000px;}
.y35d{bottom:527.670150px;}
.y1ef{bottom:527.755500px;}
.y12e{bottom:527.757000px;}
.y1d3{bottom:529.203000px;}
.y24{bottom:530.733900px;}
.y1af{bottom:532.944000px;}
.yfa{bottom:533.029500px;}
.y182{bottom:533.707800px;}
.y2d5{bottom:533.709000px;}
.y304{bottom:534.472500px;}
.y136{bottom:534.475500px;}
.y282{bottom:535.238400px;}
.y262{bottom:535.239150px;}
.y301{bottom:536.005500px;}
.y8d{bottom:537.536653px;}
.ya{bottom:538.864499px;}
.y31{bottom:539.746500px;}
.y58{bottom:539.748000px;}
.y60{bottom:539.832000px;}
.y35c{bottom:542.636250px;}
.y1ee{bottom:545.698500px;}
.y12d{bottom:545.700000px;}
.y1d2{bottom:547.231500px;}
.y181{bottom:548.760300px;}
.y261{bottom:550.205250px;}
.y281{bottom:550.205850px;}
.y1ae{bottom:550.972500px;}
.y8c{bottom:550.972885px;}
.yf9{bottom:551.056500px;}
.y20e{bottom:551.736000px;}
.y2d4{bottom:551.737500px;}
.y240{bottom:552.504000px;}
.y9{bottom:556.864499px;}
.y35b{bottom:557.688750px;}
.y30{bottom:557.689500px;}
.y57{bottom:557.691000px;}
.y5f{bottom:557.775000px;}
.ya8{bottom:562.196672px;}
.y180{bottom:563.726400px;}
.y1ed{bottom:563.727000px;}
.y12c{bottom:563.728500px;}
.y280{bottom:565.257000px;}
.y260{bottom:565.257750px;}
.y1d1{bottom:565.260000px;}
.y1ad{bottom:569.001000px;}
.yf8{bottom:569.085000px;}
.y2d3{bottom:569.764500px;}
.y23f{bottom:570.447000px;}
.y8b{bottom:571.297031px;}
.y340{bottom:571.977000px;}
.y35a{bottom:572.654850px;}
.y2f{bottom:575.718000px;}
.y56{bottom:575.719500px;}
.y5e{bottom:575.803500px;}
.y310{bottom:576.481500px;}
.y17f{bottom:578.693850px;}
.y25f{bottom:580.223850px;}
.y1ec{bottom:581.754000px;}
.y2a2{bottom:581.755500px;}
.y12b{bottom:581.757000px;}
.y1d0{bottom:583.203000px;}
.y8a{bottom:584.733263px;}
.y1ac{bottom:586.944000px;}
.yf7{bottom:587.028000px;}
.y359{bottom:587.707350px;}
.y2d2{bottom:587.707500px;}
.y77{bottom:587.880000px;}
.y151{bottom:588.475500px;}
.y23{bottom:589.237500px;}
.y20d{bottom:592.981500px;}
.y17e{bottom:593.745000px;}
.y2e{bottom:593.746500px;}
.y55{bottom:593.748000px;}
.y5d{bottom:593.832000px;}
.y25e{bottom:595.191300px;}
.y89{bottom:598.254694px;}
.y2a1{bottom:599.698500px;}
.y12a{bottom:599.700000px;}
.y1cf{bottom:601.231500px;}
.y358{bottom:602.674800px;}
.y1ab{bottom:604.972500px;}
.yf6{bottom:605.056500px;}
.y1eb{bottom:606.501000px;}
.y251{bottom:606.504000px;}
.ya7{bottom:608.712245px;}
.y17d{bottom:608.712450px;}
.y25d{bottom:610.243800px;}
.y20c{bottom:611.010000px;}
.y2d{bottom:611.689500px;}
.y54{bottom:611.691000px;}
.y5c{bottom:611.775000px;}
.y2d1{bottom:612.453000px;}
.y357{bottom:617.640900px;}
.y2a0{bottom:617.725500px;}
.y2b7{bottom:617.727000px;}
.y129{bottom:617.728500px;}
.y76{bottom:617.812200px;}
.y1ce{bottom:619.258500px;}
.y88{bottom:620.789213px;}
.y1aa{bottom:623.001000px;}
.yf5{bottom:623.085000px;}
.y17c{bottom:623.764950px;}
.y255{bottom:624.447000px;}
.y25c{bottom:625.209900px;}
.y20b{bottom:628.953000px;}
.y2c{bottom:629.718000px;}
.y53{bottom:629.719500px;}
.y5b{bottom:629.803500px;}
.y356{bottom:632.693400px;}
.y87{bottom:634.225445px;}
.y2b6{bottom:635.755500px;}
.y128{bottom:635.757000px;}
.y1cd{bottom:637.203000px;}
.y17b{bottom:638.731050px;}
.y25b{bottom:640.262400px;}
.y1a9{bottom:640.944000px;}
.y29f{bottom:642.472500px;}
.y252{bottom:642.474000px;}
.y8{bottom:645.510000px;}
.y20a{bottom:646.981500px;}
.y355{bottom:647.659500px;}
.y2b{bottom:647.745000px;}
.y52{bottom:647.746500px;}
.y86{bottom:647.746876px;}
.y5a{bottom:647.830500px;}
.y75{bottom:647.830800px;}
.y17a{bottom:653.698500px;}
.y127{bottom:653.700000px;}
.y25a{bottom:655.228500px;}
.y1cc{bottom:655.230000px;}
.y1a8{bottom:658.972500px;}
.y300{bottom:660.502500px;}
.y2ec{bottom:661.948500px;}
.y209{bottom:665.008500px;}
.y51{bottom:665.691000px;}
.y7{bottom:666.771000px;}
.y179{bottom:668.751000px;}
.y85{bottom:668.751413px;}
.y2b5{bottom:671.727000px;}
.y126{bottom:671.728500px;}
.y29{bottom:672.321000px;}
.y1cb{bottom:673.258500px;}
.y1a7{bottom:677.001000px;}
.y241{bottom:678.445500px;}
.y84{bottom:682.272844px;}
.y208{bottom:682.951500px;}
.y178{bottom:683.717100px;}
.ybc{bottom:683.718000px;}
.y2b4{bottom:689.755500px;}
.y125{bottom:689.757000px;}
.y1ca{bottom:691.201500px;}
.y1a6{bottom:694.944000px;}
.y83{bottom:695.794275px;}
.y24b{bottom:696.474000px;}
.y177{bottom:698.684550px;}
.y50{bottom:701.746500px;}
.y207{bottom:707.697000px;}
.y2b3{bottom:707.698500px;}
.y124{bottom:707.700000px;}
.y1c9{bottom:709.230000px;}
.y82{bottom:709.230507px;}
.y1a5{bottom:712.972500px;}
.y176{bottom:713.735700px;}
.y152{bottom:714.502500px;}
.y342{bottom:715.948500px;}
.yb7{bottom:717.137867px;}
.y4f{bottom:719.689500px;}
.y249{bottom:725.727000px;}
.y6{bottom:726.298500px;}
.y336{bottom:727.258500px;}
.y175{bottom:728.703150px;}
.y81{bottom:729.554653px;}
.y1a4{bottom:730.999500px;}
.y123{bottom:732.445500px;}
.y1c8{bottom:733.977000px;}
.y4e{bottom:737.718000px;}
.y80{bottom:742.990885px;}
.y2d0{bottom:743.754000px;}
.y248{bottom:743.755500px;}
.y174{bottom:743.755650px;}
.y206{bottom:748.942500px;}
.y1a3{bottom:748.944000px;}
.y1c7{bottom:750.474000px;}
.y335{bottom:752.004000px;}
.y3{bottom:752.599495px;}
.y4d{bottom:755.746500px;}
.y173{bottom:758.721750px;}
.y247{bottom:761.698500px;}
.y7f{bottom:763.229832px;}
.yb6{bottom:766.206013px;}
.y1a2{bottom:766.971000px;}
.y2cf{bottom:768.501000px;}
.y259{bottom:768.502500px;}
.y172{bottom:773.689200px;}
.y4c{bottom:773.689500px;}
.y74{bottom:778.451400px;}
.y2b2{bottom:779.725500px;}
.y246{bottom:779.727000px;}
.y334{bottom:781.936500px;}
.y7e{bottom:784.234370px;}
.y1a1{bottom:784.999500px;}
.y256{bottom:786.445500px;}
.y171{bottom:788.740350px;}
.y4b{bottom:791.718000px;}
.y7d{bottom:797.755801px;}
.y1a0{bottom:802.942500px;}
.y170{bottom:803.707800px;}
.y2b1{bottom:804.472500px;}
.y245{bottom:804.474000px;}
.yb5{bottom:805.238768px;}
.y73{bottom:808.470000px;}
.y4a{bottom:809.746500px;}
.yf4{bottom:810.424500px;}
.y14f{bottom:815.955618px;}
.ybb{bottom:818.760000px;}
.y16f{bottom:818.760300px;}
.y7c{bottom:818.760338px;}
.y19f{bottom:820.971000px;}
.y338{bottom:822.502500px;}
.yb4{bottom:824.712245px;}
.yd1{bottom:827.689500px;}
.y7b{bottom:832.281769px;}
.y16e{bottom:833.726400px;}
.y205{bottom:838.998000px;}
.y19e{bottom:838.999500px;}
.y2a{bottom:844.441500px;}
.y59{bottom:845.716500px;}
.y49{bottom:845.718000px;}
.y7a{bottom:845.802000px;}
.y337{bottom:847.248000px;}
.y16d{bottom:848.693850px;}
.y48{bottom:863.745000px;}
.y2{bottom:879.369000px;}
.y30f{bottom:897.754500px;}
.y204{bottom:897.756000px;}
.y2ca{bottom:897.759000px;}
.yb8{bottom:897.760500px;}
.y1{bottom:966.726000px;}
.h8{height:32.130000px;}
.h9{height:32.172000px;}
.h19{height:34.415570px;}
.h22{height:36.571289px;}
.h1f{height:37.908000px;}
.h20{height:38.718000px;}
.h13{height:43.020000px;}
.h18{height:43.967450px;}
.h7{height:45.960000px;}
.h1b{height:47.322430px;}
.h3{height:48.195000px;}
.h6{height:48.258000px;}
.h1d{height:49.464000px;}
.h16{height:49.893900px;}
.h23{height:50.144400px;}
.h24{height:50.760000px;}
.h10{height:54.960000px;}
.h2{height:55.152000px;}
.h11{height:56.400000px;}
.h21{height:60.345000px;}
.h1c{height:60.456550px;}
.he{height:67.199160px;}
.h12{height:67.679436px;}
.hd{height:75.600000px;}
.h5{height:78.132000px;}
.h1e{height:82.440000px;}
.hc{height:87.840439px;}
.h1a{height:95.879436px;}
.h15{height:98.928000px;}
.hf{height:101.520000px;}
.h4{height:119.055004px;}
.h14{height:135.360000px;}
.h17{height:147.399346px;}
.hb{height:158.112000px;}
.ha{height:972.000000px;}
.h0{height:1262.833500px;}
.h1{height:1263.000000px;}
.w4{width:36.458250px;}
.w2{width:637.794021px;}
.w3{width:648.000000px;}
.w0{width:892.912500px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.xe{left:18.229500px;}
.x9{left:54.510150px;}
.x7{left:66.925950px;}
.x11{left:84.019350px;}
.xc{left:85.039350px;}
.xd{left:86.539350px;}
.x10{left:93.289779px;}
.x15{left:97.881600px;}
.x1b{left:100.004850px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.xf{left:112.081800px;}
.x1c{left:119.138850px;}
.x26{left:126.622350px;}
.x16{left:131.811000px;}
.xa{left:140.740050px;}
.x23{left:144.566200px;}
.x5{left:151.540500px;}
.xb{left:155.112000px;}
.x8{left:174.329487px;}
.x6{left:202.478700px;}
.x4{left:203.484001px;}
.x24{left:206.304600px;}
.x2b{left:222.971850px;}
.x27{left:232.837350px;}
.x28{left:243.552300px;}
.x2a{left:245.336850px;}
.x1a{left:252.734850px;}
.x19{left:256.647600px;}
.x1f{left:267.446850px;}
.x18{left:275.610600px;}
.x29{left:277.310850px;}
.x1e{left:281.648850px;}
.x17{left:283.093350px;}
.x20{left:297.296100px;}
.x1d{left:300.101850px;}
.x25{left:303.334350px;}
.x21{left:308.096100px;}
.x2c{left:332.503800px;}
.x2d{left:349.511100px;}
.x22{left:353.420850px;}
.x13{left:360.904350px;}
.x12{left:419.241600px;}
.x3{left:454.959000px;}
.x14{left:463.291350px;}
.x2e{left:489.826500px;}
@media print{
.v2{vertical-align:-10.584000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:9.672000pt;}
.ls1a{letter-spacing:-1.392000pt;}
.ls17{letter-spacing:-1.344000pt;}
.ls15{letter-spacing:-1.333333pt;}
.ls11{letter-spacing:-1.200000pt;}
.lse{letter-spacing:-1.066667pt;}
.ls1b{letter-spacing:-1.012800pt;}
.ls16{letter-spacing:-0.960000pt;}
.ls1c{letter-spacing:-0.854400pt;}
.ls5{letter-spacing:-0.853323pt;}
.ls12{letter-spacing:-0.586667pt;}
.ls13{letter-spacing:-0.533333pt;}
.ls9{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.427200pt;}
.ls2{letter-spacing:-0.426667pt;}
.lsd{letter-spacing:-0.373333pt;}
.ls7{letter-spacing:-0.321600pt;}
.ls1{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:-0.319996pt;}
.ls0{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.379200pt;}
.lsb{letter-spacing:0.532800pt;}
.ls3{letter-spacing:0.533333pt;}
.lsf{letter-spacing:0.640000pt;}
.ls6{letter-spacing:0.746667pt;}
.lsc{letter-spacing:0.800000pt;}
.lsa{letter-spacing:0.960000pt;}
.ls14{letter-spacing:13.608000pt;}
.ls19{letter-spacing:16.022400pt;}
.ls18{letter-spacing:19.953600pt;}
.ws2{word-spacing:-13.333333pt;}
.ws1{word-spacing:-12.000000pt;}
.ws3{word-spacing:-11.520000pt;}
.ws0{word-spacing:0.000000pt;}
._36{margin-left:-7.953337pt;}
._2a{margin-left:-5.184000pt;}
._29{margin-left:-4.266667pt;}
._11{margin-left:-3.018667pt;}
._10{margin-left:-2.085333pt;}
._12{margin-left:-0.890667pt;}
._13{width:1.477333pt;}
._8{width:3.082667pt;}
._a{width:4.810667pt;}
._4{width:6.223643pt;}
._2{width:7.440000pt;}
._3{width:8.380800pt;}
._7{width:9.546610pt;}
._d{width:10.469220pt;}
._1{width:11.381390pt;}
._15{width:12.895943pt;}
._14{width:14.101333pt;}
._b{width:15.157333pt;}
._9{width:16.560000pt;}
._6{width:18.192000pt;}
._5{width:19.109333pt;}
._0{width:20.736000pt;}
._e{width:22.154667pt;}
._f{width:23.066667pt;}
._26{width:24.133333pt;}
._2c{width:25.285333pt;}
._27{width:26.448000pt;}
._30{width:27.573333pt;}
._32{width:28.790400pt;}
._31{width:30.442667pt;}
._2e{width:31.354667pt;}
._33{width:32.337600pt;}
._34{width:33.258133pt;}
._2b{width:34.522667pt;}
._28{width:35.754667pt;}
._c{width:39.680000pt;}
._2f{width:40.773333pt;}
._38{width:42.453333pt;}
._37{width:46.305067pt;}
._35{width:57.662400pt;}
._2d{width:98.291155pt;}
._20{width:212.966992pt;}
._24{width:269.527137pt;}
._1a{width:395.890375pt;}
._19{width:409.789538pt;}
._1c{width:450.216159pt;}
._1f{width:466.179504pt;}
._21{width:485.774349pt;}
._22{width:486.884105pt;}
._18{width:512.045521pt;}
._1d{width:570.014581pt;}
._1b{width:586.441397pt;}
._1e{width:615.246992pt;}
._23{width:616.293157pt;}
._16{width:1081.940590pt;}
._17{width:1238.974997pt;}
._25{width:1361.131840pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.666133pt;}
.fsf{font-size:48.000000pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fse{font-size:58.667200pt;}
.fs9{font-size:63.999467pt;}
.fs0{font-size:64.000000pt;}
.fs10{font-size:80.000000pt;}
.fs8{font-size:85.332267pt;}
.fsd{font-size:90.666133pt;}
.fs2{font-size:90.666667pt;}
.fs7{font-size:96.000000pt;}
.fs6{font-size:106.667200pt;}
.fsa{font-size:128.000000pt;}
.fsb{font-size:133.498667pt;}
.fs5{font-size:192.000000pt;}
.y0{bottom:0.000000pt;}
.y79{bottom:10.077200pt;}
.ye3{bottom:40.898667pt;}
.ye2{bottom:56.924000pt;}
.y5{bottom:59.133337pt;}
.y4{bottom:86.333337pt;}
.y78{bottom:95.519200pt;}
.y203{bottom:95.774667pt;}
.yba{bottom:95.777333pt;}
.yd0{bottom:95.778667pt;}
.ye1{bottom:95.853333pt;}
.y2fb{bottom:97.058800pt;}
.y254{bottom:97.058933pt;}
.y23d{bottom:99.779867pt;}
.y23e{bottom:101.065333pt;}
.y2e9{bottom:101.066667pt;}
.y2c9{bottom:101.068000pt;}
.y122{bottom:101.069333pt;}
.y27e{bottom:102.425333pt;}
.y29e{bottom:102.425867pt;}
.y1ea{bottom:102.430667pt;}
.y16c{bottom:105.071333pt;}
.y33f{bottom:105.071867pt;}
.y224{bottom:105.752000pt;}
.y1c6{bottom:105.756000pt;}
.y111{bottom:105.830667pt;}
.y2ce{bottom:106.433333pt;}
.y33e{bottom:107.117333pt;}
.y377{bottom:109.077333pt;}
.y258{bottom:110.438267pt;}
.y2fa{bottom:110.438800pt;}
.y24f{bottom:110.438933pt;}
.y202{bottom:111.724000pt;}
.ycf{bottom:111.728000pt;}
.y47{bottom:111.802667pt;}
.y23c{bottom:113.084267pt;}
.y19d{bottom:114.445333pt;}
.y27d{bottom:115.729733pt;}
.y29d{bottom:115.730267pt;}
.y2e8{bottom:117.090667pt;}
.y2c8{bottom:117.093333pt;}
.y121{bottom:117.094667pt;}
.y333{bottom:118.450667pt;}
.y16b{bottom:118.451333pt;}
.yb3{bottom:118.452243pt;}
.y1e9{bottom:118.454667pt;}
.y223{bottom:121.777333pt;}
.y1c5{bottom:121.781333pt;}
.y110{bottom:121.856000pt;}
.y376{bottom:122.381733pt;}
.y2cd{bottom:122.457333pt;}
.y33d{bottom:123.066667pt;}
.y2f9{bottom:123.742000pt;}
.y24e{bottom:123.742133pt;}
.y257{bottom:123.742667pt;}
.y22{bottom:123.790666pt;}
.y23b{bottom:126.388667pt;}
.y243{bottom:126.464267pt;}
.y30e{bottom:127.748000pt;}
.y19c{bottom:127.748533pt;}
.y201{bottom:127.749333pt;}
.y46{bottom:127.752000pt;}
.yce{bottom:127.753333pt;}
.ye0{bottom:127.828000pt;}
.y29c{bottom:129.109067pt;}
.y27c{bottom:129.109733pt;}
.y16a{bottom:131.754533pt;}
.y332{bottom:131.755067pt;}
.y2e7{bottom:133.116000pt;}
.y2c7{bottom:133.118667pt;}
.y120{bottom:133.120000pt;}
.y1e8{bottom:134.405333pt;}
.y378{bottom:135.684933pt;}
.y2f8{bottom:137.122000pt;}
.y24d{bottom:137.122133pt;}
.yf3{bottom:137.122667pt;}
.y222{bottom:137.726667pt;}
.y1c4{bottom:137.730667pt;}
.y10f{bottom:137.805333pt;}
.y2cc{bottom:138.406667pt;}
.y72{bottom:138.485333pt;}
.y27f{bottom:139.092000pt;}
.y23a{bottom:139.767467pt;}
.y303{bottom:140.452000pt;}
.y19b{bottom:141.052933pt;}
.y27b{bottom:142.412933pt;}
.y29b{bottom:142.413467pt;}
.y200{bottom:143.774667pt;}
.y45{bottom:143.777333pt;}
.ydf{bottom:143.853333pt;}
.y169{bottom:145.058933pt;}
.y331{bottom:145.059467pt;}
.y14e{bottom:147.779867pt;}
.y375{bottom:149.064933pt;}
.y2e6{bottom:149.065333pt;}
.y2c6{bottom:149.068000pt;}
.y11f{bottom:149.069333pt;}
.y30d{bottom:149.745333pt;}
.y2f7{bottom:150.425200pt;}
.y24c{bottom:150.425333pt;}
.yf2{bottom:150.425867pt;}
.y1e7{bottom:150.429333pt;}
.ya6{bottom:151.789901pt;}
.y239{bottom:153.071867pt;}
.yb2{bottom:153.073224pt;}
.y221{bottom:153.752000pt;}
.y1c3{bottom:153.756000pt;}
.y10e{bottom:153.830667pt;}
.y19a{bottom:154.431733pt;}
.y71{bottom:154.510667pt;}
.y302{bottom:155.116000pt;}
.y27a{bottom:155.717333pt;}
.y29a{bottom:155.793467pt;}
.y330{bottom:158.438267pt;}
.y168{bottom:158.438933pt;}
.y1ff{bottom:159.724000pt;}
.y44{bottom:159.726667pt;}
.ycd{bottom:159.728000pt;}
.yde{bottom:159.802667pt;}
.y2cb{bottom:160.402667pt;}
.y14d{bottom:161.084267pt;}
.y374{bottom:162.369333pt;}
.y2f6{bottom:163.729600pt;}
.y354{bottom:163.729733pt;}
.yf1{bottom:163.730267pt;}
.ya5{bottom:163.807884pt;}
.y2e5{bottom:165.090667pt;}
.y2c5{bottom:165.093333pt;}
.y11e{bottom:165.094667pt;}
.y238{bottom:166.450667pt;}
.y1e6{bottom:166.454667pt;}
.y199{bottom:167.736133pt;}
.y299{bottom:169.096667pt;}
.y279{bottom:169.097333pt;}
.y220{bottom:169.777333pt;}
.y1c2{bottom:169.781333pt;}
.y10d{bottom:169.856000pt;}
.y24a{bottom:171.065333pt;}
.y167{bottom:171.742133pt;}
.y32f{bottom:171.742667pt;}
.y14c{bottom:174.388667pt;}
.y19{bottom:175.052000pt;}
.y1fe{bottom:175.748000pt;}
.y373{bottom:175.748133pt;}
.y2b0{bottom:175.749333pt;}
.yb9{bottom:175.750667pt;}
.ycc{bottom:175.752000pt;}
.ydd{bottom:175.826667pt;}
.yf0{bottom:177.109067pt;}
.y2f5{bottom:177.109600pt;}
.y353{bottom:177.109733pt;}
.y237{bottom:179.755067pt;}
.y31d{bottom:181.114667pt;}
.y2e4{bottom:181.116000pt;}
.y198{bottom:181.116133pt;}
.y2c4{bottom:181.118667pt;}
.y11d{bottom:181.120000pt;}
.ya4{bottom:181.799125pt;}
.y278{bottom:182.400533pt;}
.y298{bottom:182.401067pt;}
.y1e5{bottom:182.404000pt;}
.y70{bottom:183.840000pt;}
.y166{bottom:185.122133pt;}
.y32e{bottom:185.122667pt;}
.y21f{bottom:185.726667pt;}
.y1c1{bottom:185.730667pt;}
.y10c{bottom:185.805333pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y30c{bottom:186.408000pt;}
.y242{bottom:187.090667pt;}
.y14b{bottom:187.767467pt;}
.yb1{bottom:187.769006pt;}
.y372{bottom:189.052533pt;}
.y2f4{bottom:190.412800pt;}
.y352{bottom:190.412933pt;}
.yef{bottom:190.413467pt;}
.y2af{bottom:191.774667pt;}
.y43{bottom:191.776000pt;}
.ycb{bottom:191.777333pt;}
.ydc{bottom:191.852000pt;}
.y236{bottom:193.059467pt;}
.y197{bottom:194.419333pt;}
.y297{bottom:195.779867pt;}
.y277{bottom:195.780533pt;}
.y2e3{bottom:197.065333pt;}
.y2c3{bottom:197.068000pt;}
.y11c{bottom:197.069333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y1fd{bottom:197.745333pt;}
.y165{bottom:198.425333pt;}
.y32d{bottom:198.425867pt;}
.y1e4{bottom:198.429333pt;}
.ya3{bottom:199.789301pt;}
.y6f{bottom:199.789333pt;}
.y14a{bottom:201.071867pt;}
.y21e{bottom:201.752000pt;}
.y1c0{bottom:201.756000pt;}
.y10b{bottom:201.830667pt;}
.y371{bottom:202.355733pt;}
.y30b{bottom:202.433333pt;}
.y31c{bottom:203.112000pt;}
.y33c{bottom:203.116000pt;}
.y2f3{bottom:203.792800pt;}
.y351{bottom:203.792933pt;}
.yee{bottom:203.793467pt;}
.y235{bottom:206.438267pt;}
.y196{bottom:207.723733pt;}
.y2ae{bottom:207.724000pt;}
.y42{bottom:207.725333pt;}
.yca{bottom:207.726667pt;}
.ydb{bottom:207.801333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.y276{bottom:209.083733pt;}
.y296{bottom:209.084267pt;}
.y164{bottom:211.729733pt;}
.y32c{bottom:211.730267pt;}
.ya2{bottom:211.808350pt;}
.y2e2{bottom:213.090667pt;}
.y2c2{bottom:213.093333pt;}
.y11b{bottom:213.094667pt;}
.y149{bottom:214.450667pt;}
.y1e3{bottom:214.454667pt;}
.y370{bottom:215.735733pt;}
.y6e{bottom:215.814667pt;}
.y2f2{bottom:217.096000pt;}
.yed{bottom:217.096667pt;}
.y350{bottom:217.097333pt;}
.y21d{bottom:217.777333pt;}
.y1bf{bottom:217.780000pt;}
.y10a{bottom:217.856000pt;}
.y30a{bottom:218.458667pt;}
.y33b{bottom:219.065333pt;}
.y234{bottom:219.742667pt;}
.y195{bottom:221.102533pt;}
.y275{bottom:222.388133pt;}
.y295{bottom:222.388667pt;}
.yb0{bottom:222.464788pt;}
.y2ad{bottom:223.749333pt;}
.y41{bottom:223.750667pt;}
.ye4{bottom:223.752000pt;}
.yda{bottom:223.826667pt;}
.ya1{bottom:223.827400pt;}
.y32b{bottom:225.109067pt;}
.y163{bottom:225.109733pt;}
.y148{bottom:227.755067pt;}
.y36f{bottom:229.040133pt;}
.y2e1{bottom:229.116000pt;}
.y11a{bottom:229.118667pt;}
.y34f{bottom:230.400533pt;}
.yec{bottom:230.401067pt;}
.y1e2{bottom:230.404000pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y6d{bottom:231.840000pt;}
.y233{bottom:233.122667pt;}
.y21c{bottom:233.726667pt;}
.y1be{bottom:233.730667pt;}
.y109{bottom:233.805333pt;}
.y194{bottom:234.406933pt;}
.y1fc{bottom:234.408000pt;}
.y33a{bottom:235.090667pt;}
.y294{bottom:235.767467pt;}
.y274{bottom:235.768133pt;}
.y2f1{bottom:237.736000pt;}
.y162{bottom:238.412933pt;}
.y32a{bottom:238.413467pt;}
.y2ac{bottom:239.773333pt;}
.y31b{bottom:239.774667pt;}
.y40{bottom:239.776000pt;}
.yc9{bottom:239.777333pt;}
.yd9{bottom:239.852000pt;}
.y147{bottom:241.059467pt;}
.ya0{bottom:241.817575pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y36e{bottom:242.343333pt;}
.yeb{bottom:243.779867pt;}
.y34e{bottom:243.780533pt;}
.y2e0{bottom:245.065333pt;}
.y119{bottom:245.068000pt;}
.y232{bottom:246.425867pt;}
.y1e1{bottom:246.429333pt;}
.y193{bottom:247.786933pt;}
.y273{bottom:249.071333pt;}
.y293{bottom:249.071867pt;}
.y21b{bottom:249.752000pt;}
.y1bd{bottom:249.754667pt;}
.y108{bottom:249.830667pt;}
.y1fb{bottom:250.433333pt;}
.y225{bottom:251.116000pt;}
.y161{bottom:251.792933pt;}
.y329{bottom:251.793467pt;}
.y2ed{bottom:252.401333pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y9f{bottom:253.760893pt;}
.y146{bottom:254.438267pt;}
.y2ab{bottom:255.722667pt;}
.y36d{bottom:255.723333pt;}
.y31a{bottom:255.724000pt;}
.y3f{bottom:255.725333pt;}
.yc8{bottom:255.726667pt;}
.yd8{bottom:255.801333pt;}
.y34d{bottom:257.083733pt;}
.yea{bottom:257.084267pt;}
.yaf{bottom:257.085770pt;}
.y231{bottom:259.730267pt;}
.y192{bottom:261.090133pt;}
.y2df{bottom:261.090667pt;}
.y118{bottom:261.093333pt;}
.y6c{bottom:261.168000pt;}
.y292{bottom:262.450667pt;}
.y272{bottom:262.451333pt;}
.y1e0{bottom:262.454667pt;}
.y328{bottom:265.096667pt;}
.y160{bottom:265.097333pt;}
.y21a{bottom:265.777333pt;}
.y9e{bottom:265.779942pt;}
.y1bc{bottom:265.780000pt;}
.y107{bottom:265.854667pt;}
.y309{bottom:266.457333pt;}
.y1fa{bottom:266.458667pt;}
.y2ea{bottom:267.065333pt;}
.y145{bottom:267.742667pt;}
.y36c{bottom:269.026533pt;}
.y34c{bottom:270.388133pt;}
.ye9{bottom:270.388667pt;}
.y319{bottom:271.749333pt;}
.y3e{bottom:271.750667pt;}
.yc7{bottom:271.752000pt;}
.yd7{bottom:271.826667pt;}
.y230{bottom:273.109067pt;}
.y191{bottom:274.394533pt;}
.y271{bottom:275.754533pt;}
.y291{bottom:275.755067pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y2de{bottom:277.114667pt;}
.y2c1{bottom:277.117333pt;}
.y6b{bottom:277.118667pt;}
.y2aa{bottom:277.794667pt;}
.y9d{bottom:277.797925pt;}
.y15f{bottom:278.400533pt;}
.y327{bottom:278.401067pt;}
.y1df{bottom:278.404000pt;}
.y144{bottom:281.122667pt;}
.y219{bottom:281.726667pt;}
.y1bb{bottom:281.729333pt;}
.y106{bottom:281.804000pt;}
.y36b{bottom:282.406533pt;}
.y1f9{bottom:282.408000pt;}
.y244{bottom:283.090667pt;}
.ye8{bottom:283.767467pt;}
.y34b{bottom:283.768133pt;}
.y2ff{bottom:284.450667pt;}
.y22f{bottom:286.413467pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y190{bottom:287.773333pt;}
.y318{bottom:287.774667pt;}
.y3d{bottom:287.776000pt;}
.yc6{bottom:287.777333pt;}
.yd6{bottom:287.852000pt;}
.y308{bottom:288.453333pt;}
.y270{bottom:289.058933pt;}
.y290{bottom:289.059467pt;}
.y9c{bottom:289.816975pt;}
.y326{bottom:291.779867pt;}
.y15e{bottom:291.780533pt;}
.yae{bottom:291.781552pt;}
.y2c0{bottom:293.066667pt;}
.y117{bottom:293.068000pt;}
.y6a{bottom:293.142667pt;}
.y28{bottom:293.368000pt;}
.y143{bottom:294.425867pt;}
.y1de{bottom:294.429333pt;}
.y36a{bottom:295.710933pt;}
.y34a{bottom:297.071333pt;}
.ye7{bottom:297.071867pt;}
.y218{bottom:297.752000pt;}
.y1ba{bottom:297.754667pt;}
.y105{bottom:297.829333pt;}
.y1f8{bottom:298.433333pt;}
.y2dd{bottom:299.112000pt;}
.y2fe{bottom:299.116000pt;}
.y22e{bottom:299.793467pt;}
.y341{bottom:300.400000pt;}
.y18f{bottom:301.077733pt;}
.y28f{bottom:302.438267pt;}
.y26f{bottom:302.438933pt;}
.y2eb{bottom:302.665733pt;}
.y317{bottom:303.724000pt;}
.y3c{bottom:303.725333pt;}
.yc5{bottom:303.726667pt;}
.yd5{bottom:303.801333pt;}
.y15d{bottom:305.083733pt;}
.y325{bottom:305.084267pt;}
.y142{bottom:307.730267pt;}
.y369{bottom:309.014133pt;}
.y2bf{bottom:309.092000pt;}
.y116{bottom:309.093333pt;}
.y10{bottom:309.452000pt;}
.y9b{bottom:309.772992pt;}
.ye6{bottom:310.450667pt;}
.y349{bottom:310.451333pt;}
.y1dd{bottom:310.454667pt;}
.y22d{bottom:313.096667pt;}
.y217{bottom:313.776000pt;}
.y1b9{bottom:313.780000pt;}
.y104{bottom:313.854667pt;}
.y1f7{bottom:314.457333pt;}
.y18e{bottom:314.457733pt;}
.y2a9{bottom:314.458667pt;}
.y150{bottom:315.065333pt;}
.y26e{bottom:315.742133pt;}
.y28e{bottom:315.742667pt;}
.y15c{bottom:318.388133pt;}
.y324{bottom:318.388667pt;}
.y316{bottom:319.749333pt;}
.y3b{bottom:319.750667pt;}
.yc4{bottom:319.752000pt;}
.yd4{bottom:319.826667pt;}
.y141{bottom:321.109067pt;}
.y9a{bottom:321.792042pt;}
.y368{bottom:322.394133pt;}
.y69{bottom:322.472000pt;}
.y27{bottom:322.696000pt;}
.y348{bottom:323.754533pt;}
.y307{bottom:325.116000pt;}
.y2be{bottom:325.117333pt;}
.y115{bottom:325.118667pt;}
.yad{bottom:326.401066pt;}
.y1dc{bottom:326.404000pt;}
.y18d{bottom:327.760933pt;}
.y26d{bottom:329.122133pt;}
.y28d{bottom:329.122667pt;}
.y216{bottom:329.725333pt;}
.y1b8{bottom:329.729333pt;}
.y103{bottom:329.804000pt;}
.y2a8{bottom:330.408000pt;}
.ye5{bottom:331.090667pt;}
.y323{bottom:331.767467pt;}
.y15b{bottom:331.768133pt;}
.y2ef{bottom:332.450667pt;}
.y99{bottom:333.811092pt;}
.y140{bottom:334.413467pt;}
.y367{bottom:335.697333pt;}
.y315{bottom:335.773333pt;}
.y2dc{bottom:335.774667pt;}
.y3a{bottom:335.776000pt;}
.yc3{bottom:335.777333pt;}
.yd3{bottom:335.852000pt;}
.y1f6{bottom:336.453333pt;}
.y347{bottom:337.058933pt;}
.y68{bottom:338.497333pt;}
.y22c{bottom:339.779867pt;}
.y18c{bottom:341.065333pt;}
.y2bd{bottom:341.066667pt;}
.y114{bottom:341.068000pt;}
.y26c{bottom:342.425333pt;}
.y28c{bottom:342.425867pt;}
.y1db{bottom:342.428000pt;}
.yf{bottom:343.809333pt;}
.y15a{bottom:345.071333pt;}
.y322{bottom:345.071867pt;}
.y98{bottom:345.754409pt;}
.y1b7{bottom:345.754667pt;}
.y102{bottom:345.829333pt;}
.y2a7{bottom:346.433333pt;}
.y2ee{bottom:347.114667pt;}
.y13f{bottom:347.793467pt;}
.y31f{bottom:348.400000pt;}
.y366{bottom:349.077333pt;}
.y346{bottom:350.438933pt;}
.y215{bottom:351.722667pt;}
.y2db{bottom:351.724000pt;}
.y39{bottom:351.725333pt;}
.yc2{bottom:351.726667pt;}
.yd2{bottom:351.801333pt;}
.y22b{bottom:353.084267pt;}
.y18b{bottom:354.445333pt;}
.y26b{bottom:355.729733pt;}
.y28b{bottom:355.730267pt;}
.y306{bottom:357.090667pt;}
.y2bc{bottom:357.092000pt;}
.y113{bottom:357.093333pt;}
.y314{bottom:357.769333pt;}
.y97{bottom:357.772392pt;}
.y321{bottom:358.450667pt;}
.y159{bottom:358.451333pt;}
.y1da{bottom:358.453333pt;}
.y13e{bottom:361.096667pt;}
.yac{bottom:361.096848pt;}
.y1b6{bottom:361.780000pt;}
.y101{bottom:361.854667pt;}
.y365{bottom:362.381733pt;}
.y2a6{bottom:362.458667pt;}
.ye{bottom:362.706666pt;}
.y31e{bottom:363.065333pt;}
.y345{bottom:363.742133pt;}
.y320{bottom:364.425333pt;}
.y22a{bottom:366.388667pt;}
.y18a{bottom:367.748533pt;}
.y2da{bottom:367.749333pt;}
.y38{bottom:367.750667pt;}
.y67{bottom:367.826667pt;}
.y28a{bottom:369.109067pt;}
.y26a{bottom:369.109733pt;}
.y96{bottom:369.791442pt;}
.y158{bottom:371.754533pt;}
.y1f5{bottom:373.116000pt;}
.y2bb{bottom:373.117333pt;}
.y134{bottom:373.118667pt;}
.y13d{bottom:374.401067pt;}
.y1d9{bottom:374.402667pt;}
.y364{bottom:375.684933pt;}
.y344{bottom:377.122133pt;}
.y1b5{bottom:377.729333pt;}
.y100{bottom:377.804000pt;}
.y2a5{bottom:378.408000pt;}
.y112{bottom:379.089333pt;}
.y229{bottom:379.767467pt;}
.y189{bottom:381.052933pt;}
.y95{bottom:381.810492pt;}
.y269{bottom:382.412933pt;}
.y289{bottom:382.413467pt;}
.y2d9{bottom:383.773333pt;}
.y37{bottom:383.774667pt;}
.yc1{bottom:383.776000pt;}
.y66{bottom:383.850667pt;}
.y157{bottom:385.058933pt;}
.y13c{bottom:387.779867pt;}
.y214{bottom:388.461333pt;}
.y363{bottom:389.064933pt;}
.y1f4{bottom:389.065333pt;}
.y2ba{bottom:389.066667pt;}
.y133{bottom:389.068000pt;}
.y343{bottom:390.425333pt;}
.y1d8{bottom:390.428000pt;}
.y228{bottom:393.071867pt;}
.y26{bottom:393.753180pt;}
.y94{bottom:393.753809pt;}
.y1b4{bottom:393.754667pt;}
.yff{bottom:393.829333pt;}
.y188{bottom:394.431733pt;}
.y2a4{bottom:394.432000pt;}
.y313{bottom:394.433333pt;}
.y253{bottom:395.114667pt;}
.y268{bottom:395.792933pt;}
.y288{bottom:395.793467pt;}
.yab{bottom:395.794097pt;}
.y156{bottom:398.438933pt;}
.y36{bottom:399.725333pt;}
.y65{bottom:399.801333pt;}
.y13b{bottom:401.084267pt;}
.y362{bottom:402.369333pt;}
.y213{bottom:404.410667pt;}
.y1f3{bottom:405.090667pt;}
.y2b9{bottom:405.092000pt;}
.y132{bottom:405.093333pt;}
.y2d8{bottom:405.769333pt;}
.y93{bottom:405.772859pt;}
.y227{bottom:406.450667pt;}
.y1d7{bottom:406.453333pt;}
.y187{bottom:407.736133pt;}
.y287{bottom:409.096667pt;}
.y267{bottom:409.097333pt;}
.y1b3{bottom:409.780000pt;}
.yfe{bottom:409.854667pt;}
.y312{bottom:410.458667pt;}
.y339{bottom:411.064000pt;}
.y155{bottom:411.742133pt;}
.y2f0{bottom:412.425333pt;}
.y13a{bottom:414.388667pt;}
.y361{bottom:415.748133pt;}
.y35{bottom:415.749333pt;}
.yc0{bottom:415.750667pt;}
.y64{bottom:415.825333pt;}
.y2a3{bottom:416.428000pt;}
.y92{bottom:417.791909pt;}
.y212{bottom:420.436000pt;}
.y1f2{bottom:421.116000pt;}
.y186{bottom:421.116133pt;}
.y131{bottom:421.117333pt;}
.y266{bottom:422.400533pt;}
.y286{bottom:422.401067pt;}
.y1d6{bottom:422.402667pt;}
.y25{bottom:424.441333pt;}
.y154{bottom:425.122133pt;}
.y1b2{bottom:425.729333pt;}
.yfd{bottom:425.804000pt;}
.y311{bottom:426.408000pt;}
.y226{bottom:427.089333pt;}
.y139{bottom:427.767467pt;}
.y360{bottom:429.052533pt;}
.y91{bottom:429.809892pt;}
.yaa{bottom:430.413612pt;}
.yd{bottom:430.990669pt;}
.y34{bottom:431.774667pt;}
.ybf{bottom:431.776000pt;}
.y63{bottom:431.850667pt;}
.y185{bottom:434.419333pt;}
.y285{bottom:435.779867pt;}
.y265{bottom:435.780533pt;}
.y211{bottom:436.461333pt;}
.y1f1{bottom:437.065333pt;}
.y2b8{bottom:437.066667pt;}
.y130{bottom:437.068000pt;}
.y153{bottom:438.425333pt;}
.y1d5{bottom:438.428000pt;}
.y138{bottom:441.071867pt;}
.y90{bottom:441.753209pt;}
.y1b1{bottom:441.754667pt;}
.yfc{bottom:441.829333pt;}
.y35f{bottom:442.355733pt;}
.y2d7{bottom:442.433333pt;}
.y250{bottom:443.114667pt;}
.yc{bottom:446.990669pt;}
.y184{bottom:447.723733pt;}
.y33{bottom:447.724000pt;}
.ybe{bottom:447.725333pt;}
.y62{bottom:447.800000pt;}
.y264{bottom:449.083733pt;}
.y284{bottom:449.084267pt;}
.y210{bottom:452.410667pt;}
.y305{bottom:453.089333pt;}
.y1f0{bottom:453.090667pt;}
.y12f{bottom:453.092000pt;}
.y8f{bottom:453.772259pt;}
.y137{bottom:454.450667pt;}
.y1d4{bottom:454.453333pt;}
.y35e{bottom:455.735733pt;}
.y1b0{bottom:457.778667pt;}
.yfb{bottom:457.853333pt;}
.y2d6{bottom:458.458667pt;}
.y135{bottom:459.064000pt;}
.y2fd{bottom:460.951333pt;}
.y183{bottom:461.102533pt;}
.y263{bottom:462.388133pt;}
.y283{bottom:462.388667pt;}
.yb{bottom:462.990669pt;}
.y2fc{bottom:463.748533pt;}
.y32{bottom:463.749333pt;}
.ybd{bottom:463.750667pt;}
.y61{bottom:463.825333pt;}
.ya9{bottom:465.109394pt;}
.y8e{bottom:465.791309pt;}
.y20f{bottom:468.434667pt;}
.y35d{bottom:469.040133pt;}
.y1ef{bottom:469.116000pt;}
.y12e{bottom:469.117333pt;}
.y1d3{bottom:470.402667pt;}
.y24{bottom:471.763467pt;}
.y1af{bottom:473.728000pt;}
.yfa{bottom:473.804000pt;}
.y182{bottom:474.406933pt;}
.y2d5{bottom:474.408000pt;}
.y304{bottom:475.086667pt;}
.y136{bottom:475.089333pt;}
.y282{bottom:475.767467pt;}
.y262{bottom:475.768133pt;}
.y301{bottom:476.449333pt;}
.y8d{bottom:477.810359pt;}
.ya{bottom:478.990666pt;}
.y31{bottom:479.774667pt;}
.y58{bottom:479.776000pt;}
.y60{bottom:479.850667pt;}
.y35c{bottom:482.343333pt;}
.y1ee{bottom:485.065333pt;}
.y12d{bottom:485.066667pt;}
.y1d2{bottom:486.428000pt;}
.y181{bottom:487.786933pt;}
.y261{bottom:489.071333pt;}
.y281{bottom:489.071867pt;}
.y1ae{bottom:489.753333pt;}
.y8c{bottom:489.753676pt;}
.yf9{bottom:489.828000pt;}
.y20e{bottom:490.432000pt;}
.y2d4{bottom:490.433333pt;}
.y240{bottom:491.114667pt;}
.y9{bottom:494.990666pt;}
.y35b{bottom:495.723333pt;}
.y30{bottom:495.724000pt;}
.y57{bottom:495.725333pt;}
.y5f{bottom:495.800000pt;}
.ya8{bottom:499.730375pt;}
.y180{bottom:501.090133pt;}
.y1ed{bottom:501.090667pt;}
.y12c{bottom:501.092000pt;}
.y280{bottom:502.450667pt;}
.y260{bottom:502.451333pt;}
.y1d1{bottom:502.453333pt;}
.y1ad{bottom:505.778667pt;}
.yf8{bottom:505.853333pt;}
.y2d3{bottom:506.457333pt;}
.y23f{bottom:507.064000pt;}
.y8b{bottom:507.819583pt;}
.y340{bottom:508.424000pt;}
.y35a{bottom:509.026533pt;}
.y2f{bottom:511.749333pt;}
.y56{bottom:511.750667pt;}
.y5e{bottom:511.825333pt;}
.y310{bottom:512.428000pt;}
.y17f{bottom:514.394533pt;}
.y25f{bottom:515.754533pt;}
.y1ec{bottom:517.114667pt;}
.y2a2{bottom:517.116000pt;}
.y12b{bottom:517.117333pt;}
.y1d0{bottom:518.402667pt;}
.y8a{bottom:519.762901pt;}
.y1ac{bottom:521.728000pt;}
.yf7{bottom:521.802667pt;}
.y359{bottom:522.406533pt;}
.y2d2{bottom:522.406667pt;}
.y77{bottom:522.560000pt;}
.y151{bottom:523.089333pt;}
.y23{bottom:523.766667pt;}
.y20d{bottom:527.094667pt;}
.y17e{bottom:527.773333pt;}
.y2e{bottom:527.774667pt;}
.y55{bottom:527.776000pt;}
.y5d{bottom:527.850667pt;}
.y25e{bottom:529.058933pt;}
.y89{bottom:531.781951pt;}
.y2a1{bottom:533.065333pt;}
.y12a{bottom:533.066667pt;}
.y1cf{bottom:534.428000pt;}
.y358{bottom:535.710933pt;}
.y1ab{bottom:537.753333pt;}
.yf6{bottom:537.828000pt;}
.y1eb{bottom:539.112000pt;}
.y251{bottom:539.114667pt;}
.ya7{bottom:541.077551pt;}
.y17d{bottom:541.077733pt;}
.y25d{bottom:542.438933pt;}
.y20c{bottom:543.120000pt;}
.y2d{bottom:543.724000pt;}
.y54{bottom:543.725333pt;}
.y5c{bottom:543.800000pt;}
.y2d1{bottom:544.402667pt;}
.y357{bottom:549.014133pt;}
.y2a0{bottom:549.089333pt;}
.y2b7{bottom:549.090667pt;}
.y129{bottom:549.092000pt;}
.y76{bottom:549.166400pt;}
.y1ce{bottom:550.452000pt;}
.y88{bottom:551.812634pt;}
.y1aa{bottom:553.778667pt;}
.yf5{bottom:553.853333pt;}
.y17c{bottom:554.457733pt;}
.y255{bottom:555.064000pt;}
.y25c{bottom:555.742133pt;}
.y20b{bottom:559.069333pt;}
.y2c{bottom:559.749333pt;}
.y53{bottom:559.750667pt;}
.y5b{bottom:559.825333pt;}
.y356{bottom:562.394133pt;}
.y87{bottom:563.755951pt;}
.y2b6{bottom:565.116000pt;}
.y128{bottom:565.117333pt;}
.y1cd{bottom:566.402667pt;}
.y17b{bottom:567.760933pt;}
.y25b{bottom:569.122133pt;}
.y1a9{bottom:569.728000pt;}
.y29f{bottom:571.086667pt;}
.y252{bottom:571.088000pt;}
.y8{bottom:573.786667pt;}
.y20a{bottom:575.094667pt;}
.y355{bottom:575.697333pt;}
.y2b{bottom:575.773333pt;}
.y52{bottom:575.774667pt;}
.y86{bottom:575.775001pt;}
.y5a{bottom:575.849333pt;}
.y75{bottom:575.849600pt;}
.y17a{bottom:581.065333pt;}
.y127{bottom:581.066667pt;}
.y25a{bottom:582.425333pt;}
.y1cc{bottom:582.426667pt;}
.y1a8{bottom:585.753333pt;}
.y300{bottom:587.113333pt;}
.y2ec{bottom:588.398667pt;}
.y209{bottom:591.118667pt;}
.y51{bottom:591.725333pt;}
.y7{bottom:592.685334pt;}
.y179{bottom:594.445333pt;}
.y85{bottom:594.445701pt;}
.y2b5{bottom:597.090667pt;}
.y126{bottom:597.092000pt;}
.y29{bottom:597.618667pt;}
.y1cb{bottom:598.452000pt;}
.y1a7{bottom:601.778667pt;}
.y241{bottom:603.062667pt;}
.y84{bottom:606.464750pt;}
.y208{bottom:607.068000pt;}
.y178{bottom:607.748533pt;}
.ybc{bottom:607.749333pt;}
.y2b4{bottom:613.116000pt;}
.y125{bottom:613.117333pt;}
.y1ca{bottom:614.401333pt;}
.y1a6{bottom:617.728000pt;}
.y83{bottom:618.483800pt;}
.y24b{bottom:619.088000pt;}
.y177{bottom:621.052933pt;}
.y50{bottom:623.774667pt;}
.y207{bottom:629.064000pt;}
.y2b3{bottom:629.065333pt;}
.y124{bottom:629.066667pt;}
.y1c9{bottom:630.426667pt;}
.y82{bottom:630.427117pt;}
.y1a5{bottom:633.753333pt;}
.y176{bottom:634.431733pt;}
.y152{bottom:635.113333pt;}
.y342{bottom:636.398667pt;}
.yb7{bottom:637.455882pt;}
.y4f{bottom:639.724000pt;}
.y249{bottom:645.090667pt;}
.y6{bottom:645.598667pt;}
.y336{bottom:646.452000pt;}
.y175{bottom:647.736133pt;}
.y81{bottom:648.493025pt;}
.y1a4{bottom:649.777333pt;}
.y123{bottom:651.062667pt;}
.y1c8{bottom:652.424000pt;}
.y4e{bottom:655.749333pt;}
.y80{bottom:660.436342pt;}
.y2d0{bottom:661.114667pt;}
.y248{bottom:661.116000pt;}
.y174{bottom:661.116133pt;}
.y206{bottom:665.726667pt;}
.y1a3{bottom:665.728000pt;}
.y1c7{bottom:667.088000pt;}
.y335{bottom:668.448000pt;}
.y3{bottom:668.977329pt;}
.y4d{bottom:671.774667pt;}
.y173{bottom:674.419333pt;}
.y247{bottom:677.065333pt;}
.y7f{bottom:678.426517pt;}
.yb6{bottom:681.072012pt;}
.y1a2{bottom:681.752000pt;}
.y2cf{bottom:683.112000pt;}
.y259{bottom:683.113333pt;}
.y172{bottom:687.723733pt;}
.y4c{bottom:687.724000pt;}
.y74{bottom:691.956800pt;}
.y2b2{bottom:693.089333pt;}
.y246{bottom:693.090667pt;}
.y334{bottom:695.054667pt;}
.y7e{bottom:697.097217pt;}
.y1a1{bottom:697.777333pt;}
.y256{bottom:699.062667pt;}
.y171{bottom:701.102533pt;}
.y4b{bottom:703.749333pt;}
.y7d{bottom:709.116267pt;}
.y1a0{bottom:713.726667pt;}
.y170{bottom:714.406933pt;}
.y2b1{bottom:715.086667pt;}
.y245{bottom:715.088000pt;}
.yb5{bottom:715.767794pt;}
.y73{bottom:718.640000pt;}
.y4a{bottom:719.774667pt;}
.yf4{bottom:720.377333pt;}
.y14f{bottom:725.293882pt;}
.ybb{bottom:727.786667pt;}
.y16f{bottom:727.786933pt;}
.y7c{bottom:727.786967pt;}
.y19f{bottom:729.752000pt;}
.y338{bottom:731.113333pt;}
.yb4{bottom:733.077551pt;}
.yd1{bottom:735.724000pt;}
.y7b{bottom:739.806017pt;}
.y16e{bottom:741.090133pt;}
.y205{bottom:745.776000pt;}
.y19e{bottom:745.777333pt;}
.y2a{bottom:750.614667pt;}
.y59{bottom:751.748000pt;}
.y49{bottom:751.749333pt;}
.y7a{bottom:751.824000pt;}
.y337{bottom:753.109333pt;}
.y16d{bottom:754.394533pt;}
.y48{bottom:767.773333pt;}
.y2{bottom:781.661334pt;}
.y30f{bottom:798.004000pt;}
.y204{bottom:798.005333pt;}
.y2ca{bottom:798.008000pt;}
.yb8{bottom:798.009333pt;}
.y1{bottom:859.312000pt;}
.h8{height:28.560000pt;}
.h9{height:28.597333pt;}
.h19{height:30.591618pt;}
.h22{height:32.507812pt;}
.h1f{height:33.696000pt;}
.h20{height:34.416000pt;}
.h13{height:38.240000pt;}
.h18{height:39.082178pt;}
.h7{height:40.853333pt;}
.h1b{height:42.064382pt;}
.h3{height:42.840000pt;}
.h6{height:42.896000pt;}
.h1d{height:43.968000pt;}
.h16{height:44.350133pt;}
.h23{height:44.572800pt;}
.h24{height:45.120000pt;}
.h10{height:48.853333pt;}
.h2{height:49.024000pt;}
.h11{height:50.133333pt;}
.h21{height:53.640000pt;}
.h1c{height:53.739155pt;}
.he{height:59.732587pt;}
.h12{height:60.159499pt;}
.hd{height:67.200000pt;}
.h5{height:69.450667pt;}
.h1e{height:73.280000pt;}
.hc{height:78.080390pt;}
.h1a{height:85.226165pt;}
.h15{height:87.936000pt;}
.hf{height:90.240000pt;}
.h4{height:105.826671pt;}
.h14{height:120.320000pt;}
.h17{height:131.021641pt;}
.hb{height:140.544000pt;}
.ha{height:864.000000pt;}
.h0{height:1122.518667pt;}
.h1{height:1122.666667pt;}
.w4{width:32.407333pt;}
.w2{width:566.928019pt;}
.w3{width:576.000000pt;}
.w0{width:793.700000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.xe{left:16.204000pt;}
.x9{left:48.453467pt;}
.x7{left:59.489733pt;}
.x11{left:74.683867pt;}
.xc{left:75.590533pt;}
.xd{left:76.923867pt;}
.x10{left:82.924248pt;}
.x15{left:87.005867pt;}
.x1b{left:88.893200pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.xf{left:99.628267pt;}
.x1c{left:105.901200pt;}
.x26{left:112.553200pt;}
.x16{left:117.165333pt;}
.xa{left:125.102267pt;}
.x23{left:128.503289pt;}
.x5{left:134.702667pt;}
.xb{left:137.877333pt;}
.x8{left:154.959544pt;}
.x6{left:179.981067pt;}
.x4{left:180.874667pt;}
.x24{left:183.381867pt;}
.x2b{left:198.197200pt;}
.x27{left:206.966533pt;}
.x28{left:216.490933pt;}
.x2a{left:218.077200pt;}
.x1a{left:224.653200pt;}
.x19{left:228.131200pt;}
.x1f{left:237.730533pt;}
.x18{left:244.987200pt;}
.x29{left:246.498533pt;}
.x1e{left:250.354533pt;}
.x17{left:251.638533pt;}
.x20{left:264.263200pt;}
.x1d{left:266.757200pt;}
.x25{left:269.630533pt;}
.x21{left:273.863200pt;}
.x2c{left:295.558933pt;}
.x2d{left:310.676533pt;}
.x22{left:314.151867pt;}
.x13{left:320.803867pt;}
.x12{left:372.659200pt;}
.x3{left:404.408000pt;}
.x14{left:411.814533pt;}
.x2e{left:435.401333pt;}
}




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