
    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_31b616b98898b3b04cdccec4.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.008000;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_94f8773d65fbfb515f27d947.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.666000;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_e845b4a8c8c9e6eb85b48da1.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;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_45c37abd55a817ce12598f10.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.008000;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_0437b595a600479eff8b0e9e.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.666000;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_3a3fe457b893ee2a7ac74e2b.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.008000;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_7f189eebf119c3e297604fdd.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.801000;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_fda33cf1168bea4b9fa0e471.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.008000;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_4d95f12b2b61d68e0006fb7e.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.852000;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_f13889cea32bc3f6bf12957f.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.732000;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_60b4bee1ea4592a05ea40837.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.996000;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_25c7764779d269b14df77647.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.008000;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_81575053f46ab6e176cadb11.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.732000;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_cd2d7ac7277148a680fe73cf.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.008000;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_89de0e432eaf8c08a6872a4f.woff2')format("woff");}.fff{font-family:fff;line-height:1.008000;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_26ce309caa83a8e1b2e526e3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.008000;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_4cf52c3872034c864e699423.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.801000;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_366bb9b59874f819947a0c77.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.732000;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_79268c8fcc1ba9f0e5c3d644.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.996000;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_cf6045b10e1bf2bbe171b1b9.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.008000;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_95bf963fdb7fe66a6c9c3cb3.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.801000;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_34b06d5bebd80a5cce1c834c.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.996000;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_5034597f1925790165b5ed69.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.008000;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_014e2b8ec7931ddcf8d9e550.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.996000;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_d27b3220d657217ac4194d6c.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.008000;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_0fd34906bcb10399bd444910.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.768000;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_cddd9d6a0a5fe9378774c491.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.732000;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_7d1cfaf0cf6ecab9b99142e4.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.960000;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_4560d8238dcc28693c361529.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.732000;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_f4b4120a1f4bde0c72e2d8ca.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.008000;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_34cf183f07fa8d11c388d4d9.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.008000;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_57d66ef0e2078ce9da6221c9.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.912000;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_da21787d64128b88da2769c6.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.008000;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_4809b6089a7b5200a6c8e6d5.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.732000;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_590ef7de39851544ec50bb3a.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_6f24576f460741f488b678f2.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.008000;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_df555e390a6efa862e597ccd.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.801000;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_209e6e28e2eeafa84ee64da6.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.008000;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_2c1e972a7f7ed4a57edb8bfd.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.732000;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_e40d9ae3632ff448ce4645a0.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.008000;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_92f8fddc9005fd3d6849b0f0.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.996000;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_e70234c2de3cb6ef3ffc7abd.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.008000;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_de1b5cade2b181d7ba99b74d.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.720000;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_a41631bf8142d0a72ecbc89a.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.008000;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_447b8fe87b25b3f71cea7def.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.008000;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_b6856b3cbdd87535610d216f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.008000;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_108a2400d20293ea6e174814.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.732000;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_5c291381b681ebb868767eb4.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.008000;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_78c791e00337a4ad0e59c80e.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.008000;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_7aa30d13f02a553df6cbd49d.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.008000;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_f4507071faa89cce10282837.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.008000;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_d462e09b803184c5bc01a6ca.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.008000;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_7e4ba31bfed37b5e89dc5167.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_e808f3dd7d4528e7f628cbc9.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.008000;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_ec8e52119bb297c138b98269.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.008000;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_25e301128a0d7624b4d43407.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.008000;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_6cfb75e4237eb1987a6781a3.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.008000;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_ccb6355c4b4a863b387ac2f7.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.996000;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_361240dd8d4cb60ed2485a34.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.008000;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_ca17b87b155fa81b5d943fb8.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.730000;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_ba16691bda9567ba88deabe7.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.008000;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_655689b51ded5b743a0b8550.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.008000;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_2d9b3c8997b0efbebd8f53fc.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.730000;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_5c2b5f7e28dcfd84c8df562d.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.008000;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_0a238be844f484aa3a016d19.woff2')format("woff");}.ff41{font-family:ff41;line-height:0.996000;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_08b4f5a239ba5fb2befe71f1.woff2')format("woff");}.ff42{font-family:ff42;line-height:0.801000;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_be45174cdb3619c933e98a55.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.008000;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_f2b62796448c9367ef1917b7.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.718000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_6e1fa3117230566704dbcad6.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.008000;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_0b3a53e6cd964df35ba92629.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.008000;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_71ac1b9ec3515db7ebb24ed5.woff2')format("woff");}.ff47{font-family:ff47;line-height:0.732000;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_1d4a53f0d897efcb1445439d.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.008000;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_4b8ff2eba337d7f600f7929c.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.008000;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_0d81e26983627537a68e5662.woff2')format("woff");}.ff4a{font-family:ff4a;line-height:0.996000;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_61982f96588cad85c0282661.woff2')format("woff");}.ff4b{font-family:ff4b;line-height:0.996000;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_6386b0375dac1b17ed12abf0.woff2')format("woff");}.ff4c{font-family:ff4c;line-height:0.720000;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_ad4897e35286c2f04aa65734.woff2')format("woff");}.ff4d{font-family:ff4d;line-height:0.996000;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_c0fb809f4a85b1d9c5ce5966.woff2')format("woff");}.ff4e{font-family:ff4e;line-height:1.008000;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_a1d4cd3d57d1ad7effe69117.woff2')format("woff");}.ff4f{font-family:ff4f;line-height:0.984000;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_a9ae8f13e6ec1a0c91de70b5.woff2')format("woff");}.ff50{font-family:ff50;line-height:1.008000;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_d26ecc28ae5b41702d6e993d.woff2')format("woff");}.ff51{font-family:ff51;line-height:0.732000;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_de1b5cade2b181d7ba99b74d.woff2')format("woff");}.ff52{font-family:ff52;line-height:0.720000;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_b3a977de0b67f3b69a3899af.woff2')format("woff");}.ff53{font-family:ff53;line-height:0.720000;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:ff54;src:url('chunks/assets/font_3bfc840ef1f0d7a582fc0bf8.woff2')format("woff");}.ff54{font-family:ff54;line-height:1.008000;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:ff55;src:url('chunks/assets/font_4ffc5da134e99104095ea3ab.woff2')format("woff");}.ff55{font-family:ff55;line-height:1.008000;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:ff56;src:url('chunks/assets/font_37f8ceaafedc16b55961c6a1.woff2')format("woff");}.ff56{font-family:ff56;line-height:0.735000;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);}
.v1{vertical-align:-42.288334px;}
.v0{vertical-align:0.000000px;}
.ls1{letter-spacing:0.000000px;}
.ls0{letter-spacing:0.000052px;}
.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;}
}
.ws3{word-spacing:-204.000025px;}
.ws0{word-spacing:-133.197263px;}
.ws2{word-spacing:-76.365694px;}
.ws16{word-spacing:-73.749537px;}
.ws7{word-spacing:-55.866772px;}
.ws4{word-spacing:-48.359122px;}
.wsf{word-spacing:-48.343172px;}
.wse{word-spacing:-42.466360px;}
.wsa{word-spacing:-41.824106px;}
.ws14{word-spacing:-41.810311px;}
.ws13{word-spacing:-36.693145px;}
.ws12{word-spacing:-25.672002px;}
.ws8{word-spacing:-24.179561px;}
.wsc{word-spacing:-24.171586px;}
.ws15{word-spacing:-19.534480px;}
.ws10{word-spacing:-18.910433px;}
.ws5{word-spacing:-18.346572px;}
.ws9{word-spacing:-17.762252px;}
.ws6{word-spacing:-16.682115px;}
.ws11{word-spacing:-16.149189px;}
.ws1{word-spacing:0.000000px;}
.wsb{word-spacing:1363.539698px;}
.wsd{word-spacing:1446.684661px;}
._20{margin-left:-13.660125px;}
._21{margin-left:-11.725668px;}
._25{margin-left:-8.929147px;}
._1d{margin-left:-7.700159px;}
._13{margin-left:-6.482591px;}
._9{margin-left:-5.162572px;}
._12{margin-left:-3.771880px;}
._e{margin-left:-2.588547px;}
._0{margin-left:-1.296279px;}
._14{width:1.056424px;}
._1{width:3.017733px;}
._a{width:4.387539px;}
._c{width:5.880331px;}
._5{width:6.926421px;}
._7{width:8.705353px;}
._15{width:10.317127px;}
._b{width:11.655309px;}
._8{width:13.075705px;}
._d{width:15.080706px;}
._4{width:16.274259px;}
._17{width:17.309233px;}
._10{width:19.372532px;}
._f{width:20.555325px;}
._16{width:21.600829px;}
._6{width:23.608536px;}
._11{width:24.949366px;}
._23{width:26.081749px;}
._22{width:27.464406px;}
._18{width:28.479814px;}
._27{width:29.682914px;}
._28{width:32.501038px;}
._1b{width:33.689572px;}
._1f{width:40.236210px;}
._26{width:47.386318px;}
._1c{width:52.118390px;}
._24{width:53.407862px;}
._3{width:74.507377px;}
._1e{width:75.690432px;}
._1a{width:89.094965px;}
._2{width:93.535538px;}
._19{width:125.758476px;}
.fc9{color:rgb(110,123,161);}
.fc8{color:rgb(155,51,89);}
.fc7{color:rgb(93,78,99);}
.fc5{color:rgb(242,169,0);}
.fc6{color:rgb(255,255,255);}
.fc4{color:rgb(0,0,0);}
.fc3{color:rgb(230,68,97);}
.fc2{color:transparent;}
.fc1{color:rgb(34,55,101);}
.fc0{color:rgb(255,253,240);}
.fsf{font-size:58.090609px;}
.fsa{font-size:60.007609px;}
.fse{font-size:63.886596px;}
.fs6{font-size:65.994864px;}
.fs0{font-size:72.027138px;}
.fsc{font-size:81.660763px;}
.fs8{font-size:81.687706px;}
.fs5{font-size:84.001650px;}
.fs2{font-size:108.220780px;}
.fs9{font-size:215.451181px;}
.fs7{font-size:215.509471px;}
.fsd{font-size:252.775950px;}
.fs3{font-size:257.992210px;}
.fsb{font-size:332.540307px;}
.fs10{font-size:438.985338px;}
.fs1{font-size:792.840848px;}
.fs4{font-size:1214.285863px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y1f1{bottom:4.501962px;}
.y1ee{bottom:4.549759px;}
.y26e{bottom:4.559926px;}
.y1ea{bottom:4.568790px;}
.y276{bottom:4.606618px;}
.y1f5{bottom:4.666653px;}
.y1e4{bottom:4.691389px;}
.y45{bottom:5.095795px;}
.y2d{bottom:10.488777px;}
.y150{bottom:13.064382px;}
.y293{bottom:21.767487px;}
.y1ed{bottom:24.160242px;}
.y1e9{bottom:24.179273px;}
.y1f4{bottom:24.277137px;}
.y44{bottom:24.975020px;}
.y1f0{bottom:26.291388px;}
.y26d{bottom:26.349352px;}
.y1b7{bottom:31.306373px;}
.yb{bottom:39.155626px;}
.y1ec{bottom:43.770725px;}
.y1e8{bottom:43.789757px;}
.y1f3{bottom:43.887620px;}
.y14f{bottom:56.693639px;}
.yb2{bottom:58.298013px;}
.y2c{bottom:58.793119px;}
.y14{bottom:59.127321px;}
.y1e7{bottom:63.400240px;}
.y1df{bottom:66.852302px;}
.y1d5{bottom:68.997591px;}
.y12b{bottom:73.008597px;}
.yb1{bottom:78.555646px;}
.y1e6{bottom:83.010724px;}
.y25d{bottom:85.983097px;}
.y237{bottom:89.133605px;}
.y1d4{bottom:89.255223px;}
.y16f{bottom:90.822535px;}
.y281{bottom:95.417465px;}
.y12d{bottom:95.466565px;}
.y12a{bottom:95.517077px;}
.y40{bottom:96.030689px;}
.yb0{bottom:98.813278px;}
.y14e{bottom:100.322897px;}
.y12{bottom:100.563327px;}
.y236{bottom:109.391238px;}
.y1d3{bottom:109.512856px;}
.y16c{bottom:110.898690px;}
.y1de{bottom:111.869263px;}
.y280{bottom:117.925946px;}
.y129{bottom:118.025558px;}
.y3f{bottom:118.539170px;}
.y87{bottom:118.884892px;}
.yaf{bottom:119.070911px;}
.y12c{bottom:120.225894px;}
.y16e{bottom:123.536304px;}
.y191{bottom:125.679953px;}
.y1f{bottom:128.326737px;}
.y235{bottom:129.648870px;}
.y1d2{bottom:129.770488px;}
.y25c{bottom:131.000058px;}
.y1dd{bottom:134.377744px;}
.yae{bottom:139.328543px;}
.y27f{bottom:140.434427px;}
.y128{bottom:140.534039px;}
.y86{bottom:141.393373px;}
.y1b6{bottom:142.354602px;}
.ydb{bottom:143.190979px;}
.y16b{bottom:143.612423px;}
.y190{bottom:148.188434px;}
.y16d{bottom:148.295633px;}
.y8{bottom:149.145691px;}
.y234{bottom:149.906503px;}
.y1d1{bottom:150.028121px;}
.y25b{bottom:153.508539px;}
.y1dc{bottom:156.886224px;}
.yad{bottom:159.586176px;}
.y60{bottom:162.153226px;}
.y27e{bottom:162.942907px;}
.y127{bottom:163.042519px;}
.y85{bottom:163.901854px;}
.y1b5{bottom:164.863082px;}
.yda{bottom:165.699460px;}
.y16a{bottom:168.371752px;}
.y233{bottom:170.164136px;}
.y1d0{bottom:170.285754px;}
.y18f{bottom:170.696915px;}
.y25a{bottom:176.017020px;}
.ya{bottom:176.949495px;}
.yac{bottom:179.843809px;}
.y5f{bottom:184.661706px;}
.y27d{bottom:185.451388px;}
.y126{bottom:185.551000px;}
.y84{bottom:186.410334px;}
.y1b4{bottom:187.371563px;}
.yd9{bottom:188.207940px;}
.y232{bottom:190.421768px;}
.y1cf{bottom:190.543386px;}
.y18e{bottom:193.205395px;}
.y14c{bottom:194.354543px;}
.y259{bottom:198.525500px;}
.y7{bottom:198.664348px;}
.yab{bottom:200.101441px;}
.y1db{bottom:201.903186px;}
.y5e{bottom:207.170187px;}
.y27c{bottom:207.959869px;}
.y125{bottom:208.059481px;}
.y83{bottom:208.918815px;}
.y231{bottom:210.679401px;}
.yd8{bottom:210.716421px;}
.y14b{bottom:214.430698px;}
.y18d{bottom:215.713876px;}
.y3e{bottom:220.015044px;}
.yaa{bottom:220.359074px;}
.y258{bottom:221.033981px;}
.y6{bottom:223.423677px;}
.y1da{bottom:224.411666px;}
.y5d{bottom:229.678668px;}
.y124{bottom:230.567961px;}
.y1ce{bottom:231.058651px;}
.y82{bottom:231.427296px;}
.y1b3{bottom:232.388524px;}
.yd7{bottom:233.224902px;}
.y18c{bottom:238.222357px;}
.ya9{bottom:240.616706px;}
.y3d{bottom:242.523525px;}
.y257{bottom:243.542462px;}
.y1d9{bottom:246.920147px;}
.y5{bottom:248.183005px;}
.y230{bottom:251.194666px;}
.y1cd{bottom:251.316284px;}
.y5c{bottom:252.187148px;}
.y27b{bottom:252.976830px;}
.y123{bottom:253.076442px;}
.y81{bottom:253.935776px;}
.y1b2{bottom:254.897005px;}
.yd6{bottom:255.733382px;}
.y1e{bottom:257.201934px;}
.y11{bottom:258.699585px;}
.ya8{bottom:260.874339px;}
.y3c{bottom:265.032006px;}
.y256{bottom:266.050942px;}
.y1d8{bottom:269.428628px;}
.y22f{bottom:271.452299px;}
.y1cc{bottom:271.573917px;}
.y4{bottom:272.942334px;}
.y169{bottom:274.385159px;}
.y27a{bottom:275.485311px;}
.y122{bottom:275.584923px;}
.y80{bottom:276.444257px;}
.yd5{bottom:278.241863px;}
.ya7{bottom:281.131972px;}
.y18b{bottom:283.239318px;}
.y1d{bottom:286.462959px;}
.y3b{bottom:287.540486px;}
.y255{bottom:288.559423px;}
.y22e{bottom:291.709931px;}
.y1cb{bottom:291.831549px;}
.y279{bottom:297.993791px;}
.y121{bottom:298.093403px;}
.y7f{bottom:298.952738px;}
.y1b1{bottom:299.913966px;}
.yd4{bottom:300.750344px;}
.ya6{bottom:301.389604px;}
.y18a{bottom:305.747799px;}
.y3a{bottom:310.048967px;}
.y254{bottom:311.067904px;}
.y22d{bottom:311.967564px;}
.y1ca{bottom:312.089182px;}
.y168{bottom:312.232162px;}
.y165{bottom:317.984327px;}
.y278{bottom:320.502272px;}
.y120{bottom:320.601884px;}
.ya5{bottom:321.647237px;}
.y1b0{bottom:322.422447px;}
.y3{bottom:322.460992px;}
.yd3{bottom:323.258824px;}
.y1e2{bottom:323.523982px;}
.y189{bottom:328.256279px;}
.y1c9{bottom:332.346814px;}
.y39{bottom:332.557448px;}
.y253{bottom:333.576384px;}
.y167{bottom:336.991491px;}
.y164{bottom:338.241960px;}
.ya4{bottom:341.904869px;}
.y277{bottom:343.010753px;}
.y11f{bottom:343.110365px;}
.y7e{bottom:343.969699px;}
.y1af{bottom:344.930928px;}
.yd2{bottom:345.767305px;}
.y1e1{bottom:346.032463px;}
.y2{bottom:347.220320px;}
.y188{bottom:350.764760px;}
.y22c{bottom:352.482829px;}
.y1c8{bottom:352.604447px;}
.y38{bottom:355.065928px;}
.y252{bottom:356.084865px;}
.y163{bottom:358.499592px;}
.y166{bottom:361.750820px;}
.ya3{bottom:362.162502px;}
.y11e{bottom:365.618845px;}
.y7d{bottom:366.478180px;}
.y1ae{bottom:367.439408px;}
.y140{bottom:367.778292px;}
.yd1{bottom:368.275786px;}
.y1e0{bottom:368.540944px;}
.y22b{bottom:372.740462px;}
.y1c7{bottom:372.862080px;}
.y187{bottom:373.273241px;}
.yf2{bottom:377.756328px;}
.y251{bottom:378.593346px;}
.y206{bottom:381.714308px;}
.ya2{bottom:382.420135px;}
.y274{bottom:383.601017px;}
.y11d{bottom:388.127326px;}
.y162{bottom:388.135726px;}
.y7c{bottom:388.986660px;}
.y1ad{bottom:389.947889px;}
.y22a{bottom:392.998094px;}
.y186{bottom:395.781721px;}
.yf1{bottom:400.264808px;}
.y1c{bottom:401.477724px;}
.y43{bottom:401.768083px;}
.ya1{bottom:402.677767px;}
.y10{bottom:402.975375px;}
.y273{bottom:406.109498px;}
.y13f{bottom:408.293557px;}
.y161{bottom:408.393358px;}
.y11c{bottom:410.635807px;}
.y7b{bottom:411.495141px;}
.y1ac{bottom:412.456370px;}
.y14a{bottom:413.053382px;}
.yd0{bottom:413.292747px;}
.y185{bottom:418.290202px;}
.yf0{bottom:422.773289px;}
.ya0{bottom:422.935400px;}
.y250{bottom:423.610307px;}
.y42{bottom:426.527411px;}
.y205{bottom:426.731269px;}
.y1b{bottom:430.738749px;}
.y11b{bottom:433.144287px;}
.y229{bottom:433.513359px;}
.y7a{bottom:434.003622px;}
.y1ab{bottom:434.964850px;}
.ycf{bottom:435.801228px;}
.y160{bottom:438.029563px;}
.y184{bottom:440.798683px;}
.y9f{bottom:443.193032px;}
.y24f{bottom:446.118788px;}
.y13e{bottom:448.808823px;}
.y204{bottom:449.239750px;}
.y272{bottom:451.126459px;}
.y41{bottom:451.286740px;}
.y11a{bottom:455.652768px;}
.y228{bottom:456.021840px;}
.y79{bottom:456.512102px;}
.y1aa{bottom:457.473331px;}
.y15f{bottom:458.287196px;}
.yce{bottom:458.309708px;}
.y1e5{bottom:460.935001px;}
.y183{bottom:463.307163px;}
.y9e{bottom:463.450665px;}
.yef{bottom:467.790250px;}
.y291{bottom:468.302037px;}
.y24e{bottom:468.627268px;}
.y13d{bottom:469.066455px;}
.y203{bottom:471.748231px;}
.y1f2{bottom:472.095001px;}
.y271{bottom:473.634940px;}
.y78{bottom:479.020583px;}
.y1a9{bottom:479.981812px;}
.ycd{bottom:480.818189px;}
.y9d{bottom:483.708298px;}
.y15e{bottom:484.874163px;}
.y182{bottom:485.815644px;}
.yee{bottom:490.298731px;}
.y290{bottom:490.810518px;}
.y202{bottom:494.256711px;}
.y270{bottom:496.143421px;}
.y1eb{bottom:500.175000px;}
.y77{bottom:501.529064px;}
.y1a8{bottom:502.490292px;}
.ycc{bottom:503.326670px;}
.y9c{bottom:503.965930px;}
.y181{bottom:508.324125px;}
.y13c{bottom:509.581720px;}
.yed{bottom:512.807212px;}
.y1c6{bottom:512.881439px;}
.y28f{bottom:513.318998px;}
.y24d{bottom:513.644230px;}
.y15b{bottom:514.549897px;}
.y2a{bottom:515.800986px;}
.y15d{bottom:517.587967px;}
.y26f{bottom:518.651901px;}
.y76{bottom:524.037544px;}
.y9b{bottom:524.223563px;}
.y1a7{bottom:524.998773px;}
.ycb{bottom:525.835150px;}
.y224{bottom:526.753629px;}
.y13b{bottom:529.839353px;}
.y180{bottom:530.832605px;}
.y1c5{bottom:533.139071px;}
.yec{bottom:535.315692px;}
.y28e{bottom:535.827479px;}
.y29{bottom:538.309467px;}
.y201{bottom:539.273672px;}
.y1ef{bottom:541.214998px;}
.y15c{bottom:542.347296px;}
.y53{bottom:543.009637px;}
.y100{bottom:543.831503px;}
.y9a{bottom:544.481195px;}
.y1a{bottom:545.753658px;}
.y75{bottom:546.546025px;}
.yf{bottom:547.251201px;}
.y1a6{bottom:547.507254px;}
.yca{bottom:548.343631px;}
.y15a{bottom:549.167820px;}
.y223{bottom:549.262110px;}
.y13a{bottom:550.096986px;}
.y17f{bottom:553.341086px;}
.y1c4{bottom:553.396704px;}
.yeb{bottom:557.824173px;}
.y28{bottom:560.817947px;}
.y200{bottom:561.782153px;}
.y1e3{bottom:562.814997px;}
.y99{bottom:564.738828px;}
.y52{bottom:565.518118px;}
.yff{bottom:566.339983px;}
.y119{bottom:568.331276px;}
.y1a5{bottom:570.015734px;}
.y139{bottom:570.354618px;}
.yc9{bottom:570.852112px;}
.y222{bottom:571.770590px;}
.y1c3{bottom:573.654336px;}
.y19{bottom:575.014683px;}
.y17e{bottom:575.849567px;}
.yea{bottom:580.332654px;}
.y28d{bottom:580.844440px;}
.y27{bottom:583.326428px;}
.y1ff{bottom:584.290634px;}
.y98{bottom:584.996461px;}
.y51{bottom:588.026598px;}
.yfe{bottom:588.848464px;}
.y138{bottom:590.612251px;}
.y118{bottom:590.839757px;}
.y74{bottom:591.562986px;}
.y1a4{bottom:592.524215px;}
.yc8{bottom:593.360592px;}
.y1c2{bottom:593.911969px;}
.y221{bottom:594.279071px;}
.yc{bottom:598.147205px;}
.y17d{bottom:598.358047px;}
.y149{bottom:598.978290px;}
.ye9{bottom:602.841134px;}
.y28c{bottom:603.352921px;}
.y97{bottom:605.254093px;}
.y26{bottom:605.834909px;}
.y1fe{bottom:606.799114px;}
.y275{bottom:607.454995px;}
.y9{bottom:608.894995px;}
.y50{bottom:610.535079px;}
.y137{bottom:610.869883px;}
.y24c{bottom:611.626887px;}
.y117{bottom:613.348238px;}
.y73{bottom:614.071467px;}
.y1c1{bottom:614.169602px;}
.y17c{bottom:620.866528px;}
.ye8{bottom:625.349615px;}
.y96{bottom:625.511726px;}
.y25{bottom:628.343389px;}
.y1fd{bottom:629.307595px;}
.y136{bottom:631.127516px;}
.y4f{bottom:633.043560px;}
.yfd{bottom:633.865425px;}
.y24b{bottom:634.135368px;}
.y72{bottom:636.579948px;}
.y1a3{bottom:637.541176px;}
.yc7{bottom:638.377554px;}
.y220{bottom:639.296032px;}
.y17b{bottom:643.375009px;}
.y95{bottom:645.769358px;}
.ye7{bottom:647.858096px;}
.y28b{bottom:648.369882px;}
.y24{bottom:650.851870px;}
.y135{bottom:651.385149px;}
.y1fc{bottom:651.816076px;}
.y4e{bottom:655.552040px;}
.yfc{bottom:656.373906px;}
.y116{bottom:658.365199px;}
.y71{bottom:659.088428px;}
.y1a2{bottom:660.049657px;}
.yc6{bottom:660.886034px;}
.y21f{bottom:661.804513px;}
.y17a{bottom:665.883489px;}
.y94{bottom:666.026991px;}
.ye6{bottom:670.366576px;}
.y28a{bottom:670.878363px;}
.y134{bottom:671.642781px;}
.y18{bottom:672.022681px;}
.y23{bottom:673.360351px;}
.ye{bottom:673.520195px;}
.y1fb{bottom:674.324556px;}
.y4d{bottom:678.060521px;}
.yfb{bottom:678.882387px;}
.y24a{bottom:679.152329px;}
.y115{bottom:680.873680px;}
.y70{bottom:681.596909px;}
.yc5{bottom:683.394515px;}
.y21e{bottom:684.312994px;}
.y159{bottom:689.931281px;}
.y133{bottom:691.900414px;}
.ye5{bottom:692.875057px;}
.y22{bottom:695.868831px;}
.y4c{bottom:700.569002px;}
.y156{bottom:700.742178px;}
.y17{bottom:701.283705px;}
.yfa{bottom:701.390867px;}
.y249{bottom:701.660810px;}
.y114{bottom:703.382160px;}
.y6f{bottom:704.105390px;}
.y1a1{bottom:705.066618px;}
.yc4{bottom:705.902996px;}
.y21d{bottom:706.821474px;}
.y93{bottom:708.793104px;}
.y179{bottom:710.900451px;}
.y132{bottom:712.158046px;}
.ye4{bottom:715.383538px;}
.y289{bottom:715.895324px;}
.y21{bottom:718.377312px;}
.y1fa{bottom:719.341518px;}
.y158{bottom:722.645079px;}
.y4b{bottom:723.077482px;}
.yf9{bottom:723.899348px;}
.y248{bottom:724.169290px;}
.y113{bottom:725.890641px;}
.y6e{bottom:726.613870px;}
.yc3{bottom:728.411476px;}
.y21c{bottom:729.329955px;}
.y286{bottom:731.213036px;}
.y26c{bottom:731.654990px;}
.y131{bottom:732.415679px;}
.y178{bottom:733.408931px;}
.y155{bottom:733.455979px;}
.ye3{bottom:737.892018px;}
.y288{bottom:738.403805px;}
.y20{bottom:740.885792px;}
.y1f9{bottom:741.849998px;}
.y1c0{bottom:744.605749px;}
.y4a{bottom:745.585963px;}
.yf8{bottom:746.407829px;}
.y247{bottom:746.677771px;}
.y157{bottom:747.404407px;}
.y112{bottom:748.399122px;}
.y6d{bottom:749.122351px;}
.y1a0{bottom:750.083580px;}
.yc2{bottom:750.919957px;}
.y21b{bottom:751.838436px;}
.y285{bottom:753.721516px;}
.y92{bottom:753.810066px;}
.y177{bottom:755.917412px;}
.y154{bottom:758.215308px;}
.ye2{bottom:760.400499px;}
.y287{bottom:760.912286px;}
.y1f8{bottom:764.358479px;}
.y1bf{bottom:764.863382px;}
.y49{bottom:768.094444px;}
.yf7{bottom:768.916309px;}
.y246{bottom:769.186252px;}
.y111{bottom:770.907602px;}
.y19f{bottom:772.592060px;}
.y130{bottom:772.930944px;}
.y21a{bottom:774.346916px;}
.y284{bottom:776.229997px;}
.y91{bottom:776.318546px;}
.y176{bottom:778.425893px;}
.ye1{bottom:782.908980px;}
.y1be{bottom:785.121015px;}
.y1f7{bottom:786.866960px;}
.y48{bottom:790.602924px;}
.yf6{bottom:791.424790px;}
.y37{bottom:792.849695px;}
.y12f{bottom:793.188577px;}
.y110{bottom:793.416083px;}
.y148{bottom:793.463285px;}
.y6c{bottom:794.139312px;}
.y19e{bottom:795.100541px;}
.yc1{bottom:795.936918px;}
.y219{bottom:796.855397px;}
.y283{bottom:798.738478px;}
.y90{bottom:798.827027px;}
.y1d7{bottom:800.934373px;}
.y147{bottom:804.274182px;}
.y1bd{bottom:805.378647px;}
.ye0{bottom:805.417460px;}
.y1f6{bottom:809.375440px;}
.y47{bottom:813.111405px;}
.yf5{bottom:813.933271px;}
.y245{bottom:814.203213px;}
.y36{bottom:815.358176px;}
.y10f{bottom:815.924564px;}
.y6b{bottom:816.647793px;}
.y19d{bottom:817.609022px;}
.yc0{bottom:818.445399px;}
.y218{bottom:819.363878px;}
.y8f{bottom:821.335508px;}
.y175{bottom:823.442854px;}
.y1bc{bottom:825.636280px;}
.ydf{bottom:827.925941px;}
.y16{bottom:830.081041px;}
.yd{bottom:831.578602px;}
.y12e{bottom:833.703842px;}
.y46{bottom:835.619886px;}
.yf4{bottom:836.441751px;}
.y244{bottom:836.711694px;}
.y35{bottom:837.866656px;}
.y10e{bottom:838.433044px;}
.y6a{bottom:839.156274px;}
.y19c{bottom:840.117502px;}
.y217{bottom:841.872358px;}
.y282{bottom:843.755439px;}
.y8e{bottom:843.843988px;}
.y1bb{bottom:845.893912px;}
.y174{bottom:845.951335px;}
.yde{bottom:850.434422px;}
.y292{bottom:852.974985px;}
.y26b{bottom:855.720360px;}
.yf3{bottom:858.950232px;}
.y243{bottom:859.220174px;}
.y15{bottom:859.342066px;}
.y34{bottom:860.375137px;}
.y10d{bottom:860.941525px;}
.y69{bottom:861.664754px;}
.y19b{bottom:862.625983px;}
.y216{bottom:864.380839px;}
.y20f{bottom:865.991029px;}
.y1ba{bottom:866.151545px;}
.y8d{bottom:866.352469px;}
.y173{bottom:868.459815px;}
.ydd{bottom:872.942902px;}
.y26a{bottom:878.228840px;}
.y242{bottom:881.728655px;}
.ybf{bottom:882.752478px;}
.y33{bottom:882.883618px;}
.y10c{bottom:883.450006px;}
.y68{bottom:884.173235px;}
.y19a{bottom:885.134464px;}
.y1b9{bottom:886.409178px;}
.y215{bottom:886.889320px;}
.y20e{bottom:888.499510px;}
.y8c{bottom:888.860950px;}
.y152{bottom:889.089166px;}
.y172{bottom:890.968296px;}
.y269{bottom:900.737321px;}
.y241{bottom:904.237136px;}
.y32{bottom:905.392098px;}
.y10b{bottom:905.958486px;}
.y1b8{bottom:906.666810px;}
.y67{bottom:906.681716px;}
.y199{bottom:907.642944px;}
.y214{bottom:909.397800px;}
.y20d{bottom:911.007990px;}
.y8b{bottom:911.369430px;}
.y171{bottom:913.476776px;}
.y153{bottom:918.178565px;}
.y151{bottom:922.432120px;}
.y268{bottom:923.245802px;}
.y31{bottom:927.900579px;}
.y10a{bottom:928.466967px;}
.y66{bottom:929.190196px;}
.y213{bottom:931.906281px;}
.y13{bottom:933.254982px;}
.y20c{bottom:933.516471px;}
.y8a{bottom:933.877911px;}
.y170{bottom:935.985257px;}
.ybe{bottom:940.149103px;}
.y240{bottom:949.254097px;}
.y30{bottom:950.409060px;}
.y109{bottom:950.975448px;}
.y65{bottom:951.698677px;}
.y198{bottom:952.659906px;}
.y1d6{bottom:958.493738px;}
.y146{bottom:966.434839px;}
.y267{bottom:968.262763px;}
.ydc{bottom:970.779786px;}
.y23f{bottom:971.762578px;}
.y2f{bottom:972.917540px;}
.y108{bottom:973.483928px;}
.y64{bottom:974.207158px;}
.y197{bottom:975.168386px;}
.y212{bottom:976.923242px;}
.y20b{bottom:978.533432px;}
.ybb{bottom:981.002218px;}
.y145{bottom:984.504072px;}
.y5b{bottom:985.653966px;}
.y266{bottom:990.771244px;}
.y23e{bottom:994.271058px;}
.y2e{bottom:995.426021px;}
.y107{bottom:995.992409px;}
.y63{bottom:996.715638px;}
.ybd{bottom:997.545729px;}
.y196{bottom:997.676867px;}
.y211{bottom:999.431723px;}
.y20a{bottom:1001.041913px;}
.yba{bottom:1003.510699px;}
.y5a{bottom:1010.413295px;}
.y265{bottom:1013.279724px;}
.y23d{bottom:1016.779539px;}
.y106{bottom:1018.500890px;}
.y14d{bottom:1018.574978px;}
.y62{bottom:1019.224119px;}
.y210{bottom:1021.940204px;}
.y209{bottom:1023.550394px;}
.yb9{bottom:1026.019180px;}
.y144{bottom:1029.521033px;}
.y59{bottom:1035.172624px;}
.y264{bottom:1035.788205px;}
.y23c{bottom:1039.288020px;}
.y2b{bottom:1040.174977px;}
.y105{bottom:1041.009370px;}
.y61{bottom:1041.732600px;}
.y195{bottom:1042.693828px;}
.y208{bottom:1046.058874px;}
.yb8{bottom:1048.527660px;}
.y143{bottom:1052.029514px;}
.ybc{bottom:1054.942355px;}
.y263{bottom:1058.296686px;}
.y58{bottom:1059.931952px;}
.y23b{bottom:1061.796500px;}
.y104{bottom:1063.517851px;}
.y194{bottom:1065.202309px;}
.yb7{bottom:1071.036141px;}
.y142{bottom:1074.537994px;}
.y262{bottom:1080.805166px;}
.y227{bottom:1082.848898px;}
.y23a{bottom:1084.304981px;}
.y57{bottom:1084.691281px;}
.y103{bottom:1086.026332px;}
.y193{bottom:1087.710790px;}
.y207{bottom:1091.075835px;}
.yb6{bottom:1093.544622px;}
.y141{bottom:1097.046475px;}
.y261{bottom:1103.313647px;}
.y239{bottom:1106.813462px;}
.y102{bottom:1108.534812px;}
.y56{bottom:1109.450610px;}
.y192{bottom:1110.219270px;}
.yb5{bottom:1116.053102px;}
.y89{bottom:1116.844002px;}
.y226{bottom:1119.987891px;}
.y260{bottom:1125.822128px;}
.y55{bottom:1134.209939px;}
.yb4{bottom:1138.561583px;}
.y25f{bottom:1148.330608px;}
.y238{bottom:1151.830423px;}
.y225{bottom:1157.126885px;}
.y54{bottom:1158.969267px;}
.yb3{bottom:1161.070064px;}
.y88{bottom:1165.237235px;}
.y101{bottom:1190.047615px;}
.y25e{bottom:1193.347570px;}
.h1e{height:17.999999px;}
.hf{height:20.519999px;}
.h23{height:39.599998px;}
.h21{height:44.613588px;}
.h13{height:46.085844px;}
.h25{height:47.384313px;}
.h1f{height:48.298267px;}
.h12{height:49.892117px;}
.hb{height:50.684056px;}
.h17{height:51.859539px;}
.he{height:52.291702px;}
.h16{height:54.452516px;}
.h3{height:55.316842px;}
.h22{height:55.799998px;}
.h24{height:56.159998px;}
.h1d{height:58.632428px;}
.h18{height:58.651773px;}
.h1c{height:58.795750px;}
.h10{height:58.815148px;}
.h15{height:61.755906px;}
.h19{height:62.715466px;}
.ha{height:64.513267px;}
.h6{height:78.568286px;}
.h20{height:95.039996px;}
.hc{height:101.519996px;}
.h26{height:108.719995px;}
.h11{height:143.490487px;}
.hd{height:143.529308px;}
.h1a{height:149.399994px;}
.h1b{height:168.348783px;}
.h7{height:198.138017px;}
.h14{height:221.471844px;}
.h27{height:292.364235px;}
.h8{height:298.799988px;}
.h4{height:333.719986px;}
.h5{height:528.032005px;}
.h9{height:808.714385px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w4{width:24.479999px;}
.w9{width:107.279996px;}
.w7{width:119.159995px;}
.wa{width:128.159995px;}
.we{width:138.599994px;}
.w8{width:140.759994px;}
.w6{width:141.839994px;}
.wb{width:151.559994px;}
.wc{width:174.599993px;}
.wd{width:187.559992px;}
.wf{width:320.039987px;}
.w3{width:452.159981px;}
.w5{width:541.799977px;}
.w2{width:585.359976px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x8{left:-36.695666px;}
.x0{left:0.000000px;}
.x3{left:1.482023px;}
.x37{left:2.533082px;}
.x39{left:8.634375px;}
.x3d{left:10.838438px;}
.x36{left:14.483220px;}
.x41{left:16.276062px;}
.x40{left:21.144068px;}
.x44{left:29.428224px;}
.x3a{left:31.921824px;}
.x42{left:32.989238px;}
.x3e{left:39.641336px;}
.xe{left:52.624449px;}
.x13{left:55.078712px;}
.x2{left:76.319997px;}
.x4{left:77.802020px;}
.x1c{left:88.199996px;}
.x1{left:89.324996px;}
.x5{left:90.576277px;}
.x7{left:94.575240px;}
.x23{left:98.319400px;}
.x31{left:101.335053px;}
.x12{left:108.454391px;}
.x35{left:112.716150px;}
.x10{left:114.822885px;}
.x11{left:117.372673px;}
.xc{left:132.780856px;}
.x25{left:138.613939px;}
.x34{left:139.956341px;}
.x2a{left:167.682100px;}
.x32{left:173.168759px;}
.x1d{left:187.533755px;}
.x9{left:190.823745px;}
.xb{left:194.822725px;}
.x17{left:201.434626px;}
.x24{left:214.657835px;}
.x1b{left:223.090104px;}
.x18{left:231.037637px;}
.x33{left:236.313314px;}
.x26{left:244.260868px;}
.x15{left:247.857002px;}
.x45{left:263.519989px;}
.x38{left:275.399989px;}
.x14{left:288.134592px;}
.xf{left:295.784854px;}
.x6{left:394.114642px;}
.x2e{left:459.117390px;}
.x20{left:460.347526px;}
.x43{left:476.639980px;}
.x3c{left:481.319980px;}
.x3b{left:492.839979px;}
.xa{left:494.362113px;}
.x27{left:501.017656px;}
.x21{left:514.244786px;}
.x1e{left:518.286204px;}
.x2f{left:519.960627px;}
.x2b{left:535.086443px;}
.x28{left:543.519998px;}
.x2c{left:560.443653px;}
.x1a{left:572.836221px;}
.x16{left:580.783731px;}
.x30{left:586.059409px;}
.x22{left:594.006963px;}
.x1f{left:619.357258px;}
.x29{left:636.136569px;}
.x19{left:656.841537px;}
.x2d{left:670.064732px;}
.x3f{left:686.519971px;}
.xd{left:839.159965px;}
@media print{
.v1{vertical-align:-37.589630pt;}
.v0{vertical-align:0.000000pt;}
.ls1{letter-spacing:0.000000pt;}
.ls0{letter-spacing:0.000046pt;}
.ws3{word-spacing:-181.333356pt;}
.ws0{word-spacing:-118.397567pt;}
.ws2{word-spacing:-67.880617pt;}
.ws16{word-spacing:-65.555144pt;}
.ws7{word-spacing:-49.659352pt;}
.ws4{word-spacing:-42.985886pt;}
.wsf{word-spacing:-42.971708pt;}
.wse{word-spacing:-37.747875pt;}
.wsa{word-spacing:-37.176983pt;}
.ws14{word-spacing:-37.164721pt;}
.ws13{word-spacing:-32.616129pt;}
.ws12{word-spacing:-22.819558pt;}
.ws8{word-spacing:-21.492943pt;}
.wsc{word-spacing:-21.485854pt;}
.ws15{word-spacing:-17.363982pt;}
.ws10{word-spacing:-16.809273pt;}
.ws5{word-spacing:-16.308064pt;}
.ws9{word-spacing:-15.788669pt;}
.ws6{word-spacing:-14.828547pt;}
.ws11{word-spacing:-14.354835pt;}
.ws1{word-spacing:0.000000pt;}
.wsb{word-spacing:1212.035287pt;}
.wsd{word-spacing:1285.941921pt;}
._20{margin-left:-12.142334pt;}
._21{margin-left:-10.422816pt;}
._25{margin-left:-7.937019pt;}
._1d{margin-left:-6.844586pt;}
._13{margin-left:-5.762303pt;}
._9{margin-left:-4.588953pt;}
._12{margin-left:-3.352782pt;}
._e{margin-left:-2.300931pt;}
._0{margin-left:-1.152248pt;}
._14{width:0.939044pt;}
._1{width:2.682429pt;}
._a{width:3.900035pt;}
._c{width:5.226961pt;}
._5{width:6.156819pt;}
._7{width:7.738091pt;}
._15{width:9.170780pt;}
._b{width:10.360274pt;}
._8{width:11.622849pt;}
._d{width:13.405072pt;}
._4{width:14.466008pt;}
._17{width:15.385985pt;}
._10{width:17.220029pt;}
._f{width:18.271400pt;}
._16{width:19.200737pt;}
._6{width:20.985365pt;}
._11{width:22.177215pt;}
._23{width:23.183777pt;}
._22{width:24.412805pt;}
._18{width:25.315390pt;}
._27{width:26.384812pt;}
._28{width:28.889811pt;}
._1b{width:29.946286pt;}
._1f{width:35.765520pt;}
._26{width:42.121171pt;}
._1c{width:46.327458pt;}
._24{width:47.473655pt;}
._3{width:66.228779pt;}
._1e{width:67.280384pt;}
._1a{width:79.195524pt;}
._2{width:83.142700pt;}
._19{width:111.785312pt;}
.fsf{font-size:51.636097pt;}
.fsa{font-size:53.340097pt;}
.fse{font-size:56.788086pt;}
.fs6{font-size:58.662102pt;}
.fs0{font-size:64.024123pt;}
.fsc{font-size:72.587345pt;}
.fs8{font-size:72.611294pt;}
.fs5{font-size:74.668133pt;}
.fs2{font-size:96.196248pt;}
.fs9{font-size:191.512161pt;}
.fs7{font-size:191.563974pt;}
.fsd{font-size:224.689733pt;}
.fs3{font-size:229.326409pt;}
.fsb{font-size:295.591384pt;}
.fs10{font-size:390.209190pt;}
.fs1{font-size:704.747421pt;}
.fs4{font-size:1079.365212pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y1f1{bottom:4.001744pt;}
.y1ee{bottom:4.044230pt;}
.y26e{bottom:4.053267pt;}
.y1ea{bottom:4.061147pt;}
.y276{bottom:4.094772pt;}
.y1f5{bottom:4.148136pt;}
.y1e4{bottom:4.170123pt;}
.y45{bottom:4.529596pt;}
.y2d{bottom:9.323357pt;}
.y150{bottom:11.612784pt;}
.y293{bottom:19.348878pt;}
.y1ed{bottom:21.475771pt;}
.y1e9{bottom:21.492688pt;}
.y1f4{bottom:21.579677pt;}
.y44{bottom:22.200017pt;}
.y1f0{bottom:23.370123pt;}
.y26d{bottom:23.421646pt;}
.y1b7{bottom:27.827887pt;}
.yb{bottom:34.805001pt;}
.y1ec{bottom:38.907312pt;}
.y1e8{bottom:38.924228pt;}
.y1f3{bottom:39.011218pt;}
.y14f{bottom:50.394346pt;}
.yb2{bottom:51.820456pt;}
.y2c{bottom:52.260550pt;}
.y14{bottom:52.557618pt;}
.y1e7{bottom:56.355769pt;}
.y1df{bottom:59.424268pt;}
.y1d5{bottom:61.331192pt;}
.y12b{bottom:64.896530pt;}
.yb1{bottom:69.827241pt;}
.y1e6{bottom:73.787310pt;}
.y25d{bottom:76.429420pt;}
.y237{bottom:79.229871pt;}
.y1d4{bottom:79.337976pt;}
.y16f{bottom:80.731142pt;}
.y281{bottom:84.815525pt;}
.y12d{bottom:84.859169pt;}
.y12a{bottom:84.904069pt;}
.y40{bottom:85.360613pt;}
.yb0{bottom:87.834025pt;}
.y14e{bottom:89.175908pt;}
.y12{bottom:89.389624pt;}
.y236{bottom:97.236656pt;}
.y1d3{bottom:97.344761pt;}
.y16c{bottom:98.576613pt;}
.y1de{bottom:99.439345pt;}
.y280{bottom:104.823063pt;}
.y129{bottom:104.911607pt;}
.y3f{bottom:105.368151pt;}
.y87{bottom:105.675460pt;}
.yaf{bottom:105.840810pt;}
.y12c{bottom:106.867461pt;}
.y16e{bottom:109.810048pt;}
.y191{bottom:111.715514pt;}
.y1f{bottom:114.068211pt;}
.y235{bottom:115.243440pt;}
.y1d2{bottom:115.351545pt;}
.y25c{bottom:116.444496pt;}
.y1dd{bottom:119.446883pt;}
.yae{bottom:123.847594pt;}
.y27f{bottom:124.830602pt;}
.y128{bottom:124.919146pt;}
.y86{bottom:125.682998pt;}
.y1b6{bottom:126.537424pt;}
.ydb{bottom:127.280870pt;}
.y16b{bottom:127.655487pt;}
.y190{bottom:131.723052pt;}
.y16d{bottom:131.818340pt;}
.y8{bottom:132.573947pt;}
.y234{bottom:133.250225pt;}
.y1d1{bottom:133.358330pt;}
.y25b{bottom:136.452035pt;}
.y1dc{bottom:139.454422pt;}
.yad{bottom:141.854379pt;}
.y60{bottom:144.136201pt;}
.y27e{bottom:144.838140pt;}
.y127{bottom:144.926684pt;}
.y85{bottom:145.690537pt;}
.y1b5{bottom:146.544962pt;}
.yda{bottom:147.288409pt;}
.y16a{bottom:149.663779pt;}
.y233{bottom:151.257009pt;}
.y1d0{bottom:151.365114pt;}
.y18f{bottom:151.730591pt;}
.y25a{bottom:156.459573pt;}
.ya{bottom:157.288440pt;}
.yac{bottom:159.861163pt;}
.y5f{bottom:164.143739pt;}
.y27d{bottom:164.845678pt;}
.y126{bottom:164.934222pt;}
.y84{bottom:165.698075pt;}
.y1b4{bottom:166.552501pt;}
.yd9{bottom:167.295947pt;}
.y232{bottom:169.263794pt;}
.y1cf{bottom:169.371899pt;}
.y18e{bottom:171.738129pt;}
.y14c{bottom:172.759593pt;}
.y259{bottom:176.467111pt;}
.y7{bottom:176.590532pt;}
.yab{bottom:177.867948pt;}
.y1db{bottom:179.469498pt;}
.y5e{bottom:184.151277pt;}
.y27c{bottom:184.853217pt;}
.y125{bottom:184.941761pt;}
.y83{bottom:185.705613pt;}
.y231{bottom:187.270578pt;}
.yd8{bottom:187.303485pt;}
.y14b{bottom:190.605065pt;}
.y18d{bottom:191.745668pt;}
.y3e{bottom:195.568928pt;}
.yaa{bottom:195.874732pt;}
.y258{bottom:196.474650pt;}
.y6{bottom:198.598824pt;}
.y1da{bottom:199.477037pt;}
.y5d{bottom:204.158816pt;}
.y124{bottom:204.949299pt;}
.y1ce{bottom:205.385468pt;}
.y82{bottom:205.713152pt;}
.y1b3{bottom:206.567577pt;}
.yd7{bottom:207.311024pt;}
.y18c{bottom:211.753206pt;}
.ya9{bottom:213.881517pt;}
.y3d{bottom:215.576467pt;}
.y257{bottom:216.482188pt;}
.y1d9{bottom:219.484575pt;}
.y5{bottom:220.607116pt;}
.y230{bottom:223.284147pt;}
.y1cd{bottom:223.392252pt;}
.y5c{bottom:224.166354pt;}
.y27b{bottom:224.868293pt;}
.y123{bottom:224.956837pt;}
.y81{bottom:225.720690pt;}
.y1b2{bottom:226.575116pt;}
.yd6{bottom:227.318562pt;}
.y1e{bottom:228.623941pt;}
.y11{bottom:229.955187pt;}
.ya8{bottom:231.888301pt;}
.y3c{bottom:235.584005pt;}
.y256{bottom:236.489726pt;}
.y1d8{bottom:239.492114pt;}
.y22f{bottom:241.290932pt;}
.y1cc{bottom:241.399037pt;}
.y4{bottom:242.615408pt;}
.y169{bottom:243.897919pt;}
.y27a{bottom:244.875832pt;}
.y122{bottom:244.964376pt;}
.y80{bottom:245.728228pt;}
.yd5{bottom:247.326100pt;}
.ya7{bottom:249.895086pt;}
.y18b{bottom:251.768283pt;}
.y1d{bottom:254.633741pt;}
.y3b{bottom:255.591543pt;}
.y255{bottom:256.497265pt;}
.y22e{bottom:259.297717pt;}
.y1cb{bottom:259.405822pt;}
.y279{bottom:264.883370pt;}
.y121{bottom:264.971914pt;}
.y7f{bottom:265.735767pt;}
.y1b1{bottom:266.590192pt;}
.yd4{bottom:267.333639pt;}
.ya6{bottom:267.901870pt;}
.y18a{bottom:271.775821pt;}
.y3a{bottom:275.599082pt;}
.y254{bottom:276.504803pt;}
.y22d{bottom:277.304501pt;}
.y1ca{bottom:277.412606pt;}
.y168{bottom:277.539700pt;}
.y165{bottom:282.652735pt;}
.y278{bottom:284.890908pt;}
.y120{bottom:284.979452pt;}
.ya5{bottom:285.908655pt;}
.y1b0{bottom:286.597731pt;}
.y3{bottom:286.631993pt;}
.yd3{bottom:287.341177pt;}
.y1e2{bottom:287.576873pt;}
.y189{bottom:291.783359pt;}
.y1c9{bottom:295.419391pt;}
.y39{bottom:295.606620pt;}
.y253{bottom:296.512342pt;}
.y167{bottom:299.547992pt;}
.y164{bottom:300.659520pt;}
.ya4{bottom:303.915439pt;}
.y277{bottom:304.898447pt;}
.y11f{bottom:304.986991pt;}
.y7e{bottom:305.750844pt;}
.y1af{bottom:306.605269pt;}
.yd2{bottom:307.348716pt;}
.y1e1{bottom:307.584412pt;}
.y2{bottom:308.640285pt;}
.y188{bottom:311.790898pt;}
.y22c{bottom:313.318070pt;}
.y1c8{bottom:313.426175pt;}
.y38{bottom:315.614158pt;}
.y252{bottom:316.519880pt;}
.y163{bottom:318.666304pt;}
.y166{bottom:321.556284pt;}
.ya3{bottom:321.922224pt;}
.y11e{bottom:324.994529pt;}
.y7d{bottom:325.758382pt;}
.y1ae{bottom:326.612808pt;}
.y140{bottom:326.914038pt;}
.yd1{bottom:327.356254pt;}
.y1e0{bottom:327.591950pt;}
.y22b{bottom:331.324855pt;}
.y1c7{bottom:331.432960pt;}
.y187{bottom:331.798436pt;}
.yf2{bottom:335.783402pt;}
.y251{bottom:336.527418pt;}
.y206{bottom:339.301607pt;}
.ya2{bottom:339.929009pt;}
.y274{bottom:340.978682pt;}
.y11d{bottom:345.002068pt;}
.y162{bottom:345.009534pt;}
.y7c{bottom:345.765920pt;}
.y1ad{bottom:346.620346pt;}
.y22a{bottom:349.331639pt;}
.y186{bottom:351.805974pt;}
.yf1{bottom:355.790941pt;}
.y1c{bottom:356.869088pt;}
.y43{bottom:357.127184pt;}
.ya1{bottom:357.935793pt;}
.y10{bottom:358.200333pt;}
.y273{bottom:360.986220pt;}
.y13f{bottom:362.927607pt;}
.y161{bottom:363.016318pt;}
.y11c{bottom:365.009606pt;}
.y7b{bottom:365.773459pt;}
.y1ac{bottom:366.627884pt;}
.y14a{bottom:367.158561pt;}
.yd0{bottom:367.371331pt;}
.y185{bottom:371.813513pt;}
.yf0{bottom:375.798479pt;}
.ya0{bottom:375.942578pt;}
.y250{bottom:376.542495pt;}
.y42{bottom:379.135477pt;}
.y205{bottom:379.316684pt;}
.y1b{bottom:382.878888pt;}
.y11b{bottom:385.017144pt;}
.y229{bottom:385.345208pt;}
.y7a{bottom:385.780997pt;}
.y1ab{bottom:386.635423pt;}
.ycf{bottom:387.378869pt;}
.y160{bottom:389.359612pt;}
.y184{bottom:391.821051pt;}
.y9f{bottom:393.949362pt;}
.y24f{bottom:396.550033pt;}
.y13e{bottom:398.941176pt;}
.y204{bottom:399.324222pt;}
.y272{bottom:401.001297pt;}
.y41{bottom:401.143769pt;}
.y11a{bottom:405.024683pt;}
.y228{bottom:405.352747pt;}
.y79{bottom:405.788535pt;}
.y1aa{bottom:406.642961pt;}
.y15f{bottom:407.366396pt;}
.yce{bottom:407.386407pt;}
.y1e5{bottom:409.720001pt;}
.y183{bottom:411.828590pt;}
.y9e{bottom:411.956147pt;}
.yef{bottom:415.813556pt;}
.y291{bottom:416.268477pt;}
.y24e{bottom:416.557572pt;}
.y13d{bottom:416.947960pt;}
.y203{bottom:419.331760pt;}
.y1f2{bottom:419.640001pt;}
.y271{bottom:421.008836pt;}
.y78{bottom:425.796074pt;}
.y1a9{bottom:426.650499pt;}
.ycd{bottom:427.393946pt;}
.y9d{bottom:429.962931pt;}
.y15e{bottom:430.999256pt;}
.y182{bottom:431.836128pt;}
.yee{bottom:435.821094pt;}
.y290{bottom:436.276016pt;}
.y202{bottom:439.339299pt;}
.y270{bottom:441.016374pt;}
.y1eb{bottom:444.600000pt;}
.y77{bottom:445.803612pt;}
.y1a8{bottom:446.658038pt;}
.ycc{bottom:447.401484pt;}
.y9c{bottom:447.969716pt;}
.y181{bottom:451.843666pt;}
.y13c{bottom:452.961529pt;}
.yed{bottom:455.828633pt;}
.y1c6{bottom:455.894612pt;}
.y28f{bottom:456.283554pt;}
.y24d{bottom:456.572648pt;}
.y15b{bottom:457.377687pt;}
.y2a{bottom:458.489765pt;}
.y15d{bottom:460.078193pt;}
.y26f{bottom:461.023912pt;}
.y76{bottom:465.811151pt;}
.y9b{bottom:465.976500pt;}
.y1a7{bottom:466.665576pt;}
.ycb{bottom:467.409022pt;}
.y224{bottom:468.225448pt;}
.y13b{bottom:470.968314pt;}
.y180{bottom:471.851205pt;}
.y1c5{bottom:473.901397pt;}
.yec{bottom:475.836171pt;}
.y28e{bottom:476.291092pt;}
.y29{bottom:478.497304pt;}
.y201{bottom:479.354376pt;}
.y1ef{bottom:481.079998pt;}
.y15c{bottom:482.086486pt;}
.y53{bottom:482.675233pt;}
.y100{bottom:483.405780pt;}
.y9a{bottom:483.983285pt;}
.y1a{bottom:485.114363pt;}
.y75{bottom:485.818689pt;}
.yf{bottom:486.445512pt;}
.y1a6{bottom:486.673114pt;}
.yca{bottom:487.416561pt;}
.y15a{bottom:488.149173pt;}
.y223{bottom:488.232986pt;}
.y13a{bottom:488.975098pt;}
.y17f{bottom:491.858743pt;}
.y1c4{bottom:491.908181pt;}
.yeb{bottom:495.843709pt;}
.y28{bottom:498.504842pt;}
.y200{bottom:499.361914pt;}
.y1e3{bottom:500.279998pt;}
.y99{bottom:501.990069pt;}
.y52{bottom:502.682771pt;}
.yff{bottom:503.413319pt;}
.y119{bottom:505.183357pt;}
.y1a5{bottom:506.680653pt;}
.y139{bottom:506.981883pt;}
.yc9{bottom:507.424099pt;}
.y222{bottom:508.240525pt;}
.y1c3{bottom:509.914966pt;}
.y19{bottom:511.124162pt;}
.y17e{bottom:511.866281pt;}
.yea{bottom:515.851248pt;}
.y28d{bottom:516.306169pt;}
.y27{bottom:518.512380pt;}
.y1ff{bottom:519.369452pt;}
.y98{bottom:519.996854pt;}
.y51{bottom:522.690310pt;}
.yfe{bottom:523.420857pt;}
.y138{bottom:524.988667pt;}
.y118{bottom:525.190895pt;}
.y74{bottom:525.833766pt;}
.y1a4{bottom:526.688191pt;}
.yc8{bottom:527.431638pt;}
.y1c2{bottom:527.921750pt;}
.y221{bottom:528.248063pt;}
.yc{bottom:531.686405pt;}
.y17d{bottom:531.873820pt;}
.y149{bottom:532.425146pt;}
.ye9{bottom:535.858786pt;}
.y28c{bottom:536.313708pt;}
.y97{bottom:538.003638pt;}
.y26{bottom:538.519919pt;}
.y1fe{bottom:539.376991pt;}
.y275{bottom:539.959996pt;}
.y9{bottom:541.239996pt;}
.y50{bottom:542.697848pt;}
.y137{bottom:542.995452pt;}
.y24c{bottom:543.668344pt;}
.y117{bottom:545.198434pt;}
.y73{bottom:545.841304pt;}
.y1c1{bottom:545.928535pt;}
.y17c{bottom:551.881358pt;}
.ye8{bottom:555.866324pt;}
.y96{bottom:556.010423pt;}
.y25{bottom:558.527457pt;}
.y1fd{bottom:559.384529pt;}
.y136{bottom:561.002236pt;}
.y4f{bottom:562.705386pt;}
.yfd{bottom:563.435934pt;}
.y24b{bottom:563.675882pt;}
.y72{bottom:565.848842pt;}
.y1a3{bottom:566.703268pt;}
.yc7{bottom:567.446714pt;}
.y220{bottom:568.263140pt;}
.y17b{bottom:571.888896pt;}
.y95{bottom:574.017207pt;}
.ye7{bottom:575.873863pt;}
.y28b{bottom:576.328784pt;}
.y24{bottom:578.534995pt;}
.y135{bottom:579.009021pt;}
.y1fc{bottom:579.392067pt;}
.y4e{bottom:582.712925pt;}
.yfc{bottom:583.443472pt;}
.y116{bottom:585.213510pt;}
.y71{bottom:585.856381pt;}
.y1a2{bottom:586.710806pt;}
.yc6{bottom:587.454253pt;}
.y21f{bottom:588.270678pt;}
.y17a{bottom:591.896435pt;}
.y94{bottom:592.023992pt;}
.ye6{bottom:595.881401pt;}
.y28a{bottom:596.336323pt;}
.y134{bottom:597.015806pt;}
.y18{bottom:597.353494pt;}
.y23{bottom:598.542534pt;}
.ye{bottom:598.684618pt;}
.y1fb{bottom:599.399606pt;}
.y4d{bottom:602.720463pt;}
.yfb{bottom:603.451010pt;}
.y24a{bottom:603.690959pt;}
.y115{bottom:605.221049pt;}
.y70{bottom:605.863919pt;}
.yc5{bottom:607.461791pt;}
.y21e{bottom:608.278217pt;}
.y159{bottom:613.272250pt;}
.y133{bottom:615.022590pt;}
.ye5{bottom:615.888939pt;}
.y22{bottom:618.550072pt;}
.y4c{bottom:622.728002pt;}
.y156{bottom:622.881936pt;}
.y17{bottom:623.363294pt;}
.yfa{bottom:623.458549pt;}
.y249{bottom:623.698498pt;}
.y114{bottom:625.228587pt;}
.y6f{bottom:625.871457pt;}
.y1a1{bottom:626.725883pt;}
.yc4{bottom:627.469329pt;}
.y21d{bottom:628.285755pt;}
.y93{bottom:630.038315pt;}
.y179{bottom:631.911512pt;}
.y132{bottom:633.029375pt;}
.ye4{bottom:635.896478pt;}
.y289{bottom:636.351399pt;}
.y21{bottom:638.557611pt;}
.y1fa{bottom:639.414682pt;}
.y158{bottom:642.351181pt;}
.y4b{bottom:642.735540pt;}
.yf9{bottom:643.466087pt;}
.y248{bottom:643.706036pt;}
.y113{bottom:645.236125pt;}
.y6e{bottom:645.878996pt;}
.yc3{bottom:647.476868pt;}
.y21c{bottom:648.293293pt;}
.y286{bottom:649.967143pt;}
.y26c{bottom:650.359991pt;}
.y131{bottom:651.036159pt;}
.y178{bottom:651.919050pt;}
.y155{bottom:651.960870pt;}
.ye3{bottom:655.904016pt;}
.y288{bottom:656.358938pt;}
.y20{bottom:658.565149pt;}
.y1f9{bottom:659.422221pt;}
.y1c0{bottom:661.871777pt;}
.y4a{bottom:662.743078pt;}
.yf8{bottom:663.473625pt;}
.y247{bottom:663.713574pt;}
.y157{bottom:664.359473pt;}
.y112{bottom:665.243664pt;}
.y6d{bottom:665.886534pt;}
.y1a0{bottom:666.740960pt;}
.yc2{bottom:667.484406pt;}
.y21b{bottom:668.300832pt;}
.y285{bottom:669.974681pt;}
.y92{bottom:670.053392pt;}
.y177{bottom:671.926588pt;}
.y154{bottom:673.969162pt;}
.ye2{bottom:675.911555pt;}
.y287{bottom:676.366476pt;}
.y1f8{bottom:679.429759pt;}
.y1bf{bottom:679.878562pt;}
.y49{bottom:682.750617pt;}
.yf7{bottom:683.481164pt;}
.y246{bottom:683.721113pt;}
.y111{bottom:685.251202pt;}
.y19f{bottom:686.748498pt;}
.y130{bottom:687.049728pt;}
.y21a{bottom:688.308370pt;}
.y284{bottom:689.982220pt;}
.y91{bottom:690.060930pt;}
.y176{bottom:691.934127pt;}
.ye1{bottom:695.919093pt;}
.y1be{bottom:697.885346pt;}
.y1f7{bottom:699.437298pt;}
.y48{bottom:702.758155pt;}
.yf6{bottom:703.488702pt;}
.y37{bottom:704.755285pt;}
.y12f{bottom:705.056513pt;}
.y110{bottom:705.258741pt;}
.y148{bottom:705.300698pt;}
.y6c{bottom:705.901611pt;}
.y19e{bottom:706.756036pt;}
.yc1{bottom:707.499483pt;}
.y219{bottom:708.315908pt;}
.y283{bottom:709.989758pt;}
.y90{bottom:710.068468pt;}
.y1d7{bottom:711.941665pt;}
.y147{bottom:714.910384pt;}
.y1bd{bottom:715.892131pt;}
.ye0{bottom:715.926631pt;}
.y1f6{bottom:719.444836pt;}
.y47{bottom:722.765693pt;}
.yf5{bottom:723.496241pt;}
.y245{bottom:723.736189pt;}
.y36{bottom:724.762823pt;}
.y10f{bottom:725.266279pt;}
.y6b{bottom:725.909149pt;}
.y19d{bottom:726.763575pt;}
.yc0{bottom:727.507021pt;}
.y218{bottom:728.323447pt;}
.y8f{bottom:730.076007pt;}
.y175{bottom:731.949203pt;}
.y1bc{bottom:733.898915pt;}
.ydf{bottom:735.934170pt;}
.y16{bottom:737.849814pt;}
.yd{bottom:739.180980pt;}
.y12e{bottom:741.070082pt;}
.y46{bottom:742.773232pt;}
.yf4{bottom:743.503779pt;}
.y244{bottom:743.743728pt;}
.y35{bottom:744.770361pt;}
.y10e{bottom:745.273817pt;}
.y6a{bottom:745.916688pt;}
.y19c{bottom:746.771113pt;}
.y217{bottom:748.330985pt;}
.y282{bottom:750.004835pt;}
.y8e{bottom:750.083545pt;}
.y1bb{bottom:751.905700pt;}
.y174{bottom:751.956742pt;}
.yde{bottom:755.941708pt;}
.y292{bottom:758.199987pt;}
.y26b{bottom:760.640320pt;}
.yf3{bottom:763.511317pt;}
.y243{bottom:763.751266pt;}
.y15{bottom:763.859614pt;}
.y34{bottom:764.777900pt;}
.y10d{bottom:765.281356pt;}
.y69{bottom:765.924226pt;}
.y19b{bottom:766.778652pt;}
.y216{bottom:768.338524pt;}
.y20f{bottom:769.769803pt;}
.y1ba{bottom:769.912484pt;}
.y8d{bottom:770.091083pt;}
.y173{bottom:771.964280pt;}
.ydd{bottom:775.949246pt;}
.y26a{bottom:780.647858pt;}
.y242{bottom:783.758804pt;}
.ybf{bottom:784.668869pt;}
.y33{bottom:784.785438pt;}
.y10c{bottom:785.288894pt;}
.y68{bottom:785.931764pt;}
.y19a{bottom:786.786190pt;}
.y1b9{bottom:787.919269pt;}
.y215{bottom:788.346062pt;}
.y20e{bottom:789.777342pt;}
.y8c{bottom:790.098622pt;}
.y152{bottom:790.301481pt;}
.y172{bottom:791.971819pt;}
.y269{bottom:800.655396pt;}
.y241{bottom:803.766343pt;}
.y32{bottom:804.792976pt;}
.y10b{bottom:805.296432pt;}
.y1b8{bottom:805.926053pt;}
.y67{bottom:805.939303pt;}
.y199{bottom:806.793728pt;}
.y214{bottom:808.353600pt;}
.y20d{bottom:809.784880pt;}
.y8b{bottom:810.106160pt;}
.y171{bottom:811.979357pt;}
.y153{bottom:816.158724pt;}
.y151{bottom:819.939662pt;}
.y268{bottom:820.662935pt;}
.y31{bottom:824.800515pt;}
.y10a{bottom:825.303971pt;}
.y66{bottom:825.946841pt;}
.y213{bottom:828.361139pt;}
.y13{bottom:829.559984pt;}
.y20c{bottom:829.792419pt;}
.y8a{bottom:830.113699pt;}
.y170{bottom:831.986895pt;}
.ybe{bottom:835.688092pt;}
.y240{bottom:843.781420pt;}
.y30{bottom:844.808053pt;}
.y109{bottom:845.311509pt;}
.y65{bottom:845.954379pt;}
.y198{bottom:846.808805pt;}
.y1d6{bottom:851.994434pt;}
.y146{bottom:859.053190pt;}
.y267{bottom:860.678011pt;}
.ydc{bottom:862.915366pt;}
.y23f{bottom:863.788958pt;}
.y2f{bottom:864.815591pt;}
.y108{bottom:865.319047pt;}
.y64{bottom:865.961918pt;}
.y197{bottom:866.816343pt;}
.y212{bottom:868.376215pt;}
.y20b{bottom:869.807495pt;}
.ybb{bottom:872.001972pt;}
.y145{bottom:875.114730pt;}
.y5b{bottom:876.136859pt;}
.y266{bottom:880.685550pt;}
.y23e{bottom:883.796496pt;}
.y2e{bottom:884.823130pt;}
.y107{bottom:885.326586pt;}
.y63{bottom:885.969456pt;}
.ybd{bottom:886.707315pt;}
.y196{bottom:886.823882pt;}
.y211{bottom:888.383754pt;}
.y20a{bottom:889.815034pt;}
.yba{bottom:892.009510pt;}
.y5a{bottom:898.145151pt;}
.y265{bottom:900.693088pt;}
.y23d{bottom:903.804035pt;}
.y106{bottom:905.334124pt;}
.y14d{bottom:905.399981pt;}
.y62{bottom:905.976995pt;}
.y210{bottom:908.391292pt;}
.y209{bottom:909.822572pt;}
.yb9{bottom:912.017049pt;}
.y144{bottom:915.129807pt;}
.y59{bottom:920.153443pt;}
.y264{bottom:920.700627pt;}
.y23c{bottom:923.811573pt;}
.y2b{bottom:924.599980pt;}
.y105{bottom:925.341663pt;}
.y61{bottom:925.984533pt;}
.y195{bottom:926.838959pt;}
.y208{bottom:929.830110pt;}
.yb8{bottom:932.024587pt;}
.y143{bottom:935.137345pt;}
.ybc{bottom:937.726538pt;}
.y263{bottom:940.708165pt;}
.y58{bottom:942.161735pt;}
.y23b{bottom:943.819111pt;}
.y104{bottom:945.349201pt;}
.y194{bottom:946.846497pt;}
.yb7{bottom:952.032125pt;}
.y142{bottom:955.144884pt;}
.y262{bottom:960.715703pt;}
.y227{bottom:962.532354pt;}
.y23a{bottom:963.826650pt;}
.y57{bottom:964.170028pt;}
.y103{bottom:965.356739pt;}
.y193{bottom:966.854035pt;}
.y207{bottom:969.845187pt;}
.yb6{bottom:972.039664pt;}
.y141{bottom:975.152422pt;}
.y261{bottom:980.723242pt;}
.y239{bottom:983.834188pt;}
.y102{bottom:985.364278pt;}
.y56{bottom:986.178320pt;}
.y192{bottom:986.861574pt;}
.yb5{bottom:992.047202pt;}
.y89{bottom:992.750224pt;}
.y226{bottom:995.544792pt;}
.y260{bottom:1000.730780pt;}
.y55{bottom:1008.186612pt;}
.yb4{bottom:1012.054741pt;}
.y25f{bottom:1020.738318pt;}
.y238{bottom:1023.849265pt;}
.y225{bottom:1028.557231pt;}
.y54{bottom:1030.194904pt;}
.yb3{bottom:1032.062279pt;}
.y88{bottom:1035.766431pt;}
.y101{bottom:1057.820102pt;}
.y25e{bottom:1060.753395pt;}
.h1e{height:15.999999pt;}
.hf{height:18.239999pt;}
.h23{height:35.199999pt;}
.h21{height:39.656523pt;}
.h13{height:40.965194pt;}
.h25{height:42.119389pt;}
.h1f{height:42.931793pt;}
.h12{height:44.348549pt;}
.hb{height:45.052494pt;}
.h17{height:46.097368pt;}
.he{height:46.481513pt;}
.h16{height:48.402237pt;}
.h3{height:49.170526pt;}
.h22{height:49.599998pt;}
.h24{height:49.919998pt;}
.h1d{height:52.117714pt;}
.h18{height:52.134909pt;}
.h1c{height:52.262889pt;}
.h10{height:52.280132pt;}
.h15{height:54.894139pt;}
.h19{height:55.747081pt;}
.ha{height:57.345126pt;}
.h6{height:69.838476pt;}
.h20{height:84.479996pt;}
.hc{height:90.239996pt;}
.h26{height:96.639996pt;}
.h11{height:127.547099pt;}
.hd{height:127.581607pt;}
.h1a{height:132.799994pt;}
.h1b{height:149.643362pt;}
.h7{height:176.122682pt;}
.h14{height:196.863862pt;}
.h27{height:259.879320pt;}
.h8{height:265.599989pt;}
.h4{height:296.639988pt;}
.h5{height:469.361782pt;}
.h9{height:718.857231pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w4{width:21.759999pt;}
.w9{width:95.359996pt;}
.w7{width:105.919996pt;}
.wa{width:113.919995pt;}
.we{width:123.199995pt;}
.w8{width:125.119995pt;}
.w6{width:126.079995pt;}
.wb{width:134.719994pt;}
.wc{width:155.199994pt;}
.wd{width:166.719993pt;}
.wf{width:284.479988pt;}
.w3{width:401.919983pt;}
.w5{width:481.599980pt;}
.w2{width:520.319978pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x8{left:-32.618370pt;}
.x0{left:0.000000pt;}
.x3{left:1.317353pt;}
.x37{left:2.251628pt;}
.x39{left:7.675000pt;}
.x3d{left:9.634167pt;}
.x36{left:12.873973pt;}
.x41{left:14.467610pt;}
.x40{left:18.794727pt;}
.x44{left:26.158422pt;}
.x3a{left:28.374954pt;}
.x42{left:29.323767pt;}
.x3e{left:35.236743pt;}
.xe{left:46.777288pt;}
.x13{left:48.958855pt;}
.x2{left:67.839997pt;}
.x4{left:69.157351pt;}
.x1c{left:78.399997pt;}
.x1{left:79.399997pt;}
.x5{left:80.512246pt;}
.x7{left:84.066880pt;}
.x23{left:87.395022pt;}
.x31{left:90.075603pt;}
.x12{left:96.403903pt;}
.x35{left:100.192133pt;}
.x10{left:102.064786pt;}
.x11{left:104.331265pt;}
.xc{left:118.027428pt;}
.x25{left:123.212390pt;}
.x34{left:124.405637pt;}
.x2a{left:149.050755pt;}
.x32{left:153.927786pt;}
.x1d{left:166.696671pt;}
.x9{left:169.621107pt;}
.xb{left:173.175756pt;}
.x17{left:179.053001pt;}
.x24{left:190.806965pt;}
.x1b{left:198.302315pt;}
.x18{left:205.366788pt;}
.x33{left:210.056279pt;}
.x26{left:217.120772pt;}
.x15{left:220.317335pt;}
.x45{left:234.239990pt;}
.x38{left:244.799990pt;}
.x14{left:256.119637pt;}
.xf{left:262.919871pt;}
.x6{left:350.324126pt;}
.x2e{left:408.104347pt;}
.x20{left:409.197801pt;}
.x43{left:423.679982pt;}
.x3c{left:427.839982pt;}
.x3b{left:438.079982pt;}
.xa{left:439.432990pt;}
.x27{left:445.349028pt;}
.x21{left:457.106477pt;}
.x1e{left:460.698848pt;}
.x2f{left:462.187224pt;}
.x2b{left:475.632393pt;}
.x28{left:483.128887pt;}
.x2c{left:498.172136pt;}
.x1a{left:509.187752pt;}
.x16{left:516.252206pt;}
.x30{left:520.941697pt;}
.x22{left:528.006189pt;}
.x1f{left:550.539785pt;}
.x29{left:565.454728pt;}
.x19{left:583.859144pt;}
.x2d{left:595.613095pt;}
.x3f{left:610.239975pt;}
.xd{left:745.919969pt;}
}




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