
    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_12b0198a8bcac47c755dd77a.woff')format("woff");}.ff1{font-family:ff1;line-height:0.873535;font-style:normal;font-weight: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_0c5d878ae253b18d66e70db5.woff')format("woff");}.ff2{font-family:ff2;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_5cacc8bf9f22dc7683dbf4dc.woff')format("woff");}.ff3{font-family:ff3;line-height:0.861816;font-style:normal;font-weight: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_e9e95fc6db016ee81b5a0eca.woff')format("woff");}.ff4{font-family:ff4;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_464d83da924d0a52a5f5b8b5.woff')format("woff");}.ff5{font-family:ff5;line-height:0.689453;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff6{font-family:ff6;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff7{font-family:ff7;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff8{font-family:ff8;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff9{font-family:ff9;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ffa{font-family:ffa;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ffb{font-family:ffb;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ffc{font-family:ffc;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffd;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ffd{font-family:ffd;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ffe{font-family:ffe;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.fff{font-family:fff;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff11{font-family:ff11;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff12{font-family:ff12;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff13{font-family:ff13;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff14{font-family:ff14;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff15{font-family:ff15;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff16{font-family:ff16;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff17{font-family:ff17;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff18{font-family:ff18;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff19{font-family:ff19;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff20{font-family:ff20;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff21;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff21{font-family:ff21;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff22{font-family:ff22;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff23{font-family:ff23;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff25{font-family:ff25;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff26{font-family:ff26;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff27{font-family:ff27;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff29{font-family:ff29;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.861816;font-style:normal;font-weight: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_7218ea9b14819b9117236a82.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff2f{font-family:ff2f;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_2f35120df32f5ab80bae9a78.woff')format("woff");}.ff31{font-family:ff31;line-height:0.861816;font-style:normal;font-weight: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_65cf4be0d195ef2655aff486.woff')format("woff");}.ff32{font-family:ff32;line-height:0.951000;font-style:normal;font-weight: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_b2b7ca095ab756a2523d426f.woff')format("woff");}.ff33{font-family:ff33;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_6c9210956df6342e57b40a6b.woff')format("woff");}.ff34{font-family:ff34;line-height:0.904297;font-style:normal;font-weight: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_9fc2ec3c2b64fa46f8adf8bc.woff')format("woff");}.ff35{font-family:ff35;line-height:0.861816;font-style:normal;font-weight: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_9aa47eb2ea4f2f3a0664b961.woff')format("woff");}.ff36{font-family:ff36;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_cbb3b44f3a13c7cd209ee358.woff')format("woff");}.ff37{font-family:ff37;line-height:0.690918;font-style:normal;font-weight: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_87a5ad1d6be07c93d95ccead.woff')format("woff");}.ff38{font-family:ff38;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff39{font-family:ff39;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_b6247541fd455ed17681911b.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.861816;font-style:normal;font-weight: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_87a5ad1d6be07c93d95ccead.woff')format("woff");}.ff3c{font-family:ff3c;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_b6247541fd455ed17681911b.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.861816;font-style:normal;font-weight: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_87a5ad1d6be07c93d95ccead.woff')format("woff");}.ff40{font-family:ff40;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff41{font-family:ff41;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_b6247541fd455ed17681911b.woff')format("woff");}.ff43{font-family:ff43;line-height:0.861816;font-style:normal;font-weight: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_87a5ad1d6be07c93d95ccead.woff')format("woff");}.ff44{font-family:ff44;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff45{font-family:ff45;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff46{font-family:ff46;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:ff47;src:url('chunks/assets/font_b6247541fd455ed17681911b.woff')format("woff");}.ff47{font-family:ff47;line-height:0.861816;font-style:normal;font-weight: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_87a5ad1d6be07c93d95ccead.woff')format("woff");}.ff48{font-family:ff48;line-height:0.880371;font-style:normal;font-weight: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_cf732f54b930ba6b2919f79f.woff')format("woff");}.ff49{font-family:ff49;line-height:0.682617;font-style:normal;font-weight: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_d02426a5c070be5949cf29ed.woff')format("woff");}.ff4a{font-family:ff4a;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:ff4b;src:url('chunks/assets/font_b6247541fd455ed17681911b.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.861816;font-style:normal;font-weight: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_c6a367dfc4a26681d3c712bf.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_9aa47eb2ea4f2f3a0664b961.woff')format("woff");}.ff4d{font-family:ff4d;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:ff4e;src:url('chunks/assets/font_cdf1d0423f081722ec33c35a.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.904297;font-style:normal;font-weight: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_09bf8adce6f155d3b2116556.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.722656;font-style:normal;font-weight: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_58a09309482814eb63eba384.woff')format("woff");}.ff50{font-family:ff50;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;}
.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);}
.v3{vertical-align:-33.120000px;}
.v1{vertical-align:-14.585400px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:30.240000px;}
.ls3{letter-spacing:0.000000px;}
.ls2{letter-spacing:0.000118px;}
.ls7{letter-spacing:0.005400px;}
.ls0{letter-spacing:0.006600px;}
.ls20{letter-spacing:0.163728px;}
.ls16{letter-spacing:0.218304px;}
.ls6{letter-spacing:0.236160px;}
.ls10{letter-spacing:0.239602px;}
.lsc{letter-spacing:0.250560px;}
.ls11{letter-spacing:0.251582px;}
.ls4{letter-spacing:0.259200px;}
.ls22{letter-spacing:0.272880px;}
.ls21{letter-spacing:0.327456px;}
.lsf{letter-spacing:0.359402px;}
.ls17{letter-spacing:0.382032px;}
.ls5{letter-spacing:0.388800px;}
.ls14{letter-spacing:0.392947px;}
.ls1e{letter-spacing:0.419303px;}
.ls1f{letter-spacing:0.436608px;}
.ls1a{letter-spacing:0.452981px;}
.lsd{letter-spacing:0.453600px;}
.lse{letter-spacing:0.472320px;}
.ls1b{letter-spacing:0.491184px;}
.lsa{letter-spacing:0.518400px;}
.lsb{letter-spacing:0.531360px;}
.ls13{letter-spacing:0.539104px;}
.ls9{letter-spacing:0.583200px;}
.ls12{letter-spacing:0.599004px;}
.ls8{letter-spacing:0.648000px;}
.ls18{letter-spacing:0.709488px;}
.ls1c{letter-spacing:5.016984px;}
.ls15{letter-spacing:5.017584px;}
.ls1d{letter-spacing:5.018184px;}
.ls19{letter-spacing:5.020992px;}
.ls1{letter-spacing:50.045400px;}
.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;}
}
.ws1{word-spacing:-72.000000px;}
.wsb{word-spacing:-68.152320px;}
.ws2{word-spacing:-66.000000px;}
.ws15{word-spacing:-49.298029px;}
.ws17{word-spacing:-49.238129px;}
.ws16{word-spacing:-49.118328px;}
.ws1a{word-spacing:-44.861472px;}
.ws22{word-spacing:-44.823269px;}
.ws1e{word-spacing:-44.806896px;}
.ws23{word-spacing:-44.752320px;}
.ws1f{word-spacing:-44.697744px;}
.ws1d{word-spacing:-44.588592px;}
.ws24{word-spacing:-44.534016px;}
.ws26{word-spacing:-44.370288px;}
.wsc{word-spacing:-25.855200px;}
.ws0{word-spacing:-21.696000px;}
.ws5{word-spacing:-20.412000px;}
.ws7{word-spacing:-20.347200px;}
.ws9{word-spacing:-20.282400px;}
.wsd{word-spacing:-20.217600px;}
.ws8{word-spacing:-20.023200px;}
.wse{word-spacing:-19.764000px;}
.ws12{word-spacing:-18.868626px;}
.ws13{word-spacing:-18.808726px;}
.wsa{word-spacing:-18.538560px;}
.ws11{word-spacing:-18.509224px;}
.wsf{word-spacing:-18.479520px;}
.ws14{word-spacing:-18.269622px;}
.ws19{word-spacing:-17.136864px;}
.ws1b{word-spacing:-17.082288px;}
.ws18{word-spacing:-17.038627px;}
.ws20{word-spacing:-17.027712px;}
.ws21{word-spacing:-16.918560px;}
.ws25{word-spacing:-16.863984px;}
.ws1c{word-spacing:-16.809408px;}
.ws3{word-spacing:-14.916000px;}
.ws6{word-spacing:-12.736800px;}
.ws28{word-spacing:-7.098841px;}
.ws10{word-spacing:-0.583200px;}
.ws27{word-spacing:-0.218304px;}
.ws4{word-spacing:0.000000px;}
.ws29{word-spacing:1397.628000px;}
._7{margin-left:-9.784800px;}
._3{margin-left:-6.570600px;}
._2{margin-left:-5.189400px;}
._4{margin-left:-4.020840px;}
._0{margin-left:-2.734200px;}
._1{margin-left:-1.692600px;}
._5{width:1.013520px;}
._9{width:2.247000px;}
._8{width:63.194922px;}
._6{width:68.364000px;}
.fc5{color:transparent;}
.fc2{color:rgb(42,62,146);}
.fc4{color:rgb(255,255,255);}
.fc3{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc6{color:rgb(0,0,255);}
.fc0{color:rgb(210,32,39);}
.fs9{font-size:25.535400px;}
.fs7{font-size:36.000000px;}
.fsd{font-size:41.760000px;}
.fsa{font-size:43.800000px;}
.fs10{font-size:47.520000px;}
.fs12{font-size:54.576000px;}
.fse{font-size:59.040000px;}
.fs11{font-size:59.900400px;}
.fsb{font-size:60.000000px;}
.fsc{font-size:64.800000px;}
.fs3{font-size:66.000000px;}
.fs1{font-size:72.000000px;}
.fs8{font-size:75.000000px;}
.fsf{font-size:83.520000px;}
.fs4{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs6{font-size:108.000000px;}
.fs13{font-size:144.000000px;}
.fs0{font-size:186.000000px;}
.fs5{font-size:216.000000px;}
.y165{bottom:-375.561150px;}
.y164{bottom:-356.596458px;}
.y163{bottom:-339.623322px;}
.y162{bottom:-322.650186px;}
.y161{bottom:-307.008300px;}
.y160{bottom:-305.677050px;}
.ydf{bottom:-303.610950px;}
.yde{bottom:-289.873350px;}
.y15f{bottom:-285.712872px;}
.y15e{bottom:-268.739736px;}
.ydd{bottom:-260.713350px;}
.y15d{bottom:-253.097700px;}
.y15c{bottom:-251.766600px;}
.yf1{bottom:-242.811900px;}
.y34{bottom:-242.811600px;}
.y74{bottom:-242.811450px;}
.y64{bottom:-242.811150px;}
.y86{bottom:-242.811000px;}
.y44{bottom:-242.810850px;}
.y24{bottom:-242.810700px;}
.y103{bottom:-242.810550px;}
.y96{bottom:-242.810400px;}
.y54{bottom:-242.810250px;}
.y14{bottom:-242.066550px;}
.ydc{bottom:-240.560550px;}
.yff{bottom:-232.311900px;}
.y42{bottom:-232.311600px;}
.y82{bottom:-232.311450px;}
.y72{bottom:-232.311150px;}
.y94{bottom:-232.311000px;}
.y52{bottom:-232.310850px;}
.y32{bottom:-232.310700px;}
.y111{bottom:-232.310550px;}
.ya4{bottom:-232.310400px;}
.y62{bottom:-232.310250px;}
.y15b{bottom:-231.810288px;}
.y22{bottom:-231.566550px;}
.ydb{bottom:-220.407750px;}
.y15a{bottom:-214.837152px;}
.yfe{bottom:-211.311900px;}
.y41{bottom:-211.311600px;}
.y81{bottom:-211.311450px;}
.y71{bottom:-211.311150px;}
.y93{bottom:-211.311000px;}
.y51{bottom:-211.310850px;}
.y31{bottom:-211.310700px;}
.y110{bottom:-211.310550px;}
.ya3{bottom:-211.310400px;}
.y61{bottom:-211.310250px;}
.y21{bottom:-210.566550px;}
.y151{bottom:-201.476246px;}
.yda{bottom:-200.254950px;}
.y159{bottom:-197.864016px;}
.yfd{bottom:-190.311900px;}
.y40{bottom:-190.311600px;}
.y80{bottom:-190.311450px;}
.y70{bottom:-190.311150px;}
.y92{bottom:-190.311000px;}
.y50{bottom:-190.310850px;}
.y30{bottom:-190.310700px;}
.y10f{bottom:-190.310550px;}
.ya2{bottom:-190.310400px;}
.y60{bottom:-190.310250px;}
.y20{bottom:-189.566550px;}
.y150{bottom:-182.847222px;}
.y158{bottom:-180.890880px;}
.yd9{bottom:-180.102150px;}
.yfc{bottom:-170.811900px;}
.y3f{bottom:-170.811600px;}
.y7f{bottom:-170.811450px;}
.y6f{bottom:-170.811150px;}
.y91{bottom:-170.811000px;}
.y4f{bottom:-170.810850px;}
.y2f{bottom:-170.810700px;}
.y10e{bottom:-170.810550px;}
.ya1{bottom:-170.810400px;}
.y5f{bottom:-170.810250px;}
.y1f{bottom:-170.066550px;}
.y157{bottom:-164.245200px;}
.y14f{bottom:-164.218198px;}
.yd8{bottom:-159.949350px;}
.yfb{bottom:-149.811900px;}
.y3e{bottom:-149.811600px;}
.y7e{bottom:-149.811450px;}
.y6e{bottom:-149.811150px;}
.y90{bottom:-149.811000px;}
.y4e{bottom:-149.810850px;}
.y2e{bottom:-149.810700px;}
.y10d{bottom:-149.810550px;}
.ya0{bottom:-149.810400px;}
.y5e{bottom:-149.810250px;}
.y1e{bottom:-149.066550px;}
.y14e{bottom:-145.589173px;}
.y156{bottom:-143.953416px;}
.yd7{bottom:-139.796550px;}
.yfa{bottom:-130.311900px;}
.y3d{bottom:-130.311600px;}
.y7d{bottom:-130.311450px;}
.y6d{bottom:-130.311150px;}
.y8f{bottom:-130.311000px;}
.y4d{bottom:-130.310850px;}
.y2d{bottom:-130.310700px;}
.y10c{bottom:-130.310550px;}
.y9f{bottom:-130.310400px;}
.y5d{bottom:-130.310250px;}
.y1d{bottom:-129.566550px;}
.y155{bottom:-127.307736px;}
.y14d{bottom:-126.960149px;}
.yd6{bottom:-119.643750px;}
.y154{bottom:-111.665700px;}
.y153{bottom:-110.334600px;}
.yf9{bottom:-109.311900px;}
.y3c{bottom:-109.311600px;}
.y7c{bottom:-109.311450px;}
.y6c{bottom:-109.311150px;}
.y8e{bottom:-109.311000px;}
.y4c{bottom:-109.310850px;}
.y2c{bottom:-109.310700px;}
.y10b{bottom:-109.310550px;}
.y9e{bottom:-109.310400px;}
.y5c{bottom:-109.310250px;}
.y1c{bottom:-108.566550px;}
.y14c{bottom:-108.331124px;}
.yd5{bottom:-99.490950px;}
.yf8{bottom:-89.811900px;}
.y3b{bottom:-89.811600px;}
.y7b{bottom:-89.811450px;}
.y6b{bottom:-89.811150px;}
.y8d{bottom:-89.811000px;}
.y4b{bottom:-89.810850px;}
.y2b{bottom:-89.810700px;}
.y10a{bottom:-89.810550px;}
.y9d{bottom:-89.810400px;}
.y5b{bottom:-89.810250px;}
.y14b{bottom:-89.702100px;}
.y1b{bottom:-89.066550px;}
.y152{bottom:-88.371000px;}
.yd4{bottom:-78.250950px;}
.yf7{bottom:-70.311900px;}
.y3a{bottom:-70.311600px;}
.y7a{bottom:-70.311450px;}
.y6a{bottom:-70.311150px;}
.y8c{bottom:-70.311000px;}
.y4a{bottom:-70.310850px;}
.y2a{bottom:-70.310700px;}
.y109{bottom:-70.310550px;}
.y9c{bottom:-70.310400px;}
.y5a{bottom:-70.310250px;}
.y1a{bottom:-69.566550px;}
.y14a{bottom:-59.751900px;}
.yf6{bottom:-49.311900px;}
.y39{bottom:-49.311600px;}
.y79{bottom:-49.311450px;}
.y69{bottom:-49.311150px;}
.y8b{bottom:-49.311000px;}
.y49{bottom:-49.310850px;}
.y29{bottom:-49.310700px;}
.y108{bottom:-49.310550px;}
.y9b{bottom:-49.310400px;}
.y59{bottom:-49.310250px;}
.y19{bottom:-48.566550px;}
.yd3{bottom:-39.010950px;}
.y149{bottom:-32.131050px;}
.yf5{bottom:-29.811900px;}
.y38{bottom:-29.811600px;}
.y78{bottom:-29.811450px;}
.y68{bottom:-29.811150px;}
.y8a{bottom:-29.811000px;}
.y48{bottom:-29.810850px;}
.y28{bottom:-29.810700px;}
.y107{bottom:-29.810550px;}
.y9a{bottom:-29.810400px;}
.y58{bottom:-29.810250px;}
.y18{bottom:-29.066550px;}
.yd2{bottom:-19.210950px;}
.y148{bottom:-13.828050px;}
.yf4{bottom:-8.811900px;}
.y37{bottom:-8.811600px;}
.y77{bottom:-8.811450px;}
.y67{bottom:-8.811150px;}
.y89{bottom:-8.811000px;}
.y47{bottom:-8.810850px;}
.y27{bottom:-8.810700px;}
.y106{bottom:-8.810550px;}
.y99{bottom:-8.810400px;}
.y57{bottom:-8.810250px;}
.y17{bottom:-8.066550px;}
.y0{bottom:0.000000px;}
.y198{bottom:3.977268px;}
.y18f{bottom:3.990078px;}
.y147{bottom:3.992850px;}
.y1ad{bottom:3.993600px;}
.y1b9{bottom:3.993900px;}
.y13c{bottom:3.994050px;}
.y1b3{bottom:3.994350px;}
.yd1{bottom:4.219650px;}
.y12d{bottom:4.325700px;}
.y134{bottom:4.325850px;}
.y18a{bottom:4.326000px;}
.y131{bottom:4.326450px;}
.y188{bottom:4.326600px;}
.y1a5{bottom:4.326900px;}
.y12e{bottom:5.656800px;}
.y185{bottom:5.656950px;}
.y133{bottom:5.657100px;}
.y130{bottom:5.657550px;}
.y187{bottom:5.657700px;}
.y1a6{bottom:5.658000px;}
.yf3{bottom:10.688100px;}
.y36{bottom:10.688400px;}
.y76{bottom:10.688550px;}
.y66{bottom:10.688850px;}
.y88{bottom:10.689000px;}
.y46{bottom:10.689150px;}
.y26{bottom:10.689300px;}
.y105{bottom:10.689450px;}
.y98{bottom:10.689600px;}
.y56{bottom:10.689750px;}
.y16{bottom:11.433450px;}
.y17b{bottom:12.646200px;}
.y286{bottom:19.591500px;}
.yee{bottom:20.341500px;}
.y25a{bottom:20.391750px;}
.y1fc{bottom:20.817000px;}
.y197{bottom:20.950404px;}
.y18e{bottom:20.963214px;}
.yf2{bottom:30.188100px;}
.y35{bottom:30.188400px;}
.y75{bottom:30.188550px;}
.y65{bottom:30.188850px;}
.y87{bottom:30.189000px;}
.y45{bottom:30.189150px;}
.y25{bottom:30.189300px;}
.y104{bottom:30.189450px;}
.y97{bottom:30.189600px;}
.y55{bottom:30.189750px;}
.y15{bottom:30.933450px;}
.y1a9{bottom:36.273450px;}
.y18d{bottom:36.605250px;}
.y1b6{bottom:36.606450px;}
.y138{bottom:36.606750px;}
.y1a8{bottom:37.604550px;}
.y196{bottom:37.923540px;}
.y18c{bottom:37.936350px;}
.y1b5{bottom:37.937550px;}
.y137{bottom:37.937700px;}
.y1bb{bottom:53.578350px;}
.y195{bottom:54.896676px;}
.y1ba{bottom:54.909450px;}
.y2b2{bottom:63.899700px;}
.y287{bottom:65.175300px;}
.y1d2{bottom:67.620150px;}
.y200{bottom:70.171350px;}
.y1af{bottom:71.548950px;}
.y194{bottom:71.869812px;}
.y25c{bottom:73.785600px;}
.y112{bottom:74.506800px;}
.y22d{bottom:79.738350px;}
.yc4{bottom:81.013950px;}
.y1d1{bottom:81.120150px;}
.y1ff{bottom:83.671350px;}
.y284{bottom:86.208750px;}
.y28a{bottom:86.929200px;}
.y25b{bottom:87.285600px;}
.y193{bottom:88.515492px;}
.y22c{bottom:93.238350px;}
.yc3{bottom:94.513950px;}
.y1fe{bottom:97.171350px;}
.y1ce{bottom:97.788150px;}
.y1d0{bottom:102.525600px;}
.y289{bottom:104.929200px;}
.y192{bottom:105.488628px;}
.y283{bottom:106.008600px;}
.yec{bottom:106.269150px;}
.y1fd{bottom:110.671350px;}
.y102{bottom:116.503500px;}
.y1cd{bottom:119.388150px;}
.y191{bottom:122.461764px;}
.y288{bottom:122.929200px;}
.y282{bottom:125.808600px;}
.yeb{bottom:126.069150px;}
.y95{bottom:126.708000px;}
.yc1{bottom:136.769850px;}
.y13e{bottom:138.103650px;}
.y1cc{bottom:139.188150px;}
.y13d{bottom:139.434750px;}
.y190{bottom:139.434900px;}
.y1fb{bottom:140.750700px;}
.y101{bottom:140.952000px;}
.y258{bottom:143.394150px;}
.y183{bottom:145.465204px;}
.y281{bottom:145.608600px;}
.y85{bottom:146.905500px;}
.yea{bottom:150.121050px;}
.yc0{bottom:156.995100px;}
.y1cb{bottom:158.988150px;}
.y1fa{bottom:160.550700px;}
.y1cf{bottom:163.541400px;}
.y182{bottom:164.094228px;}
.y100{bottom:164.338500px;}
.y257{bottom:164.994150px;}
.y280{bottom:165.408750px;}
.y84{bottom:168.165000px;}
.ye9{bottom:174.173100px;}
.y2b1{bottom:175.991400px;}
.ybf{bottom:177.220350px;}
.y1ca{bottom:178.788150px;}
.y1f9{bottom:180.350850px;}
.y229{bottom:181.032900px;}
.y181{bottom:182.723252px;}
.y256{bottom:184.794000px;}
.y27f{bottom:185.208750px;}
.y83{bottom:187.299000px;}
.y2b0{bottom:193.991400px;}
.ybe{bottom:197.445450px;}
.y228{bottom:200.832900px;}
.y180{bottom:201.352277px;}
.y255{bottom:204.594150px;}
.y113{bottom:206.530500px;}
.y1c9{bottom:207.092100px;}
.y73{bottom:207.496500px;}
.y2af{bottom:211.991400px;}
.yb0{bottom:212.906700px;}
.ybd{bottom:217.670700px;}
.y17f{bottom:219.981301px;}
.y227{bottom:220.632900px;}
.y27e{bottom:222.016500px;}
.y254{bottom:224.394150px;}
.y1c8{bottom:228.692100px;}
.y63{bottom:228.756000px;}
.yf0{bottom:229.182000px;}
.yaf{bottom:232.706700px;}
.ybc{bottom:237.895950px;}
.y17e{bottom:238.610326px;}
.ye8{bottom:239.284800px;}
.y2ad{bottom:239.653350px;}
.y1c7{bottom:248.492100px;}
.y53{bottom:248.952000px;}
.yae{bottom:252.506700px;}
.y226{bottom:253.188750px;}
.y253{bottom:256.950000px;}
.y125{bottom:257.239200px;}
.y17d{bottom:257.239350px;}
.ybb{bottom:258.121050px;}
.y2ac{bottom:259.453350px;}
.ye7{bottom:263.336850px;}
.y27d{bottom:264.876300px;}
.y1c6{bottom:268.292100px;}
.y43{bottom:269.149500px;}
.y19d{bottom:270.884400px;}
.yad{bottom:272.306700px;}
.y225{bottom:272.988900px;}
.yef{bottom:273.826500px;}
.yba{bottom:278.346300px;}
.y2ab{bottom:279.253350px;}
.ye6{bottom:283.136850px;}
.y27c{bottom:284.676300px;}
.y33{bottom:289.347000px;}
.yac{bottom:292.106700px;}
.y224{bottom:292.788750px;}
.yb9{bottom:298.571550px;}
.y2aa{bottom:299.053350px;}
.y252{bottom:299.809800px;}
.y1c5{bottom:309.351900px;}
.y23{bottom:309.543000px;}
.yab{bottom:311.906700px;}
.y27b{bottom:317.232300px;}
.yb8{bottom:318.796650px;}
.y251{bottom:321.409950px;}
.y1f8{bottom:324.662550px;}
.y122{bottom:324.697583px;}
.y223{bottom:325.344750px;}
.ye5{bottom:328.446900px;}
.y2a9{bottom:331.609200px;}
.yaa{bottom:331.706700px;}
.yb7{bottom:339.021900px;}
.y250{bottom:341.209800px;}
.y121{bottom:343.326607px;}
.y1f7{bottom:344.462550px;}
.y13{bottom:349.192500px;}
.ye4{bottom:350.046900px;}
.y2a8{bottom:351.409200px;}
.y19a{bottom:351.467100px;}
.ya9{bottom:351.506700px;}
.y27a{bottom:351.588300px;}
.y1c4{bottom:355.811850px;}
.yb6{bottom:359.247000px;}
.y24f{bottom:361.009800px;}
.y120{bottom:361.955632px;}
.y1f6{bottom:364.262550px;}
.y199{bottom:369.770100px;}
.ye3{bottom:369.846900px;}
.y2a7{bottom:371.209200px;}
.ya8{bottom:371.306700px;}
.y279{bottom:371.388300px;}
.y222{bottom:371.804550px;}
.y22b{bottom:376.777500px;}
.y1c3{bottom:377.411850px;}
.y11f{bottom:380.584656px;}
.y24e{bottom:380.809800px;}
.yc2{bottom:381.370500px;}
.y1f5{bottom:384.062550px;}
.ye2{bottom:389.646900px;}
.ya7{bottom:391.106700px;}
.y221{bottom:391.604550px;}
.y1c2{bottom:397.211850px;}
.y11e{bottom:399.213680px;}
.y24d{bottom:400.609800px;}
.y2a6{bottom:403.765200px;}
.y1f4{bottom:403.862550px;}
.y278{bottom:403.944150px;}
.ya6{bottom:410.906700px;}
.y220{bottom:411.404550px;}
.y11d{bottom:417.842705px;}
.y16b{bottom:419.472000px;}
.y2a5{bottom:423.565200px;}
.y1f3{bottom:423.662550px;}
.y1c0{bottom:427.509000px;}
.y24c{bottom:428.913750px;}
.y1c1{bottom:429.767700px;}
.ye1{bottom:430.706700px;}
.y21f{bottom:431.204550px;}
.y11c{bottom:436.471729px;}
.y19c{bottom:442.483500px;}
.y2a4{bottom:443.365200px;}
.y1bf{bottom:446.477550px;}
.y277{bottom:446.803950px;}
.y21e{bottom:451.004550px;}
.y285{bottom:451.824900px;}
.ya5{bottom:451.966500px;}
.y11b{bottom:455.100754px;}
.y1f2{bottom:456.218550px;}
.y2a3{bottom:463.165200px;}
.y24b{bottom:463.269750px;}
.y1be{bottom:463.449300px;}
.y276{bottom:466.603950px;}
.y21d{bottom:470.804550px;}
.y11a{bottom:473.729778px;}
.y1bd{bottom:480.421200px;}
.y2a2{bottom:482.965200px;}
.yc9{bottom:484.368300px;}
.y275{bottom:486.403950px;}
.y21c{bottom:490.604550px;}
.y119{bottom:492.358802px;}
.y1bc{bottom:497.392950px;}
.y12{bottom:502.403700px;}
.yca{bottom:503.634000px;}
.y1ee{bottom:504.871650px;}
.y24a{bottom:506.129550px;}
.y274{bottom:506.203950px;}
.y21b{bottom:510.404550px;}
.y118{bottom:510.987827px;}
.y1b4{bottom:513.366000px;}
.y2a1{bottom:515.521050px;}
.y11{bottom:524.003700px;}
.y249{bottom:525.929550px;}
.y273{bottom:526.003950px;}
.y1ed{bottom:526.471650px;}
.y117{bottom:529.616851px;}
.y1b8{bottom:534.331650px;}
.y21a{bottom:542.960400px;}
.y10{bottom:543.803700px;}
.y248{bottom:545.729550px;}
.y1ec{bottom:546.271650px;}
.y116{bottom:548.245876px;}
.y1b7{bottom:551.303550px;}
.y2a0{bottom:556.425000px;}
.y272{bottom:558.559800px;}
.y219{bottom:562.760400px;}
.yf{bottom:563.603700px;}
.y247{bottom:565.529550px;}
.y115{bottom:566.874900px;}
.y1ae{bottom:567.276000px;}
.y29f{bottom:576.225000px;}
.y1eb{bottom:578.827500px;}
.y218{bottom:582.560400px;}
.ye{bottom:583.403700px;}
.y246{bottom:585.329550px;}
.y1b2{bottom:588.242250px;}
.y29e{bottom:596.025000px;}
.y271{bottom:601.419750px;}
.y1a3{bottom:601.553400px;}
.y217{bottom:602.360400px;}
.yd{bottom:603.203700px;}
.y245{bottom:605.129550px;}
.y1b1{bottom:605.214000px;}
.yd0{bottom:617.665050px;}
.y1a2{bottom:620.189250px;}
.y270{bottom:621.219750px;}
.y1ea{bottom:621.687450px;}
.y216{bottom:622.160400px;}
.y1b0{bottom:622.185900px;}
.yc{bottom:623.003700px;}
.y29d{bottom:628.581000px;}
.y244{bottom:637.685400px;}
.ycf{bottom:637.817850px;}
.y1a1{bottom:638.824950px;}
.y26f{bottom:641.019750px;}
.yb{bottom:642.803700px;}
.y1e9{bottom:643.287450px;}
.y215{bottom:654.716400px;}
.y1a7{bottom:655.131000px;}
.y1a0{bottom:657.460650px;}
.yce{bottom:657.970650px;}
.y1ac{bottom:659.124600px;}
.y1e8{bottom:663.087450px;}
.y26e{bottom:669.323700px;}
.y29c{bottom:675.040800px;}
.ya{bottom:675.359550px;}
.y1ab{bottom:675.763650px;}
.y19f{bottom:676.096500px;}
.ycd{bottom:678.123450px;}
.y243{bottom:680.545350px;}
.yb5{bottom:680.580750px;}
.y1e7{bottom:682.887450px;}
.y1aa{bottom:692.735550px;}
.y19e{bottom:694.732200px;}
.y9{bottom:695.159700px;}
.y29b{bottom:696.640800px;}
.ycc{bottom:698.276250px;}
.y242{bottom:700.345350px;}
.y214{bottom:701.176200px;}
.y1e6{bottom:702.687450px;}
.y179{bottom:708.295733px;}
.y1a4{bottom:709.041000px;}
.y26d{bottom:712.183500px;}
.y8{bottom:714.959550px;}
.ycb{bottom:718.429050px;}
.y241{bottom:720.145350px;}
.y213{bottom:720.976200px;}
.y29a{bottom:724.944750px;}
.y178{bottom:726.924757px;}
.y1e5{bottom:730.991400px;}
.y7{bottom:734.759550px;}
.yb4{bottom:738.832650px;}
.y240{bottom:739.945200px;}
.y19b{bottom:743.318250px;}
.y177{bottom:745.553782px;}
.y26c{bottom:746.539350px;}
.y212{bottom:753.532050px;}
.y6{bottom:754.559550px;}
.y23f{bottom:759.745350px;}
.y176{bottom:764.182806px;}
.y299{bottom:767.804550px;}
.y26b{bottom:768.139350px;}
.y211{bottom:773.332050px;}
.y1e4{bottom:777.451200px;}
.y23e{bottom:779.545350px;}
.y175{bottom:782.811830px;}
.y26a{bottom:787.939350px;}
.y298{bottom:789.404550px;}
.y16a{bottom:790.595100px;}
.y210{bottom:793.132200px;}
.y5{bottom:795.619500px;}
.y1e3{bottom:797.251200px;}
.y114{bottom:799.683000px;}
.y174{bottom:801.440855px;}
.y1f1{bottom:801.549150px;}
.y269{bottom:807.739350px;}
.y297{bottom:809.204550px;}
.y124{bottom:810.148500px;}
.y23d{bottom:812.101200px;}
.y20f{bottom:812.932050px;}
.y17c{bottom:813.535500px;}
.y1e2{bottom:817.051200px;}
.y173{bottom:820.069879px;}
.y296{bottom:829.004550px;}
.y146{bottom:831.113100px;}
.y1e1{bottom:836.851200px;}
.y172{bottom:838.698904px;}
.y268{bottom:840.295200px;}
.y20e{bottom:845.488050px;}
.y145{bottom:848.085000px;}
.y295{bottom:848.804550px;}
.y23c{bottom:854.961000px;}
.y1e0{bottom:856.651200px;}
.y171{bottom:857.327928px;}
.y267{bottom:860.095350px;}
.y1f0{bottom:860.779200px;}
.y144{bottom:865.056900px;}
.y20d{bottom:865.287900px;}
.y294{bottom:868.604550px;}
.y23b{bottom:874.761000px;}
.y4{bottom:875.783250px;}
.y170{bottom:875.956952px;}
.y1df{bottom:876.451200px;}
.y259{bottom:879.785400px;}
.y266{bottom:879.895350px;}
.y143{bottom:882.028650px;}
.y20c{bottom:885.088050px;}
.y23a{bottom:894.561000px;}
.y16f{bottom:894.585977px;}
.y142{bottom:898.667700px;}
.y265{bottom:899.695350px;}
.y20b{bottom:904.888050px;}
.y1de{bottom:909.007200px;}
.y293{bottom:909.664350px;}
.y3{bottom:910.139100px;}
.y16e{bottom:913.215001px;}
.y239{bottom:914.361000px;}
.y141{bottom:915.639600px;}
.y20a{bottom:924.688050px;}
.y1dd{bottom:928.807050px;}
.y16d{bottom:931.844026px;}
.y264{bottom:932.251200px;}
.y140{bottom:932.611500px;}
.y209{bottom:944.488050px;}
.y238{bottom:946.917000px;}
.y1dc{bottom:948.607050px;}
.y13f{bottom:949.583250px;}
.y16c{bottom:950.473050px;}
.y292{bottom:952.524150px;}
.y12b{bottom:955.573350px;}
.y136{bottom:965.556000px;}
.y2{bottom:965.939100px;}
.y237{bottom:966.717000px;}
.y1db{bottom:968.407050px;}
.y18b{bottom:968.944500px;}
.y13b{bottom:969.550050px;}
.y291{bottom:972.324300px;}
.y1ef{bottom:972.903600px;}
.y12a{bottom:974.209050px;}
.y263{bottom:975.111000px;}
.y208{bottom:977.043900px;}
.y236{bottom:986.517000px;}
.y13a{bottom:986.521950px;}
.y1da{bottom:988.207050px;}
.y290{bottom:992.124150px;}
.y129{bottom:992.844750px;}
.y139{bottom:1003.493700px;}
.y262{bottom:1005.214950px;}
.y235{bottom:1006.316850px;}
.y128{bottom:1011.480600px;}
.y132{bottom:1019.467500px;}
.y1{bottom:1021.739100px;}
.y189{bottom:1022.854500px;}
.y207{bottom:1023.503700px;}
.y1d9{bottom:1025.014950px;}
.y135{bottom:1025.124600px;}
.y234{bottom:1026.116850px;}
.y28f{bottom:1028.932050px;}
.y127{bottom:1030.116150px;}
.y261{bottom:1039.570800px;}
.y12f{bottom:1041.430500px;}
.y186{bottom:1044.817500px;}
.y206{bottom:1045.103700px;}
.y233{bottom:1045.917000px;}
.y126{bottom:1048.752000px;}
.y260{bottom:1061.170950px;}
.y12c{bottom:1063.062000px;}
.y205{bottom:1064.903850px;}
.y184{bottom:1066.449000px;}
.y1d8{bottom:1067.874900px;}
.y28e{bottom:1071.792000px;}
.y232{bottom:1078.472850px;}
.y204{bottom:1084.703850px;}
.y17a{bottom:1088.079000px;}
.y1d7{bottom:1089.474750px;}
.y28d{bottom:1091.592000px;}
.y25f{bottom:1093.726800px;}
.y123{bottom:1097.338050px;}
.y231{bottom:1098.272850px;}
.y203{bottom:1104.503700px;}
.yb3{bottom:1108.059150px;}
.y22a{bottom:1108.541400px;}
.y1d6{bottom:1109.274750px;}
.y230{bottom:1118.072850px;}
.y202{bottom:1124.303700px;}
.y28c{bottom:1128.399750px;}
.y1d5{bottom:1129.074900px;}
.yc8{bottom:1135.259700px;}
.y169{bottom:1135.996650px;}
.y25e{bottom:1136.926800px;}
.yb2{bottom:1140.459150px;}
.y201{bottom:1144.103700px;}
.y22f{bottom:1150.628700px;}
.y168{bottom:1155.796650px;}
.yc7{bottom:1156.859550px;}
.y1d4{bottom:1157.378700px;}
.y25d{bottom:1158.526800px;}
.ye0{bottom:1174.234350px;}
.y28b{bottom:1174.859550px;}
.y167{bottom:1175.596650px;}
.yc6{bottom:1176.659700px;}
.y2ae{bottom:1179.761850px;}
.y22e{bottom:1188.584700px;}
.yb1{bottom:1194.118950px;}
.y1d3{bottom:1195.334700px;}
.y166{bottom:1195.396650px;}
.yc5{bottom:1196.459700px;}
.yed{bottom:1200.915300px;}
.h2f{height:-322.725000px;}
.h31{height:-301.095000px;}
.h2d{height:-292.699500px;}
.h32{height:-279.463500px;}
.h33{height:-257.500500px;}
.h2c{height:-238.788000px;}
.h34{height:-203.590500px;}
.h2a{height:-151.266000px;}
.h29{height:-97.356000px;}
.h28{height:-75.393000px;}
.h30{height:-48.181500px;}
.h27{height:-37.122000px;}
.h21{height:18.636000px;}
.h12{height:18.870661px;}
.h7{height:22.431000px;}
.hb{height:22.747500px;}
.ha{height:22.749000px;}
.h1b{height:24.486328px;}
.hf{height:25.839844px;}
.h1a{height:34.108594px;}
.h22{height:39.173203px;}
.h24{height:39.439687px;}
.h23{height:39.626227px;}
.h17{height:42.377344px;}
.h1e{height:42.994916px;}
.h2b{height:43.031924px;}
.h13{height:43.066406px;}
.h1f{height:43.492136px;}
.h10{height:44.891602px;}
.h9{height:45.117188px;}
.h16{height:46.511719px;}
.h19{height:47.049609px;}
.h5{height:47.373047px;}
.h8{height:47.988281px;}
.h6{height:48.972656px;}
.h3b{height:49.218750px;}
.h3{height:50.062500px;}
.h36{height:50.583000px;}
.h25{height:50.914500px;}
.h38{height:50.916000px;}
.h3d{height:51.679688px;}
.h11{height:53.833008px;}
.h3c{height:55.986328px;}
.h1c{height:57.093750px;}
.h3a{height:57.421875px;}
.hc{height:58.406250px;}
.h15{height:60.214219px;}
.h18{height:60.641719px;}
.h4{height:66.750000px;}
.h39{height:67.887000px;}
.h3e{height:73.406250px;}
.he{height:77.519531px;}
.h37{height:84.526500px;}
.h3f{height:97.875000px;}
.h2{height:129.328125px;}
.hd{height:150.187500px;}
.h26{height:152.413500px;}
.h20{height:271.548000px;}
.h35{height:285.193500px;}
.h1d{height:331.339500px;}
.h2e{height:345.882000px;}
.h14{height:618.826500px;}
.h0{height:1262.835000px;}
.h1{height:1263.000000px;}
.w3{width:21.897000px;}
.w2{width:24.661500px;}
.w13{width:64.891500px;}
.wd{width:64.893000px;}
.w12{width:65.224500px;}
.w6{width:65.226000px;}
.we{width:65.557500px;}
.w7{width:65.559000px;}
.w8{width:95.508000px;}
.w9{width:154.077000px;}
.w14{width:154.078500px;}
.wb{width:232.947000px;}
.wf{width:233.944500px;}
.w15{width:233.946000px;}
.wa{width:234.277500px;}
.wc{width:625.960500px;}
.w11{width:626.626500px;}
.w5{width:648.529500px;}
.w10{width:648.531000px;}
.w4{width:693.909000px;}
.w0{width:892.914000px;}
.w1{width:893.250000px;}
.x3{left:-11.918100px;}
.x0{left:0.000000px;}
.x4{left:5.031900px;}
.x1a{left:7.654050px;}
.xc{left:11.394150px;}
.x20{left:13.261500px;}
.x13{left:19.133850px;}
.x5{left:32.031900px;}
.xb{left:35.302500px;}
.xe{left:38.383350px;}
.x23{left:40.393500px;}
.x17{left:44.550683px;}
.x15{left:46.432500px;}
.x24{left:52.323000px;}
.x1{left:54.997500px;}
.x19{left:58.360500px;}
.x2a{left:59.976750px;}
.xf{left:65.372550px;}
.x16{left:69.499200px;}
.x6{left:74.409450px;}
.x14{left:85.353000px;}
.x11{left:107.250000px;}
.x32{left:109.275600px;}
.x25{left:120.543000px;}
.x30{left:121.606350px;}
.x1b{left:126.580500px;}
.x22{left:135.095100px;}
.x37{left:142.218000px;}
.x8{left:150.519750px;}
.x7{left:175.393650px;}
.x29{left:187.750800px;}
.x26{left:189.096000px;}
.x18{left:193.788600px;}
.x1c{left:195.133500px;}
.x33{left:234.708600px;}
.x36{left:258.109050px;}
.x27{left:287.599500px;}
.x1d{left:293.637000px;}
.x21{left:299.626800px;}
.x34{left:306.566850px;}
.x35{left:362.885700px;}
.x38{left:440.291400px;}
.x28{left:444.672000px;}
.x1e{left:450.709500px;}
.x1f{left:456.699600px;}
.x2c{left:535.110150px;}
.x2{left:567.426000px;}
.xa{left:568.913400px;}
.x2e{left:587.622000px;}
.x9{left:600.378000px;}
.x2f{left:624.274050px;}
.x12{left:643.216500px;}
.x10{left:646.936950px;}
.x31{left:660.755850px;}
.xd{left:686.397150px;}
.x2b{left:706.039350px;}
.x2d{left:863.149500px;}
@media print{
.v3{vertical-align:-29.440000pt;}
.v1{vertical-align:-12.964800pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:26.880000pt;}
.ls3{letter-spacing:0.000000pt;}
.ls2{letter-spacing:0.000105pt;}
.ls7{letter-spacing:0.004800pt;}
.ls0{letter-spacing:0.005867pt;}
.ls20{letter-spacing:0.145536pt;}
.ls16{letter-spacing:0.194048pt;}
.ls6{letter-spacing:0.209920pt;}
.ls10{letter-spacing:0.212979pt;}
.lsc{letter-spacing:0.222720pt;}
.ls11{letter-spacing:0.223628pt;}
.ls4{letter-spacing:0.230400pt;}
.ls22{letter-spacing:0.242560pt;}
.ls21{letter-spacing:0.291072pt;}
.lsf{letter-spacing:0.319469pt;}
.ls17{letter-spacing:0.339584pt;}
.ls5{letter-spacing:0.345600pt;}
.ls14{letter-spacing:0.349286pt;}
.ls1e{letter-spacing:0.372714pt;}
.ls1f{letter-spacing:0.388096pt;}
.ls1a{letter-spacing:0.402650pt;}
.lsd{letter-spacing:0.403200pt;}
.lse{letter-spacing:0.419840pt;}
.ls1b{letter-spacing:0.436608pt;}
.lsa{letter-spacing:0.460800pt;}
.lsb{letter-spacing:0.472320pt;}
.ls13{letter-spacing:0.479203pt;}
.ls9{letter-spacing:0.518400pt;}
.ls12{letter-spacing:0.532448pt;}
.ls8{letter-spacing:0.576000pt;}
.ls18{letter-spacing:0.630656pt;}
.ls1c{letter-spacing:4.459541pt;}
.ls15{letter-spacing:4.460075pt;}
.ls1d{letter-spacing:4.460608pt;}
.ls19{letter-spacing:4.463104pt;}
.ls1{letter-spacing:44.484800pt;}
.ws1{word-spacing:-64.000000pt;}
.wsb{word-spacing:-60.579840pt;}
.ws2{word-spacing:-58.666667pt;}
.ws15{word-spacing:-43.820470pt;}
.ws17{word-spacing:-43.767226pt;}
.ws16{word-spacing:-43.660736pt;}
.ws1a{word-spacing:-39.876864pt;}
.ws22{word-spacing:-39.842906pt;}
.ws1e{word-spacing:-39.828352pt;}
.ws23{word-spacing:-39.779840pt;}
.ws1f{word-spacing:-39.731328pt;}
.ws1d{word-spacing:-39.634304pt;}
.ws24{word-spacing:-39.585792pt;}
.ws26{word-spacing:-39.440256pt;}
.wsc{word-spacing:-22.982400pt;}
.ws0{word-spacing:-19.285333pt;}
.ws5{word-spacing:-18.144000pt;}
.ws7{word-spacing:-18.086400pt;}
.ws9{word-spacing:-18.028800pt;}
.wsd{word-spacing:-17.971200pt;}
.ws8{word-spacing:-17.798400pt;}
.wse{word-spacing:-17.568000pt;}
.ws12{word-spacing:-16.772112pt;}
.ws13{word-spacing:-16.718867pt;}
.wsa{word-spacing:-16.478720pt;}
.ws11{word-spacing:-16.452643pt;}
.wsf{word-spacing:-16.426240pt;}
.ws14{word-spacing:-16.239664pt;}
.ws19{word-spacing:-15.232768pt;}
.ws1b{word-spacing:-15.184256pt;}
.ws18{word-spacing:-15.145446pt;}
.ws20{word-spacing:-15.135744pt;}
.ws21{word-spacing:-15.038720pt;}
.ws25{word-spacing:-14.990208pt;}
.ws1c{word-spacing:-14.941696pt;}
.ws3{word-spacing:-13.258667pt;}
.ws6{word-spacing:-11.321600pt;}
.ws28{word-spacing:-6.310081pt;}
.ws10{word-spacing:-0.518400pt;}
.ws27{word-spacing:-0.194048pt;}
.ws4{word-spacing:0.000000pt;}
.ws29{word-spacing:1242.336000pt;}
._7{margin-left:-8.697600pt;}
._3{margin-left:-5.840533pt;}
._2{margin-left:-4.612800pt;}
._4{margin-left:-3.574080pt;}
._0{margin-left:-2.430400pt;}
._1{margin-left:-1.504533pt;}
._5{width:0.900907pt;}
._9{width:1.997333pt;}
._8{width:56.173264pt;}
._6{width:60.768000pt;}
.fs9{font-size:22.698133pt;}
.fs7{font-size:32.000000pt;}
.fsd{font-size:37.120000pt;}
.fsa{font-size:38.933333pt;}
.fs10{font-size:42.240000pt;}
.fs12{font-size:48.512000pt;}
.fse{font-size:52.480000pt;}
.fs11{font-size:53.244800pt;}
.fsb{font-size:53.333333pt;}
.fsc{font-size:57.600000pt;}
.fs3{font-size:58.666667pt;}
.fs1{font-size:64.000000pt;}
.fs8{font-size:66.666667pt;}
.fsf{font-size:74.240000pt;}
.fs4{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs6{font-size:96.000000pt;}
.fs13{font-size:128.000000pt;}
.fs0{font-size:165.333333pt;}
.fs5{font-size:192.000000pt;}
.y165{bottom:-333.832133pt;}
.y164{bottom:-316.974629pt;}
.y163{bottom:-301.887397pt;}
.y162{bottom:-286.800165pt;}
.y161{bottom:-272.896267pt;}
.y160{bottom:-271.712933pt;}
.ydf{bottom:-269.876400pt;}
.yde{bottom:-257.665200pt;}
.y15f{bottom:-253.966997pt;}
.y15e{bottom:-238.879765pt;}
.ydd{bottom:-231.745200pt;}
.y15d{bottom:-224.975733pt;}
.y15c{bottom:-223.792533pt;}
.yf1{bottom:-215.832800pt;}
.y34{bottom:-215.832533pt;}
.y74{bottom:-215.832400pt;}
.y64{bottom:-215.832133pt;}
.y86{bottom:-215.832000pt;}
.y44{bottom:-215.831867pt;}
.y24{bottom:-215.831733pt;}
.y103{bottom:-215.831600pt;}
.y96{bottom:-215.831467pt;}
.y54{bottom:-215.831333pt;}
.y14{bottom:-215.170267pt;}
.ydc{bottom:-213.831600pt;}
.yff{bottom:-206.499467pt;}
.y42{bottom:-206.499200pt;}
.y82{bottom:-206.499067pt;}
.y72{bottom:-206.498800pt;}
.y94{bottom:-206.498667pt;}
.y52{bottom:-206.498533pt;}
.y32{bottom:-206.498400pt;}
.y111{bottom:-206.498267pt;}
.ya4{bottom:-206.498133pt;}
.y62{bottom:-206.498000pt;}
.y15b{bottom:-206.053589pt;}
.y22{bottom:-205.836933pt;}
.ydb{bottom:-195.918000pt;}
.y15a{bottom:-190.966357pt;}
.yfe{bottom:-187.832800pt;}
.y41{bottom:-187.832533pt;}
.y81{bottom:-187.832400pt;}
.y71{bottom:-187.832133pt;}
.y93{bottom:-187.832000pt;}
.y51{bottom:-187.831867pt;}
.y31{bottom:-187.831733pt;}
.y110{bottom:-187.831600pt;}
.ya3{bottom:-187.831467pt;}
.y61{bottom:-187.831333pt;}
.y21{bottom:-187.170267pt;}
.y151{bottom:-179.089997pt;}
.yda{bottom:-178.004400pt;}
.y159{bottom:-175.879125pt;}
.yfd{bottom:-169.166133pt;}
.y40{bottom:-169.165867pt;}
.y80{bottom:-169.165733pt;}
.y70{bottom:-169.165467pt;}
.y92{bottom:-169.165333pt;}
.y50{bottom:-169.165200pt;}
.y30{bottom:-169.165067pt;}
.y10f{bottom:-169.164933pt;}
.ya2{bottom:-169.164800pt;}
.y60{bottom:-169.164667pt;}
.y20{bottom:-168.503600pt;}
.y150{bottom:-162.530864pt;}
.y158{bottom:-160.791893pt;}
.yd9{bottom:-160.090800pt;}
.yfc{bottom:-151.832800pt;}
.y3f{bottom:-151.832533pt;}
.y7f{bottom:-151.832400pt;}
.y6f{bottom:-151.832133pt;}
.y91{bottom:-151.832000pt;}
.y4f{bottom:-151.831867pt;}
.y2f{bottom:-151.831733pt;}
.y10e{bottom:-151.831600pt;}
.ya1{bottom:-151.831467pt;}
.y5f{bottom:-151.831333pt;}
.y1f{bottom:-151.170267pt;}
.y157{bottom:-145.995733pt;}
.y14f{bottom:-145.971731pt;}
.yd8{bottom:-142.177200pt;}
.yfb{bottom:-133.166133pt;}
.y3e{bottom:-133.165867pt;}
.y7e{bottom:-133.165733pt;}
.y6e{bottom:-133.165467pt;}
.y90{bottom:-133.165333pt;}
.y4e{bottom:-133.165200pt;}
.y2e{bottom:-133.165067pt;}
.y10d{bottom:-133.164933pt;}
.ya0{bottom:-133.164800pt;}
.y5e{bottom:-133.164667pt;}
.y1e{bottom:-132.503600pt;}
.y14e{bottom:-129.412598pt;}
.y156{bottom:-127.958592pt;}
.yd7{bottom:-124.263600pt;}
.yfa{bottom:-115.832800pt;}
.y3d{bottom:-115.832533pt;}
.y7d{bottom:-115.832400pt;}
.y6d{bottom:-115.832133pt;}
.y8f{bottom:-115.832000pt;}
.y4d{bottom:-115.831867pt;}
.y2d{bottom:-115.831733pt;}
.y10c{bottom:-115.831600pt;}
.y9f{bottom:-115.831467pt;}
.y5d{bottom:-115.831333pt;}
.y1d{bottom:-115.170267pt;}
.y155{bottom:-113.162432pt;}
.y14d{bottom:-112.853466pt;}
.yd6{bottom:-106.350000pt;}
.y154{bottom:-99.258400pt;}
.y153{bottom:-98.075200pt;}
.yf9{bottom:-97.166133pt;}
.y3c{bottom:-97.165867pt;}
.y7c{bottom:-97.165733pt;}
.y6c{bottom:-97.165467pt;}
.y8e{bottom:-97.165333pt;}
.y4c{bottom:-97.165200pt;}
.y2c{bottom:-97.165067pt;}
.y10b{bottom:-97.164933pt;}
.y9e{bottom:-97.164800pt;}
.y5c{bottom:-97.164667pt;}
.y1c{bottom:-96.503600pt;}
.y14c{bottom:-96.294333pt;}
.yd5{bottom:-88.436400pt;}
.yf8{bottom:-79.832800pt;}
.y3b{bottom:-79.832533pt;}
.y7b{bottom:-79.832400pt;}
.y6b{bottom:-79.832133pt;}
.y8d{bottom:-79.832000pt;}
.y4b{bottom:-79.831867pt;}
.y2b{bottom:-79.831733pt;}
.y10a{bottom:-79.831600pt;}
.y9d{bottom:-79.831467pt;}
.y5b{bottom:-79.831333pt;}
.y14b{bottom:-79.735200pt;}
.y1b{bottom:-79.170267pt;}
.y152{bottom:-78.552000pt;}
.yd4{bottom:-69.556400pt;}
.yf7{bottom:-62.499467pt;}
.y3a{bottom:-62.499200pt;}
.y7a{bottom:-62.499067pt;}
.y6a{bottom:-62.498800pt;}
.y8c{bottom:-62.498667pt;}
.y4a{bottom:-62.498533pt;}
.y2a{bottom:-62.498400pt;}
.y109{bottom:-62.498267pt;}
.y9c{bottom:-62.498133pt;}
.y5a{bottom:-62.498000pt;}
.y1a{bottom:-61.836933pt;}
.y14a{bottom:-53.112800pt;}
.yf6{bottom:-43.832800pt;}
.y39{bottom:-43.832533pt;}
.y79{bottom:-43.832400pt;}
.y69{bottom:-43.832133pt;}
.y8b{bottom:-43.832000pt;}
.y49{bottom:-43.831867pt;}
.y29{bottom:-43.831733pt;}
.y108{bottom:-43.831600pt;}
.y9b{bottom:-43.831467pt;}
.y59{bottom:-43.831333pt;}
.y19{bottom:-43.170267pt;}
.yd3{bottom:-34.676400pt;}
.y149{bottom:-28.560933pt;}
.yf5{bottom:-26.499467pt;}
.y38{bottom:-26.499200pt;}
.y78{bottom:-26.499067pt;}
.y68{bottom:-26.498800pt;}
.y8a{bottom:-26.498667pt;}
.y48{bottom:-26.498533pt;}
.y28{bottom:-26.498400pt;}
.y107{bottom:-26.498267pt;}
.y9a{bottom:-26.498133pt;}
.y58{bottom:-26.498000pt;}
.y18{bottom:-25.836933pt;}
.yd2{bottom:-17.076400pt;}
.y148{bottom:-12.291600pt;}
.yf4{bottom:-7.832800pt;}
.y37{bottom:-7.832533pt;}
.y77{bottom:-7.832400pt;}
.y67{bottom:-7.832133pt;}
.y89{bottom:-7.832000pt;}
.y47{bottom:-7.831867pt;}
.y27{bottom:-7.831733pt;}
.y106{bottom:-7.831600pt;}
.y99{bottom:-7.831467pt;}
.y57{bottom:-7.831333pt;}
.y17{bottom:-7.170267pt;}
.y0{bottom:0.000000pt;}
.y198{bottom:3.535349pt;}
.y18f{bottom:3.546736pt;}
.y147{bottom:3.549200pt;}
.y1ad{bottom:3.549867pt;}
.y1b9{bottom:3.550133pt;}
.y13c{bottom:3.550267pt;}
.y1b3{bottom:3.550533pt;}
.yd1{bottom:3.750800pt;}
.y12d{bottom:3.845067pt;}
.y134{bottom:3.845200pt;}
.y18a{bottom:3.845333pt;}
.y131{bottom:3.845733pt;}
.y188{bottom:3.845867pt;}
.y1a5{bottom:3.846133pt;}
.y12e{bottom:5.028267pt;}
.y185{bottom:5.028400pt;}
.y133{bottom:5.028533pt;}
.y130{bottom:5.028933pt;}
.y187{bottom:5.029067pt;}
.y1a6{bottom:5.029333pt;}
.yf3{bottom:9.500533pt;}
.y36{bottom:9.500800pt;}
.y76{bottom:9.500933pt;}
.y66{bottom:9.501200pt;}
.y88{bottom:9.501333pt;}
.y46{bottom:9.501467pt;}
.y26{bottom:9.501600pt;}
.y105{bottom:9.501733pt;}
.y98{bottom:9.501867pt;}
.y56{bottom:9.502000pt;}
.y16{bottom:10.163067pt;}
.y17b{bottom:11.241067pt;}
.y286{bottom:17.414667pt;}
.yee{bottom:18.081333pt;}
.y25a{bottom:18.126000pt;}
.y1fc{bottom:18.504000pt;}
.y197{bottom:18.622581pt;}
.y18e{bottom:18.633968pt;}
.yf2{bottom:26.833867pt;}
.y35{bottom:26.834133pt;}
.y75{bottom:26.834267pt;}
.y65{bottom:26.834533pt;}
.y87{bottom:26.834667pt;}
.y45{bottom:26.834800pt;}
.y25{bottom:26.834933pt;}
.y104{bottom:26.835067pt;}
.y97{bottom:26.835200pt;}
.y55{bottom:26.835333pt;}
.y15{bottom:27.496400pt;}
.y1a9{bottom:32.243067pt;}
.y18d{bottom:32.538000pt;}
.y1b6{bottom:32.539067pt;}
.y138{bottom:32.539333pt;}
.y1a8{bottom:33.426267pt;}
.y196{bottom:33.709813pt;}
.y18c{bottom:33.721200pt;}
.y1b5{bottom:33.722267pt;}
.y137{bottom:33.722400pt;}
.y1bb{bottom:47.625200pt;}
.y195{bottom:48.797045pt;}
.y1ba{bottom:48.808400pt;}
.y2b2{bottom:56.799733pt;}
.y287{bottom:57.933600pt;}
.y1d2{bottom:60.106800pt;}
.y200{bottom:62.374533pt;}
.y1af{bottom:63.599067pt;}
.y194{bottom:63.884277pt;}
.y25c{bottom:65.587200pt;}
.y112{bottom:66.228267pt;}
.y22d{bottom:70.878533pt;}
.yc4{bottom:72.012400pt;}
.y1d1{bottom:72.106800pt;}
.y1ff{bottom:74.374533pt;}
.y284{bottom:76.630000pt;}
.y28a{bottom:77.270400pt;}
.y25b{bottom:77.587200pt;}
.y193{bottom:78.680437pt;}
.y22c{bottom:82.878533pt;}
.yc3{bottom:84.012400pt;}
.y1fe{bottom:86.374533pt;}
.y1ce{bottom:86.922800pt;}
.y1d0{bottom:91.133867pt;}
.y289{bottom:93.270400pt;}
.y192{bottom:93.767669pt;}
.y283{bottom:94.229867pt;}
.yec{bottom:94.461467pt;}
.y1fd{bottom:98.374533pt;}
.y102{bottom:103.558667pt;}
.y1cd{bottom:106.122800pt;}
.y191{bottom:108.854901pt;}
.y288{bottom:109.270400pt;}
.y282{bottom:111.829867pt;}
.yeb{bottom:112.061467pt;}
.y95{bottom:112.629333pt;}
.yc1{bottom:121.573200pt;}
.y13e{bottom:122.758800pt;}
.y1cc{bottom:123.722800pt;}
.y13d{bottom:123.942000pt;}
.y190{bottom:123.942133pt;}
.y1fb{bottom:125.111733pt;}
.y101{bottom:125.290667pt;}
.y258{bottom:127.461467pt;}
.y183{bottom:129.302403pt;}
.y281{bottom:129.429867pt;}
.y85{bottom:130.582667pt;}
.yea{bottom:133.440933pt;}
.yc0{bottom:139.551200pt;}
.y1cb{bottom:141.322800pt;}
.y1fa{bottom:142.711733pt;}
.y1cf{bottom:145.370133pt;}
.y182{bottom:145.861536pt;}
.y100{bottom:146.078667pt;}
.y257{bottom:146.661467pt;}
.y280{bottom:147.030000pt;}
.y84{bottom:149.480000pt;}
.ye9{bottom:154.820533pt;}
.y2b1{bottom:156.436800pt;}
.ybf{bottom:157.529200pt;}
.y1ca{bottom:158.922800pt;}
.y1f9{bottom:160.311867pt;}
.y229{bottom:160.918133pt;}
.y181{bottom:162.420669pt;}
.y256{bottom:164.261333pt;}
.y27f{bottom:164.630000pt;}
.y83{bottom:166.488000pt;}
.y2b0{bottom:172.436800pt;}
.ybe{bottom:175.507067pt;}
.y228{bottom:178.518133pt;}
.y180{bottom:178.979802pt;}
.y255{bottom:181.861467pt;}
.y113{bottom:183.582667pt;}
.y1c9{bottom:184.081867pt;}
.y73{bottom:184.441333pt;}
.y2af{bottom:188.436800pt;}
.yb0{bottom:189.250400pt;}
.ybd{bottom:193.485067pt;}
.y17f{bottom:195.538934pt;}
.y227{bottom:196.118133pt;}
.y27e{bottom:197.348000pt;}
.y254{bottom:199.461467pt;}
.y1c8{bottom:203.281867pt;}
.y63{bottom:203.338667pt;}
.yf0{bottom:203.717333pt;}
.yaf{bottom:206.850400pt;}
.ybc{bottom:211.463067pt;}
.y17e{bottom:212.098067pt;}
.ye8{bottom:212.697600pt;}
.y2ad{bottom:213.025200pt;}
.y1c7{bottom:220.881867pt;}
.y53{bottom:221.290667pt;}
.yae{bottom:224.450400pt;}
.y226{bottom:225.056667pt;}
.y253{bottom:228.400000pt;}
.y125{bottom:228.657067pt;}
.y17d{bottom:228.657200pt;}
.ybb{bottom:229.440933pt;}
.y2ac{bottom:230.625200pt;}
.ye7{bottom:234.077200pt;}
.y27d{bottom:235.445600pt;}
.y1c6{bottom:238.481867pt;}
.y43{bottom:239.244000pt;}
.y19d{bottom:240.786133pt;}
.yad{bottom:242.050400pt;}
.y225{bottom:242.656800pt;}
.yef{bottom:243.401333pt;}
.yba{bottom:247.418933pt;}
.y2ab{bottom:248.225200pt;}
.ye6{bottom:251.677200pt;}
.y27c{bottom:253.045600pt;}
.y33{bottom:257.197333pt;}
.yac{bottom:259.650400pt;}
.y224{bottom:260.256667pt;}
.yb9{bottom:265.396933pt;}
.y2aa{bottom:265.825200pt;}
.y252{bottom:266.497600pt;}
.y1c5{bottom:274.979467pt;}
.y23{bottom:275.149333pt;}
.yab{bottom:277.250400pt;}
.y27b{bottom:281.984267pt;}
.yb8{bottom:283.374800pt;}
.y251{bottom:285.697733pt;}
.y1f8{bottom:288.588933pt;}
.y122{bottom:288.620074pt;}
.y223{bottom:289.195333pt;}
.ye5{bottom:291.952800pt;}
.y2a9{bottom:294.763733pt;}
.yaa{bottom:294.850400pt;}
.yb7{bottom:301.352800pt;}
.y250{bottom:303.297600pt;}
.y121{bottom:305.179206pt;}
.y1f7{bottom:306.188933pt;}
.y13{bottom:310.393333pt;}
.ye4{bottom:311.152800pt;}
.y2a8{bottom:312.363733pt;}
.y19a{bottom:312.415200pt;}
.ya9{bottom:312.450400pt;}
.y27a{bottom:312.522933pt;}
.y1c4{bottom:316.277200pt;}
.yb6{bottom:319.330667pt;}
.y24f{bottom:320.897600pt;}
.y120{bottom:321.738339pt;}
.y1f6{bottom:323.788933pt;}
.y199{bottom:328.684533pt;}
.ye3{bottom:328.752800pt;}
.y2a7{bottom:329.963733pt;}
.ya8{bottom:330.050400pt;}
.y279{bottom:330.122933pt;}
.y222{bottom:330.492933pt;}
.y22b{bottom:334.913333pt;}
.y1c3{bottom:335.477200pt;}
.y11f{bottom:338.297472pt;}
.y24e{bottom:338.497600pt;}
.yc2{bottom:338.996000pt;}
.y1f5{bottom:341.388933pt;}
.ye2{bottom:346.352800pt;}
.ya7{bottom:347.650400pt;}
.y221{bottom:348.092933pt;}
.y1c2{bottom:353.077200pt;}
.y11e{bottom:354.856605pt;}
.y24d{bottom:356.097600pt;}
.y2a6{bottom:358.902400pt;}
.y1f4{bottom:358.988933pt;}
.y278{bottom:359.061467pt;}
.ya6{bottom:365.250400pt;}
.y220{bottom:365.692933pt;}
.y11d{bottom:371.415738pt;}
.y16b{bottom:372.864000pt;}
.y2a5{bottom:376.502400pt;}
.y1f3{bottom:376.588933pt;}
.y1c0{bottom:380.008000pt;}
.y24c{bottom:381.256667pt;}
.y1c1{bottom:382.015733pt;}
.ye1{bottom:382.850400pt;}
.y21f{bottom:383.292933pt;}
.y11c{bottom:387.974870pt;}
.y19c{bottom:393.318667pt;}
.y2a4{bottom:394.102400pt;}
.y1bf{bottom:396.868933pt;}
.y277{bottom:397.159067pt;}
.y21e{bottom:400.892933pt;}
.y285{bottom:401.622133pt;}
.ya5{bottom:401.748000pt;}
.y11b{bottom:404.534003pt;}
.y1f2{bottom:405.527600pt;}
.y2a3{bottom:411.702400pt;}
.y24b{bottom:411.795333pt;}
.y1be{bottom:411.954933pt;}
.y276{bottom:414.759067pt;}
.y21d{bottom:418.492933pt;}
.y11a{bottom:421.093136pt;}
.y1bd{bottom:427.041067pt;}
.y2a2{bottom:429.302400pt;}
.yc9{bottom:430.549600pt;}
.y275{bottom:432.359067pt;}
.y21c{bottom:436.092933pt;}
.y119{bottom:437.652269pt;}
.y1bc{bottom:442.127067pt;}
.y12{bottom:446.581067pt;}
.yca{bottom:447.674667pt;}
.y1ee{bottom:448.774800pt;}
.y24a{bottom:449.892933pt;}
.y274{bottom:449.959067pt;}
.y21b{bottom:453.692933pt;}
.y118{bottom:454.211402pt;}
.y1b4{bottom:456.325333pt;}
.y2a1{bottom:458.240933pt;}
.y11{bottom:465.781067pt;}
.y249{bottom:467.492933pt;}
.y273{bottom:467.559067pt;}
.y1ed{bottom:467.974800pt;}
.y117{bottom:470.770534pt;}
.y1b8{bottom:474.961467pt;}
.y21a{bottom:482.631467pt;}
.y10{bottom:483.381067pt;}
.y248{bottom:485.092933pt;}
.y1ec{bottom:485.574800pt;}
.y116{bottom:487.329667pt;}
.y1b7{bottom:490.047600pt;}
.y2a0{bottom:494.600000pt;}
.y272{bottom:496.497600pt;}
.y219{bottom:500.231467pt;}
.yf{bottom:500.981067pt;}
.y247{bottom:502.692933pt;}
.y115{bottom:503.888800pt;}
.y1ae{bottom:504.245333pt;}
.y29f{bottom:512.200000pt;}
.y1eb{bottom:514.513333pt;}
.y218{bottom:517.831467pt;}
.ye{bottom:518.581067pt;}
.y246{bottom:520.292933pt;}
.y1b2{bottom:522.882000pt;}
.y29e{bottom:529.800000pt;}
.y271{bottom:534.595333pt;}
.y1a3{bottom:534.714133pt;}
.y217{bottom:535.431467pt;}
.yd{bottom:536.181067pt;}
.y245{bottom:537.892933pt;}
.y1b1{bottom:537.968000pt;}
.yd0{bottom:549.035600pt;}
.y1a2{bottom:551.279333pt;}
.y270{bottom:552.195333pt;}
.y1ea{bottom:552.611067pt;}
.y216{bottom:553.031467pt;}
.y1b0{bottom:553.054133pt;}
.yc{bottom:553.781067pt;}
.y29d{bottom:558.738667pt;}
.y244{bottom:566.831467pt;}
.ycf{bottom:566.949200pt;}
.y1a1{bottom:567.844400pt;}
.y26f{bottom:569.795333pt;}
.yb{bottom:571.381067pt;}
.y1e9{bottom:571.811067pt;}
.y215{bottom:581.970133pt;}
.y1a7{bottom:582.338667pt;}
.y1a0{bottom:584.409467pt;}
.yce{bottom:584.862800pt;}
.y1ac{bottom:585.888533pt;}
.y1e8{bottom:589.411067pt;}
.y26e{bottom:594.954400pt;}
.y29c{bottom:600.036267pt;}
.ya{bottom:600.319600pt;}
.y1ab{bottom:600.678800pt;}
.y19f{bottom:600.974667pt;}
.ycd{bottom:602.776400pt;}
.y243{bottom:604.929200pt;}
.yb5{bottom:604.960667pt;}
.y1e7{bottom:607.011067pt;}
.y1aa{bottom:615.764933pt;}
.y19e{bottom:617.539733pt;}
.y9{bottom:617.919733pt;}
.y29b{bottom:619.236267pt;}
.ycc{bottom:620.690000pt;}
.y242{bottom:622.529200pt;}
.y214{bottom:623.267733pt;}
.y1e6{bottom:624.611067pt;}
.y179{bottom:629.596207pt;}
.y1a4{bottom:630.258667pt;}
.y26d{bottom:633.052000pt;}
.y8{bottom:635.519600pt;}
.ycb{bottom:638.603600pt;}
.y241{bottom:640.129200pt;}
.y213{bottom:640.867733pt;}
.y29a{bottom:644.395333pt;}
.y178{bottom:646.155340pt;}
.y1e5{bottom:649.770133pt;}
.y7{bottom:653.119600pt;}
.yb4{bottom:656.740133pt;}
.y240{bottom:657.729067pt;}
.y19b{bottom:660.727333pt;}
.y177{bottom:662.714473pt;}
.y26c{bottom:663.590533pt;}
.y212{bottom:669.806267pt;}
.y6{bottom:670.719600pt;}
.y23f{bottom:675.329200pt;}
.y176{bottom:679.273605pt;}
.y299{bottom:682.492933pt;}
.y26b{bottom:682.790533pt;}
.y211{bottom:687.406267pt;}
.y1e4{bottom:691.067733pt;}
.y23e{bottom:692.929200pt;}
.y175{bottom:695.832738pt;}
.y26a{bottom:700.390533pt;}
.y298{bottom:701.692933pt;}
.y16a{bottom:702.751200pt;}
.y210{bottom:705.006400pt;}
.y5{bottom:707.217333pt;}
.y1e3{bottom:708.667733pt;}
.y114{bottom:710.829333pt;}
.y174{bottom:712.391871pt;}
.y1f1{bottom:712.488133pt;}
.y269{bottom:717.990533pt;}
.y297{bottom:719.292933pt;}
.y124{bottom:720.132000pt;}
.y23d{bottom:721.867733pt;}
.y20f{bottom:722.606267pt;}
.y17c{bottom:723.142667pt;}
.y1e2{bottom:726.267733pt;}
.y173{bottom:728.951004pt;}
.y296{bottom:736.892933pt;}
.y146{bottom:738.767200pt;}
.y1e1{bottom:743.867733pt;}
.y172{bottom:745.510137pt;}
.y268{bottom:746.929067pt;}
.y20e{bottom:751.544933pt;}
.y145{bottom:753.853333pt;}
.y295{bottom:754.492933pt;}
.y23c{bottom:759.965333pt;}
.y1e0{bottom:761.467733pt;}
.y171{bottom:762.069269pt;}
.y267{bottom:764.529200pt;}
.y1f0{bottom:765.137067pt;}
.y144{bottom:768.939467pt;}
.y20d{bottom:769.144800pt;}
.y294{bottom:772.092933pt;}
.y23b{bottom:777.565333pt;}
.y4{bottom:778.474000pt;}
.y170{bottom:778.628402pt;}
.y1df{bottom:779.067733pt;}
.y259{bottom:782.031467pt;}
.y266{bottom:782.129200pt;}
.y143{bottom:784.025467pt;}
.y20c{bottom:786.744933pt;}
.y23a{bottom:795.165333pt;}
.y16f{bottom:795.187535pt;}
.y142{bottom:798.815733pt;}
.y265{bottom:799.729200pt;}
.y20b{bottom:804.344933pt;}
.y1de{bottom:808.006400pt;}
.y293{bottom:808.590533pt;}
.y3{bottom:809.012533pt;}
.y16e{bottom:811.746668pt;}
.y239{bottom:812.765333pt;}
.y141{bottom:813.901867pt;}
.y20a{bottom:821.944933pt;}
.y1dd{bottom:825.606267pt;}
.y16d{bottom:828.305801pt;}
.y264{bottom:828.667733pt;}
.y140{bottom:828.988000pt;}
.y209{bottom:839.544933pt;}
.y238{bottom:841.704000pt;}
.y1dc{bottom:843.206267pt;}
.y13f{bottom:844.074000pt;}
.y16c{bottom:844.864933pt;}
.y292{bottom:846.688133pt;}
.y12b{bottom:849.398533pt;}
.y136{bottom:858.272000pt;}
.y2{bottom:858.612533pt;}
.y237{bottom:859.304000pt;}
.y1db{bottom:860.806267pt;}
.y18b{bottom:861.284000pt;}
.y13b{bottom:861.822267pt;}
.y291{bottom:864.288267pt;}
.y1ef{bottom:864.803200pt;}
.y12a{bottom:865.963600pt;}
.y263{bottom:866.765333pt;}
.y208{bottom:868.483467pt;}
.y236{bottom:876.904000pt;}
.y13a{bottom:876.908400pt;}
.y1da{bottom:878.406267pt;}
.y290{bottom:881.888133pt;}
.y129{bottom:882.528667pt;}
.y139{bottom:891.994400pt;}
.y262{bottom:893.524400pt;}
.y235{bottom:894.503867pt;}
.y128{bottom:899.093867pt;}
.y132{bottom:906.193333pt;}
.y1{bottom:908.212533pt;}
.y189{bottom:909.204000pt;}
.y207{bottom:909.781067pt;}
.y1d9{bottom:911.124400pt;}
.y135{bottom:911.221867pt;}
.y234{bottom:912.103867pt;}
.y28f{bottom:914.606267pt;}
.y127{bottom:915.658800pt;}
.y261{bottom:924.062933pt;}
.y12f{bottom:925.716000pt;}
.y186{bottom:928.726667pt;}
.y206{bottom:928.981067pt;}
.y233{bottom:929.704000pt;}
.y126{bottom:932.224000pt;}
.y260{bottom:943.263067pt;}
.y12c{bottom:944.944000pt;}
.y205{bottom:946.581200pt;}
.y184{bottom:947.954667pt;}
.y1d8{bottom:949.222133pt;}
.y28e{bottom:952.704000pt;}
.y232{bottom:958.642533pt;}
.y204{bottom:964.181200pt;}
.y17a{bottom:967.181333pt;}
.y1d7{bottom:968.422000pt;}
.y28d{bottom:970.304000pt;}
.y25f{bottom:972.201600pt;}
.y123{bottom:975.411600pt;}
.y231{bottom:976.242533pt;}
.y203{bottom:981.781067pt;}
.yb3{bottom:984.941467pt;}
.y22a{bottom:985.370133pt;}
.y1d6{bottom:986.022000pt;}
.y230{bottom:993.842533pt;}
.y202{bottom:999.381067pt;}
.y28c{bottom:1003.022000pt;}
.y1d5{bottom:1003.622133pt;}
.yc8{bottom:1009.119733pt;}
.y169{bottom:1009.774800pt;}
.y25e{bottom:1010.601600pt;}
.yb2{bottom:1013.741467pt;}
.y201{bottom:1016.981067pt;}
.y22f{bottom:1022.781067pt;}
.y168{bottom:1027.374800pt;}
.yc7{bottom:1028.319600pt;}
.y1d4{bottom:1028.781067pt;}
.y25d{bottom:1029.801600pt;}
.ye0{bottom:1043.763867pt;}
.y28b{bottom:1044.319600pt;}
.y167{bottom:1044.974800pt;}
.yc6{bottom:1045.919733pt;}
.y2ae{bottom:1048.677200pt;}
.y22e{bottom:1056.519733pt;}
.yb1{bottom:1061.439067pt;}
.y1d3{bottom:1062.519733pt;}
.y166{bottom:1062.574800pt;}
.yc5{bottom:1063.519733pt;}
.yed{bottom:1067.480267pt;}
.h2f{height:-286.866667pt;}
.h31{height:-267.640000pt;}
.h2d{height:-260.177333pt;}
.h32{height:-248.412000pt;}
.h33{height:-228.889333pt;}
.h2c{height:-212.256000pt;}
.h34{height:-180.969333pt;}
.h2a{height:-134.458667pt;}
.h29{height:-86.538667pt;}
.h28{height:-67.016000pt;}
.h30{height:-42.828000pt;}
.h27{height:-32.997333pt;}
.h21{height:16.565333pt;}
.h12{height:16.773921pt;}
.h7{height:19.938667pt;}
.hb{height:20.220000pt;}
.ha{height:20.221333pt;}
.h1b{height:21.765625pt;}
.hf{height:22.968750pt;}
.h1a{height:30.318750pt;}
.h22{height:34.820625pt;}
.h24{height:35.057500pt;}
.h23{height:35.223312pt;}
.h17{height:37.668750pt;}
.h1e{height:38.217703pt;}
.h2b{height:38.250599pt;}
.h13{height:38.281250pt;}
.h1f{height:38.659677pt;}
.h10{height:39.903646pt;}
.h9{height:40.104167pt;}
.h16{height:41.343750pt;}
.h19{height:41.821875pt;}
.h5{height:42.109375pt;}
.h8{height:42.656250pt;}
.h6{height:43.531250pt;}
.h3b{height:43.750000pt;}
.h3{height:44.500000pt;}
.h36{height:44.962667pt;}
.h25{height:45.257333pt;}
.h38{height:45.258667pt;}
.h3d{height:45.937500pt;}
.h11{height:47.851562pt;}
.h3c{height:49.765625pt;}
.h1c{height:50.750000pt;}
.h3a{height:51.041667pt;}
.hc{height:51.916667pt;}
.h15{height:53.523750pt;}
.h18{height:53.903750pt;}
.h4{height:59.333333pt;}
.h39{height:60.344000pt;}
.h3e{height:65.250000pt;}
.he{height:68.906250pt;}
.h37{height:75.134667pt;}
.h3f{height:87.000000pt;}
.h2{height:114.958333pt;}
.hd{height:133.500000pt;}
.h26{height:135.478667pt;}
.h20{height:241.376000pt;}
.h35{height:253.505333pt;}
.h1d{height:294.524000pt;}
.h2e{height:307.450667pt;}
.h14{height:550.068000pt;}
.h0{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w3{width:19.464000pt;}
.w2{width:21.921333pt;}
.w13{width:57.681333pt;}
.wd{width:57.682667pt;}
.w12{width:57.977333pt;}
.w6{width:57.978667pt;}
.we{width:58.273333pt;}
.w7{width:58.274667pt;}
.w8{width:84.896000pt;}
.w9{width:136.957333pt;}
.w14{width:136.958667pt;}
.wb{width:207.064000pt;}
.wf{width:207.950667pt;}
.w15{width:207.952000pt;}
.wa{width:208.246667pt;}
.wc{width:556.409333pt;}
.w11{width:557.001333pt;}
.w5{width:576.470667pt;}
.w10{width:576.472000pt;}
.w4{width:616.808000pt;}
.w0{width:793.701333pt;}
.w1{width:794.000000pt;}
.x3{left:-10.593867pt;}
.x0{left:0.000000pt;}
.x4{left:4.472800pt;}
.x1a{left:6.803600pt;}
.xc{left:10.128133pt;}
.x20{left:11.788000pt;}
.x13{left:17.007867pt;}
.x5{left:28.472800pt;}
.xb{left:31.380000pt;}
.xe{left:34.118533pt;}
.x23{left:35.905333pt;}
.x17{left:39.600607pt;}
.x15{left:41.273333pt;}
.x24{left:46.509333pt;}
.x1{left:48.886667pt;}
.x19{left:51.876000pt;}
.x2a{left:53.312667pt;}
.xf{left:58.108933pt;}
.x16{left:61.777067pt;}
.x6{left:66.141733pt;}
.x14{left:75.869333pt;}
.x11{left:95.333333pt;}
.x32{left:97.133867pt;}
.x25{left:107.149333pt;}
.x30{left:108.094533pt;}
.x1b{left:112.516000pt;}
.x22{left:120.084533pt;}
.x37{left:126.416000pt;}
.x8{left:133.795333pt;}
.x7{left:155.905467pt;}
.x29{left:166.889600pt;}
.x26{left:168.085333pt;}
.x18{left:172.256533pt;}
.x1c{left:173.452000pt;}
.x33{left:208.629867pt;}
.x36{left:229.430267pt;}
.x27{left:255.644000pt;}
.x1d{left:261.010667pt;}
.x21{left:266.334933pt;}
.x34{left:272.503867pt;}
.x35{left:322.565067pt;}
.x38{left:391.370133pt;}
.x28{left:395.264000pt;}
.x1e{left:400.630667pt;}
.x1f{left:405.955200pt;}
.x2c{left:475.653467pt;}
.x2{left:504.378667pt;}
.xa{left:505.700800pt;}
.x2e{left:522.330667pt;}
.x9{left:533.669333pt;}
.x2f{left:554.910267pt;}
.x12{left:571.748000pt;}
.x10{left:575.055067pt;}
.x31{left:587.338533pt;}
.xd{left:610.130800pt;}
.x2b{left:627.590533pt;}
.x2d{left:767.244000pt;}
}




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