
    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_7efc3b280104880e0ada0e00.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight: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_a5b81f2942f78b65e77f1f45.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;font-style:normal;font-weight: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_319623329703b5de71e5e68c.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_640f61d1044ca00114441237.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight: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_29505657e2efd65fe5496a2d.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.900000;font-style:normal;font-weight: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_60026cce12eb13ef312ee72f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff7;src:url('chunks/assets/font_cecf83f8acdbd7e6a9326716.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.000000;font-style:normal;font-weight: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_35d396309c13c6bced09bcf6.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.906000;font-style:normal;font-weight: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_450408dbc66db99c26f468e1.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.907000;font-style:normal;font-weight: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_b00757bc3848c1cf535ac748.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.919000;font-style:normal;font-weight: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_8d309182b45906e82660feb2.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.665000;font-style:normal;font-weight: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_f587f519db038dfb6ed69af9.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.000000;font-style:normal;font-weight: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_f54a3b3ff31d339bd85c72ed.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.850000;font-style:normal;font-weight: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_9cbeb71109245982f99111bc.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.892000;font-style:normal;font-weight: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_55500dd1e551281c12fe6a71.woff2')format("woff");}.fff{font-family:fff;line-height:1.000000;font-style:normal;font-weight: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_4dca92cdeb6eeb99d952af8d.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.901000;font-style:normal;font-weight: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_dd2e6b8ec7315e6a2a998190.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.684000;font-style:normal;font-weight: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_84a55695e293a7d65a3e1ddb.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.908203;font-style:normal;font-weight: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_743dc7fc4a55c33fe06260af.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.919000;font-style:normal;font-weight: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_cecf83f8acdbd7e6a9326716.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.000000;font-style:normal;font-weight: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_a1d1adac36f414b1385eca64.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.727000;font-style:normal;font-weight: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_4dca92cdeb6eeb99d952af8d.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.901000;font-style:normal;font-weight: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_b2220e311ba0d27929ce30a7.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.694000;font-style:normal;font-weight: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_dd2e6b8ec7315e6a2a998190.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.684000;font-style:normal;font-weight: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_743dc7fc4a55c33fe06260af.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.919000;font-style:normal;font-weight: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_a1d1adac36f414b1385eca64.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.727000;font-style:normal;font-weight: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_cecf83f8acdbd7e6a9326716.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.000000;font-style:normal;font-weight: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_4dca92cdeb6eeb99d952af8d.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.901000;font-style:normal;font-weight: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_dd2e6b8ec7315e6a2a998190.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.684000;font-style:normal;font-weight: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_123d95d81ce84cee185831bc.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.000000;font-style:normal;font-weight: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_b2220e311ba0d27929ce30a7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.694000;font-style:normal;font-weight: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_4dca92cdeb6eeb99d952af8d.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.901000;font-style:normal;font-weight: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_a1d1adac36f414b1385eca64.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.727000;font-style:normal;font-weight: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_af75c550d07994be49ea5a13.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.693000;font-style:normal;font-weight: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_743dc7fc4a55c33fe06260af.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.919000;font-style:normal;font-weight: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_743dc7fc4a55c33fe06260af.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.919000;font-style:normal;font-weight: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_a1d1adac36f414b1385eca64.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.727000;font-style:normal;font-weight: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_cecf83f8acdbd7e6a9326716.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.000000;font-style:normal;font-weight: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_4dca92cdeb6eeb99d952af8d.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.901000;font-style:normal;font-weight: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_dd2e6b8ec7315e6a2a998190.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.684000;font-style:normal;font-weight: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_743dc7fc4a55c33fe06260af.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.919000;font-style:normal;font-weight: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_45b5ff7eed8b52d009973939.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.728000;font-style:normal;font-weight: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_7a37391357da41abe866b6cd.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.000000;font-style:normal;font-weight: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_cecf83f8acdbd7e6a9326716.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.000000;font-style:normal;font-weight: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_b2220e311ba0d27929ce30a7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.694000;font-style:normal;font-weight: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_4dca92cdeb6eeb99d952af8d.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.901000;font-style:normal;font-weight: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_a1d1adac36f414b1385eca64.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.727000;font-style:normal;font-weight: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_3ce95153cf556fee7be70842.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.106000;font-style:normal;font-weight: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_9cbeb71109245982f99111bc.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.892000;font-style:normal;font-weight: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_af75c550d07994be49ea5a13.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.693000;font-style:normal;font-weight: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_743dc7fc4a55c33fe06260af.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.919000;font-style:normal;font-weight: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_cecf83f8acdbd7e6a9326716.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.000000;font-style:normal;font-weight: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_4dca92cdeb6eeb99d952af8d.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.901000;font-style:normal;font-weight: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_e795d04757a4850b159d8a3d.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.000000;font-style:normal;font-weight: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_55500dd1e551281c12fe6a71.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.000000;font-style:normal;font-weight: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_743dc7fc4a55c33fe06260af.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.919000;font-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);}
.v3{vertical-align:-22.854000px;}
.v5{vertical-align:-16.872000px;}
.v6{vertical-align:-8.948977px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:17.403000px;}
.v4{vertical-align:21.692160px;}
.v2{vertical-align:26.028000px;}
.ls35{letter-spacing:-4.811936px;}
.ls36{letter-spacing:-4.782048px;}
.ls8{letter-spacing:-0.756000px;}
.ls7{letter-spacing:0.000000px;}
.ls22{letter-spacing:0.014944px;}
.ls23{letter-spacing:0.029888px;}
.ls18{letter-spacing:0.039116px;}
.lsb{letter-spacing:0.053798px;}
.ls9{letter-spacing:0.059776px;}
.lsa{letter-spacing:0.071731px;}
.lsc{letter-spacing:0.086077px;}
.ls0{letter-spacing:0.103292px;}
.ls1f{letter-spacing:0.478205px;}
.ls20{letter-spacing:1.733492px;}
.ls6{letter-spacing:2.992118px;}
.ls1{letter-spacing:2.999261px;}
.ls21{letter-spacing:3.004847px;}
.ls2{letter-spacing:3.005261px;}
.ls11{letter-spacing:3.005447px;}
.ls37{letter-spacing:3.048556px;}
.ls34{letter-spacing:6.515540px;}
.lse{letter-spacing:6.575316px;}
.ls38{letter-spacing:7.509509px;}
.ls31{letter-spacing:7.510109px;}
.ls30{letter-spacing:8.249033px;}
.ls1e{letter-spacing:8.308808px;}
.ls28{letter-spacing:13.808164px;}
.ls2b{letter-spacing:14.286368px;}
.ls2e{letter-spacing:15.422105px;}
.ls17{letter-spacing:18.231558px;}
.ls1c{letter-spacing:18.709763px;}
.ls1d{letter-spacing:19.965050px;}
.ls24{letter-spacing:20.024826px;}
.ls1a{letter-spacing:20.777447px;}
.ls19{letter-spacing:20.778047px;}
.ls10{letter-spacing:21.293447px;}
.ls13{letter-spacing:21.676847px;}
.ls12{letter-spacing:21.677447px;}
.ls27{letter-spacing:22.057196px;}
.ls33{letter-spacing:22.415850px;}
.ls2a{letter-spacing:22.535401px;}
.ls15{letter-spacing:22.931447px;}
.ls2d{letter-spacing:23.730913px;}
.ls32{letter-spacing:24.149342px;}
.ls16{letter-spacing:24.209118px;}
.ls14{letter-spacing:24.713447px;}
.ls1b{letter-spacing:25.524181px;}
.lsf{letter-spacing:27.018571px;}
.ls29{letter-spacing:27.138122px;}
.ls5{letter-spacing:27.827447px;}
.ls2c{letter-spacing:27.915205px;}
.lsd{letter-spacing:29.349820px;}
.ls2f{letter-spacing:29.648698px;}
.ls25{letter-spacing:30.067127px;}
.ls3{letter-spacing:30.634118px;}
.ls4{letter-spacing:30.640118px;}
.ls26{letter-spacing:30.664883px;}
.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:-15.012000px;}
.ws2{word-spacing:-12.000000px;}
.ws55{word-spacing:-8.368584px;}
.ws96{word-spacing:-3.108331px;}
.ws7d{word-spacing:-0.478205px;}
.wscf{word-spacing:-0.143462px;}
.ws2c{word-spacing:-0.119551px;}
.wsd6{word-spacing:-0.107597px;}
.ws6{word-spacing:-0.103292px;}
.ws0{word-spacing:-0.099000px;}
.wsd1{word-spacing:-0.086077px;}
.wsa{word-spacing:-0.059776px;}
.ws87{word-spacing:-0.044832px;}
.ws72{word-spacing:-0.041843px;}
.ws8b{word-spacing:-0.029888px;}
.ws24{word-spacing:0.000000px;}
.ws25{word-spacing:0.756000px;}
.wsab{word-spacing:5.499355px;}
.ws74{word-spacing:7.292623px;}
.ws83{word-spacing:9.608928px;}
.ws3d{word-spacing:13.688612px;}
.ws19{word-spacing:14.190727px;}
.ws47{word-spacing:15.027586px;}
.wsb6{word-spacing:15.087361px;}
.wsbf{word-spacing:15.200935px;}
.wse5{word-spacing:15.206913px;}
.wsc0{word-spacing:15.326464px;}
.wsa9{word-spacing:15.434060px;}
.ws66{word-spacing:15.505791px;}
.wsa8{word-spacing:15.547634px;}
.ws62{word-spacing:15.649252px;}
.ws64{word-spacing:15.744893px;}
.ws75{word-spacing:15.804669px;}
.ws8f{word-spacing:15.924220px;}
.ws8a{word-spacing:16.124088px;}
.wse3{word-spacing:16.133434px;}
.wsb9{word-spacing:16.163322px;}
.ws2e{word-spacing:16.258963px;}
.ws4e{word-spacing:16.312761px;}
.wsaf{word-spacing:16.402425px;}
.ws50{word-spacing:16.474155px;}
.ws52{word-spacing:16.492088px;}
.wsb0{word-spacing:16.533931px;}
.ws69{word-spacing:16.641527px;}
.ws23{word-spacing:16.885454px;}
.ws2d{word-spacing:16.940405px;}
.ws4d{word-spacing:17.095822px;}
.wsd4{word-spacing:17.210108px;}
.ws3e{word-spacing:17.215373px;}
.wsb{word-spacing:17.239283px;}
.wsc7{word-spacing:17.299059px;}
.ws31{word-spacing:17.514251px;}
.ws48{word-spacing:17.538161px;}
.ws7f{word-spacing:17.574026px;}
.ws5a{word-spacing:17.597937px;}
.ws59{word-spacing:17.717488px;}
.wsc1{word-spacing:17.777263px;}
.ws41{word-spacing:18.135917px;}
.ws4f{word-spacing:18.153850px;}
.wsa7{word-spacing:18.177760px;}
.ws42{word-spacing:18.273401px;}
.ws43{word-spacing:18.285356px;}
.ws40{word-spacing:18.291334px;}
.ws9{word-spacing:18.291456px;}
.wsd2{word-spacing:18.312975px;}
.wsb1{word-spacing:18.315244px;}
.ws17{word-spacing:18.318355px;}
.wsd7{word-spacing:18.339875px;}
.ws76{word-spacing:18.428817px;}
.ws6a{word-spacing:18.434795px;}
.wsd5{word-spacing:18.571208px;}
.ws44{word-spacing:18.590212px;}
.ws46{word-spacing:18.614122px;}
.ws77{word-spacing:18.626077px;}
.ws45{word-spacing:18.632055px;}
.ws78{word-spacing:18.649987px;}
.ws33{word-spacing:18.733673px;}
.ws3a{word-spacing:18.745628px;}
.ws1f{word-spacing:18.972775px;}
.ws1e{word-spacing:19.092327px;}
.ws27{word-spacing:19.152102px;}
.wse{word-spacing:19.271653px;}
.ws60{word-spacing:19.283609px;}
.ws32{word-spacing:19.582487px;}
.ws70{word-spacing:19.594442px;}
.ws4b{word-spacing:19.660195px;}
.ws98{word-spacing:19.672150px;}
.wsb5{word-spacing:19.678128px;}
.ws22{word-spacing:19.725948px;}
.ws4{word-spacing:19.749858px;}
.ws3c{word-spacing:19.761813px;}
.ws2a{word-spacing:19.809634px;}
.ws2f{word-spacing:19.845499px;}
.ws7c{word-spacing:19.857454px;}
.ws4c{word-spacing:19.869409px;}
.ws5f{word-spacing:19.881365px;}
.ws8d{word-spacing:19.905275px;}
.ws3f{word-spacing:19.929185px;}
.ws15{word-spacing:19.941140px;}
.ws71{word-spacing:19.988961px;}
.wscc{word-spacing:20.180243px;}
.wsd{word-spacing:20.240018px;}
.ws11{word-spacing:20.263928px;}
.wsba{word-spacing:20.287839px;}
.ws9e{word-spacing:20.461188px;}
.ws9d{word-spacing:20.586717px;}
.wsbe{word-spacing:20.742133px;}
.wsbd{word-spacing:20.766043px;}
.wsd3{word-spacing:20.814601px;}
.wsbb{word-spacing:20.885595px;}
.ws68{word-spacing:20.897550px;}
.wsbc{word-spacing:20.903527px;}
.wsd8{word-spacing:21.115872px;}
.ws21{word-spacing:21.124697px;}
.ws9f{word-spacing:21.136652px;}
.ws97{word-spacing:21.160562px;}
.wsa1{word-spacing:21.184473px;}
.ws51{word-spacing:21.286091px;}
.ws63{word-spacing:21.339889px;}
.ws95{word-spacing:21.363799px;}
.wsf{word-spacing:21.495306px;}
.wsb2{word-spacing:21.543126px;}
.ws9a{word-spacing:21.578992px;}
.ws99{word-spacing:21.602902px;}
.ws4a{word-spacing:21.662677px;}
.ws49{word-spacing:21.674633px;}
.wsa2{word-spacing:21.686588px;}
.ws56{word-spacing:21.722453px;}
.ws7e{word-spacing:21.734408px;}
.wsc9{word-spacing:21.794184px;}
.ws1a{word-spacing:21.842004px;}
.wsac{word-spacing:21.997421px;}
.wsaa{word-spacing:22.039264px;}
.ws39{word-spacing:22.081107px;}
.wsc5{word-spacing:22.140882px;}
.wsad{word-spacing:22.152837px;}
.wsd9{word-spacing:22.213359px;}
.wse4{word-spacing:22.260433px;}
.ws90{word-spacing:22.284344px;}
.wscb{word-spacing:22.379985px;}
.ws14{word-spacing:22.415850px;}
.wsd0{word-spacing:22.571267px;}
.wsb3{word-spacing:22.619087px;}
.wsc4{word-spacing:22.631042px;}
.wsc2{word-spacing:22.654952px;}
.ws2b{word-spacing:22.678863px;}
.wsc3{word-spacing:22.774504px;}
.wsa5{word-spacing:22.917965px;}
.ws6c{word-spacing:22.977741px;}
.wsa4{word-spacing:23.037516px;}
.ws58{word-spacing:23.109247px;}
.wsda{word-spacing:23.117172px;}
.wsca{word-spacing:23.133157px;}
.ws7{word-spacing:23.240909px;}
.ws5e{word-spacing:23.270641px;}
.wsa3{word-spacing:23.372260px;}
.ws8{word-spacing:23.384371px;}
.wsb8{word-spacing:23.396170px;}
.wscd{word-spacing:23.432035px;}
.wsa6{word-spacing:23.455945px;}
.ws20{word-spacing:23.635272px;}
.ws13{word-spacing:23.647227px;}
.wsce{word-spacing:23.671138px;}
.ws3b{word-spacing:23.754823px;}
.wsc{word-spacing:23.844487px;}
.ws9c{word-spacing:23.934150px;}
.wsae{word-spacing:23.993926px;}
.ws57{word-spacing:24.029791px;}
.ws9b{word-spacing:24.065657px;}
.wsb7{word-spacing:24.113477px;}
.ws7b{word-spacing:24.173253px;}
.ws79{word-spacing:24.185208px;}
.ws7a{word-spacing:24.209118px;}
.ws94{word-spacing:24.310737px;}
.ws5b{word-spacing:24.352579px;}
.wsb4{word-spacing:24.430288px;}
.ws92{word-spacing:24.436265px;}
.wsa0{word-spacing:24.543861px;}
.ws1c{word-spacing:24.675368px;}
.ws73{word-spacing:24.687323px;}
.ws5c{word-spacing:24.711233px;}
.ws1d{word-spacing:24.782964px;}
.ws28{word-spacing:24.842739px;}
.ws5d{word-spacing:24.890560px;}
.ws91{word-spacing:24.914470px;}
.ws34{word-spacing:24.926425px;}
.ws38{word-spacing:24.950335px;}
.ws36{word-spacing:25.010111px;}
.ws93{word-spacing:25.308989px;}
.ws1b{word-spacing:25.344854px;}
.ws6f{word-spacing:25.440495px;}
.ws6e{word-spacing:25.464406px;}
.ws6d{word-spacing:25.506249px;}
.ws65{word-spacing:25.524181px;}
.ws6b{word-spacing:25.667643px;}
.ws12{word-spacing:25.739373px;}
.wsc6{word-spacing:26.205623px;}
.ws10{word-spacing:26.480591px;}
.ws61{word-spacing:26.624052px;}
.ws35{word-spacing:26.701761px;}
.ws67{word-spacing:26.719872px;}
.wsc8{word-spacing:26.803379px;}
.ws26{word-spacing:26.863155px;}
.ws54{word-spacing:26.899020px;}
.ws29{word-spacing:26.946840px;}
.ws16{word-spacing:27.690036px;}
.ws37{word-spacing:29.834002px;}
.ws5{word-spacing:30.884428px;}
.ws30{word-spacing:32.020718px;}
.ws8e{word-spacing:32.055149px;}
.ws53{word-spacing:32.080972px;}
.ws89{word-spacing:73.831221px;}
.wse2{word-spacing:73.846776px;}
.ws8c{word-spacing:73.849985px;}
.wsdb{word-spacing:80.786723px;}
.ws80{word-spacing:80.795944px;}
.ws82{word-spacing:86.381532px;}
.wsdd{word-spacing:86.390686px;}
.wsde{word-spacing:89.224049px;}
.ws84{word-spacing:89.238725px;}
.ws86{word-spacing:91.395319px;}
.wse0{word-spacing:91.396892px;}
.ws18{word-spacing:96.621657px;}
.wsdc{word-spacing:106.490231px;}
.ws81{word-spacing:106.494926px;}
.ws88{word-spacing:117.838249px;}
.wse1{word-spacing:117.847595px;}
.ws85{word-spacing:118.768013px;}
.wsdf{word-spacing:118.774117px;}
.ws3{word-spacing:1228.722600px;}
._7{margin-left:-36.819655px;}
._6{margin-left:-35.248712px;}
._9{margin-left:-27.527401px;}
._2d{margin-left:-22.991231px;}
._1c{margin-left:-8.142903px;}
._3{margin-left:-6.987600px;}
._a{margin-left:-5.068160px;}
._2{margin-left:-3.985200px;}
._4{margin-left:-2.902516px;}
._0{margin-left:-1.791900px;}
._1{width:1.449000px;}
._5{width:2.675273px;}
._17{width:4.426543px;}
._19{width:16.611639px;}
._1a{width:18.880376px;}
._12{width:20.888994px;}
._2b{width:22.715845px;}
._8{width:24.462132px;}
._16{width:25.536136px;}
._c{width:26.903630px;}
._e{width:28.070622px;}
._20{width:29.111528px;}
._11{width:30.621126px;}
._1b{width:32.177205px;}
._18{width:33.225458px;}
._2c{width:35.238833px;}
._1e{width:36.260690px;}
._1f{width:37.266288px;}
._b{width:38.547327px;}
._1d{width:39.608124px;}
._10{width:41.398401px;}
._f{width:43.858726px;}
._d{width:46.852115px;}
._26{width:66.294837px;}
._28{width:76.666532px;}
._21{width:80.590003px;}
._25{width:86.338774px;}
._14{width:92.536235px;}
._15{width:96.793811px;}
._24{width:107.752445px;}
._27{width:116.158532px;}
._2a{width:127.186532px;}
._29{width:137.034722px;}
._23{width:371.842200px;}
._13{width:678.037800px;}
._22{width:774.037200px;}
.fc3{color:transparent;}
.fc1{color:rgb(0,150,189);}
.fc2{color:rgb(131,131,131);}
.fc0{color:rgb(0,0,0);}
.fsc{font-size:29.887800px;}
.fs8{font-size:35.865600px;}
.fsb{font-size:41.842800px;}
.fs7{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fs9{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs4{font-size:59.775600px;}
.fs3{font-size:69.000000px;}
.fs6{font-size:71.731200px;}
.fsa{font-size:86.077200px;}
.fs0{font-size:99.000000px;}
.fs5{font-size:103.292400px;}
.y71{bottom:-584.587350px;}
.y70{bottom:-541.514850px;}
.y6f{bottom:-506.186250px;}
.y6e{bottom:-488.253570px;}
.y6d{bottom:-470.320890px;}
.y6c{bottom:-452.388210px;}
.y6b{bottom:-434.455530px;}
.y6a{bottom:-416.521890px;}
.y69{bottom:-398.589210px;}
.y68{bottom:-380.656530px;}
.y67{bottom:-362.723850px;}
.y4f{bottom:-334.781850px;}
.y66{bottom:-329.992350px;}
.y4e{bottom:-291.709350px;}
.y65{bottom:-271.607550px;}
.y4d{bottom:-256.380750px;}
.y64{bottom:-246.202830px;}
.y4c{bottom:-238.448070px;}
.y63{bottom:-228.270150px;}
.y4b{bottom:-220.515390px;}
.y62{bottom:-210.337470px;}
.y4a{bottom:-202.582710px;}
.y61{bottom:-192.404790px;}
.y49{bottom:-184.650030px;}
.y60{bottom:-174.472110px;}
.y48{bottom:-166.716390px;}
.y5f{bottom:-156.539430px;}
.y47{bottom:-148.783710px;}
.y5e{bottom:-138.606750px;}
.y46{bottom:-130.851030px;}
.y5d{bottom:-120.674070px;}
.y45{bottom:-112.918350px;}
.y5c{bottom:-102.741390px;}
.y5b{bottom:-84.808710px;}
.y44{bottom:-80.186850px;}
.y5a{bottom:-66.876030px;}
.y59{bottom:-48.943350px;}
.y9{bottom:-31.889700px;}
.y43{bottom:-21.802050px;}
.y141{bottom:-16.091675px;}
.yef{bottom:-16.086900px;}
.y10c{bottom:-16.085550px;}
.y2d{bottom:-14.821350px;}
.yb8{bottom:-12.127000px;}
.y94{bottom:-12.125741px;}
.y0{bottom:0.000000px;}
.y42{bottom:3.601950px;}
.y140{bottom:22.762465px;}
.yb7{bottom:26.727140px;}
.y93{bottom:26.728399px;}
.y10b{bottom:32.779838px;}
.y13f{bottom:40.695145px;}
.yb6{bottom:44.659820px;}
.y92{bottom:44.661079px;}
.y10a{bottom:49.215250px;}
.y6{bottom:54.515850px;}
.y13e{bottom:58.627825px;}
.yb5{bottom:62.592500px;}
.y91{bottom:62.983620px;}
.y109{bottom:65.650661px;}
.y5{bottom:68.015850px;}
.y13d{bottom:76.560505px;}
.yb4{bottom:80.525180px;}
.y90{bottom:80.915760px;}
.y4{bottom:81.515850px;}
.y108{bottom:85.071883px;}
.y13c{bottom:94.493185px;}
.yc{bottom:94.617000px;}
.y8f{bottom:98.848440px;}
.yb3{bottom:100.569560px;}
.y107{bottom:104.506555px;}
.yb9{bottom:104.881500px;}
.y73{bottom:108.426000px;}
.y13b{bottom:112.425865px;}
.y8e{bottom:116.781120px;}
.yb2{bottom:118.502240px;}
.y106{bottom:120.941966px;}
.y2c{bottom:122.868150px;}
.yee{bottom:127.643965px;}
.y13a{bottom:130.358545px;}
.y8d{bottom:134.713620px;}
.yb1{bottom:136.434920px;}
.y105{bottom:137.377378px;}
.yed{bottom:145.576645px;}
.y139{bottom:148.291225px;}
.y8c{bottom:152.642544px;}
.yb0{bottom:154.367600px;}
.y104{bottom:156.798600px;}
.y2b{bottom:158.196750px;}
.yec{bottom:163.509325px;}
.y138{bottom:166.223905px;}
.y8b{bottom:170.575224px;}
.yaf{bottom:172.300280px;}
.y2a{bottom:176.129430px;}
.yeb{bottom:181.442005px;}
.y137{bottom:184.156585px;}
.y103{bottom:186.555600px;}
.y8a{bottom:188.507904px;}
.yae{bottom:192.340050px;}
.y29{bottom:194.062110px;}
.yea{bottom:199.374685px;}
.y136{bottom:202.089265px;}
.y89{bottom:206.440584px;}
.yad{bottom:210.272730px;}
.y28{bottom:211.994790px;}
.ye9{bottom:217.307365px;}
.y135{bottom:220.261048px;}
.y102{bottom:220.557270px;}
.yac{bottom:228.205410px;}
.y27{bottom:229.927470px;}
.ye8{bottom:235.240045px;}
.y134{bottom:238.193728px;}
.y101{bottom:238.489950px;}
.y88{bottom:244.741800px;}
.yab{bottom:246.138090px;}
.y26{bottom:247.861110px;}
.ye7{bottom:253.172725px;}
.y133{bottom:256.126408px;}
.y36{bottom:259.147739px;}
.yaa{bottom:264.070770px;}
.y25{bottom:265.793790px;}
.y100{bottom:266.073450px;}
.ye6{bottom:271.105405px;}
.y132{bottom:274.059088px;}
.y51{bottom:275.200650px;}
.y35{bottom:281.296650px;}
.ya9{bottom:282.003450px;}
.y24{bottom:283.726470px;}
.ye5{bottom:289.038085px;}
.y131{bottom:291.991768px;}
.y34{bottom:292.023239px;}
.yff{bottom:294.695550px;}
.y23{bottom:301.659150px;}
.ye4{bottom:306.970765px;}
.y130{bottom:309.924448px;}
.yfe{bottom:312.628230px;}
.ya8{bottom:313.515450px;}
.y33{bottom:314.172150px;}
.y20{bottom:323.563170px;}
.ye3{bottom:325.142548px;}
.y12f{bottom:327.857128px;}
.yfd{bottom:330.560910px;}
.y22{bottom:334.390650px;}
.y32{bottom:339.780150px;}
.y1f{bottom:341.495850px;}
.ye2{bottom:343.075228px;}
.y12e{bottom:345.789808px;}
.yfc{bottom:348.493590px;}
.ya7{bottom:353.790353px;}
.y1e{bottom:359.428530px;}
.ye1{bottom:361.007908px;}
.y12d{bottom:363.722488px;}
.yfb{bottom:366.426270px;}
.ya6{bottom:371.723033px;}
.y87{bottom:373.722540px;}
.y1d{bottom:377.361210px;}
.y31{bottom:378.637344px;}
.ye0{bottom:378.940588px;}
.y12c{bottom:381.894270px;}
.yfa{bottom:384.358950px;}
.ya5{bottom:389.655713px;}
.y86{bottom:391.655220px;}
.y21{bottom:392.775450px;}
.y1c{bottom:395.293890px;}
.ydf{bottom:396.873268px;}
.y12b{bottom:399.820855px;}
.ya4{bottom:407.588393px;}
.y85{bottom:409.587900px;}
.y30{bottom:411.510150px;}
.y1b{bottom:413.226570px;}
.yde{bottom:414.805948px;}
.yf9{bottom:417.090450px;}
.y12a{bottom:417.753535px;}
.yb{bottom:418.592250px;}
.ya3{bottom:425.521073px;}
.y84{bottom:427.520580px;}
.y1a{bottom:431.159250px;}
.ydd{bottom:432.738628px;}
.ya{bottom:433.592250px;}
.y129{bottom:435.686215px;}
.y83{bottom:445.453260px;}
.y19{bottom:449.091930px;}
.ydc{bottom:450.671308px;}
.yf8{bottom:453.290626px;}
.y128{bottom:453.618895px;}
.y2e{bottom:456.577500px;}
.y82{bottom:463.385940px;}
.y18{bottom:467.024610px;}
.ya2{bottom:468.081300px;}
.ydb{bottom:468.603988px;}
.yf7{bottom:471.223306px;}
.y127{bottom:471.790678px;}
.y41{bottom:478.112850px;}
.y81{bottom:481.318620px;}
.y17{bottom:484.957290px;}
.yda{bottom:486.775770px;}
.yf6{bottom:489.155986px;}
.y126{bottom:489.723358px;}
.y40{bottom:496.045530px;}
.y80{bottom:499.251300px;}
.y16{bottom:502.889970px;}
.yd9{bottom:504.702355px;}
.yf5{bottom:507.088666px;}
.y125{bottom:507.656038px;}
.y3f{bottom:513.978210px;}
.y15{bottom:520.822650px;}
.yd8{bottom:522.635035px;}
.y2f{bottom:525.006150px;}
.yf4{bottom:525.021346px;}
.y124{bottom:525.588718px;}
.y3e{bottom:531.910890px;}
.y7f{bottom:532.714800px;}
.yd7{bottom:540.567715px;}
.yf3{bottom:542.954026px;}
.y123{bottom:543.521398px;}
.y3d{bottom:549.843570px;}
.yd6{bottom:558.500395px;}
.yf2{bottom:560.886706px;}
.y122{bottom:561.693180px;}
.y3c{bottom:567.776250px;}
.yd5{bottom:576.672178px;}
.y14{bottom:579.108239px;}
.y121{bottom:579.625860px;}
.y7e{bottom:584.219829px;}
.y3b{bottom:585.708930px;}
.yd4{bottom:594.604858px;}
.y120{bottom:597.558540px;}
.y13{bottom:601.257150px;}
.y7d{bottom:602.152509px;}
.y3a{bottom:603.641610px;}
.ya1{bottom:606.920250px;}
.yf1{bottom:608.991120px;}
.y12{bottom:611.983739px;}
.yd3{bottom:612.537538px;}
.y11f{bottom:615.491220px;}
.y7c{bottom:620.085189px;}
.y39{bottom:621.574290px;}
.ya0{bottom:624.852930px;}
.yf0{bottom:626.923800px;}
.yd2{bottom:630.470218px;}
.y11e{bottom:633.423900px;}
.y11{bottom:634.132650px;}
.y7b{bottom:638.017869px;}
.y38{bottom:639.506970px;}
.y9f{bottom:642.785610px;}
.yd1{bottom:648.402898px;}
.y11d{bottom:651.356580px;}
.y7a{bottom:655.950549px;}
.y37{bottom:657.439650px;}
.y10{bottom:659.740650px;}
.y9e{bottom:660.718290px;}
.yd0{bottom:666.574680px;}
.y11c{bottom:669.289260px;}
.y79{bottom:673.883229px;}
.y9d{bottom:678.650970px;}
.ycf{bottom:684.507360px;}
.y11b{bottom:687.221940px;}
.y50{bottom:689.883000px;}
.y78{bottom:691.815909px;}
.y9c{bottom:696.584400px;}
.yf{bottom:698.597844px;}
.y58{bottom:699.225239px;}
.yce{bottom:702.440040px;}
.y11a{bottom:705.154620px;}
.y77{bottom:709.748589px;}
.y9b{bottom:714.517080px;}
.ycd{bottom:720.372720px;}
.y57{bottom:721.374150px;}
.y119{bottom:723.087300px;}
.ye{bottom:731.470650px;}
.y56{bottom:732.100739px;}
.y9a{bottom:732.449760px;}
.ycc{bottom:738.305400px;}
.y99{bottom:750.382440px;}
.y55{bottom:754.249650px;}
.ycb{bottom:756.238080px;}
.y118{bottom:756.256800px;}
.y76{bottom:760.752120px;}
.y98{bottom:768.315120px;}
.yca{bottom:774.170760px;}
.y75{bottom:778.684800px;}
.y54{bottom:779.857650px;}
.y97{bottom:786.247800px;}
.yc9{bottom:792.103440px;}
.y117{bottom:806.940300px;}
.yc8{bottom:810.036120px;}
.y53{bottom:818.714844px;}
.y96{bottom:822.906300px;}
.y116{bottom:824.274834px;}
.yc7{bottom:827.968800px;}
.y115{bottom:833.241174px;}
.y114{bottom:842.207514px;}
.yd{bottom:844.966650px;}
.y110{bottom:851.099134px;}
.y113{bottom:851.173854px;}
.y52{bottom:851.587650px;}
.y10f{bottom:860.065475px;}
.y112{bottom:860.140194px;}
.yc6{bottom:861.138300px;}
.y111{bottom:869.106534px;}
.y10e{bottom:878.670630px;}
.y8{bottom:880.176150px;}
.y10d{bottom:883.153800px;}
.y95{bottom:883.522800px;}
.y7{bottom:900.876150px;}
.yc5{bottom:911.821800px;}
.yba{bottom:923.802300px;}
.y74{bottom:927.757800px;}
.yc4{bottom:929.156460px;}
.yc3{bottom:938.122800px;}
.yc2{bottom:947.088960px;}
.ybe{bottom:955.980960px;}
.yc1{bottom:956.055300px;}
.y3{bottom:961.130850px;}
.ybd{bottom:964.947300px;}
.yc0{bottom:965.021460px;}
.ybf{bottom:973.987800px;}
.ybc{bottom:983.553300px;}
.ybb{bottom:988.035300px;}
.y1{bottom:988.999500px;}
.y2{bottom:1033.378950px;}
.y72{bottom:1035.561750px;}
.h1e{height:22.415850px;}
.hd{height:23.850624px;}
.h4{height:33.328125px;}
.he{height:33.462605px;}
.h16{height:34.143908px;}
.h5{height:36.000000px;}
.h8{height:37.494141px;}
.h3{height:38.664000px;}
.h22{height:39.182906px;}
.h1d{height:39.184226px;}
.h20{height:40.047210px;}
.h23{height:40.049652px;}
.h1f{height:40.053210px;}
.h10{height:40.348800px;}
.hf{height:41.723369px;}
.h1a{height:44.828700px;}
.ha{height:44.831700px;}
.h18{height:44.832420px;}
.h19{height:44.833860px;}
.h17{height:44.846723px;}
.h6{height:47.127000px;}
.h12{height:49.475779px;}
.h1b{height:50.211840px;}
.h21{height:50.293012px;}
.h7{height:53.403000px;}
.hc{height:60.171908px;}
.h11{height:60.254040px;}
.hb{height:72.511265px;}
.h2{height:74.646000px;}
.h14{height:189.058500px;}
.h13{height:231.733500px;}
.h9{height:314.029500px;}
.h1c{height:908.151000px;}
.h15{height:913.524000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:49.498500px;}
.w3{width:52.122000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x19{left:-715.145850px;}
.x2b{left:-709.696500px;}
.x1a{left:-692.730000px;}
.x25{left:-633.177000px;}
.x27{left:-628.477143px;}
.x28{left:-622.783518px;}
.x1b{left:-616.156350px;}
.x26{left:-592.985381px;}
.x2a{left:-583.062631px;}
.x29{left:-577.824794px;}
.x0{left:0.000000px;}
.x7{left:56.125950px;}
.x4{left:58.251900px;}
.x8{left:98.220450px;}
.x13{left:101.232000px;}
.x24{left:106.681500px;}
.xc{left:111.883500px;}
.x11{left:118.905000px;}
.x5{left:122.944800px;}
.xa{left:124.504500px;}
.x16{left:150.731850px;}
.x1c{left:160.288500px;}
.xf{left:163.411500px;}
.x17{left:173.146057px;}
.x1e{left:183.201000px;}
.x20{left:187.911000px;}
.x21{left:193.604626px;}
.x14{left:200.221500px;}
.x9{left:209.737500px;}
.xd{left:213.690000px;}
.x1f{left:223.392000px;}
.x23{left:233.314500px;}
.x2{left:236.123100px;}
.x22{left:238.564500px;}
.x3{left:244.266900px;}
.x1{left:284.738700px;}
.xe{left:321.767726px;}
.x6{left:340.164300px;}
.xb{left:346.169990px;}
.x10{left:353.546736px;}
.x12{left:707.295000px;}
.x1d{left:710.280193px;}
.x18{left:759.780043px;}
.x15{left:766.878000px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v5{vertical-align:-14.997333pt;}
.v6{vertical-align:-7.954646pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:15.469333pt;}
.v4{vertical-align:19.281920pt;}
.v2{vertical-align:23.136000pt;}
.ls35{letter-spacing:-4.277276pt;}
.ls36{letter-spacing:-4.250709pt;}
.ls8{letter-spacing:-0.672000pt;}
.ls7{letter-spacing:0.000000pt;}
.ls22{letter-spacing:0.013283pt;}
.ls23{letter-spacing:0.026567pt;}
.ls18{letter-spacing:0.034770pt;}
.lsb{letter-spacing:0.047821pt;}
.ls9{letter-spacing:0.053134pt;}
.lsa{letter-spacing:0.063761pt;}
.lsc{letter-spacing:0.076513pt;}
.ls0{letter-spacing:0.091815pt;}
.ls1f{letter-spacing:0.425071pt;}
.ls20{letter-spacing:1.540882pt;}
.ls6{letter-spacing:2.659661pt;}
.ls1{letter-spacing:2.666010pt;}
.ls21{letter-spacing:2.670975pt;}
.ls2{letter-spacing:2.671343pt;}
.ls11{letter-spacing:2.671508pt;}
.ls37{letter-spacing:2.709827pt;}
.ls34{letter-spacing:5.791591pt;}
.lse{letter-spacing:5.844725pt;}
.ls38{letter-spacing:6.675119pt;}
.ls31{letter-spacing:6.675652pt;}
.ls30{letter-spacing:7.332474pt;}
.ls1e{letter-spacing:7.385607pt;}
.ls28{letter-spacing:12.273923pt;}
.ls2b{letter-spacing:12.698994pt;}
.ls2e{letter-spacing:13.708538pt;}
.ls17{letter-spacing:16.205829pt;}
.ls1c{letter-spacing:16.630900pt;}
.ls1d{letter-spacing:17.746711pt;}
.ls24{letter-spacing:17.799845pt;}
.ls1a{letter-spacing:18.468842pt;}
.ls19{letter-spacing:18.469375pt;}
.ls10{letter-spacing:18.927508pt;}
.ls13{letter-spacing:19.268308pt;}
.ls12{letter-spacing:19.268842pt;}
.ls27{letter-spacing:19.606397pt;}
.ls33{letter-spacing:19.925200pt;}
.ls2a{letter-spacing:20.031468pt;}
.ls15{letter-spacing:20.383508pt;}
.ls2d{letter-spacing:21.094145pt;}
.ls32{letter-spacing:21.466082pt;}
.ls16{letter-spacing:21.519216pt;}
.ls14{letter-spacing:21.967508pt;}
.ls1b{letter-spacing:22.688161pt;}
.lsf{letter-spacing:24.016508pt;}
.ls29{letter-spacing:24.122775pt;}
.ls5{letter-spacing:24.735508pt;}
.ls2c{letter-spacing:24.813516pt;}
.lsd{letter-spacing:26.088729pt;}
.ls2f{letter-spacing:26.354398pt;}
.ls25{letter-spacing:26.726335pt;}
.ls3{letter-spacing:27.230327pt;}
.ls4{letter-spacing:27.235661pt;}
.ls26{letter-spacing:27.257674pt;}
.ws1{word-spacing:-13.344000pt;}
.ws2{word-spacing:-10.666667pt;}
.ws55{word-spacing:-7.438741pt;}
.ws96{word-spacing:-2.762961pt;}
.ws7d{word-spacing:-0.425071pt;}
.wscf{word-spacing:-0.127522pt;}
.ws2c{word-spacing:-0.106268pt;}
.wsd6{word-spacing:-0.095642pt;}
.ws6{word-spacing:-0.091815pt;}
.ws0{word-spacing:-0.088000pt;}
.wsd1{word-spacing:-0.076513pt;}
.wsa{word-spacing:-0.053134pt;}
.ws87{word-spacing:-0.039850pt;}
.ws72{word-spacing:-0.037194pt;}
.ws8b{word-spacing:-0.026567pt;}
.ws24{word-spacing:0.000000pt;}
.ws25{word-spacing:0.672000pt;}
.wsab{word-spacing:4.888316pt;}
.ws74{word-spacing:6.482332pt;}
.ws83{word-spacing:8.541269pt;}
.ws3d{word-spacing:12.167655pt;}
.ws19{word-spacing:12.613980pt;}
.ws47{word-spacing:13.357854pt;}
.wsb6{word-spacing:13.410988pt;}
.wsbf{word-spacing:13.511942pt;}
.wse5{word-spacing:13.517256pt;}
.wsc0{word-spacing:13.623523pt;}
.wsa9{word-spacing:13.719164pt;}
.ws66{word-spacing:13.782925pt;}
.wsa8{word-spacing:13.820119pt;}
.ws62{word-spacing:13.910446pt;}
.ws64{word-spacing:13.995460pt;}
.ws75{word-spacing:14.048594pt;}
.ws8f{word-spacing:14.154862pt;}
.ws8a{word-spacing:14.332522pt;}
.wse3{word-spacing:14.340831pt;}
.wsb9{word-spacing:14.367398pt;}
.ws2e{word-spacing:14.452412pt;}
.ws4e{word-spacing:14.500232pt;}
.wsaf{word-spacing:14.579933pt;}
.ws50{word-spacing:14.643694pt;}
.ws52{word-spacing:14.659634pt;}
.wsb0{word-spacing:14.696828pt;}
.ws69{word-spacing:14.792468pt;}
.ws23{word-spacing:15.009292pt;}
.ws2d{word-spacing:15.058138pt;}
.ws4d{word-spacing:15.196286pt;}
.wsd4{word-spacing:15.297874pt;}
.ws3e{word-spacing:15.302554pt;}
.wsb{word-spacing:15.323807pt;}
.wsc7{word-spacing:15.376941pt;}
.ws31{word-spacing:15.568223pt;}
.ws48{word-spacing:15.589476pt;}
.ws7f{word-spacing:15.621357pt;}
.ws5a{word-spacing:15.642610pt;}
.ws59{word-spacing:15.748878pt;}
.wsc1{word-spacing:15.802012pt;}
.ws41{word-spacing:16.120815pt;}
.ws4f{word-spacing:16.136755pt;}
.wsa7{word-spacing:16.158009pt;}
.ws42{word-spacing:16.243023pt;}
.ws43{word-spacing:16.253650pt;}
.ws40{word-spacing:16.258963pt;}
.ws9{word-spacing:16.259072pt;}
.wsd2{word-spacing:16.278200pt;}
.wsb1{word-spacing:16.280217pt;}
.ws17{word-spacing:16.282982pt;}
.wsd7{word-spacing:16.302111pt;}
.ws76{word-spacing:16.381171pt;}
.ws6a{word-spacing:16.386484pt;}
.wsd5{word-spacing:16.507740pt;}
.ws44{word-spacing:16.524633pt;}
.ws46{word-spacing:16.545886pt;}
.ws77{word-spacing:16.556513pt;}
.ws45{word-spacing:16.561826pt;}
.ws78{word-spacing:16.577766pt;}
.ws33{word-spacing:16.652154pt;}
.ws3a{word-spacing:16.662781pt;}
.ws1f{word-spacing:16.864689pt;}
.ws1e{word-spacing:16.970957pt;}
.ws27{word-spacing:17.024091pt;}
.wse{word-spacing:17.130359pt;}
.ws60{word-spacing:17.140985pt;}
.ws32{word-spacing:17.406655pt;}
.ws70{word-spacing:17.417281pt;}
.ws4b{word-spacing:17.475729pt;}
.ws98{word-spacing:17.486356pt;}
.wsb5{word-spacing:17.491669pt;}
.ws22{word-spacing:17.534176pt;}
.ws4{word-spacing:17.555430pt;}
.ws3c{word-spacing:17.566056pt;}
.ws2a{word-spacing:17.608563pt;}
.ws2f{word-spacing:17.640444pt;}
.ws7c{word-spacing:17.651071pt;}
.ws4c{word-spacing:17.661697pt;}
.ws5f{word-spacing:17.672324pt;}
.ws8d{word-spacing:17.693578pt;}
.ws3f{word-spacing:17.714831pt;}
.ws15{word-spacing:17.725458pt;}
.ws71{word-spacing:17.767965pt;}
.wscc{word-spacing:17.937993pt;}
.wsd{word-spacing:17.991127pt;}
.ws11{word-spacing:18.012381pt;}
.wsba{word-spacing:18.033634pt;}
.ws9e{word-spacing:18.187723pt;}
.ws9d{word-spacing:18.299304pt;}
.wsbe{word-spacing:18.437452pt;}
.wsbd{word-spacing:18.458705pt;}
.wsd3{word-spacing:18.501868pt;}
.wsbb{word-spacing:18.564973pt;}
.ws68{word-spacing:18.575600pt;}
.wsbc{word-spacing:18.580913pt;}
.wsd8{word-spacing:18.769664pt;}
.ws21{word-spacing:18.777508pt;}
.ws9f{word-spacing:18.788135pt;}
.ws97{word-spacing:18.809389pt;}
.wsa1{word-spacing:18.830642pt;}
.ws51{word-spacing:18.920970pt;}
.ws63{word-spacing:18.968790pt;}
.ws95{word-spacing:18.990044pt;}
.wsf{word-spacing:19.106938pt;}
.wsb2{word-spacing:19.149446pt;}
.ws9a{word-spacing:19.181326pt;}
.ws99{word-spacing:19.202579pt;}
.ws4a{word-spacing:19.255713pt;}
.ws49{word-spacing:19.266340pt;}
.wsa2{word-spacing:19.276967pt;}
.ws56{word-spacing:19.308847pt;}
.ws7e{word-spacing:19.319474pt;}
.wsc9{word-spacing:19.372608pt;}
.ws1a{word-spacing:19.415115pt;}
.wsac{word-spacing:19.553263pt;}
.wsaa{word-spacing:19.590457pt;}
.ws39{word-spacing:19.627650pt;}
.wsc5{word-spacing:19.680784pt;}
.wsad{word-spacing:19.691411pt;}
.wsd9{word-spacing:19.745208pt;}
.wse4{word-spacing:19.787052pt;}
.ws90{word-spacing:19.808305pt;}
.wscb{word-spacing:19.893320pt;}
.ws14{word-spacing:19.925200pt;}
.wsd0{word-spacing:20.063348pt;}
.wsb3{word-spacing:20.105855pt;}
.wsc4{word-spacing:20.116482pt;}
.wsc2{word-spacing:20.137735pt;}
.ws2b{word-spacing:20.158989pt;}
.wsc3{word-spacing:20.244003pt;}
.wsa5{word-spacing:20.371524pt;}
.ws6c{word-spacing:20.424658pt;}
.wsa4{word-spacing:20.477792pt;}
.ws58{word-spacing:20.541553pt;}
.wsda{word-spacing:20.548598pt;}
.wsca{word-spacing:20.562806pt;}
.ws7{word-spacing:20.658586pt;}
.ws5e{word-spacing:20.685014pt;}
.wsa3{word-spacing:20.775342pt;}
.ws8{word-spacing:20.786108pt;}
.wsb8{word-spacing:20.796595pt;}
.wscd{word-spacing:20.828476pt;}
.wsa6{word-spacing:20.849729pt;}
.ws20{word-spacing:21.009131pt;}
.ws13{word-spacing:21.019758pt;}
.wsce{word-spacing:21.041011pt;}
.ws3b{word-spacing:21.115399pt;}
.wsc{word-spacing:21.195099pt;}
.ws9c{word-spacing:21.274800pt;}
.wsae{word-spacing:21.327934pt;}
.ws57{word-spacing:21.359814pt;}
.ws9b{word-spacing:21.391695pt;}
.wsb7{word-spacing:21.434202pt;}
.ws7b{word-spacing:21.487336pt;}
.ws79{word-spacing:21.497962pt;}
.ws7a{word-spacing:21.519216pt;}
.ws94{word-spacing:21.609544pt;}
.ws5b{word-spacing:21.646737pt;}
.wsb4{word-spacing:21.715811pt;}
.ws92{word-spacing:21.721125pt;}
.wsa0{word-spacing:21.816766pt;}
.ws1c{word-spacing:21.933660pt;}
.ws73{word-spacing:21.944287pt;}
.ws5c{word-spacing:21.965540pt;}
.ws1d{word-spacing:22.029301pt;}
.ws28{word-spacing:22.082435pt;}
.ws5d{word-spacing:22.124942pt;}
.ws91{word-spacing:22.146196pt;}
.ws34{word-spacing:22.156822pt;}
.ws38{word-spacing:22.178076pt;}
.ws36{word-spacing:22.231210pt;}
.ws93{word-spacing:22.496879pt;}
.ws1b{word-spacing:22.528759pt;}
.ws6f{word-spacing:22.613774pt;}
.ws6e{word-spacing:22.635027pt;}
.ws6d{word-spacing:22.672221pt;}
.ws65{word-spacing:22.688161pt;}
.ws6b{word-spacing:22.815682pt;}
.ws12{word-spacing:22.879443pt;}
.wsc6{word-spacing:23.293887pt;}
.ws10{word-spacing:23.538303pt;}
.ws61{word-spacing:23.665824pt;}
.ws35{word-spacing:23.734898pt;}
.ws67{word-spacing:23.750997pt;}
.wsc8{word-spacing:23.825226pt;}
.ws26{word-spacing:23.878360pt;}
.ws54{word-spacing:23.910240pt;}
.ws29{word-spacing:23.952747pt;}
.ws16{word-spacing:24.613366pt;}
.ws37{word-spacing:26.519113pt;}
.ws5{word-spacing:27.452825pt;}
.ws30{word-spacing:28.462861pt;}
.ws8e{word-spacing:28.493466pt;}
.ws53{word-spacing:28.516420pt;}
.ws89{word-spacing:65.627752pt;}
.wse2{word-spacing:65.641579pt;}
.ws8c{word-spacing:65.644431pt;}
.wsdb{word-spacing:71.810421pt;}
.ws80{word-spacing:71.818617pt;}
.ws82{word-spacing:76.783584pt;}
.wsdd{word-spacing:76.791721pt;}
.wsde{word-spacing:79.310266pt;}
.ws84{word-spacing:79.323311pt;}
.ws86{word-spacing:81.240284pt;}
.wse0{word-spacing:81.241682pt;}
.ws18{word-spacing:85.885917pt;}
.wsdc{word-spacing:94.657983pt;}
.ws81{word-spacing:94.662156pt;}
.ws88{word-spacing:104.745110pt;}
.wse1{word-spacing:104.753418pt;}
.ws85{word-spacing:105.571567pt;}
.wsdf{word-spacing:105.576993pt;}
.ws3{word-spacing:1092.197867pt;}
._7{margin-left:-32.728582pt;}
._6{margin-left:-31.332188pt;}
._9{margin-left:-24.468801pt;}
._2d{margin-left:-20.436650pt;}
._1c{margin-left:-7.238136pt;}
._3{margin-left:-6.211200pt;}
._a{margin-left:-4.505031pt;}
._2{margin-left:-3.542400pt;}
._4{margin-left:-2.580015pt;}
._0{margin-left:-1.592800pt;}
._1{width:1.288000pt;}
._5{width:2.378021pt;}
._17{width:3.934705pt;}
._19{width:14.765902pt;}
._1a{width:16.782556pt;}
._12{width:18.567995pt;}
._2b{width:20.191862pt;}
._8{width:21.744118pt;}
._16{width:22.698788pt;}
._c{width:23.914337pt;}
._e{width:24.951664pt;}
._20{width:25.876914pt;}
._11{width:27.218779pt;}
._1b{width:28.601960pt;}
._18{width:29.533740pt;}
._2c{width:31.323407pt;}
._1e{width:32.231724pt;}
._1f{width:33.125589pt;}
._b{width:34.264291pt;}
._1d{width:35.207221pt;}
._10{width:36.798579pt;}
._f{width:38.985534pt;}
._d{width:41.646325pt;}
._26{width:58.928744pt;}
._28{width:68.148028pt;}
._21{width:71.635558pt;}
._25{width:76.745577pt;}
._14{width:82.254431pt;}
._15{width:86.038943pt;}
._24{width:95.779951pt;}
._27{width:103.252028pt;}
._2a{width:113.054695pt;}
._29{width:121.808642pt;}
._23{width:330.526400pt;}
._13{width:602.700267pt;}
._22{width:688.033067pt;}
.fsc{font-size:26.566933pt;}
.fs8{font-size:31.880533pt;}
.fsb{font-size:37.193600pt;}
.fs7{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fs9{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs4{font-size:53.133867pt;}
.fs3{font-size:61.333333pt;}
.fs6{font-size:63.761067pt;}
.fsa{font-size:76.513067pt;}
.fs0{font-size:88.000000pt;}
.fs5{font-size:91.815467pt;}
.y71{bottom:-519.633200pt;}
.y70{bottom:-481.346533pt;}
.y6f{bottom:-449.943333pt;}
.y6e{bottom:-434.003173pt;}
.y6d{bottom:-418.063013pt;}
.y6c{bottom:-402.122853pt;}
.y6b{bottom:-386.182693pt;}
.y6a{bottom:-370.241680pt;}
.y69{bottom:-354.301520pt;}
.y68{bottom:-338.361360pt;}
.y67{bottom:-322.421200pt;}
.y4f{bottom:-297.583867pt;}
.y66{bottom:-293.326533pt;}
.y4e{bottom:-259.297200pt;}
.y65{bottom:-241.428933pt;}
.y4d{bottom:-227.894000pt;}
.y64{bottom:-218.846960pt;}
.y4c{bottom:-211.953840pt;}
.y63{bottom:-202.906800pt;}
.y4b{bottom:-196.013680pt;}
.y62{bottom:-186.966640pt;}
.y4a{bottom:-180.073520pt;}
.y61{bottom:-171.026480pt;}
.y49{bottom:-164.133360pt;}
.y60{bottom:-155.086320pt;}
.y48{bottom:-148.192347pt;}
.y5f{bottom:-139.146160pt;}
.y47{bottom:-132.252187pt;}
.y5e{bottom:-123.206000pt;}
.y46{bottom:-116.312027pt;}
.y5d{bottom:-107.265840pt;}
.y45{bottom:-100.371867pt;}
.y5c{bottom:-91.325680pt;}
.y5b{bottom:-75.385520pt;}
.y44{bottom:-71.277200pt;}
.y5a{bottom:-59.445360pt;}
.y59{bottom:-43.505200pt;}
.y9{bottom:-28.346400pt;}
.y43{bottom:-19.379600pt;}
.y141{bottom:-14.303711pt;}
.yef{bottom:-14.299467pt;}
.y10c{bottom:-14.298267pt;}
.y2d{bottom:-13.174533pt;}
.yb8{bottom:-10.779555pt;}
.y94{bottom:-10.778437pt;}
.y0{bottom:0.000000pt;}
.y42{bottom:3.201733pt;}
.y140{bottom:20.233302pt;}
.yb7{bottom:23.757458pt;}
.y93{bottom:23.758577pt;}
.y10b{bottom:29.137634pt;}
.y13f{bottom:36.173462pt;}
.yb6{bottom:39.697618pt;}
.y92{bottom:39.698737pt;}
.y10a{bottom:43.746889pt;}
.y6{bottom:48.458533pt;}
.y13e{bottom:52.113622pt;}
.yb5{bottom:55.637778pt;}
.y91{bottom:55.985440pt;}
.y109{bottom:58.356143pt;}
.y5{bottom:60.458533pt;}
.y13d{bottom:68.053782pt;}
.yb4{bottom:71.577938pt;}
.y90{bottom:71.925120pt;}
.y4{bottom:72.458533pt;}
.y108{bottom:75.619452pt;}
.y13c{bottom:83.993942pt;}
.yc{bottom:84.104000pt;}
.y8f{bottom:87.865280pt;}
.yb3{bottom:89.395165pt;}
.y107{bottom:92.894716pt;}
.yb9{bottom:93.228000pt;}
.y73{bottom:96.378667pt;}
.y13b{bottom:99.934102pt;}
.y8e{bottom:103.805440pt;}
.yb2{bottom:105.335325pt;}
.y106{bottom:107.503970pt;}
.y2c{bottom:109.216133pt;}
.yee{bottom:113.461302pt;}
.y13a{bottom:115.874262pt;}
.y8d{bottom:119.745440pt;}
.yb1{bottom:121.275485pt;}
.y105{bottom:122.113225pt;}
.yed{bottom:129.401462pt;}
.y139{bottom:131.814422pt;}
.y8c{bottom:135.682262pt;}
.yb0{bottom:137.215645pt;}
.y104{bottom:139.376533pt;}
.y2b{bottom:140.619333pt;}
.yec{bottom:145.341622pt;}
.y138{bottom:147.754582pt;}
.y8b{bottom:151.622422pt;}
.yaf{bottom:153.155805pt;}
.y2a{bottom:156.559493pt;}
.yeb{bottom:161.281782pt;}
.y137{bottom:163.694742pt;}
.y103{bottom:165.827200pt;}
.y8a{bottom:167.562582pt;}
.yae{bottom:170.968933pt;}
.y29{bottom:172.499653pt;}
.yea{bottom:177.221942pt;}
.y136{bottom:179.634902pt;}
.y89{bottom:183.502742pt;}
.yad{bottom:186.909093pt;}
.y28{bottom:188.439813pt;}
.ye9{bottom:193.162102pt;}
.y135{bottom:195.787598pt;}
.y102{bottom:196.050907pt;}
.yac{bottom:202.849253pt;}
.y27{bottom:204.379973pt;}
.ye8{bottom:209.102262pt;}
.y134{bottom:211.727758pt;}
.y101{bottom:211.991067pt;}
.y88{bottom:217.548267pt;}
.yab{bottom:218.789413pt;}
.y26{bottom:220.320987pt;}
.ye7{bottom:225.042422pt;}
.y133{bottom:227.667918pt;}
.y36{bottom:230.353546pt;}
.yaa{bottom:234.729573pt;}
.y25{bottom:236.261147pt;}
.y100{bottom:236.509733pt;}
.ye6{bottom:240.982582pt;}
.y132{bottom:243.608078pt;}
.y51{bottom:244.622800pt;}
.y35{bottom:250.041467pt;}
.ya9{bottom:250.669733pt;}
.y24{bottom:252.201307pt;}
.ye5{bottom:256.922742pt;}
.y131{bottom:259.548238pt;}
.y34{bottom:259.576212pt;}
.yff{bottom:261.951600pt;}
.y23{bottom:268.141467pt;}
.ye4{bottom:272.862902pt;}
.y130{bottom:275.488398pt;}
.yfe{bottom:277.891760pt;}
.ya8{bottom:278.680400pt;}
.y33{bottom:279.264133pt;}
.y20{bottom:287.611707pt;}
.ye3{bottom:289.015598pt;}
.y12f{bottom:291.428558pt;}
.yfd{bottom:293.831920pt;}
.y22{bottom:297.236133pt;}
.y32{bottom:302.026800pt;}
.y1f{bottom:303.551867pt;}
.ye2{bottom:304.955758pt;}
.y12e{bottom:307.368718pt;}
.yfc{bottom:309.772080pt;}
.ya7{bottom:314.480314pt;}
.y1e{bottom:319.492027pt;}
.ye1{bottom:320.895918pt;}
.y12d{bottom:323.308878pt;}
.yfb{bottom:325.712240pt;}
.ya6{bottom:330.420474pt;}
.y87{bottom:332.197813pt;}
.y1d{bottom:335.432187pt;}
.y31{bottom:336.566528pt;}
.ye0{bottom:336.836078pt;}
.y12c{bottom:339.461573pt;}
.yfa{bottom:341.652400pt;}
.ya5{bottom:346.360634pt;}
.y86{bottom:348.137973pt;}
.y21{bottom:349.133733pt;}
.y1c{bottom:351.372347pt;}
.ydf{bottom:352.776238pt;}
.y12b{bottom:355.396316pt;}
.ya4{bottom:362.300794pt;}
.y85{bottom:364.078133pt;}
.y30{bottom:365.786800pt;}
.y1b{bottom:367.312507pt;}
.yde{bottom:368.716398pt;}
.yf9{bottom:370.747067pt;}
.y12a{bottom:371.336476pt;}
.yb{bottom:372.082000pt;}
.ya3{bottom:378.240954pt;}
.y84{bottom:380.018293pt;}
.y1a{bottom:383.252667pt;}
.ydd{bottom:384.656558pt;}
.ya{bottom:385.415333pt;}
.y129{bottom:387.276636pt;}
.y83{bottom:395.958453pt;}
.y19{bottom:399.192827pt;}
.ydc{bottom:400.596718pt;}
.yf8{bottom:402.925001pt;}
.y128{bottom:403.216796pt;}
.y2e{bottom:405.846667pt;}
.y82{bottom:411.898613pt;}
.y18{bottom:415.132987pt;}
.ya2{bottom:416.072267pt;}
.ydb{bottom:416.536878pt;}
.yf7{bottom:418.865161pt;}
.y127{bottom:419.369491pt;}
.y41{bottom:424.989200pt;}
.y81{bottom:427.838773pt;}
.y17{bottom:431.073147pt;}
.yda{bottom:432.689573pt;}
.yf6{bottom:434.805321pt;}
.y126{bottom:435.309651pt;}
.y40{bottom:440.929360pt;}
.y80{bottom:443.778933pt;}
.y16{bottom:447.013307pt;}
.yd9{bottom:448.624316pt;}
.yf5{bottom:450.745481pt;}
.y125{bottom:451.249811pt;}
.y3f{bottom:456.869520pt;}
.y15{bottom:462.953467pt;}
.yd8{bottom:464.564476pt;}
.y2f{bottom:466.672133pt;}
.yf4{bottom:466.685641pt;}
.y124{bottom:467.189971pt;}
.y3e{bottom:472.809680pt;}
.y7f{bottom:473.524267pt;}
.yd7{bottom:480.504636pt;}
.yf3{bottom:482.625801pt;}
.y123{bottom:483.130131pt;}
.y3d{bottom:488.749840pt;}
.yd6{bottom:496.444796pt;}
.yf2{bottom:498.565961pt;}
.y122{bottom:499.282827pt;}
.y3c{bottom:504.690000pt;}
.yd5{bottom:512.597491pt;}
.y14{bottom:514.762879pt;}
.y121{bottom:515.222987pt;}
.y7e{bottom:519.306515pt;}
.y3b{bottom:520.630160pt;}
.yd4{bottom:528.537651pt;}
.y120{bottom:531.163147pt;}
.y13{bottom:534.450800pt;}
.y7d{bottom:535.246675pt;}
.y3a{bottom:536.570320pt;}
.ya1{bottom:539.484667pt;}
.yf1{bottom:541.325440pt;}
.y12{bottom:543.985546pt;}
.yd3{bottom:544.477811pt;}
.y11f{bottom:547.103307pt;}
.y7c{bottom:551.186835pt;}
.y39{bottom:552.510480pt;}
.ya0{bottom:555.424827pt;}
.yf0{bottom:557.265600pt;}
.yd2{bottom:560.417971pt;}
.y11e{bottom:563.043467pt;}
.y11{bottom:563.673467pt;}
.y7b{bottom:567.126995pt;}
.y38{bottom:568.450640pt;}
.y9f{bottom:571.364987pt;}
.yd1{bottom:576.358131pt;}
.y11d{bottom:578.983627pt;}
.y7a{bottom:583.067155pt;}
.y37{bottom:584.390800pt;}
.y10{bottom:586.436133pt;}
.y9e{bottom:587.305147pt;}
.yd0{bottom:592.510827pt;}
.y11c{bottom:594.923787pt;}
.y79{bottom:599.007315pt;}
.y9d{bottom:603.245307pt;}
.ycf{bottom:608.450987pt;}
.y11b{bottom:610.863947pt;}
.y50{bottom:613.229333pt;}
.y78{bottom:614.947475pt;}
.y9c{bottom:619.186133pt;}
.yf{bottom:620.975861pt;}
.y58{bottom:621.533546pt;}
.yce{bottom:624.391147pt;}
.y11a{bottom:626.804107pt;}
.y77{bottom:630.887635pt;}
.y9b{bottom:635.126293pt;}
.ycd{bottom:640.331307pt;}
.y57{bottom:641.221467pt;}
.y119{bottom:642.744267pt;}
.ye{bottom:650.196133pt;}
.y56{bottom:650.756212pt;}
.y9a{bottom:651.066453pt;}
.ycc{bottom:656.271467pt;}
.y99{bottom:667.006613pt;}
.y55{bottom:670.444133pt;}
.ycb{bottom:672.211627pt;}
.y118{bottom:672.228267pt;}
.y76{bottom:676.224107pt;}
.y98{bottom:682.946773pt;}
.yca{bottom:688.151787pt;}
.y75{bottom:692.164267pt;}
.y54{bottom:693.206800pt;}
.y97{bottom:698.886933pt;}
.yc9{bottom:704.091947pt;}
.y117{bottom:717.280267pt;}
.yc8{bottom:720.032107pt;}
.y53{bottom:727.746528pt;}
.y96{bottom:731.472267pt;}
.y116{bottom:732.688741pt;}
.yc7{bottom:735.972267pt;}
.y115{bottom:740.658821pt;}
.y114{bottom:748.628901pt;}
.yd{bottom:751.081467pt;}
.y110{bottom:756.532564pt;}
.y113{bottom:756.598981pt;}
.y52{bottom:756.966800pt;}
.y10f{bottom:764.502644pt;}
.y112{bottom:764.569061pt;}
.yc6{bottom:765.456267pt;}
.y111{bottom:772.539141pt;}
.y10e{bottom:781.040560pt;}
.y8{bottom:782.378800pt;}
.y10d{bottom:785.025600pt;}
.y95{bottom:785.353600pt;}
.y7{bottom:800.778800pt;}
.yc5{bottom:810.508267pt;}
.yba{bottom:821.157600pt;}
.y74{bottom:824.673600pt;}
.yc4{bottom:825.916853pt;}
.yc3{bottom:833.886933pt;}
.yc2{bottom:841.856853pt;}
.ybe{bottom:849.760853pt;}
.yc1{bottom:849.826933pt;}
.y3{bottom:854.338533pt;}
.ybd{bottom:857.730933pt;}
.yc0{bottom:857.796853pt;}
.ybf{bottom:865.766933pt;}
.ybc{bottom:874.269600pt;}
.ybb{bottom:878.253600pt;}
.y1{bottom:879.110667pt;}
.y2{bottom:918.559067pt;}
.y72{bottom:920.499333pt;}
.h1e{height:19.925200pt;}
.hd{height:21.200555pt;}
.h4{height:29.625000pt;}
.he{height:29.744538pt;}
.h16{height:30.350141pt;}
.h5{height:32.000000pt;}
.h8{height:33.328125pt;}
.h3{height:34.368000pt;}
.h22{height:34.829250pt;}
.h1d{height:34.830423pt;}
.h20{height:35.597520pt;}
.h23{height:35.599691pt;}
.h1f{height:35.602853pt;}
.h10{height:35.865600pt;}
.hf{height:37.087439pt;}
.h1a{height:39.847733pt;}
.ha{height:39.850400pt;}
.h18{height:39.851040pt;}
.h19{height:39.852320pt;}
.h17{height:39.863754pt;}
.h6{height:41.890667pt;}
.h12{height:43.978470pt;}
.h1b{height:44.632747pt;}
.h21{height:44.704899pt;}
.h7{height:47.469333pt;}
.hc{height:53.486141pt;}
.h11{height:53.559147pt;}
.hb{height:64.454458pt;}
.h2{height:66.352000pt;}
.h14{height:168.052000pt;}
.h13{height:205.985333pt;}
.h9{height:279.137333pt;}
.h1c{height:807.245333pt;}
.h15{height:812.021333pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:43.998667pt;}
.w3{width:46.330667pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x19{left:-635.685200pt;}
.x2b{left:-630.841333pt;}
.x1a{left:-615.760000pt;}
.x25{left:-562.824000pt;}
.x27{left:-558.646350pt;}
.x28{left:-553.585349pt;}
.x1b{left:-547.694533pt;}
.x26{left:-527.098116pt;}
.x2a{left:-518.277895pt;}
.x29{left:-513.622039pt;}
.x0{left:0.000000pt;}
.x7{left:49.889733pt;}
.x4{left:51.779467pt;}
.x8{left:87.307067pt;}
.x13{left:89.984000pt;}
.x24{left:94.828000pt;}
.xc{left:99.452000pt;}
.x11{left:105.693333pt;}
.x5{left:109.284267pt;}
.xa{left:110.670667pt;}
.x16{left:133.983867pt;}
.x1c{left:142.478667pt;}
.xf{left:145.254667pt;}
.x17{left:153.907606pt;}
.x1e{left:162.845333pt;}
.x20{left:167.032000pt;}
.x21{left:172.093001pt;}
.x14{left:177.974667pt;}
.x9{left:186.433333pt;}
.xd{left:189.946667pt;}
.x1f{left:198.570667pt;}
.x23{left:207.390667pt;}
.x2{left:209.887200pt;}
.x22{left:212.057333pt;}
.x3{left:217.126133pt;}
.x1{left:253.101067pt;}
.xe{left:286.015757pt;}
.x6{left:302.368267pt;}
.xb{left:307.706658pt;}
.x10{left:314.263765pt;}
.x12{left:628.706667pt;}
.x1d{left:631.360171pt;}
.x18{left:675.360038pt;}
.x15{left:681.669333pt;}
}




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