
    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_d93973cbdf85d44b35004460.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.982000;font-style:normal;font-weight: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_dcf3448a20e788499bffa97b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.089000;font-style:normal;font-weight: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_b5e66936c34b4fa9801350ef.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.086000;font-style:normal;font-weight: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_eca84a2e95fcf26364d48726.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.991000;font-style:normal;font-weight: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_a9244caed298181bba38180c.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.989000;font-style:normal;font-weight: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_26a0216fa59fd9881b088307.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.743000;font-style:normal;font-weight: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_44faadbedc4b45be62d6fd73.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.100098;font-style:normal;font-weight: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_a4fca6ba2128b4e0c6a5f1ef.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.781250;font-style:normal;font-weight: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_a631259c8822461398693f7f.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.100098;font-style:normal;font-weight: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_389d54bcf5e04eb3980fd66c.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.989000;font-style:normal;font-weight: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_44faadbedc4b45be62d6fd73.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.100098;font-style:normal;font-weight: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_26a0216fa59fd9881b088307.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.743000;font-style:normal;font-weight: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_a631259c8822461398693f7f.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.100098;font-style:normal;font-weight: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_43158ccdba86de1e2ecd63a7.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.989000;font-style:normal;font-weight: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_4c30cdfea16ce272939bfaf0.woff2')format("woff");}.fff{font-family:fff;line-height:1.089000;font-style:normal;font-weight: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_e13c401e6338ecdc2af52c92.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_be4997baf019ed6965cdc4aa.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.982000;font-style:normal;font-weight: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_3630f156280ceb53d96d2947.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.982000;font-style:normal;font-weight: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_6f776243ad28e1e6bc0d8d54.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.089000;font-style:normal;font-weight: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_e13c401e6338ecdc2af52c92.woff2')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_bf7b4258fc0e09c1cb9ba863.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.089000;font-style:normal;font-weight: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_e13c401e6338ecdc2af52c92.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_26a0216fa59fd9881b088307.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.743000;font-style:normal;font-weight: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_44faadbedc4b45be62d6fd73.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.100098;font-style:normal;font-weight: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_a631259c8822461398693f7f.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.100098;font-style:normal;font-weight: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_389d54bcf5e04eb3980fd66c.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.989000;font-style:normal;font-weight: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_93d700da60cb6bf0ce74cd47.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.086000;font-style:normal;font-weight: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_ca266b8ca899345a33e3d010.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.089000;font-style:normal;font-weight: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_44faadbedc4b45be62d6fd73.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.100098;font-style:normal;font-weight: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_26a0216fa59fd9881b088307.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.743000;font-style:normal;font-weight: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_a631259c8822461398693f7f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.100098;font-style:normal;font-weight: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_c74ddb5351480e0c6e43d397.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.989000;font-style:normal;font-weight: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_29f57b6fccbffd28dc59f929.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.989000;font-style:normal;font-weight: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_3ff3c4b37011437fe73c7d70.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.089000;font-style:normal;font-weight: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_e13c401e6338ecdc2af52c92.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_6edda5986a85da61f22de0fa.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.089000;font-style:normal;font-weight: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_b518cabd7247ccc632f490fe.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.692871;font-style:normal;font-weight: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_e13c401e6338ecdc2af52c92.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_380074b00a2411900b17d7da.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.706055;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_51d79314271c56a46bdcb000.woff2')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_05c7040b0e192a7eedbeaf60.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.693848;font-style:normal;font-weight: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_8fa0d6d7c4b2cc88173340d6.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.674316;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m4{transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252098,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252101,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252102,0.000000,0.000000,0.250000,0,0);}
.v2{vertical-align:-3.250200px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:8.503800px;}
.v3{vertical-align:11.637000px;}
.v5{vertical-align:24.324600px;}
.v4{vertical-align:29.242881px;}
.ls3{letter-spacing:-2.520000px;}
.ls4{letter-spacing:-1.380000px;}
.ls2{letter-spacing:-0.180000px;}
.ls0{letter-spacing:0.000000px;}
.ls5{letter-spacing:0.004800px;}
.ls1{letter-spacing:0.005400px;}
.ls8{letter-spacing:13.477869px;}
.ls6{letter-spacing:43.326880px;}
.ls7{letter-spacing:48.942455px;}
.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;}
}
.ws8a{word-spacing:-60.000000px;}
.wsbd{word-spacing:-31.168200px;}
.ws5b{word-spacing:-10.080000px;}
.ws89{word-spacing:-9.720000px;}
.ws1{word-spacing:-8.748000px;}
.ws0{word-spacing:-8.064000px;}
.ws3{word-spacing:-7.920000px;}
.wsbe{word-spacing:-6.593664px;}
.ws74{word-spacing:-3.000000px;}
.ws56{word-spacing:-2.880000px;}
.ws36{word-spacing:-2.700000px;}
.wsa2{word-spacing:-2.520000px;}
.ws75{word-spacing:-2.340000px;}
.ws1d{word-spacing:-2.100000px;}
.ws65{word-spacing:-2.040000px;}
.ws50{word-spacing:-1.860000px;}
.ws43{word-spacing:-1.740000px;}
.ws30{word-spacing:-1.620000px;}
.wsd{word-spacing:-1.512000px;}
.ws5d{word-spacing:-1.500000px;}
.ws19{word-spacing:-1.440000px;}
.wsc2{word-spacing:-1.320000px;}
.wsb3{word-spacing:-1.260000px;}
.ws87{word-spacing:-1.200000px;}
.ws14{word-spacing:-1.140000px;}
.ws2f{word-spacing:-1.080000px;}
.wsc0{word-spacing:-1.020000px;}
.ws18{word-spacing:-0.840000px;}
.ws86{word-spacing:-0.780000px;}
.ws4c{word-spacing:-0.660000px;}
.wsbc{word-spacing:-0.600000px;}
.ws6{word-spacing:-0.594000px;}
.ws11{word-spacing:-0.420000px;}
.ws49{word-spacing:-0.240000px;}
.wsba{word-spacing:-0.180000px;}
.ws5a{word-spacing:-0.120000px;}
.wsf{word-spacing:-0.048000px;}
.ws4{word-spacing:0.000000px;}
.ws84{word-spacing:0.060000px;}
.ws4b{word-spacing:0.120000px;}
.ws10{word-spacing:0.180000px;}
.ws64{word-spacing:0.300000px;}
.ws5f{word-spacing:0.360000px;}
.ws7f{word-spacing:0.420000px;}
.ws25{word-spacing:0.480000px;}
.ws9c{word-spacing:0.540000px;}
.ws13{word-spacing:0.600000px;}
.ws21{word-spacing:0.660000px;}
.ws12{word-spacing:0.720000px;}
.ws17{word-spacing:0.780000px;}
.ws6e{word-spacing:0.840000px;}
.ws1f{word-spacing:1.020000px;}
.ws3c{word-spacing:1.080000px;}
.ws77{word-spacing:1.140000px;}
.ws5e{word-spacing:1.200000px;}
.ws46{word-spacing:1.260000px;}
.wsc{word-spacing:1.296000px;}
.ws52{word-spacing:1.320000px;}
.ws94{word-spacing:1.440000px;}
.ws16{word-spacing:1.500000px;}
.ws69{word-spacing:1.560000px;}
.ws71{word-spacing:1.860000px;}
.ws45{word-spacing:1.920000px;}
.ws4f{word-spacing:2.160000px;}
.ws67{word-spacing:2.220000px;}
.ws29{word-spacing:2.460000px;}
.ws9{word-spacing:2.484000px;}
.ws1b{word-spacing:2.580000px;}
.ws5{word-spacing:2.592000px;}
.ws38{word-spacing:2.700000px;}
.ws6c{word-spacing:2.760000px;}
.ws8d{word-spacing:2.820000px;}
.ws1c{word-spacing:2.940000px;}
.ws5c{word-spacing:3.000000px;}
.ws7{word-spacing:3.078000px;}
.ws35{word-spacing:3.120000px;}
.ws55{word-spacing:3.180000px;}
.ws68{word-spacing:3.240000px;}
.ws76{word-spacing:3.300000px;}
.ws1a{word-spacing:3.360000px;}
.ws83{word-spacing:3.420000px;}
.ws8{word-spacing:3.510000px;}
.ws4a{word-spacing:3.600000px;}
.wsa{word-spacing:3.618000px;}
.wsc1{word-spacing:3.660000px;}
.wsb5{word-spacing:3.720000px;}
.ws28{word-spacing:3.840000px;}
.ws6f{word-spacing:3.960000px;}
.ws9f{word-spacing:4.020000px;}
.ws2d{word-spacing:4.140000px;}
.ws7b{word-spacing:4.260000px;}
.wsc4{word-spacing:4.380000px;}
.ws24{word-spacing:4.500000px;}
.wsbf{word-spacing:4.680000px;}
.wsb{word-spacing:4.752000px;}
.ws39{word-spacing:4.920000px;}
.ws1e{word-spacing:4.980000px;}
.ws96{word-spacing:5.160000px;}
.ws62{word-spacing:5.220000px;}
.ws4e{word-spacing:5.280000px;}
.wsc7{word-spacing:5.340000px;}
.ws9d{word-spacing:5.400000px;}
.ws26{word-spacing:5.460000px;}
.wsa1{word-spacing:5.520000px;}
.ws4d{word-spacing:5.640000px;}
.ws47{word-spacing:5.700000px;}
.ws63{word-spacing:6.000000px;}
.wsbb{word-spacing:6.240000px;}
.ws15{word-spacing:6.300000px;}
.ws58{word-spacing:6.360000px;}
.ws31{word-spacing:6.480000px;}
.ws54{word-spacing:6.540000px;}
.wsc6{word-spacing:6.600000px;}
.ws6d{word-spacing:6.660000px;}
.ws6a{word-spacing:6.720000px;}
.wsb7{word-spacing:6.840000px;}
.wsb9{word-spacing:7.020000px;}
.ws59{word-spacing:7.080000px;}
.ws27{word-spacing:7.140000px;}
.ws33{word-spacing:7.260000px;}
.ws9b{word-spacing:7.380000px;}
.ws22{word-spacing:7.560000px;}
.ws61{word-spacing:7.800000px;}
.ws93{word-spacing:7.860000px;}
.ws78{word-spacing:8.040000px;}
.wsaa{word-spacing:8.220000px;}
.ws57{word-spacing:8.400000px;}
.ws2b{word-spacing:8.460000px;}
.ws91{word-spacing:8.520000px;}
.ws8b{word-spacing:8.700000px;}
.ws37{word-spacing:9.060000px;}
.wsb8{word-spacing:9.240000px;}
.ws51{word-spacing:9.360000px;}
.ws70{word-spacing:9.480000px;}
.ws6b{word-spacing:9.780000px;}
.wsb1{word-spacing:9.900000px;}
.ws44{word-spacing:10.080000px;}
.wsa6{word-spacing:10.260000px;}
.ws7c{word-spacing:10.320000px;}
.ws3d{word-spacing:10.800000px;}
.ws97{word-spacing:11.100000px;}
.wsc5{word-spacing:11.280000px;}
.ws98{word-spacing:11.400000px;}
.wsad{word-spacing:11.640000px;}
.ws60{word-spacing:11.760000px;}
.ws20{word-spacing:11.940000px;}
.wsae{word-spacing:12.060000px;}
.ws3f{word-spacing:12.180000px;}
.ws92{word-spacing:12.480000px;}
.ws3b{word-spacing:12.900000px;}
.ws80{word-spacing:13.080000px;}
.wsaf{word-spacing:13.140000px;}
.wsab{word-spacing:13.380000px;}
.ws34{word-spacing:13.800000px;}
.ws7a{word-spacing:13.920000px;}
.ws72{word-spacing:14.040000px;}
.ws9e{word-spacing:14.700000px;}
.ws8f{word-spacing:14.880000px;}
.wsac{word-spacing:14.940000px;}
.ws90{word-spacing:15.000000px;}
.wsb2{word-spacing:15.660000px;}
.ws32{word-spacing:16.380000px;}
.ws85{word-spacing:16.680000px;}
.ws8e{word-spacing:17.340000px;}
.ws3e{word-spacing:17.460000px;}
.ws2c{word-spacing:18.240000px;}
.ws2a{word-spacing:18.720000px;}
.ws95{word-spacing:18.840000px;}
.ws73{word-spacing:18.900000px;}
.ws79{word-spacing:19.440000px;}
.ws7d{word-spacing:19.500000px;}
.ws42{word-spacing:19.800000px;}
.ws48{word-spacing:19.860000px;}
.ws3a{word-spacing:20.040000px;}
.ws7e{word-spacing:21.600000px;}
.wsa0{word-spacing:21.660000px;}
.ws66{word-spacing:21.780000px;}
.ws8c{word-spacing:21.840000px;}
.ws40{word-spacing:22.080000px;}
.ws53{word-spacing:22.440000px;}
.wsa3{word-spacing:22.500000px;}
.ws99{word-spacing:24.780000px;}
.ws82{word-spacing:25.440000px;}
.wsb6{word-spacing:26.040000px;}
.ws41{word-spacing:27.420000px;}
.wsc3{word-spacing:29.340000px;}
.wsa4{word-spacing:30.420000px;}
.wsb4{word-spacing:36.180000px;}
.wsa8{word-spacing:42.060000px;}
.wsa9{word-spacing:43.440000px;}
.ws9a{word-spacing:51.060000px;}
.ws23{word-spacing:61.954800px;}
.ws2e{word-spacing:64.378800px;}
.ws81{word-spacing:64.560000px;}
.wse{word-spacing:67.662000px;}
.wsb0{word-spacing:68.500200px;}
.wsa5{word-spacing:69.668400px;}
.ws88{word-spacing:77.905200px;}
.wsa7{word-spacing:146.100000px;}
.ws2{word-spacing:456.826200px;}
._2d{margin-left:-24.426000px;}
._2c{margin-left:-10.260000px;}
._17{margin-left:-8.820000px;}
._36{margin-left:-6.300600px;}
._19{margin-left:-3.894000px;}
._a{margin-left:-2.802000px;}
._5{margin-left:-1.356000px;}
._0{width:1.463400px;}
._1{width:2.489400px;}
._7{width:3.666600px;}
._8{width:4.756200px;}
._3{width:5.778000px;}
._2{width:7.344000px;}
._9{width:8.682000px;}
._12{width:10.140000px;}
._14{width:11.970000px;}
._15{width:13.182000px;}
._20{width:14.688000px;}
._18{width:16.680000px;}
._13{width:18.420000px;}
._28{width:21.665486px;}
._22{width:23.682000px;}
._37{width:24.984000px;}
._21{width:27.564000px;}
._f{width:31.715450px;}
._23{width:35.023404px;}
._25{width:36.236174px;}
._16{width:38.130000px;}
._2b{width:40.279671px;}
._2a{width:42.167859px;}
._34{width:43.440000px;}
._35{width:48.780000px;}
._1d{width:50.967758px;}
._27{width:54.594276px;}
._1c{width:59.282150px;}
._1a{width:61.116420px;}
._1b{width:62.509020px;}
._1f{width:64.560000px;}
._2e{width:67.080000px;}
._2f{width:72.840000px;}
._38{width:106.719917px;}
._1e{width:141.863700px;}
._26{width:165.461063px;}
._31{width:166.800000px;}
._30{width:177.120000px;}
._39{width:178.843132px;}
._33{width:189.791400px;}
._3a{width:193.211672px;}
._24{width:196.540314px;}
._32{width:206.223826px;}
._c{width:209.037794px;}
._e{width:220.391469px;}
._11{width:248.255417px;}
._b{width:319.114655px;}
._29{width:426.257132px;}
._d{width:463.273804px;}
._10{width:506.068264px;}
._4{width:728.498400px;}
._6{width:1337.568600px;}
.fcb{color:rgb(4,6,6);}
.fc9{color:rgb(101,151,45);}
.fc7{color:rgb(53,145,165);}
.fcc{color:transparent;}
.fc5{color:rgb(64,172,173);}
.fc4{color:rgb(254,255,253);}
.fc3{color:rgb(103,104,102);}
.fc1{color:rgb(224,63,93);}
.fca{color:rgb(80,80,80);}
.fc8{color:rgb(23,23,23);}
.fc6{color:rgb(46,46,46);}
.fc2{color:rgb(35,31,32);}
.fc0{color:rgb(255,255,255);}
.fsb{font-size:29.490600px;}
.fsf{font-size:29.971200px;}
.fsd{font-size:31.168200px;}
.fs6{font-size:36.000000px;}
.fse{font-size:41.238600px;}
.fs4{font-size:42.000000px;}
.fs8{font-size:42.103800px;}
.fs7{font-size:47.549400px;}
.fs0{font-size:48.000000px;}
.fsc{font-size:49.040400px;}
.fsa{font-size:51.586800px;}
.fs9{font-size:52.158600px;}
.fs2{font-size:54.000000px;}
.fs3{font-size:57.000000px;}
.fs1{font-size:60.000000px;}
.fs5{font-size:126.000000px;}
.ydf{bottom:-9.320550px;}
.y65{bottom:-9.014700px;}
.y10a{bottom:-8.268600px;}
.y1cd{bottom:-8.154300px;}
.y18f{bottom:-5.640150px;}
.y23e{bottom:-3.956550px;}
.y0{bottom:0.000000px;}
.y232{bottom:1.721400px;}
.y234{bottom:1.725600px;}
.y230{bottom:1.727100px;}
.y23c{bottom:1.729200px;}
.y23a{bottom:1.729500px;}
.y237{bottom:1.772850px;}
.y22e{bottom:2.098050px;}
.yd3{bottom:2.346300px;}
.yd1{bottom:2.348550px;}
.yd6{bottom:2.349150px;}
.ydd{bottom:2.357100px;}
.ydb{bottom:2.357850px;}
.yd9{bottom:2.360100px;}
.y1c9{bottom:2.713650px;}
.y1cb{bottom:2.713950px;}
.y1c3{bottom:2.714100px;}
.y1c7{bottom:2.714700px;}
.y1c5{bottom:2.722500px;}
.y243{bottom:2.761350px;}
.y241{bottom:2.763750px;}
.y240{bottom:2.815050px;}
.yf9{bottom:2.852400px;}
.y102{bottom:2.852550px;}
.yfc{bottom:2.858400px;}
.yf7{bottom:2.858850px;}
.y109{bottom:2.860650px;}
.y106{bottom:2.866200px;}
.yff{bottom:2.934600px;}
.y246{bottom:4.050900px;}
.y245{bottom:9.295800px;}
.y22d{bottom:11.618100px;}
.y108{bottom:18.687750px;}
.y1e{bottom:25.267500px;}
.y47{bottom:27.364200px;}
.y1f{bottom:28.176750px;}
.ycd{bottom:53.571000px;}
.y16b{bottom:63.120300px;}
.y64{bottom:63.780000px;}
.y7d{bottom:64.461300px;}
.y5c{bottom:66.587250px;}
.y1be{bottom:67.301550px;}
.ycb{bottom:68.175450px;}
.y107{bottom:68.176500px;}
.y111{bottom:68.621550px;}
.y63{bottom:69.084132px;}
.y1c{bottom:70.691250px;}
.y46{bottom:72.616500px;}
.ya6{bottom:74.128200px;}
.y7c{bottom:75.261300px;}
.y62{bottom:76.537500px;}
.y5b{bottom:77.387250px;}
.y15{bottom:77.900700px;}
.y110{bottom:79.421550px;}
.y19a{bottom:80.128200px;}
.y16a{bottom:81.120300px;}
.y1f7{bottom:83.624250px;}
.y1bd{bottom:85.301550px;}
.yca{bottom:86.175450px;}
.y10f{bottom:90.221550px;}
.y7b{bottom:90.241650px;}
.y45{bottom:90.616500px;}
.ya5{bottom:92.128200px;}
.y59{bottom:92.367600px;}
.y12d{bottom:98.128200px;}
.y61{bottom:99.017680px;}
.y169{bottom:99.120300px;}
.y105{bottom:100.378500px;}
.y10e{bottom:101.021550px;}
.yc9{bottom:104.175450px;}
.y7a{bottom:104.641650px;}
.y1e4{bottom:105.451200px;}
.y60{bottom:106.328400px;}
.y58{bottom:106.767600px;}
.y1bc{bottom:107.553600px;}
.y44{bottom:108.616500px;}
.ya4{bottom:110.128200px;}
.y14{bottom:111.200700px;}
.y1f6{bottom:113.624250px;}
.y12c{bottom:116.128200px;}
.y14d{bottom:116.624400px;}
.y168{bottom:117.120300px;}
.y10d{bottom:117.582600px;}
.y104{bottom:118.988683px;}
.y7e{bottom:119.452350px;}
.y214{bottom:121.372500px;}
.y5e{bottom:121.578450px;}
.y1bb{bottom:125.553600px;}
.y43{bottom:126.616500px;}
.y13{bottom:127.400700px;}
.ya3{bottom:128.128200px;}
.y5f{bottom:128.809200px;}
.y10c{bottom:131.982600px;}
.y12b{bottom:134.128200px;}
.yc8{bottom:134.175450px;}
.y14c{bottom:134.624400px;}
.y103{bottom:134.748450px;}
.y167{bottom:135.120300px;}
.y1e3{bottom:135.451200px;}
.y225{bottom:140.128200px;}
.y12{bottom:143.600700px;}
.y1f5{bottom:143.624250px;}
.y213{bottom:143.624400px;}
.y42{bottom:144.616500px;}
.y10b{bottom:146.382600px;}
.y101{bottom:148.336500px;}
.y12a{bottom:152.128200px;}
.yc7{bottom:152.175450px;}
.y166{bottom:153.120300px;}
.ya2{bottom:158.128200px;}
.y11{bottom:159.800700px;}
.y112{bottom:162.114300px;}
.y41{bottom:162.616500px;}
.y199{bottom:164.128200px;}
.y14b{bottom:164.624400px;}
.y1e2{bottom:165.451200px;}
.y212{bottom:165.876450px;}
.y100{bottom:166.956000px;}
.y55{bottom:168.191250px;}
.y22b{bottom:170.128200px;}
.yc6{bottom:170.175450px;}
.y165{bottom:171.120300px;}
.y1f4{bottom:173.624250px;}
.y10{bottom:176.000700px;}
.ya1{bottom:176.128200px;}
.yfe{bottom:180.462000px;}
.y40{bottom:180.616500px;}
.y129{bottom:182.128200px;}
.y14a{bottom:182.624400px;}
.y211{bottom:183.876450px;}
.y54{bottom:186.191250px;}
.y224{bottom:188.128200px;}
.yc5{bottom:188.175450px;}
.y164{bottom:189.120300px;}
.yf{bottom:192.200700px;}
.ya0{bottom:194.128200px;}
.y1e1{bottom:195.451200px;}
.yfd{bottom:199.153500px;}
.y128{bottom:200.128200px;}
.y149{bottom:200.624400px;}
.y1f3{bottom:203.624250px;}
.y53{bottom:204.191250px;}
.y223{bottom:206.128200px;}
.y210{bottom:206.128350px;}
.yc4{bottom:206.175450px;}
.y163{bottom:207.120300px;}
.y1ba{bottom:207.805500px;}
.ye{bottom:208.400700px;}
.y3f{bottom:210.616500px;}
.y9f{bottom:212.128200px;}
.yfb{bottom:212.665500px;}
.y198{bottom:218.128200px;}
.y148{bottom:218.624400px;}
.y1f2{bottom:221.624250px;}
.y52{bottom:222.191250px;}
.y222{bottom:224.128200px;}
.y20f{bottom:224.128350px;}
.yc3{bottom:224.175450px;}
.yd{bottom:224.600700px;}
.y173{bottom:225.036150px;}
.y162{bottom:225.120300px;}
.y21b{bottom:225.438150px;}
.y9e{bottom:230.128200px;}
.yfa{bottom:231.280800px;}
.y197{bottom:236.128200px;}
.y147{bottom:236.624400px;}
.y25c{bottom:237.807600px;}
.y1f1{bottom:239.624250px;}
.y51{bottom:240.191250px;}
.y21e{bottom:240.431700px;}
.y218{bottom:241.353150px;}
.yc2{bottom:242.175450px;}
.yf8{bottom:244.869000px;}
.y3e{bottom:245.624400px;}
.y161{bottom:247.372350px;}
.y9d{bottom:248.128200px;}
.y196{bottom:254.128200px;}
.y146{bottom:254.624400px;}
.y1e0{bottom:255.451200px;}
.yc{bottom:257.000700px;}
.y21d{bottom:257.084700px;}
.y1f0{bottom:257.624250px;}
.y50{bottom:258.191250px;}
.yf6{bottom:261.243000px;}
.y25b{bottom:264.376350px;}
.y160{bottom:265.372350px;}
.y127{bottom:266.128200px;}
.y1b9{bottom:267.805500px;}
.y19c{bottom:271.910100px;}
.y221{bottom:272.128200px;}
.yc1{bottom:272.175450px;}
.y1fc{bottom:272.193450px;}
.y1ef{bottom:275.624250px;}
.y9c{bottom:278.128200px;}
.y153{bottom:282.410550px;}
.y15f{bottom:283.372350px;}
.y126{bottom:284.128200px;}
.y3d{bottom:284.128350px;}
.y145{bottom:284.624400px;}
.yf5{bottom:285.178050px;}
.y1df{bottom:285.451200px;}
.y1fa{bottom:287.350950px;}
.y19b{bottom:287.825100px;}
.y4f{bottom:288.191250px;}
.y1b8{bottom:290.057550px;}
.y220{bottom:290.128200px;}
.y25a{bottom:290.945100px;}
.y152{bottom:293.210400px;}
.y9b{bottom:296.128200px;}
.y15e{bottom:301.372350px;}
.y1f9{bottom:301.750950px;}
.y125{bottom:302.128200px;}
.y3c{bottom:302.128350px;}
.yc0{bottom:302.175450px;}
.y144{bottom:302.624400px;}
.yb{bottom:302.891250px;}
.y19d{bottom:303.556800px;}
.y1ee{bottom:305.624250px;}
.y150{bottom:307.440900px;}
.y22a{bottom:308.128200px;}
.y1b7{bottom:312.309450px;}
.y9a{bottom:314.128200px;}
.y20e{bottom:314.128350px;}
.y1fe{bottom:317.482650px;}
.y259{bottom:317.513850px;}
.y4e{bottom:318.191250px;}
.y124{bottom:320.128200px;}
.y3b{bottom:320.128350px;}
.ybf{bottom:320.175450px;}
.y143{bottom:320.624400px;}
.y14f{bottom:321.840900px;}
.y15d{bottom:323.624250px;}
.y229{bottom:326.128200px;}
.y1b6{bottom:330.309450px;}
.y258{bottom:332.082600px;}
.y99{bottom:332.128200px;}
.y20d{bottom:332.128350px;}
.ya{bottom:336.191250px;}
.y155{bottom:337.572450px;}
.y123{bottom:338.128200px;}
.ybe{bottom:338.175450px;}
.y142{bottom:338.624400px;}
.y15c{bottom:341.624250px;}
.y228{bottom:344.128200px;}
.y1de{bottom:345.451200px;}
.y98{bottom:350.128200px;}
.y3a{bottom:350.128350px;}
.y9{bottom:352.391250px;}
.y1b5{bottom:352.561500px;}
.y4d{bottom:354.191250px;}
.y122{bottom:356.128200px;}
.ybd{bottom:356.175450px;}
.y141{bottom:356.624400px;}
.y257{bottom:358.651350px;}
.y227{bottom:362.128200px;}
.yf4{bottom:368.128200px;}
.y39{bottom:368.128350px;}
.y8{bottom:368.591250px;}
.y1b4{bottom:370.561500px;}
.y15b{bottom:371.624250px;}
.y121{bottom:374.128200px;}
.ybc{bottom:374.175450px;}
.y140{bottom:374.624400px;}
.y1dd{bottom:375.451050px;}
.y97{bottom:380.128200px;}
.y20c{bottom:380.128350px;}
.y4c{bottom:384.191250px;}
.y7{bottom:384.791250px;}
.y256{bottom:385.220100px;}
.yf3{bottom:386.128200px;}
.y15a{bottom:389.624250px;}
.y120{bottom:392.128200px;}
.ybb{bottom:392.175450px;}
.y1b3{bottom:392.813400px;}
.y1dc{bottom:397.703100px;}
.y96{bottom:398.128200px;}
.y38{bottom:398.128350px;}
.y255{bottom:399.788850px;}
.y6{bottom:400.991250px;}
.y4b{bottom:402.191250px;}
.y21f{bottom:404.128200px;}
.y13f{bottom:404.624400px;}
.y11f{bottom:410.128200px;}
.yba{bottom:410.175450px;}
.y95{bottom:416.128200px;}
.y37{bottom:416.128350px;}
.y5{bottom:417.191250px;}
.y159{bottom:419.624250px;}
.y13e{bottom:422.624400px;}
.y254{bottom:426.357600px;}
.y1db{bottom:427.703100px;}
.y226{bottom:428.128200px;}
.y4a{bottom:432.191250px;}
.y4{bottom:433.391250px;}
.y94{bottom:434.128200px;}
.y36{bottom:434.128350px;}
.y158{bottom:437.624250px;}
.y11e{bottom:440.128200px;}
.yb9{bottom:440.175450px;}
.y1b2{bottom:440.577150px;}
.y13d{bottom:440.624400px;}
.y253{bottom:440.926350px;}
.y1da{bottom:445.703100px;}
.yf2{bottom:446.128200px;}
.y20b{bottom:446.128350px;}
.y3{bottom:449.591250px;}
.y49{bottom:450.191250px;}
.y93{bottom:452.128200px;}
.y35{bottom:452.128350px;}
.y1ed{bottom:455.624250px;}
.y11d{bottom:458.128200px;}
.yb8{bottom:458.175450px;}
.y13c{bottom:458.624400px;}
.y1d9{bottom:463.703100px;}
.yf1{bottom:464.128200px;}
.y20a{bottom:464.128350px;}
.y2{bottom:465.791250px;}
.y252{bottom:467.495100px;}
.y157{bottom:467.624250px;}
.y92{bottom:470.128200px;}
.y34{bottom:470.128350px;}
.y1b1{bottom:470.577150px;}
.y79{bottom:476.128200px;}
.yb7{bottom:476.175450px;}
.y13b{bottom:476.624400px;}
.y48{bottom:480.191250px;}
.y1d8{bottom:481.703100px;}
.yf0{bottom:482.128200px;}
.y209{bottom:482.128350px;}
.y156{bottom:485.624250px;}
.y195{bottom:488.128200px;}
.y33{bottom:488.128350px;}
.y1b0{bottom:488.577150px;}
.y251{bottom:494.063850px;}
.y78{bottom:494.128200px;}
.y13a{bottom:494.624400px;}
.y1{bottom:498.191250px;}
.y91{bottom:500.128200px;}
.yb6{bottom:506.175450px;}
.y77{bottom:512.128200px;}
.y208{bottom:512.128350px;}
.y1d7{bottom:512.458950px;}
.y1ec{bottom:515.624250px;}
.y90{bottom:518.128200px;}
.y32{bottom:518.128350px;}
.y1af{bottom:518.577150px;}
.y250{bottom:520.632600px;}
.yb5{bottom:524.175450px;}
.y139{bottom:524.624400px;}
.y21a{bottom:527.275500px;}
.y11c{bottom:530.128200px;}
.y5a{bottom:530.221950px;}
.y1d6{bottom:534.711000px;}
.y24f{bottom:535.201350px;}
.y8f{bottom:536.128200px;}
.y31{bottom:536.128350px;}
.y217{bottom:541.370100px;}
.y76{bottom:542.128200px;}
.y207{bottom:542.128350px;}
.yb4{bottom:542.175450px;}
.y138{bottom:542.624400px;}
.y57{bottom:545.202300px;}
.y1eb{bottom:545.624250px;}
.y23d{bottom:546.930000px;}
.y11b{bottom:548.128200px;}
.y1ae{bottom:549.333000px;}
.y23b{bottom:550.624500px;}
.y8e{bottom:554.128200px;}
.y30{bottom:554.128350px;}
.y216{bottom:555.770100px;}
.y56{bottom:559.602300px;}
.y75{bottom:560.128200px;}
.yb3{bottom:560.175450px;}
.y239{bottom:560.563500px;}
.y137{bottom:560.624400px;}
.ya8{bottom:561.021450px;}
.y24e{bottom:561.770100px;}
.y17{bottom:563.633100px;}
.y1d5{bottom:564.711000px;}
.yef{bottom:566.128200px;}
.y21c{bottom:571.501650px;}
.y1ad{bottom:571.585050px;}
.y238{bottom:571.807050px;}
.y8d{bottom:572.128200px;}
.y5d{bottom:574.413000px;}
.ya7{bottom:576.285300px;}
.y16f{bottom:576.968250px;}
.y11a{bottom:578.128200px;}
.yb2{bottom:578.175450px;}
.y136{bottom:578.624400px;}
.y236{bottom:579.973500px;}
.y1ea{bottom:581.624250px;}
.y1fb{bottom:581.991000px;}
.yee{bottom:584.128200px;}
.y2f{bottom:584.128350px;}
.y19{bottom:586.962150px;}
.y24d{bottom:588.338850px;}
.y74{bottom:590.128200px;}
.ya9{bottom:591.096150px;}
.y235{bottom:591.260400px;}
.y16d{bottom:592.883250px;}
.y1ac{bottom:593.837100px;}
.y1d4{bottom:594.711000px;}
.y119{bottom:596.128200px;}
.y1f8{bottom:597.905850px;}
.y233{bottom:599.431500px;}
.y18{bottom:599.562150px;}
.y1e9{bottom:599.624250px;}
.yed{bottom:602.128200px;}
.y2e{bottom:602.128350px;}
.y73{bottom:608.128200px;}
.yb1{bottom:608.175450px;}
.y171{bottom:608.614800px;}
.y135{bottom:608.624400px;}
.y231{bottom:609.369000px;}
.y1fd{bottom:613.637550px;}
.y118{bottom:614.128200px;}
.y25d{bottom:614.305350px;}
.y24c{bottom:614.907600px;}
.y1e8{bottom:617.624250px;}
.y22f{bottom:619.260000px;}
.yec{bottom:620.128200px;}
.y2d{bottom:620.128350px;}
.y1ab{bottom:620.340900px;}
.y16{bottom:621.956100px;}
.y1d3{bottom:624.711000px;}
.y8c{bottom:626.128200px;}
.yb0{bottom:626.175450px;}
.y134{bottom:626.624400px;}
.y22c{bottom:629.199000px;}
.y117{bottom:632.128200px;}
.y206{bottom:632.128350px;}
.y172{bottom:633.430500px;}
.y1e7{bottom:635.624250px;}
.y18e{bottom:637.189253px;}
.y72{bottom:638.128200px;}
.y2c{bottom:638.128350px;}
.y1aa{bottom:638.340900px;}
.y8b{bottom:644.128200px;}
.yaf{bottom:644.175450px;}
.y133{bottom:644.624400px;}
.y18d{bottom:647.075977px;}
.yeb{bottom:650.128200px;}
.y205{bottom:650.128350px;}
.y1d2{bottom:654.711000px;}
.y71{bottom:656.128200px;}
.y2b{bottom:656.128350px;}
.y18c{bottom:656.977446px;}
.y24a{bottom:657.437250px;}
.y8a{bottom:662.128200px;}
.yae{bottom:662.175450px;}
.y132{bottom:662.624400px;}
.y1e6{bottom:665.624250px;}
.y18b{bottom:666.864170px;}
.y116{bottom:668.128200px;}
.y1a9{bottom:668.340900px;}
.y248{bottom:671.458950px;}
.y1d1{bottom:672.711000px;}
.y70{bottom:674.128200px;}
.y18a{bottom:676.706657px;}
.yea{bottom:680.128200px;}
.yad{bottom:680.175450px;}
.y131{bottom:680.624400px;}
.y1e5{bottom:683.624250px;}
.y115{bottom:686.128200px;}
.y2a{bottom:686.128350px;}
.y1a8{bottom:686.340900px;}
.y189{bottom:686.593381px;}
.y24b{bottom:687.190650px;}
.y187{bottom:688.100951px;}
.y89{bottom:692.128200px;}
.y188{bottom:696.494850px;}
.y186{bottom:697.987675px;}
.ye9{bottom:698.128200px;}
.yac{bottom:698.175450px;}
.y1b{bottom:698.420250px;}
.y1d0{bottom:702.711000px;}
.y6f{bottom:704.128200px;}
.y29{bottom:704.128350px;}
.y1a7{bottom:704.340900px;}
.y185{bottom:707.881771px;}
.y88{bottom:710.128200px;}
.y204{bottom:710.128350px;}
.y130{bottom:710.624400px;}
.ye8{bottom:716.128200px;}
.yab{bottom:716.175450px;}
.y184{bottom:717.768495px;}
.y1cf{bottom:720.711000px;}
.y6e{bottom:722.128200px;}
.y28{bottom:722.128350px;}
.y183{bottom:727.655219px;}
.y87{bottom:728.128200px;}
.y203{bottom:728.128350px;}
.y12f{bottom:728.624400px;}
.ye7{bottom:734.128200px;}
.yaa{bottom:734.175450px;}
.y1a6{bottom:734.340900px;}
.y1a{bottom:736.220250px;}
.y182{bottom:737.497706px;}
.y151{bottom:738.640050px;}
.y194{bottom:740.128200px;}
.y86{bottom:746.128200px;}
.y202{bottom:746.128350px;}
.y181{bottom:747.391803px;}
.y6d{bottom:752.128200px;}
.y27{bottom:752.128350px;}
.y14e{bottom:753.947100px;}
.y1ce{bottom:755.641200px;}
.y180{bottom:757.278526px;}
.y193{bottom:758.128200px;}
.y12e{bottom:758.624400px;}
.y1cc{bottom:762.868500px;}
.y85{bottom:764.128200px;}
.y1a5{bottom:764.340900px;}
.yde{bottom:765.615000px;}
.ye5{bottom:766.296450px;}
.y1ca{bottom:766.759500px;}
.y17f{bottom:767.165250px;}
.ydc{bottom:769.167000px;}
.y154{bottom:769.678800px;}
.y6c{bottom:770.128200px;}
.y26{bottom:770.128350px;}
.y244{bottom:772.771500px;}
.y192{bottom:776.128200px;}
.y201{bottom:776.128350px;}
.ye4{bottom:777.096450px;}
.y17c{bottom:777.226635px;}
.y247{bottom:782.067300px;}
.y84{bottom:782.128200px;}
.y1c8{bottom:782.322000px;}
.y1a4{bottom:782.341050px;}
.yda{bottom:782.677500px;}
.y17b{bottom:786.228641px;}
.y6b{bottom:788.128200px;}
.ye3{bottom:792.066150px;}
.y191{bottom:794.128200px;}
.y17a{bottom:795.193783px;}
.yd8{bottom:796.186500px;}
.y1c6{bottom:797.959500px;}
.y242{bottom:799.192500px;}
.y83{bottom:800.128200px;}
.y25{bottom:800.128350px;}
.y1a3{bottom:800.341050px;}
.y179{bottom:804.203162px;}
.y114{bottom:806.128200px;}
.y200{bottom:806.128350px;}
.ye2{bottom:806.466000px;}
.yd5{bottom:809.698500px;}
.y190{bottom:812.128200px;}
.y23f{bottom:812.262000px;}
.y178{bottom:813.168304px;}
.y1c4{bottom:813.523500px;}
.y6a{bottom:818.128200px;}
.y24{bottom:818.128350px;}
.yd7{bottom:818.338050px;}
.y1a2{bottom:818.341050px;}
.ye1{bottom:820.866150px;}
.y177{bottom:822.170310px;}
.y113{bottom:824.128200px;}
.yd4{bottom:824.781750px;}
.y1c2{bottom:829.161000px;}
.y82{bottom:830.128200px;}
.y176{bottom:831.135452px;}
.ye0{bottom:835.266150px;}
.yd2{bottom:835.936500px;}
.y69{bottom:836.128200px;}
.y23{bottom:836.128350px;}
.y17e{bottom:838.996950px;}
.y175{bottom:840.144830px;}
.y81{bottom:848.128200px;}
.y1a1{bottom:848.341050px;}
.y17d{bottom:849.095227px;}
.y174{bottom:849.102600px;}
.ycc{bottom:849.445500px;}
.ye6{bottom:850.997700px;}
.y68{bottom:854.128200px;}
.y22{bottom:854.128350px;}
.y219{bottom:861.515550px;}
.y1c1{bottom:862.088850px;}
.yd0{bottom:864.517800px;}
.y80{bottom:866.128200px;}
.y1a0{bottom:866.341050px;}
.y67{bottom:872.128200px;}
.y21{bottom:872.128350px;}
.y16e{bottom:874.095150px;}
.y215{bottom:875.610150px;}
.y249{bottom:875.988450px;}
.ycf{bottom:877.405350px;}
.y1c0{bottom:880.088850px;}
.y7f{bottom:884.128200px;}
.y1ff{bottom:884.128350px;}
.y19f{bottom:884.341050px;}
.y16c{bottom:890.010150px;}
.yce{bottom:890.128950px;}
.y66{bottom:902.128200px;}
.y20{bottom:902.128350px;}
.y1bf{bottom:902.340750px;}
.y19e{bottom:902.341050px;}
.y170{bottom:905.741700px;}
.y1d{bottom:965.135850px;}
.h34{height:9.517500px;}
.h33{height:9.519000px;}
.h39{height:12.619500px;}
.h1b{height:12.724500px;}
.h18{height:12.882000px;}
.h1c{height:12.883500px;}
.h2c{height:14.976000px;}
.h2a{height:14.977500px;}
.h20{height:15.753000px;}
.h36{height:19.036500px;}
.h35{height:19.081500px;}
.h31{height:19.408500px;}
.h3e{height:20.210072px;}
.h38{height:20.773727px;}
.h1a{height:25.608000px;}
.h3c{height:25.969500px;}
.h28{height:26.718484px;}
.h29{height:26.747974px;}
.h3b{height:28.230721px;}
.h32{height:28.238389px;}
.h3f{height:28.684346px;}
.h3a{height:28.794530px;}
.h23{height:31.507500px;}
.h21{height:31.509000px;}
.h22{height:31.585500px;}
.h15{height:31.691861px;}
.h10{height:32.616000px;}
.h2e{height:32.685618px;}
.h17{height:33.767248px;}
.h11{height:33.978000px;}
.h26{height:34.382804px;}
.h1e{height:34.763911px;}
.h7{height:38.052000px;}
.h19{height:38.146043px;}
.h4{height:38.496000px;}
.hf{height:38.928000px;}
.hc{height:39.945112px;}
.h12{height:43.079756px;}
.ha{height:43.195312px;}
.he{height:43.308000px;}
.h6{height:43.488000px;}
.h9{height:43.686000px;}
.h2b{height:44.430602px;}
.h3d{height:45.251756px;}
.h40{height:45.714000px;}
.h1f{height:46.737641px;}
.hb{height:46.875000px;}
.h5{height:46.999800px;}
.h24{height:47.262000px;}
.hd{height:48.120000px;}
.h2f{height:48.540000px;}
.h30{height:48.660000px;}
.h3{height:48.924000px;}
.h2{height:54.360000px;}
.h16{height:63.940500px;}
.h13{height:72.322637px;}
.h14{height:78.661500px;}
.h2d{height:81.856500px;}
.h8{height:101.052000px;}
.h37{height:102.052500px;}
.h1d{height:148.558500px;}
.h27{height:233.490000px;}
.h25{height:239.628000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.w4{width:36.448500px;}
.w6{width:36.762000px;}
.w5{width:36.763500px;}
.w8{width:36.918000px;}
.w7{width:36.919500px;}
.w9{width:36.921000px;}
.w19{width:46.299000px;}
.w13{width:62.154000px;}
.w16{width:64.177500px;}
.w15{width:66.529500px;}
.w17{width:66.718500px;}
.w14{width:67.284000px;}
.w3{width:98.662500px;}
.w1a{width:100.212000px;}
.w10{width:104.308500px;}
.w11{width:104.310000px;}
.wb{width:106.923000px;}
.wf{width:130.590000px;}
.w1b{width:146.968500px;}
.we{width:317.197500px;}
.w18{width:330.739500px;}
.wc{width:435.945000px;}
.w2{width:505.878000px;}
.w12{width:521.514000px;}
.wd{width:547.662000px;}
.wa{width:549.549000px;}
.w1{width:807.750000px;}
.w0{width:807.874500px;}
.x3c{left:-7.080750px;}
.x1a{left:-3.671550px;}
.x0{left:0.000000px;}
.x5f{left:1.693350px;}
.x7f{left:5.033700px;}
.x2a{left:6.759600px;}
.x38{left:8.017650px;}
.x3a{left:10.063350px;}
.xe{left:13.181100px;}
.x23{left:14.301600px;}
.x7a{left:15.714900px;}
.x7b{left:18.065400px;}
.x76{left:19.811100px;}
.x5b{left:20.835000px;}
.x40{left:22.528650px;}
.x37{left:23.731950px;}
.x5c{left:24.750000px;}
.x3f{left:26.722650px;}
.x72{left:28.391100px;}
.x26{left:31.894050px;}
.x28{left:33.786150px;}
.x39{left:35.668200px;}
.x3b{left:41.631150px;}
.x70{left:42.639150px;}
.x1f{left:44.079600px;}
.x6f{left:45.382350px;}
.x6b{left:47.227200px;}
.x3e{left:50.325300px;}
.x1d{left:54.726600px;}
.x6e{left:60.411150px;}
.xd{left:65.055000px;}
.x53{left:67.056750px;}
.x3d{left:69.309150px;}
.x82{left:70.733850px;}
.xc{left:77.171100px;}
.x13{left:85.464600px;}
.x69{left:86.785500px;}
.x45{left:88.434000px;}
.x84{left:93.392250px;}
.x48{left:95.130000px;}
.x41{left:96.875400px;}
.x66{left:100.489650px;}
.x2{left:106.299150px;}
.x75{left:115.275300px;}
.x65{left:119.155800px;}
.x59{left:120.686550px;}
.x1e{left:123.376800px;}
.x5d{left:126.207754px;}
.x14{left:127.564350px;}
.xa{left:133.936950px;}
.xb{left:144.586350px;}
.x16{left:150.404850px;}
.x17{left:155.421150px;}
.x19{left:159.001800px;}
.x5{left:168.239400px;}
.xf{left:170.078700px;}
.x20{left:181.983900px;}
.x36{left:183.597750px;}
.x21{left:186.912000px;}
.x25{left:190.348200px;}
.x47{left:192.270900px;}
.x24{left:194.746350px;}
.x46{left:196.056000px;}
.x49{left:202.673100px;}
.x58{left:203.887050px;}
.x6{left:206.680650px;}
.x7{left:208.456650px;}
.x4{left:210.716850px;}
.x10{left:212.603700px;}
.x6a{left:218.043000px;}
.x83{left:230.476200px;}
.x1c{left:233.773200px;}
.x5e{left:234.884550px;}
.x81{left:242.346000px;}
.x73{left:260.704500px;}
.x29{left:269.995500px;}
.x1b{left:276.298200px;}
.x27{left:278.013300px;}
.x67{left:282.156150px;}
.x44{left:284.132400px;}
.x5a{left:302.353050px;}
.x2b{left:307.072500px;}
.x6c{left:322.944000px;}
.x63{left:338.031450px;}
.x2c{left:344.620500px;}
.x56{left:359.291400px;}
.x62{left:380.551200px;}
.x2d{left:382.011000px;}
.x4b{left:389.530650px;}
.x1{left:393.213300px;}
.x3{left:395.703300px;}
.x55{left:401.816400px;}
.x11{left:413.253600px;}
.x18{left:418.381219px;}
.x2e{left:419.559000px;}
.x64{left:423.070800px;}
.x22{left:426.847350px;}
.x6d{left:427.918500px;}
.x80{left:443.266500px;}
.x57{left:444.330750px;}
.x61{left:447.732300px;}
.x7e{left:449.827650px;}
.x2f{left:457.107000px;}
.x7c{left:463.989300px;}
.x54{left:466.564650px;}
.x8{left:473.738100px;}
.x74{left:491.079750px;}
.x30{left:494.655000px;}
.x71{left:498.586350px;}
.x77{left:507.699000px;}
.x9{left:516.866700px;}
.x31{left:532.045500px;}
.x43{left:567.521850px;}
.x32{left:569.593500px;}
.x78{left:575.359500px;}
.x42{left:582.956100px;}
.x7d{left:595.399500px;}
.x15{left:599.527650px;}
.x33{left:607.141500px;}
.x50{left:640.458150px;}
.x79{left:642.264000px;}
.x4d{left:643.471050px;}
.x34{left:644.688000px;}
.x4f{left:647.388150px;}
.x4a{left:648.950850px;}
.x4e{left:651.114600px;}
.x4c{left:664.830450px;}
.x35{left:682.080000px;}
.x51{left:707.174400px;}
.x12{left:722.297250px;}
.x68{left:724.298850px;}
.x60{left:726.349650px;}
.x52{left:747.696600px;}
@media print{
.v2{vertical-align:-2.889067pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:7.558933pt;}
.v3{vertical-align:10.344000pt;}
.v5{vertical-align:21.621867pt;}
.v4{vertical-align:25.993672pt;}
.ls3{letter-spacing:-2.240000pt;}
.ls4{letter-spacing:-1.226667pt;}
.ls2{letter-spacing:-0.160000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls5{letter-spacing:0.004267pt;}
.ls1{letter-spacing:0.004800pt;}
.ls8{letter-spacing:11.980328pt;}
.ls6{letter-spacing:38.512782pt;}
.ls7{letter-spacing:43.504405pt;}
.ws8a{word-spacing:-53.333333pt;}
.wsbd{word-spacing:-27.705067pt;}
.ws5b{word-spacing:-8.960000pt;}
.ws89{word-spacing:-8.640000pt;}
.ws1{word-spacing:-7.776000pt;}
.ws0{word-spacing:-7.168000pt;}
.ws3{word-spacing:-7.040000pt;}
.wsbe{word-spacing:-5.861035pt;}
.ws74{word-spacing:-2.666667pt;}
.ws56{word-spacing:-2.560000pt;}
.ws36{word-spacing:-2.400000pt;}
.wsa2{word-spacing:-2.240000pt;}
.ws75{word-spacing:-2.080000pt;}
.ws1d{word-spacing:-1.866667pt;}
.ws65{word-spacing:-1.813333pt;}
.ws50{word-spacing:-1.653333pt;}
.ws43{word-spacing:-1.546667pt;}
.ws30{word-spacing:-1.440000pt;}
.wsd{word-spacing:-1.344000pt;}
.ws5d{word-spacing:-1.333333pt;}
.ws19{word-spacing:-1.280000pt;}
.wsc2{word-spacing:-1.173333pt;}
.wsb3{word-spacing:-1.120000pt;}
.ws87{word-spacing:-1.066667pt;}
.ws14{word-spacing:-1.013333pt;}
.ws2f{word-spacing:-0.960000pt;}
.wsc0{word-spacing:-0.906667pt;}
.ws18{word-spacing:-0.746667pt;}
.ws86{word-spacing:-0.693333pt;}
.ws4c{word-spacing:-0.586667pt;}
.wsbc{word-spacing:-0.533333pt;}
.ws6{word-spacing:-0.528000pt;}
.ws11{word-spacing:-0.373333pt;}
.ws49{word-spacing:-0.213333pt;}
.wsba{word-spacing:-0.160000pt;}
.ws5a{word-spacing:-0.106667pt;}
.wsf{word-spacing:-0.042667pt;}
.ws4{word-spacing:0.000000pt;}
.ws84{word-spacing:0.053333pt;}
.ws4b{word-spacing:0.106667pt;}
.ws10{word-spacing:0.160000pt;}
.ws64{word-spacing:0.266667pt;}
.ws5f{word-spacing:0.320000pt;}
.ws7f{word-spacing:0.373333pt;}
.ws25{word-spacing:0.426667pt;}
.ws9c{word-spacing:0.480000pt;}
.ws13{word-spacing:0.533333pt;}
.ws21{word-spacing:0.586667pt;}
.ws12{word-spacing:0.640000pt;}
.ws17{word-spacing:0.693333pt;}
.ws6e{word-spacing:0.746667pt;}
.ws1f{word-spacing:0.906667pt;}
.ws3c{word-spacing:0.960000pt;}
.ws77{word-spacing:1.013333pt;}
.ws5e{word-spacing:1.066667pt;}
.ws46{word-spacing:1.120000pt;}
.wsc{word-spacing:1.152000pt;}
.ws52{word-spacing:1.173333pt;}
.ws94{word-spacing:1.280000pt;}
.ws16{word-spacing:1.333333pt;}
.ws69{word-spacing:1.386667pt;}
.ws71{word-spacing:1.653333pt;}
.ws45{word-spacing:1.706667pt;}
.ws4f{word-spacing:1.920000pt;}
.ws67{word-spacing:1.973333pt;}
.ws29{word-spacing:2.186667pt;}
.ws9{word-spacing:2.208000pt;}
.ws1b{word-spacing:2.293333pt;}
.ws5{word-spacing:2.304000pt;}
.ws38{word-spacing:2.400000pt;}
.ws6c{word-spacing:2.453333pt;}
.ws8d{word-spacing:2.506667pt;}
.ws1c{word-spacing:2.613333pt;}
.ws5c{word-spacing:2.666667pt;}
.ws7{word-spacing:2.736000pt;}
.ws35{word-spacing:2.773333pt;}
.ws55{word-spacing:2.826667pt;}
.ws68{word-spacing:2.880000pt;}
.ws76{word-spacing:2.933333pt;}
.ws1a{word-spacing:2.986667pt;}
.ws83{word-spacing:3.040000pt;}
.ws8{word-spacing:3.120000pt;}
.ws4a{word-spacing:3.200000pt;}
.wsa{word-spacing:3.216000pt;}
.wsc1{word-spacing:3.253333pt;}
.wsb5{word-spacing:3.306667pt;}
.ws28{word-spacing:3.413333pt;}
.ws6f{word-spacing:3.520000pt;}
.ws9f{word-spacing:3.573333pt;}
.ws2d{word-spacing:3.680000pt;}
.ws7b{word-spacing:3.786667pt;}
.wsc4{word-spacing:3.893333pt;}
.ws24{word-spacing:4.000000pt;}
.wsbf{word-spacing:4.160000pt;}
.wsb{word-spacing:4.224000pt;}
.ws39{word-spacing:4.373333pt;}
.ws1e{word-spacing:4.426667pt;}
.ws96{word-spacing:4.586667pt;}
.ws62{word-spacing:4.640000pt;}
.ws4e{word-spacing:4.693333pt;}
.wsc7{word-spacing:4.746667pt;}
.ws9d{word-spacing:4.800000pt;}
.ws26{word-spacing:4.853333pt;}
.wsa1{word-spacing:4.906667pt;}
.ws4d{word-spacing:5.013333pt;}
.ws47{word-spacing:5.066667pt;}
.ws63{word-spacing:5.333333pt;}
.wsbb{word-spacing:5.546667pt;}
.ws15{word-spacing:5.600000pt;}
.ws58{word-spacing:5.653333pt;}
.ws31{word-spacing:5.760000pt;}
.ws54{word-spacing:5.813333pt;}
.wsc6{word-spacing:5.866667pt;}
.ws6d{word-spacing:5.920000pt;}
.ws6a{word-spacing:5.973333pt;}
.wsb7{word-spacing:6.080000pt;}
.wsb9{word-spacing:6.240000pt;}
.ws59{word-spacing:6.293333pt;}
.ws27{word-spacing:6.346667pt;}
.ws33{word-spacing:6.453333pt;}
.ws9b{word-spacing:6.560000pt;}
.ws22{word-spacing:6.720000pt;}
.ws61{word-spacing:6.933333pt;}
.ws93{word-spacing:6.986667pt;}
.ws78{word-spacing:7.146667pt;}
.wsaa{word-spacing:7.306667pt;}
.ws57{word-spacing:7.466667pt;}
.ws2b{word-spacing:7.520000pt;}
.ws91{word-spacing:7.573333pt;}
.ws8b{word-spacing:7.733333pt;}
.ws37{word-spacing:8.053333pt;}
.wsb8{word-spacing:8.213333pt;}
.ws51{word-spacing:8.320000pt;}
.ws70{word-spacing:8.426667pt;}
.ws6b{word-spacing:8.693333pt;}
.wsb1{word-spacing:8.800000pt;}
.ws44{word-spacing:8.960000pt;}
.wsa6{word-spacing:9.120000pt;}
.ws7c{word-spacing:9.173333pt;}
.ws3d{word-spacing:9.600000pt;}
.ws97{word-spacing:9.866667pt;}
.wsc5{word-spacing:10.026667pt;}
.ws98{word-spacing:10.133333pt;}
.wsad{word-spacing:10.346667pt;}
.ws60{word-spacing:10.453333pt;}
.ws20{word-spacing:10.613333pt;}
.wsae{word-spacing:10.720000pt;}
.ws3f{word-spacing:10.826667pt;}
.ws92{word-spacing:11.093333pt;}
.ws3b{word-spacing:11.466667pt;}
.ws80{word-spacing:11.626667pt;}
.wsaf{word-spacing:11.680000pt;}
.wsab{word-spacing:11.893333pt;}
.ws34{word-spacing:12.266667pt;}
.ws7a{word-spacing:12.373333pt;}
.ws72{word-spacing:12.480000pt;}
.ws9e{word-spacing:13.066667pt;}
.ws8f{word-spacing:13.226667pt;}
.wsac{word-spacing:13.280000pt;}
.ws90{word-spacing:13.333333pt;}
.wsb2{word-spacing:13.920000pt;}
.ws32{word-spacing:14.560000pt;}
.ws85{word-spacing:14.826667pt;}
.ws8e{word-spacing:15.413333pt;}
.ws3e{word-spacing:15.520000pt;}
.ws2c{word-spacing:16.213333pt;}
.ws2a{word-spacing:16.640000pt;}
.ws95{word-spacing:16.746667pt;}
.ws73{word-spacing:16.800000pt;}
.ws79{word-spacing:17.280000pt;}
.ws7d{word-spacing:17.333333pt;}
.ws42{word-spacing:17.600000pt;}
.ws48{word-spacing:17.653333pt;}
.ws3a{word-spacing:17.813333pt;}
.ws7e{word-spacing:19.200000pt;}
.wsa0{word-spacing:19.253333pt;}
.ws66{word-spacing:19.360000pt;}
.ws8c{word-spacing:19.413333pt;}
.ws40{word-spacing:19.626667pt;}
.ws53{word-spacing:19.946667pt;}
.wsa3{word-spacing:20.000000pt;}
.ws99{word-spacing:22.026667pt;}
.ws82{word-spacing:22.613333pt;}
.wsb6{word-spacing:23.146667pt;}
.ws41{word-spacing:24.373333pt;}
.wsc3{word-spacing:26.080000pt;}
.wsa4{word-spacing:27.040000pt;}
.wsb4{word-spacing:32.160000pt;}
.wsa8{word-spacing:37.386667pt;}
.wsa9{word-spacing:38.613333pt;}
.ws9a{word-spacing:45.386667pt;}
.ws23{word-spacing:55.070933pt;}
.ws2e{word-spacing:57.225600pt;}
.ws81{word-spacing:57.386667pt;}
.wse{word-spacing:60.144000pt;}
.wsb0{word-spacing:60.889067pt;}
.wsa5{word-spacing:61.927467pt;}
.ws88{word-spacing:69.249067pt;}
.wsa7{word-spacing:129.866667pt;}
.ws2{word-spacing:406.067733pt;}
._2d{margin-left:-21.712000pt;}
._2c{margin-left:-9.120000pt;}
._17{margin-left:-7.840000pt;}
._36{margin-left:-5.600533pt;}
._19{margin-left:-3.461333pt;}
._a{margin-left:-2.490667pt;}
._5{margin-left:-1.205333pt;}
._0{width:1.300800pt;}
._1{width:2.212800pt;}
._7{width:3.259200pt;}
._8{width:4.227733pt;}
._3{width:5.136000pt;}
._2{width:6.528000pt;}
._9{width:7.717333pt;}
._12{width:9.013333pt;}
._14{width:10.640000pt;}
._15{width:11.717333pt;}
._20{width:13.056000pt;}
._18{width:14.826667pt;}
._13{width:16.373333pt;}
._28{width:19.258209pt;}
._22{width:21.050667pt;}
._37{width:22.208000pt;}
._21{width:24.501333pt;}
._f{width:28.191511pt;}
._23{width:31.131915pt;}
._25{width:32.209933pt;}
._16{width:33.893333pt;}
._2b{width:35.804152pt;}
._2a{width:37.482542pt;}
._34{width:38.613333pt;}
._35{width:43.360000pt;}
._1d{width:45.304674pt;}
._27{width:48.528246pt;}
._1c{width:52.695245pt;}
._1a{width:54.325707pt;}
._1b{width:55.563573pt;}
._1f{width:57.386667pt;}
._2e{width:59.626667pt;}
._2f{width:64.746667pt;}
._38{width:94.862148pt;}
._1e{width:126.101067pt;}
._26{width:147.076501pt;}
._31{width:148.266667pt;}
._30{width:157.440000pt;}
._39{width:158.971673pt;}
._33{width:168.703467pt;}
._3a{width:171.743708pt;}
._24{width:174.702502pt;}
._32{width:183.310067pt;}
._c{width:185.811372pt;}
._e{width:195.903528pt;}
._11{width:220.671482pt;}
._b{width:283.657471pt;}
._29{width:378.895229pt;}
._d{width:411.798937pt;}
._10{width:449.838457pt;}
._4{width:647.554133pt;}
._6{width:1188.949867pt;}
.fsb{font-size:26.213867pt;}
.fsf{font-size:26.641067pt;}
.fsd{font-size:27.705067pt;}
.fs6{font-size:32.000000pt;}
.fse{font-size:36.656533pt;}
.fs4{font-size:37.333333pt;}
.fs8{font-size:37.425600pt;}
.fs7{font-size:42.266133pt;}
.fs0{font-size:42.666667pt;}
.fsc{font-size:43.591467pt;}
.fsa{font-size:45.854933pt;}
.fs9{font-size:46.363200pt;}
.fs2{font-size:48.000000pt;}
.fs3{font-size:50.666667pt;}
.fs1{font-size:53.333333pt;}
.fs5{font-size:112.000000pt;}
.ydf{bottom:-8.284933pt;}
.y65{bottom:-8.013067pt;}
.y10a{bottom:-7.349867pt;}
.y1cd{bottom:-7.248267pt;}
.y18f{bottom:-5.013467pt;}
.y23e{bottom:-3.516933pt;}
.y0{bottom:0.000000pt;}
.y232{bottom:1.530133pt;}
.y234{bottom:1.533867pt;}
.y230{bottom:1.535200pt;}
.y23c{bottom:1.537067pt;}
.y23a{bottom:1.537333pt;}
.y237{bottom:1.575867pt;}
.y22e{bottom:1.864933pt;}
.yd3{bottom:2.085600pt;}
.yd1{bottom:2.087600pt;}
.yd6{bottom:2.088133pt;}
.ydd{bottom:2.095200pt;}
.ydb{bottom:2.095867pt;}
.yd9{bottom:2.097867pt;}
.y1c9{bottom:2.412133pt;}
.y1cb{bottom:2.412400pt;}
.y1c3{bottom:2.412533pt;}
.y1c7{bottom:2.413067pt;}
.y1c5{bottom:2.420000pt;}
.y243{bottom:2.454533pt;}
.y241{bottom:2.456667pt;}
.y240{bottom:2.502267pt;}
.yf9{bottom:2.535467pt;}
.y102{bottom:2.535600pt;}
.yfc{bottom:2.540800pt;}
.yf7{bottom:2.541200pt;}
.y109{bottom:2.542800pt;}
.y106{bottom:2.547733pt;}
.yff{bottom:2.608533pt;}
.y246{bottom:3.600800pt;}
.y245{bottom:8.262933pt;}
.y22d{bottom:10.327200pt;}
.y108{bottom:16.611333pt;}
.y1e{bottom:22.460000pt;}
.y47{bottom:24.323733pt;}
.y1f{bottom:25.046000pt;}
.ycd{bottom:47.618667pt;}
.y16b{bottom:56.106933pt;}
.y64{bottom:56.693333pt;}
.y7d{bottom:57.298933pt;}
.y5c{bottom:59.188667pt;}
.y1be{bottom:59.823600pt;}
.ycb{bottom:60.600400pt;}
.y107{bottom:60.601333pt;}
.y111{bottom:60.996933pt;}
.y63{bottom:61.408117pt;}
.y1c{bottom:62.836667pt;}
.y46{bottom:64.548000pt;}
.ya6{bottom:65.891733pt;}
.y7c{bottom:66.898933pt;}
.y62{bottom:68.033333pt;}
.y5b{bottom:68.788667pt;}
.y15{bottom:69.245067pt;}
.y110{bottom:70.596933pt;}
.y19a{bottom:71.225067pt;}
.y16a{bottom:72.106933pt;}
.y1f7{bottom:74.332667pt;}
.y1bd{bottom:75.823600pt;}
.yca{bottom:76.600400pt;}
.y10f{bottom:80.196933pt;}
.y7b{bottom:80.214800pt;}
.y45{bottom:80.548000pt;}
.ya5{bottom:81.891733pt;}
.y59{bottom:82.104533pt;}
.y12d{bottom:87.225067pt;}
.y61{bottom:88.015715pt;}
.y169{bottom:88.106933pt;}
.y105{bottom:89.225333pt;}
.y10e{bottom:89.796933pt;}
.yc9{bottom:92.600400pt;}
.y7a{bottom:93.014800pt;}
.y1e4{bottom:93.734400pt;}
.y60{bottom:94.514133pt;}
.y58{bottom:94.904533pt;}
.y1bc{bottom:95.603200pt;}
.y44{bottom:96.548000pt;}
.ya4{bottom:97.891733pt;}
.y14{bottom:98.845067pt;}
.y1f6{bottom:100.999333pt;}
.y12c{bottom:103.225067pt;}
.y14d{bottom:103.666133pt;}
.y168{bottom:104.106933pt;}
.y10d{bottom:104.517867pt;}
.y104{bottom:105.767718pt;}
.y7e{bottom:106.179867pt;}
.y214{bottom:107.886667pt;}
.y5e{bottom:108.069733pt;}
.y1bb{bottom:111.603200pt;}
.y43{bottom:112.548000pt;}
.y13{bottom:113.245067pt;}
.ya3{bottom:113.891733pt;}
.y5f{bottom:114.497067pt;}
.y10c{bottom:117.317867pt;}
.y12b{bottom:119.225067pt;}
.yc8{bottom:119.267067pt;}
.y14c{bottom:119.666133pt;}
.y103{bottom:119.776400pt;}
.y167{bottom:120.106933pt;}
.y1e3{bottom:120.401067pt;}
.y225{bottom:124.558400pt;}
.y12{bottom:127.645067pt;}
.y1f5{bottom:127.666000pt;}
.y213{bottom:127.666133pt;}
.y42{bottom:128.548000pt;}
.y10b{bottom:130.117867pt;}
.y101{bottom:131.854667pt;}
.y12a{bottom:135.225067pt;}
.yc7{bottom:135.267067pt;}
.y166{bottom:136.106933pt;}
.ya2{bottom:140.558400pt;}
.y11{bottom:142.045067pt;}
.y112{bottom:144.101600pt;}
.y41{bottom:144.548000pt;}
.y199{bottom:145.891733pt;}
.y14b{bottom:146.332800pt;}
.y1e2{bottom:147.067733pt;}
.y212{bottom:147.445733pt;}
.y100{bottom:148.405333pt;}
.y55{bottom:149.503333pt;}
.y22b{bottom:151.225067pt;}
.yc6{bottom:151.267067pt;}
.y165{bottom:152.106933pt;}
.y1f4{bottom:154.332667pt;}
.y10{bottom:156.445067pt;}
.ya1{bottom:156.558400pt;}
.yfe{bottom:160.410667pt;}
.y40{bottom:160.548000pt;}
.y129{bottom:161.891733pt;}
.y14a{bottom:162.332800pt;}
.y211{bottom:163.445733pt;}
.y54{bottom:165.503333pt;}
.y224{bottom:167.225067pt;}
.yc5{bottom:167.267067pt;}
.y164{bottom:168.106933pt;}
.yf{bottom:170.845067pt;}
.ya0{bottom:172.558400pt;}
.y1e1{bottom:173.734400pt;}
.yfd{bottom:177.025333pt;}
.y128{bottom:177.891733pt;}
.y149{bottom:178.332800pt;}
.y1f3{bottom:180.999333pt;}
.y53{bottom:181.503333pt;}
.y223{bottom:183.225067pt;}
.y210{bottom:183.225200pt;}
.yc4{bottom:183.267067pt;}
.y163{bottom:184.106933pt;}
.y1ba{bottom:184.716000pt;}
.ye{bottom:185.245067pt;}
.y3f{bottom:187.214667pt;}
.y9f{bottom:188.558400pt;}
.yfb{bottom:189.036000pt;}
.y198{bottom:193.891733pt;}
.y148{bottom:194.332800pt;}
.y1f2{bottom:196.999333pt;}
.y52{bottom:197.503333pt;}
.y222{bottom:199.225067pt;}
.y20f{bottom:199.225200pt;}
.yc3{bottom:199.267067pt;}
.yd{bottom:199.645067pt;}
.y173{bottom:200.032133pt;}
.y162{bottom:200.106933pt;}
.y21b{bottom:200.389467pt;}
.y9e{bottom:204.558400pt;}
.yfa{bottom:205.582933pt;}
.y197{bottom:209.891733pt;}
.y147{bottom:210.332800pt;}
.y25c{bottom:211.384533pt;}
.y1f1{bottom:212.999333pt;}
.y51{bottom:213.503333pt;}
.y21e{bottom:213.717067pt;}
.y218{bottom:214.536133pt;}
.yc2{bottom:215.267067pt;}
.yf8{bottom:217.661333pt;}
.y3e{bottom:218.332800pt;}
.y161{bottom:219.886533pt;}
.y9d{bottom:220.558400pt;}
.y196{bottom:225.891733pt;}
.y146{bottom:226.332800pt;}
.y1e0{bottom:227.067733pt;}
.yc{bottom:228.445067pt;}
.y21d{bottom:228.519733pt;}
.y1f0{bottom:228.999333pt;}
.y50{bottom:229.503333pt;}
.yf6{bottom:232.216000pt;}
.y25b{bottom:235.001200pt;}
.y160{bottom:235.886533pt;}
.y127{bottom:236.558400pt;}
.y1b9{bottom:238.049333pt;}
.y19c{bottom:241.697867pt;}
.y221{bottom:241.891733pt;}
.yc1{bottom:241.933733pt;}
.y1fc{bottom:241.949733pt;}
.y1ef{bottom:244.999333pt;}
.y9c{bottom:247.225067pt;}
.y153{bottom:251.031600pt;}
.y15f{bottom:251.886533pt;}
.y126{bottom:252.558400pt;}
.y3d{bottom:252.558533pt;}
.y145{bottom:252.999467pt;}
.yf5{bottom:253.491600pt;}
.y1df{bottom:253.734400pt;}
.y1fa{bottom:255.423067pt;}
.y19b{bottom:255.844533pt;}
.y4f{bottom:256.170000pt;}
.y1b8{bottom:257.828933pt;}
.y220{bottom:257.891733pt;}
.y25a{bottom:258.617867pt;}
.y152{bottom:260.631467pt;}
.y9b{bottom:263.225067pt;}
.y15e{bottom:267.886533pt;}
.y1f9{bottom:268.223067pt;}
.y125{bottom:268.558400pt;}
.y3c{bottom:268.558533pt;}
.yc0{bottom:268.600400pt;}
.y144{bottom:268.999467pt;}
.yb{bottom:269.236667pt;}
.y19d{bottom:269.828267pt;}
.y1ee{bottom:271.666000pt;}
.y150{bottom:273.280800pt;}
.y22a{bottom:273.891733pt;}
.y1b7{bottom:277.608400pt;}
.y9a{bottom:279.225067pt;}
.y20e{bottom:279.225200pt;}
.y1fe{bottom:282.206800pt;}
.y259{bottom:282.234533pt;}
.y4e{bottom:282.836667pt;}
.y124{bottom:284.558400pt;}
.y3b{bottom:284.558533pt;}
.ybf{bottom:284.600400pt;}
.y143{bottom:284.999467pt;}
.y14f{bottom:286.080800pt;}
.y15d{bottom:287.666000pt;}
.y229{bottom:289.891733pt;}
.y1b6{bottom:293.608400pt;}
.y258{bottom:295.184533pt;}
.y99{bottom:295.225067pt;}
.y20d{bottom:295.225200pt;}
.ya{bottom:298.836667pt;}
.y155{bottom:300.064400pt;}
.y123{bottom:300.558400pt;}
.ybe{bottom:300.600400pt;}
.y142{bottom:300.999467pt;}
.y15c{bottom:303.666000pt;}
.y228{bottom:305.891733pt;}
.y1de{bottom:307.067733pt;}
.y98{bottom:311.225067pt;}
.y3a{bottom:311.225200pt;}
.y9{bottom:313.236667pt;}
.y1b5{bottom:313.388000pt;}
.y4d{bottom:314.836667pt;}
.y122{bottom:316.558400pt;}
.ybd{bottom:316.600400pt;}
.y141{bottom:316.999467pt;}
.y257{bottom:318.801200pt;}
.y227{bottom:321.891733pt;}
.yf4{bottom:327.225067pt;}
.y39{bottom:327.225200pt;}
.y8{bottom:327.636667pt;}
.y1b4{bottom:329.388000pt;}
.y15b{bottom:330.332667pt;}
.y121{bottom:332.558400pt;}
.ybc{bottom:332.600400pt;}
.y140{bottom:332.999467pt;}
.y1dd{bottom:333.734267pt;}
.y97{bottom:337.891733pt;}
.y20c{bottom:337.891867pt;}
.y4c{bottom:341.503333pt;}
.y7{bottom:342.036667pt;}
.y256{bottom:342.417867pt;}
.yf3{bottom:343.225067pt;}
.y15a{bottom:346.332667pt;}
.y120{bottom:348.558400pt;}
.ybb{bottom:348.600400pt;}
.y1b3{bottom:349.167467pt;}
.y1dc{bottom:353.513867pt;}
.y96{bottom:353.891733pt;}
.y38{bottom:353.891867pt;}
.y255{bottom:355.367867pt;}
.y6{bottom:356.436667pt;}
.y4b{bottom:357.503333pt;}
.y21f{bottom:359.225067pt;}
.y13f{bottom:359.666133pt;}
.y11f{bottom:364.558400pt;}
.yba{bottom:364.600400pt;}
.y95{bottom:369.891733pt;}
.y37{bottom:369.891867pt;}
.y5{bottom:370.836667pt;}
.y159{bottom:372.999333pt;}
.y13e{bottom:375.666133pt;}
.y254{bottom:378.984533pt;}
.y1db{bottom:380.180533pt;}
.y226{bottom:380.558400pt;}
.y4a{bottom:384.170000pt;}
.y4{bottom:385.236667pt;}
.y94{bottom:385.891733pt;}
.y36{bottom:385.891867pt;}
.y158{bottom:388.999333pt;}
.y11e{bottom:391.225067pt;}
.yb9{bottom:391.267067pt;}
.y1b2{bottom:391.624133pt;}
.y13d{bottom:391.666133pt;}
.y253{bottom:391.934533pt;}
.y1da{bottom:396.180533pt;}
.yf2{bottom:396.558400pt;}
.y20b{bottom:396.558533pt;}
.y3{bottom:399.636667pt;}
.y49{bottom:400.170000pt;}
.y93{bottom:401.891733pt;}
.y35{bottom:401.891867pt;}
.y1ed{bottom:404.999333pt;}
.y11d{bottom:407.225067pt;}
.yb8{bottom:407.267067pt;}
.y13c{bottom:407.666133pt;}
.y1d9{bottom:412.180533pt;}
.yf1{bottom:412.558400pt;}
.y20a{bottom:412.558533pt;}
.y2{bottom:414.036667pt;}
.y252{bottom:415.551200pt;}
.y157{bottom:415.666000pt;}
.y92{bottom:417.891733pt;}
.y34{bottom:417.891867pt;}
.y1b1{bottom:418.290800pt;}
.y79{bottom:423.225067pt;}
.yb7{bottom:423.267067pt;}
.y13b{bottom:423.666133pt;}
.y48{bottom:426.836667pt;}
.y1d8{bottom:428.180533pt;}
.yf0{bottom:428.558400pt;}
.y209{bottom:428.558533pt;}
.y156{bottom:431.666000pt;}
.y195{bottom:433.891733pt;}
.y33{bottom:433.891867pt;}
.y1b0{bottom:434.290800pt;}
.y251{bottom:439.167867pt;}
.y78{bottom:439.225067pt;}
.y13a{bottom:439.666133pt;}
.y1{bottom:442.836667pt;}
.y91{bottom:444.558400pt;}
.yb6{bottom:449.933733pt;}
.y77{bottom:455.225067pt;}
.y208{bottom:455.225200pt;}
.y1d7{bottom:455.519067pt;}
.y1ec{bottom:458.332667pt;}
.y90{bottom:460.558400pt;}
.y32{bottom:460.558533pt;}
.y1af{bottom:460.957467pt;}
.y250{bottom:462.784533pt;}
.yb5{bottom:465.933733pt;}
.y139{bottom:466.332800pt;}
.y21a{bottom:468.689333pt;}
.y11c{bottom:471.225067pt;}
.y5a{bottom:471.308400pt;}
.y1d6{bottom:475.298667pt;}
.y24f{bottom:475.734533pt;}
.y8f{bottom:476.558400pt;}
.y31{bottom:476.558533pt;}
.y217{bottom:481.217867pt;}
.y76{bottom:481.891733pt;}
.y207{bottom:481.891867pt;}
.yb4{bottom:481.933733pt;}
.y138{bottom:482.332800pt;}
.y57{bottom:484.624267pt;}
.y1eb{bottom:484.999333pt;}
.y23d{bottom:486.160000pt;}
.y11b{bottom:487.225067pt;}
.y1ae{bottom:488.296000pt;}
.y23b{bottom:489.444000pt;}
.y8e{bottom:492.558400pt;}
.y30{bottom:492.558533pt;}
.y216{bottom:494.017867pt;}
.y56{bottom:497.424267pt;}
.y75{bottom:497.891733pt;}
.yb3{bottom:497.933733pt;}
.y239{bottom:498.278667pt;}
.y137{bottom:498.332800pt;}
.ya8{bottom:498.685733pt;}
.y24e{bottom:499.351200pt;}
.y17{bottom:501.007200pt;}
.y1d5{bottom:501.965333pt;}
.yef{bottom:503.225067pt;}
.y21c{bottom:508.001467pt;}
.y1ad{bottom:508.075600pt;}
.y238{bottom:508.272933pt;}
.y8d{bottom:508.558400pt;}
.y5d{bottom:510.589333pt;}
.ya7{bottom:512.253600pt;}
.y16f{bottom:512.860667pt;}
.y11a{bottom:513.891733pt;}
.yb2{bottom:513.933733pt;}
.y136{bottom:514.332800pt;}
.y236{bottom:515.532000pt;}
.y1ea{bottom:516.999333pt;}
.y1fb{bottom:517.325333pt;}
.yee{bottom:519.225067pt;}
.y2f{bottom:519.225200pt;}
.y19{bottom:521.744133pt;}
.y24d{bottom:522.967867pt;}
.y74{bottom:524.558400pt;}
.ya9{bottom:525.418800pt;}
.y235{bottom:525.564800pt;}
.y16d{bottom:527.007333pt;}
.y1ac{bottom:527.855200pt;}
.y1d4{bottom:528.632000pt;}
.y119{bottom:529.891733pt;}
.y1f8{bottom:531.471867pt;}
.y233{bottom:532.828000pt;}
.y18{bottom:532.944133pt;}
.y1e9{bottom:532.999333pt;}
.yed{bottom:535.225067pt;}
.y2e{bottom:535.225200pt;}
.y73{bottom:540.558400pt;}
.yb1{bottom:540.600400pt;}
.y171{bottom:540.990933pt;}
.y135{bottom:540.999467pt;}
.y231{bottom:541.661333pt;}
.y1fd{bottom:545.455600pt;}
.y118{bottom:545.891733pt;}
.y25d{bottom:546.049200pt;}
.y24c{bottom:546.584533pt;}
.y1e8{bottom:548.999333pt;}
.y22f{bottom:550.453333pt;}
.yec{bottom:551.225067pt;}
.y2d{bottom:551.225200pt;}
.y1ab{bottom:551.414133pt;}
.y16{bottom:552.849867pt;}
.y1d3{bottom:555.298667pt;}
.y8c{bottom:556.558400pt;}
.yb0{bottom:556.600400pt;}
.y134{bottom:556.999467pt;}
.y22c{bottom:559.288000pt;}
.y117{bottom:561.891733pt;}
.y206{bottom:561.891867pt;}
.y172{bottom:563.049333pt;}
.y1e7{bottom:564.999333pt;}
.y18e{bottom:566.390447pt;}
.y72{bottom:567.225067pt;}
.y2c{bottom:567.225200pt;}
.y1aa{bottom:567.414133pt;}
.y8b{bottom:572.558400pt;}
.yaf{bottom:572.600400pt;}
.y133{bottom:572.999467pt;}
.y18d{bottom:575.178646pt;}
.yeb{bottom:577.891733pt;}
.y205{bottom:577.891867pt;}
.y1d2{bottom:581.965333pt;}
.y71{bottom:583.225067pt;}
.y2b{bottom:583.225200pt;}
.y18c{bottom:583.979952pt;}
.y24a{bottom:584.388667pt;}
.y8a{bottom:588.558400pt;}
.yae{bottom:588.600400pt;}
.y132{bottom:588.999467pt;}
.y1e6{bottom:591.666000pt;}
.y18b{bottom:592.768151pt;}
.y116{bottom:593.891733pt;}
.y1a9{bottom:594.080800pt;}
.y248{bottom:596.852400pt;}
.y1d1{bottom:597.965333pt;}
.y70{bottom:599.225067pt;}
.y18a{bottom:601.517029pt;}
.yea{bottom:604.558400pt;}
.yad{bottom:604.600400pt;}
.y131{bottom:604.999467pt;}
.y1e5{bottom:607.666000pt;}
.y115{bottom:609.891733pt;}
.y2a{bottom:609.891867pt;}
.y1a8{bottom:610.080800pt;}
.y189{bottom:610.305228pt;}
.y24b{bottom:610.836133pt;}
.y187{bottom:611.645290pt;}
.y89{bottom:615.225067pt;}
.y188{bottom:619.106533pt;}
.y186{bottom:620.433489pt;}
.ye9{bottom:620.558400pt;}
.yac{bottom:620.600400pt;}
.y1b{bottom:620.818000pt;}
.y1d0{bottom:624.632000pt;}
.y6f{bottom:625.891733pt;}
.y29{bottom:625.891867pt;}
.y1a7{bottom:626.080800pt;}
.y185{bottom:629.228241pt;}
.y88{bottom:631.225067pt;}
.y204{bottom:631.225200pt;}
.y130{bottom:631.666133pt;}
.ye8{bottom:636.558400pt;}
.yab{bottom:636.600400pt;}
.y184{bottom:638.016440pt;}
.y1cf{bottom:640.632000pt;}
.y6e{bottom:641.891733pt;}
.y28{bottom:641.891867pt;}
.y183{bottom:646.804639pt;}
.y87{bottom:647.225067pt;}
.y203{bottom:647.225200pt;}
.y12f{bottom:647.666133pt;}
.ye7{bottom:652.558400pt;}
.yaa{bottom:652.600400pt;}
.y1a6{bottom:652.747467pt;}
.y1a{bottom:654.418000pt;}
.y182{bottom:655.553517pt;}
.y151{bottom:656.568933pt;}
.y194{bottom:657.891733pt;}
.y86{bottom:663.225067pt;}
.y202{bottom:663.225200pt;}
.y181{bottom:664.348269pt;}
.y6d{bottom:668.558400pt;}
.y27{bottom:668.558533pt;}
.y14e{bottom:670.175200pt;}
.y1ce{bottom:671.681067pt;}
.y180{bottom:673.136468pt;}
.y193{bottom:673.891733pt;}
.y12e{bottom:674.332800pt;}
.y1cc{bottom:678.105333pt;}
.y85{bottom:679.225067pt;}
.y1a5{bottom:679.414133pt;}
.yde{bottom:680.546667pt;}
.ye5{bottom:681.152400pt;}
.y1ca{bottom:681.564000pt;}
.y17f{bottom:681.924667pt;}
.ydc{bottom:683.704000pt;}
.y154{bottom:684.158933pt;}
.y6c{bottom:684.558400pt;}
.y26{bottom:684.558533pt;}
.y244{bottom:686.908000pt;}
.y192{bottom:689.891733pt;}
.y201{bottom:689.891867pt;}
.ye4{bottom:690.752400pt;}
.y17c{bottom:690.868120pt;}
.y247{bottom:695.170933pt;}
.y84{bottom:695.225067pt;}
.y1c8{bottom:695.397333pt;}
.y1a4{bottom:695.414267pt;}
.yda{bottom:695.713333pt;}
.y17b{bottom:698.869903pt;}
.y6b{bottom:700.558400pt;}
.ye3{bottom:704.058800pt;}
.y191{bottom:705.891733pt;}
.y17a{bottom:706.838918pt;}
.yd8{bottom:707.721333pt;}
.y1c6{bottom:709.297333pt;}
.y242{bottom:710.393333pt;}
.y83{bottom:711.225067pt;}
.y25{bottom:711.225200pt;}
.y1a3{bottom:711.414267pt;}
.y179{bottom:714.847255pt;}
.y114{bottom:716.558400pt;}
.y200{bottom:716.558533pt;}
.ye2{bottom:716.858667pt;}
.yd5{bottom:719.732000pt;}
.y190{bottom:721.891733pt;}
.y23f{bottom:722.010667pt;}
.y178{bottom:722.816270pt;}
.y1c4{bottom:723.132000pt;}
.y6a{bottom:727.225067pt;}
.y24{bottom:727.225200pt;}
.yd7{bottom:727.411600pt;}
.y1a2{bottom:727.414267pt;}
.ye1{bottom:729.658800pt;}
.y177{bottom:730.818053pt;}
.y113{bottom:732.558400pt;}
.yd4{bottom:733.139333pt;}
.y1c2{bottom:737.032000pt;}
.y82{bottom:737.891733pt;}
.y176{bottom:738.787068pt;}
.ye0{bottom:742.458800pt;}
.yd2{bottom:743.054667pt;}
.y69{bottom:743.225067pt;}
.y23{bottom:743.225200pt;}
.y17e{bottom:745.775067pt;}
.y175{bottom:746.795405pt;}
.y81{bottom:753.891733pt;}
.y1a1{bottom:754.080933pt;}
.y17d{bottom:754.751313pt;}
.y174{bottom:754.757867pt;}
.ycc{bottom:755.062667pt;}
.ye6{bottom:756.442400pt;}
.y68{bottom:759.225067pt;}
.y22{bottom:759.225200pt;}
.y219{bottom:765.791600pt;}
.y1c1{bottom:766.301200pt;}
.yd0{bottom:768.460267pt;}
.y80{bottom:769.891733pt;}
.y1a0{bottom:770.080933pt;}
.y67{bottom:775.225067pt;}
.y21{bottom:775.225200pt;}
.y16e{bottom:776.973467pt;}
.y215{bottom:778.320133pt;}
.y249{bottom:778.656400pt;}
.ycf{bottom:779.915867pt;}
.y1c0{bottom:782.301200pt;}
.y7f{bottom:785.891733pt;}
.y1ff{bottom:785.891867pt;}
.y19f{bottom:786.080933pt;}
.y16c{bottom:791.120133pt;}
.yce{bottom:791.225733pt;}
.y66{bottom:801.891733pt;}
.y20{bottom:801.891867pt;}
.y1bf{bottom:802.080667pt;}
.y19e{bottom:802.080933pt;}
.y170{bottom:805.103733pt;}
.y1d{bottom:857.898533pt;}
.h34{height:8.460000pt;}
.h33{height:8.461333pt;}
.h39{height:11.217333pt;}
.h1b{height:11.310667pt;}
.h18{height:11.450667pt;}
.h1c{height:11.452000pt;}
.h2c{height:13.312000pt;}
.h2a{height:13.313333pt;}
.h20{height:14.002667pt;}
.h36{height:16.921333pt;}
.h35{height:16.961333pt;}
.h31{height:17.252000pt;}
.h3e{height:17.964508pt;}
.h38{height:18.465535pt;}
.h1a{height:22.762667pt;}
.h3c{height:23.084000pt;}
.h28{height:23.749763pt;}
.h29{height:23.775977pt;}
.h3b{height:25.093974pt;}
.h32{height:25.100790pt;}
.h3f{height:25.497196pt;}
.h3a{height:25.595138pt;}
.h23{height:28.006667pt;}
.h21{height:28.008000pt;}
.h22{height:28.076000pt;}
.h15{height:28.170543pt;}
.h10{height:28.992000pt;}
.h2e{height:29.053883pt;}
.h17{height:30.015331pt;}
.h11{height:30.202667pt;}
.h26{height:30.562492pt;}
.h1e{height:30.901254pt;}
.h7{height:33.824000pt;}
.h19{height:33.907594pt;}
.h4{height:34.218667pt;}
.hf{height:34.602667pt;}
.hc{height:35.506767pt;}
.h12{height:38.293117pt;}
.ha{height:38.395833pt;}
.he{height:38.496000pt;}
.h6{height:38.656000pt;}
.h9{height:38.832000pt;}
.h2b{height:39.493869pt;}
.h3d{height:40.223783pt;}
.h40{height:40.634667pt;}
.h1f{height:41.544570pt;}
.hb{height:41.666667pt;}
.h5{height:41.777600pt;}
.h24{height:42.010667pt;}
.hd{height:42.773333pt;}
.h2f{height:43.146667pt;}
.h30{height:43.253333pt;}
.h3{height:43.488000pt;}
.h2{height:48.320000pt;}
.h16{height:56.836000pt;}
.h13{height:64.286789pt;}
.h14{height:69.921333pt;}
.h2d{height:72.761333pt;}
.h8{height:89.824000pt;}
.h37{height:90.713333pt;}
.h1d{height:132.052000pt;}
.h27{height:207.546667pt;}
.h25{height:213.002667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.w4{width:32.398667pt;}
.w6{width:32.677333pt;}
.w5{width:32.678667pt;}
.w8{width:32.816000pt;}
.w7{width:32.817333pt;}
.w9{width:32.818667pt;}
.w19{width:41.154667pt;}
.w13{width:55.248000pt;}
.w16{width:57.046667pt;}
.w15{width:59.137333pt;}
.w17{width:59.305333pt;}
.w14{width:59.808000pt;}
.w3{width:87.700000pt;}
.w1a{width:89.077333pt;}
.w10{width:92.718667pt;}
.w11{width:92.720000pt;}
.wb{width:95.042667pt;}
.wf{width:116.080000pt;}
.w1b{width:130.638667pt;}
.we{width:281.953333pt;}
.w18{width:293.990667pt;}
.wc{width:387.506667pt;}
.w2{width:449.669333pt;}
.w12{width:463.568000pt;}
.wd{width:486.810667pt;}
.wa{width:488.488000pt;}
.w1{width:718.000000pt;}
.w0{width:718.110667pt;}
.x3c{left:-6.294000pt;}
.x1a{left:-3.263600pt;}
.x0{left:0.000000pt;}
.x5f{left:1.505200pt;}
.x7f{left:4.474400pt;}
.x2a{left:6.008533pt;}
.x38{left:7.126800pt;}
.x3a{left:8.945200pt;}
.xe{left:11.716533pt;}
.x23{left:12.712533pt;}
.x7a{left:13.968800pt;}
.x7b{left:16.058133pt;}
.x76{left:17.609867pt;}
.x5b{left:18.520000pt;}
.x40{left:20.025467pt;}
.x37{left:21.095067pt;}
.x5c{left:22.000000pt;}
.x3f{left:23.753467pt;}
.x72{left:25.236533pt;}
.x26{left:28.350267pt;}
.x28{left:30.032133pt;}
.x39{left:31.705067pt;}
.x3b{left:37.005467pt;}
.x70{left:37.901467pt;}
.x1f{left:39.181867pt;}
.x6f{left:40.339867pt;}
.x6b{left:41.979733pt;}
.x3e{left:44.733600pt;}
.x1d{left:48.645867pt;}
.x6e{left:53.698800pt;}
.xd{left:57.826667pt;}
.x53{left:59.606000pt;}
.x3d{left:61.608133pt;}
.x82{left:62.874533pt;}
.xc{left:68.596533pt;}
.x13{left:75.968533pt;}
.x69{left:77.142667pt;}
.x45{left:78.608000pt;}
.x84{left:83.015333pt;}
.x48{left:84.560000pt;}
.x41{left:86.111467pt;}
.x66{left:89.324133pt;}
.x2{left:94.488133pt;}
.x75{left:102.466933pt;}
.x65{left:105.916267pt;}
.x59{left:107.276933pt;}
.x1e{left:109.668267pt;}
.x5d{left:112.184670pt;}
.x14{left:113.390533pt;}
.xa{left:119.055067pt;}
.xb{left:128.521200pt;}
.x16{left:133.693200pt;}
.x17{left:138.152133pt;}
.x19{left:141.334933pt;}
.x5{left:149.546133pt;}
.xf{left:151.181067pt;}
.x20{left:161.763467pt;}
.x36{left:163.198000pt;}
.x21{left:166.144000pt;}
.x25{left:169.198400pt;}
.x47{left:170.907467pt;}
.x24{left:173.107867pt;}
.x46{left:174.272000pt;}
.x49{left:180.153867pt;}
.x58{left:181.232933pt;}
.x6{left:183.716133pt;}
.x7{left:185.294800pt;}
.x4{left:187.303867pt;}
.x10{left:188.981067pt;}
.x6a{left:193.816000pt;}
.x83{left:204.867733pt;}
.x1c{left:207.798400pt;}
.x5e{left:208.786267pt;}
.x81{left:215.418667pt;}
.x73{left:231.737333pt;}
.x29{left:239.996000pt;}
.x1b{left:245.598400pt;}
.x27{left:247.122933pt;}
.x67{left:250.805467pt;}
.x44{left:252.562133pt;}
.x5a{left:268.758267pt;}
.x2b{left:272.953333pt;}
.x6c{left:287.061333pt;}
.x63{left:300.472400pt;}
.x2c{left:306.329333pt;}
.x56{left:319.370133pt;}
.x62{left:338.267733pt;}
.x2d{left:339.565333pt;}
.x4b{left:346.249467pt;}
.x1{left:349.522933pt;}
.x3{left:351.736267pt;}
.x55{left:357.170133pt;}
.x11{left:367.336533pt;}
.x18{left:371.894417pt;}
.x2e{left:372.941333pt;}
.x64{left:376.062933pt;}
.x22{left:379.419867pt;}
.x6d{left:380.372000pt;}
.x80{left:394.014667pt;}
.x57{left:394.960667pt;}
.x61{left:397.984267pt;}
.x7e{left:399.846800pt;}
.x2f{left:406.317333pt;}
.x7c{left:412.434933pt;}
.x54{left:414.724133pt;}
.x8{left:421.100533pt;}
.x74{left:436.515333pt;}
.x30{left:439.693333pt;}
.x71{left:443.187867pt;}
.x77{left:451.288000pt;}
.x9{left:459.437067pt;}
.x31{left:472.929333pt;}
.x43{left:504.463867pt;}
.x32{left:506.305333pt;}
.x78{left:511.430667pt;}
.x42{left:518.183200pt;}
.x7d{left:529.244000pt;}
.x15{left:532.913467pt;}
.x33{left:539.681333pt;}
.x50{left:569.296133pt;}
.x79{left:570.901333pt;}
.x4d{left:571.974267pt;}
.x34{left:573.056000pt;}
.x4f{left:575.456133pt;}
.x4a{left:576.845200pt;}
.x4e{left:578.768533pt;}
.x4c{left:590.960400pt;}
.x35{left:606.293333pt;}
.x51{left:628.599467pt;}
.x12{left:642.042000pt;}
.x68{left:643.821200pt;}
.x60{left:645.644133pt;}
.x52{left:664.619200pt;}
}




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