
    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_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.893000;font-style:normal;font-weight: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_50a451c425a8ba2e20c64a2b.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.904000;font-style:normal;font-weight: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_e9497536b15dee7cc751b0e7.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_431522fef2997b82e52ee25f.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.918000;font-style:normal;font-weight: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_b35c2af49a71ade1a607f883.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.918000;font-style:normal;font-weight: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_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893000;font-style:normal;font-weight: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_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.893000;font-style:normal;font-weight: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_e9497536b15dee7cc751b0e7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.893000;font-style:normal;font-weight: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_9e88af498da5b964e5fd4508.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.918000;font-style:normal;font-weight: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_aa30bc9248edd95356c01e23.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.893000;font-style:normal;font-weight: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_e1c79851d1d38ea060fce6c6.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_e9497536b15dee7cc751b0e7.woff2')format("woff");}.fff{font-family:fff;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_8548be4fb052d0bbc8e85931.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.918000;font-style:normal;font-weight: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_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.893000;font-style:normal;font-weight: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_e9497536b15dee7cc751b0e7.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893000;font-style:normal;font-weight: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_9e88af498da5b964e5fd4508.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.918000;font-style:normal;font-weight: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_e9497536b15dee7cc751b0e7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_8548be4fb052d0bbc8e85931.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.918000;font-style:normal;font-weight: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_e605bccde4adf04abaeb1111.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.893000;font-style:normal;font-weight: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_1d099a28f2513731da7b0535.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.934000;font-style:normal;font-weight: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_1d099a28f2513731da7b0535.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.934000;font-style:normal;font-weight: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_1d099a28f2513731da7b0535.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.934000;font-style:normal;font-weight: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_1d099a28f2513731da7b0535.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.934000;font-style:normal;font-weight: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_1d099a28f2513731da7b0535.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.934000;font-style:normal;font-weight: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_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.893000;font-style:normal;font-weight: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_8548be4fb052d0bbc8e85931.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.918000;font-style:normal;font-weight: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_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_e9497536b15dee7cc751b0e7.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_8548be4fb052d0bbc8e85931.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.918000;font-style:normal;font-weight: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_e1c79851d1d38ea060fce6c6.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.893000;font-style:normal;font-weight: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_a94868554baa29d91de62b9a.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.893000;font-style:normal;font-weight: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_9e88af498da5b964e5fd4508.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.918000;font-style:normal;font-weight: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_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_8548be4fb052d0bbc8e85931.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.918000;font-style:normal;font-weight: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_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.893000;font-style:normal;font-weight: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_e9497536b15dee7cc751b0e7.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.893000;font-style:normal;font-weight: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_9e88af498da5b964e5fd4508.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.918000;font-style:normal;font-weight: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_e1c79851d1d38ea060fce6c6.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_8d105c166ba86d98ca70b79e.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.960000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_9e88af498da5b964e5fd4508.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.918000;font-style:normal;font-weight: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_26b6e03f5ccde1456ccc8a50.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_aa30bc9248edd95356c01e23.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.893000;font-style:normal;font-weight: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_ce87af577e4ee97aa5a0976d.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m5{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);}
.m4{transform:matrix(0.000000,-0.250142,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250142,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250142,0.250000,0.000000,0,0);}
.m2{transform:matrix(0.000000,-0.250145,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250145,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250145,0.250000,0.000000,0,0);}
.m6{transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-ms-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);-webkit-transform:matrix(0.244537,0.000000,-0.051978,0.244537,0,0);}
.m3{transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249853,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249855,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249855,0.000000,0.000000,0.250000,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);}
.v3{vertical-align:-20.988000px;}
.v4{vertical-align:-16.830000px;}
.v0{vertical-align:0.000000px;}
.v5{vertical-align:12.707280px;}
.v1{vertical-align:16.837200px;}
.v2{vertical-align:20.983200px;}
.v7{vertical-align:30.024000px;}
.v6{vertical-align:33.695280px;}
.v8{vertical-align:47.814600px;}
.lsa{letter-spacing:-5.400000px;}
.lsb{letter-spacing:-5.088000px;}
.ls9{letter-spacing:-4.968000px;}
.ls2{letter-spacing:-3.744000px;}
.ls4{letter-spacing:-0.540000px;}
.ls8{letter-spacing:-0.102724px;}
.ls1{letter-spacing:0.000000px;}
.lsd{letter-spacing:0.000120px;}
.ls10{letter-spacing:1.272000px;}
.lsc{letter-spacing:4.679400px;}
.ls0{letter-spacing:22.582800px;}
.ls3{letter-spacing:38.250000px;}
.ls6{letter-spacing:90.226380px;}
.ls7{letter-spacing:91.458779px;}
.ls5{letter-spacing:138.540704px;}
.lsf{letter-spacing:272.100000px;}
.lse{letter-spacing:1226.077200px;}
.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;}
}
.ws6f{word-spacing:-148.059814px;}
.ws8e{word-spacing:-102.000000px;}
.ws75{word-spacing:-100.977889px;}
.ws72{word-spacing:-99.617220px;}
.ws8c{word-spacing:-19.500000px;}
.wsd4{word-spacing:-18.000000px;}
.ws1a{word-spacing:-15.900000px;}
.ws2{word-spacing:-14.400000px;}
.wsa8{word-spacing:-13.500000px;}
.ws0{word-spacing:-12.750000px;}
.ws59{word-spacing:-11.250000px;}
.ws3{word-spacing:-10.656000px;}
.ws8f{word-spacing:-10.500000px;}
.ws1{word-spacing:-9.562500px;}
.ws55{word-spacing:-9.540000px;}
.ws8d{word-spacing:-9.000000px;}
.ws7a{word-spacing:-8.532000px;}
.wsac{word-spacing:-8.100000px;}
.ws4a{word-spacing:-7.937280px;}
.wsa6{word-spacing:-3.116400px;}
.ws25{word-spacing:-2.989200px;}
.ws39{word-spacing:-2.734800px;}
.wsc5{word-spacing:-2.679000px;}
.ws6b{word-spacing:-2.671200px;}
.wsbc{word-spacing:-2.607600px;}
.ws4c{word-spacing:-2.544000px;}
.wsb9{word-spacing:-2.480400px;}
.ws4f{word-spacing:-2.353200px;}
.ws2d{word-spacing:-2.289600px;}
.ws3a{word-spacing:-2.226000px;}
.wsc1{word-spacing:-2.166000px;}
.wsba{word-spacing:-2.035200px;}
.ws21{word-spacing:-1.971600px;}
.ws1b{word-spacing:-1.958400px;}
.ws2f{word-spacing:-1.844400px;}
.ws36{word-spacing:-1.780800px;}
.ws14{word-spacing:-1.728000px;}
.ws1d{word-spacing:-1.653600px;}
.wsce{word-spacing:-1.482000px;}
.ws30{word-spacing:-1.462800px;}
.wsa2{word-spacing:-1.399200px;}
.ws62{word-spacing:-1.377000px;}
.wsa5{word-spacing:-1.335600px;}
.ws53{word-spacing:-1.326000px;}
.ws35{word-spacing:-1.208400px;}
.wscf{word-spacing:-1.197000px;}
.wsa7{word-spacing:-1.145160px;}
.wsb8{word-spacing:-1.144800px;}
.wsc9{word-spacing:-1.083000px;}
.ws90{word-spacing:-1.081200px;}
.ws98{word-spacing:-1.017600px;}
.ws7f{word-spacing:-0.954000px;}
.ws68{word-spacing:-0.890400px;}
.ws69{word-spacing:-0.826800px;}
.ws24{word-spacing:-0.763200px;}
.ws10{word-spacing:-0.748800px;}
.ws43{word-spacing:-0.699600px;}
.ws9f{word-spacing:-0.636000px;}
.ws67{word-spacing:-0.572400px;}
.wsd{word-spacing:-0.518400px;}
.wsca{word-spacing:-0.513000px;}
.ws5b{word-spacing:-0.508800px;}
.wsbf{word-spacing:-0.445200px;}
.wsb6{word-spacing:-0.318000px;}
.ws11{word-spacing:-0.288000px;}
.ws63{word-spacing:-0.153000px;}
.ws3b{word-spacing:-0.127200px;}
.wsc0{word-spacing:-0.114000px;}
.ws4{word-spacing:0.000000px;}
.ws78{word-spacing:0.102724px;}
.wsd0{word-spacing:0.114000px;}
.ws99{word-spacing:0.127200px;}
.ws16{word-spacing:0.153000px;}
.ws5f{word-spacing:0.254400px;}
.wsa3{word-spacing:0.318000px;}
.wsc3{word-spacing:0.399000px;}
.wsb0{word-spacing:0.495000px;}
.ws66{word-spacing:0.508800px;}
.ws95{word-spacing:0.572400px;}
.wse{word-spacing:0.576000px;}
.wsd3{word-spacing:0.627000px;}
.ws6a{word-spacing:0.636000px;}
.wsc{word-spacing:0.691200px;}
.ws41{word-spacing:0.699600px;}
.ws47{word-spacing:0.763200px;}
.ws32{word-spacing:0.826800px;}
.ws4b{word-spacing:0.890400px;}
.ws6e{word-spacing:0.954000px;}
.ws1e{word-spacing:1.081200px;}
.wscd{word-spacing:1.083000px;}
.ws48{word-spacing:1.144800px;}
.wsb4{word-spacing:1.208400px;}
.ws81{word-spacing:1.272000px;}
.ws6{word-spacing:1.324800px;}
.wscc{word-spacing:1.368000px;}
.ws94{word-spacing:1.399200px;}
.wsb2{word-spacing:1.462800px;}
.ws9d{word-spacing:1.526400px;}
.ws2b{word-spacing:1.590000px;}
.ws7e{word-spacing:1.653600px;}
.ws92{word-spacing:1.717200px;}
.ws44{word-spacing:1.780800px;}
.ws18{word-spacing:1.836000px;}
.ws3c{word-spacing:1.844400px;}
.wsc4{word-spacing:1.881000px;}
.ws49{word-spacing:2.035200px;}
.ws65{word-spacing:2.098800px;}
.ws37{word-spacing:2.162400px;}
.ws52{word-spacing:2.193000px;}
.ws3d{word-spacing:2.226000px;}
.ws5{word-spacing:2.352000px;}
.ws46{word-spacing:2.353200px;}
.ws51{word-spacing:2.397000px;}
.ws23{word-spacing:2.416800px;}
.wsa{word-spacing:2.419200px;}
.ws40{word-spacing:2.480400px;}
.wsb{word-spacing:2.534400px;}
.ws38{word-spacing:2.544000px;}
.ws97{word-spacing:2.607600px;}
.ws5d{word-spacing:2.671200px;}
.ws83{word-spacing:2.734800px;}
.wsd1{word-spacing:2.736000px;}
.ws15{word-spacing:2.764800px;}
.ws29{word-spacing:2.798400px;}
.wsa1{word-spacing:2.862000px;}
.ws60{word-spacing:2.925600px;}
.ws7{word-spacing:2.937600px;}
.ws5c{word-spacing:3.052800px;}
.ws9a{word-spacing:3.116400px;}
.ws26{word-spacing:3.498000px;}
.wsd2{word-spacing:3.534000px;}
.wsa0{word-spacing:3.625200px;}
.ws87{word-spacing:3.672000px;}
.ws84{word-spacing:3.688800px;}
.ws88{word-spacing:3.723000px;}
.ws9c{word-spacing:3.752400px;}
.wscb{word-spacing:3.762000px;}
.ws33{word-spacing:3.816000px;}
.ws19{word-spacing:3.825000px;}
.wsaf{word-spacing:3.879600px;}
.ws50{word-spacing:3.978000px;}
.ws82{word-spacing:4.006800px;}
.wsb1{word-spacing:4.070400px;}
.ws22{word-spacing:4.261200px;}
.ws2c{word-spacing:4.324800px;}
.ws54{word-spacing:4.335000px;}
.ws86{word-spacing:4.388400px;}
.ws28{word-spacing:4.452000px;}
.ws3e{word-spacing:4.515600px;}
.ws3f{word-spacing:4.579200px;}
.ws9e{word-spacing:4.642800px;}
.wsc8{word-spacing:4.674000px;}
.ws12{word-spacing:4.838400px;}
.ws61{word-spacing:4.896000px;}
.ws6d{word-spacing:4.897200px;}
.ws6c{word-spacing:4.960800px;}
.wsb7{word-spacing:5.024400px;}
.wsa4{word-spacing:5.151600px;}
.ws5e{word-spacing:5.278800px;}
.wsae{word-spacing:5.342400px;}
.ws13{word-spacing:5.356800px;}
.wsc7{word-spacing:5.415000px;}
.wsf{word-spacing:5.472000px;}
.ws5a{word-spacing:5.533200px;}
.ws17{word-spacing:5.559000px;}
.ws4e{word-spacing:5.596800px;}
.ws2a{word-spacing:5.660400px;}
.ws2e{word-spacing:5.724000px;}
.ws91{word-spacing:5.787600px;}
.ws85{word-spacing:5.851200px;}
.ws8{word-spacing:6.105600px;}
.ws64{word-spacing:6.169200px;}
.ws42{word-spacing:6.232800px;}
.ws9{word-spacing:6.336000px;}
.ws45{word-spacing:6.487200px;}
.wsc2{word-spacing:6.498000px;}
.ws20{word-spacing:6.550800px;}
.ws31{word-spacing:6.805200px;}
.wsc6{word-spacing:7.239000px;}
.wsad{word-spacing:7.377600px;}
.wsbe{word-spacing:7.632000px;}
.ws9b{word-spacing:7.695600px;}
.wsb5{word-spacing:7.822800px;}
.wsbb{word-spacing:7.950000px;}
.ws27{word-spacing:8.077200px;}
.ws4d{word-spacing:8.268000px;}
.ws80{word-spacing:8.331600px;}
.ws34{word-spacing:8.458800px;}
.wsbd{word-spacing:8.522400px;}
.ws1f{word-spacing:8.586000px;}
.ws93{word-spacing:8.776800px;}
.wsb3{word-spacing:8.967600px;}
.ws7d{word-spacing:15.073200px;}
.ws1c{word-spacing:51.984000px;}
.ws70{word-spacing:81.939670px;}
.ws71{word-spacing:94.550220px;}
.ws74{word-spacing:95.841679px;}
.wsa9{word-spacing:141.906600px;}
.ws57{word-spacing:156.810600px;}
.wsaa{word-spacing:221.502600px;}
.ws58{word-spacing:235.764000px;}
.wsab{word-spacing:283.338000px;}
.ws7b{word-spacing:356.076000px;}
.ws8a{word-spacing:370.548000px;}
.ws56{word-spacing:412.387200px;}
.ws7c{word-spacing:442.314000px;}
.ws8b{word-spacing:443.340000px;}
.ws79{word-spacing:505.548000px;}
.ws89{word-spacing:506.520000px;}
.ws73{word-spacing:891.756000px;}
.ws76{word-spacing:915.516000px;}
.ws77{word-spacing:954.504000px;}
.ws96{word-spacing:1217.832000px;}
._2d{margin-left:-138.540704px;}
._32{margin-left:-91.458779px;}
._30{margin-left:-90.226380px;}
._3f{margin-left:-18.192000px;}
._3{margin-left:-7.950000px;}
._6{margin-left:-6.173730px;}
._c{margin-left:-5.075280px;}
._1{margin-left:-4.074900px;}
._2{margin-left:-3.045750px;}
._0{margin-left:-2.029800px;}
._7{margin-left:-1.004700px;}
._e{width:1.346280px;}
._4{width:2.885760px;}
._5{width:4.037760px;}
._34{width:5.400000px;}
._3e{width:12.369000px;}
._2a{width:21.269400px;}
._a{width:22.950000px;}
._8{width:38.994600px;}
._b{width:43.320000px;}
._d{width:48.022530px;}
._9{width:51.984000px;}
._2e{width:105.360788px;}
._10{width:110.538000px;}
._39{width:113.346000px;}
._2f{width:136.673880px;}
._31{width:138.540704px;}
._3b{width:141.318000px;}
._37{width:148.986000px;}
._38{width:153.090000px;}
._f{width:159.575400px;}
._1e{width:161.514000px;}
._3c{width:168.318000px;}
._28{width:175.014000px;}
._20{width:181.764000px;}
._1a{width:188.514000px;}
._3a{width:191.160000px;}
._1f{width:195.264000px;}
._22{width:202.014000px;}
._1c{width:208.764000px;}
._36{width:211.410000px;}
._25{width:215.514000px;}
._1b{width:222.264000px;}
._18{width:235.764000px;}
._12{width:242.514000px;}
._35{width:247.380600px;}
._23{width:249.264000px;}
._13{width:262.764000px;}
._14{width:269.514000px;}
._3d{width:278.738700px;}
._16{width:283.014000px;}
._27{width:375.678000px;}
._1d{width:384.696000px;}
._19{width:438.696000px;}
._33{width:451.332000px;}
._11{width:462.834000px;}
._29{width:527.148000px;}
._26{width:566.190000px;}
._2b{width:569.775750px;}
._17{width:572.292000px;}
._21{width:579.690000px;}
._24{width:593.190000px;}
._2c{width:634.740900px;}
._15{width:836.190000px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(35,31,32);}
.fs5{font-size:30.600000px;}
.fs14{font-size:32.400000px;}
.fse{font-size:33.760200px;}
.fsd{font-size:33.780000px;}
.fsc{font-size:34.221600px;}
.fsb{font-size:34.241400px;}
.fs11{font-size:36.000000px;}
.fs7{font-size:38.160000px;}
.fs1{font-size:38.250000px;}
.fs13{font-size:42.000000px;}
.fsa{font-size:45.000000px;}
.fs0{font-size:51.000000px;}
.fs9{font-size:54.000000px;}
.fs15{font-size:57.000000px;}
.fs4{font-size:57.600000px;}
.fs8{font-size:60.000000px;}
.fs3{font-size:63.600000px;}
.fs10{font-size:65.020862px;}
.fs6{font-size:72.000000px;}
.fsf{font-size:78.000000px;}
.fs2{font-size:84.000000px;}
.fs12{font-size:102.000000px;}
.y0{bottom:0.000000px;}
.yb2{bottom:4.116450px;}
.ye2{bottom:4.117050px;}
.yd2{bottom:4.117350px;}
.yc6{bottom:4.117650px;}
.yb5{bottom:18.973200px;}
.ye5{bottom:18.973650px;}
.yd5{bottom:18.973950px;}
.yc9{bottom:18.974250px;}
.ybd{bottom:20.846250px;}
.y26{bottom:66.552150px;}
.y1b{bottom:66.564900px;}
.yb3{bottom:69.622350px;}
.ye3{bottom:69.744300px;}
.yd3{bottom:69.744450px;}
.yc7{bottom:69.744750px;}
.ybb{bottom:70.932300px;}
.y76{bottom:102.029250px;}
.y97{bottom:102.033600px;}
.y10c{bottom:102.038250px;}
.y1c{bottom:102.048150px;}
.y4d{bottom:102.882150px;}
.y1a5{bottom:102.897600px;}
.y130{bottom:103.356750px;}
.y15a{bottom:103.685700px;}
.y17d{bottom:104.589900px;}
.yed{bottom:106.784250px;}
.y75{bottom:116.283750px;}
.y96{bottom:116.288100px;}
.y10b{bottom:116.292750px;}
.y12f{bottom:118.178730px;}
.y1a4{bottom:118.729350px;}
.y4c{bottom:120.880950px;}
.y12e{bottom:121.355550px;}
.y159{bottom:121.704750px;}
.y17c{bottom:122.588700px;}
.y25{bottom:125.493450px;}
.ye1{bottom:128.041500px;}
.y74{bottom:130.538250px;}
.y95{bottom:130.542600px;}
.y1a3{bottom:134.561100px;}
.y10a{bottom:134.754750px;}
.y4b{bottom:138.888300px;}
.y158{bottom:139.703550px;}
.y24{bottom:139.747950px;}
.y17b{bottom:140.600550px;}
.y73{bottom:144.792750px;}
.ye4{bottom:147.015150px;}
.y94{bottom:149.004600px;}
.y1a2{bottom:150.392850px;}
.ye6{bottom:150.460626px;}
.yd6{bottom:150.460926px;}
.yca{bottom:150.461226px;}
.ybe{bottom:150.561450px;}
.y23{bottom:154.002450px;}
.y12d{bottom:155.087850px;}
.y17a{bottom:158.599350px;}
.ye9{bottom:160.598016px;}
.y12c{bottom:162.159900px;}
.y4a{bottom:162.833700px;}
.y72{bottom:163.254750px;}
.y12b{bottom:165.339900px;}
.y1a1{bottom:166.224600px;}
.y157{bottom:166.288350px;}
.y109{bottom:167.715150px;}
.y22{bottom:168.256950px;}
.yec{bottom:172.305206px;}
.y71{bottom:173.292750px;}
.y179{bottom:176.598150px;}
.y49{bottom:180.837300px;}
.y1a0{bottom:182.056350px;}
.y21{bottom:182.511450px;}
.y93{bottom:183.058500px;}
.y156{bottom:184.287150px;}
.y108{bottom:185.713950px;}
.y12a{bottom:187.598100px;}
.y70{bottom:191.754750px;}
.y178{bottom:194.596950px;}
.y20{bottom:196.765950px;}
.y19f{bottom:197.888100px;}
.y48{bottom:198.836100px;}
.y129{bottom:199.411800px;}
.y127{bottom:199.414980px;}
.ye8{bottom:199.898583px;}
.y155{bottom:202.285950px;}
.y128{bottom:202.591800px;}
.y126{bottom:202.593600px;}
.y107{bottom:203.712750px;}
.yeb{bottom:207.702253px;}
.y92{bottom:209.402700px;}
.y1f{bottom:211.015950px;}
.y177{bottom:212.595750px;}
.y19e{bottom:213.719850px;}
.y47{bottom:216.834900px;}
.y154{bottom:220.284750px;}
.y106{bottom:221.711550px;}
.y1e{bottom:225.265950px;}
.y6f{bottom:226.303650px;}
.y19d{bottom:229.551600px;}
.y176{bottom:230.594550px;}
.y46{bottom:234.833700px;}
.y91{bottom:235.268700px;}
.y125{bottom:236.333400px;}
.y153{bottom:238.283550px;}
.ye7{bottom:239.199150px;}
.y1d{bottom:239.518650px;}
.y105{bottom:239.711550px;}
.yea{bottom:243.099300px;}
.y6e{bottom:244.301550px;}
.y19c{bottom:245.383350px;}
.y175{bottom:248.593350px;}
.y45{bottom:252.841050px;}
.y124{bottom:254.332200px;}
.y152{bottom:256.282350px;}
.y104{bottom:257.710350px;}
.y90{bottom:261.134700px;}
.y19b{bottom:261.215100px;}
.y6d{bottom:262.300350px;}
.y174{bottom:266.592150px;}
.y151{bottom:274.281150px;}
.y1a{bottom:276.334500px;}
.y44{bottom:276.786450px;}
.y19a{bottom:277.046850px;}
.y123{bottom:278.706900px;}
.y6c{bottom:285.832350px;}
.y8f{bottom:287.000700px;}
.y19{bottom:292.836900px;}
.y199{bottom:292.878600px;}
.y173{bottom:293.097450px;}
.ye0{bottom:294.353400px;}
.y43{bottom:294.801000px;}
.y103{bottom:294.844200px;}
.y122{bottom:296.705700px;}
.y150{bottom:300.865950px;}
.y6b{bottom:303.831150px;}
.y198{bottom:308.710350px;}
.y18{bottom:309.339300px;}
.y172{bottom:311.096250px;}
.y42{bottom:312.799800px;}
.y8e{bottom:312.866700px;}
.yd1{bottom:313.414500px;}
.y121{bottom:314.704500px;}
.y14f{bottom:318.864750px;}
.y6a{bottom:321.831150px;}
.y197{bottom:324.542100px;}
.y17{bottom:325.841700px;}
.yff{bottom:326.590200px;}
.y171{bottom:329.095050px;}
.y100{bottom:329.600700px;}
.y41{bottom:330.798600px;}
.yd4{bottom:332.388450px;}
.y120{bottom:332.703300px;}
.y14e{bottom:336.863550px;}
.y8d{bottom:338.732700px;}
.y69{bottom:339.829950px;}
.y196{bottom:340.373850px;}
.y102{bottom:341.594100px;}
.y16{bottom:342.336900px;}
.yda{bottom:346.283724px;}
.y170{bottom:347.093850px;}
.y40{bottom:348.797400px;}
.y11f{bottom:350.702100px;}
.y14d{bottom:354.873750px;}
.ydf{bottom:355.115203px;}
.y195{bottom:356.205600px;}
.y68{bottom:357.835950px;}
.y15{bottom:358.839300px;}
.y8c{bottom:364.598700px;}
.y16f{bottom:365.092650px;}
.y11e{bottom:368.707650px;}
.y194{bottom:372.037350px;}
.y3f{bottom:372.742800px;}
.y14c{bottom:372.872550px;}
.y14{bottom:375.341700px;}
.yd9{bottom:375.679966px;}
.y67{bottom:375.834750px;}
.yde{bottom:376.867052px;}
.y193{bottom:387.869100px;}
.y8b{bottom:390.464700px;}
.y3e{bottom:390.741600px;}
.y14b{bottom:390.871350px;}
.y11d{bottom:393.082350px;}
.y66{bottom:393.833550px;}
.ydd{bottom:398.618901px;}
.y192{bottom:403.700850px;}
.y16e{bottom:404.352450px;}
.yd8{bottom:405.076208px;}
.y3d{bottom:408.740400px;}
.y11c{bottom:411.081150px;}
.y101{bottom:411.645600px;}
.y65{bottom:411.832350px;}
.y13{bottom:413.101650px;}
.y8a{bottom:416.330700px;}
.y14a{bottom:417.456150px;}
.y191{bottom:419.532600px;}
.ydc{bottom:420.370751px;}
.y3c{bottom:426.739200px;}
.y11b{bottom:429.079950px;}
.y64{bottom:429.831150px;}
.yd7{bottom:434.472450px;}
.y149{bottom:435.454950px;}
.ydb{bottom:442.122600px;}
.y89{bottom:442.196700px;}
.y3b{bottom:444.741600px;}
.y11a{bottom:447.086850px;}
.y63{bottom:447.829950px;}
.y190{bottom:453.357600px;}
.y148{bottom:453.453750px;}
.yfe{bottom:460.348350px;}
.yae{bottom:460.854000px;}
.y3a{bottom:462.740400px;}
.y16d{bottom:466.360950px;}
.y88{bottom:468.062700px;}
.y147{bottom:471.452550px;}
.y119{bottom:471.461550px;}
.y12{bottom:471.485700px;}
.y16c{bottom:478.364700px;}
.yad{bottom:478.852800px;}
.yd0{bottom:479.726550px;}
.y39{bottom:480.739200px;}
.y62{bottom:481.137150px;}
.yfd{bottom:487.726350px;}
.y118{bottom:489.460350px;}
.y146{bottom:489.468150px;}
.y16b{bottom:490.368450px;}
.y87{bottom:494.671200px;}
.yac{bottom:496.851600px;}
.y38{bottom:498.751350px;}
.yc5{bottom:498.787500px;}
.y16a{bottom:502.372200px;}
.y117{bottom:507.459150px;}
.y145{bottom:507.466950px;}
.y11{bottom:507.485700px;}
.y18f{bottom:509.010450px;}
.yab{bottom:514.850400px;}
.yc8{bottom:517.761750px;}
.yfc{bottom:519.834150px;}
.y37{bottom:522.696750px;}
.y86{bottom:525.085050px;}
.y116{bottom:525.457950px;}
.y144{bottom:525.465750px;}
.y18e{bottom:527.009250px;}
.y169{bottom:528.732750px;}
.ycf{bottom:532.238473px;}
.yaa{bottom:532.875750px;}
.y61{bottom:534.658050px;}
.y36{bottom:540.695550px;}
.y143{bottom:543.464550px;}
.y10{bottom:543.485700px;}
.y168{bottom:543.731250px;}
.y18d{bottom:545.008050px;}
.ya9{bottom:550.874550px;}
.y60{bottom:552.656850px;}
.yce{bottom:555.642470px;}
.y115{bottom:558.339900px;}
.y35{bottom:558.694350px;}
.yf{bottom:559.988100px;}
.yfb{bottom:561.221850px;}
.y85{bottom:562.211550px;}
.y18c{bottom:563.006850px;}
.ya8{bottom:568.873350px;}
.y167{bottom:569.597250px;}
.y142{bottom:570.049350px;}
.y5f{bottom:570.655650px;}
.ye{bottom:576.490500px;}
.y34{bottom:576.693150px;}
.ycd{bottom:579.046467px;}
.yfa{bottom:579.220650px;}
.y84{bottom:580.210350px;}
.y18b{bottom:581.005650px;}
.y141{bottom:588.048150px;}
.y111{bottom:589.410900px;}
.y112{bottom:592.421400px;}
.yd{bottom:592.992900px;}
.ya7{bottom:593.248050px;}
.y5e{bottom:594.187650px;}
.y33{bottom:594.691950px;}
.y166{bottom:595.463250px;}
.yf9{bottom:597.219450px;}
.y83{bottom:598.209150px;}
.y18a{bottom:599.004450px;}
.ycc{bottom:602.441903px;}
.y114{bottom:604.752450px;}
.y140{bottom:606.046950px;}
.yc{bottom:609.495300px;}
.y1b8{bottom:609.554400px;}
.ya6{bottom:611.246850px;}
.y5d{bottom:612.186450px;}
.y32{bottom:612.699300px;}
.yf8{bottom:615.218250px;}
.y82{bottom:616.207950px;}
.y189{bottom:617.003250px;}
.y165{bottom:621.329250px;}
.y1b7{bottom:625.386150px;}
.ycb{bottom:625.845900px;}
.yb{bottom:625.992900px;}
.ya5{bottom:629.245650px;}
.y5c{bottom:630.185250px;}
.y13f{bottom:632.631750px;}
.yf7{bottom:633.217050px;}
.y81{bottom:634.211250px;}
.y31{bottom:636.644700px;}
.y1b6{bottom:641.217900px;}
.ya{bottom:642.495300px;}
.y188{bottom:643.079250px;}
.y164{bottom:647.195250px;}
.ya4{bottom:647.244450px;}
.y5b{bottom:648.184050px;}
.y13e{bottom:650.630550px;}
.yf6{bottom:651.215850px;}
.y30{bottom:654.649500px;}
.y1b5{bottom:657.049650px;}
.y80{bottom:658.585950px;}
.y9{bottom:658.990500px;}
.y187{bottom:661.078050px;}
.yc4{bottom:665.100000px;}
.ya3{bottom:665.243250px;}
.y5a{bottom:666.182850px;}
.y13d{bottom:668.638350px;}
.y2f{bottom:672.648300px;}
.y1b4{bottom:672.881400px;}
.y163{bottom:673.061250px;}
.y113{bottom:674.128950px;}
.y8{bottom:675.492900px;}
.y7f{bottom:676.587150px;}
.y186{bottom:679.080450px;}
.yba{bottom:684.160500px;}
.y59{bottom:684.181650px;}
.yb1{bottom:684.340500px;}
.y13c{bottom:686.637150px;}
.yf5{bottom:687.215850px;}
.y1b3{bottom:688.713150px;}
.ya2{bottom:689.617950px;}
.yb9{bottom:690.350400px;}
.y2e{bottom:690.647100px;}
.y7{bottom:691.995300px;}
.y7e{bottom:694.588350px;}
.y185{bottom:697.079250px;}
.y162{bottom:698.927250px;}
.y58{bottom:702.180450px;}
.yb4{bottom:703.313700px;}
.y1b2{bottom:704.544900px;}
.y13b{bottom:704.635950px;}
.ybc{bottom:705.006750px;}
.ya1{bottom:707.616750px;}
.y2d{bottom:708.645900px;}
.y7d{bottom:712.587150px;}
.y184{bottom:715.078050px;}
.yc3{bottom:719.287575px;}
.y57{bottom:720.177150px;}
.y1b1{bottom:720.376650px;}
.y110{bottom:722.494050px;}
.y13a{bottom:722.634750px;}
.y161{bottom:724.793250px;}
.ya0{bottom:725.615550px;}
.y2c{bottom:726.644700px;}
.yb8{bottom:728.137084px;}
.y7c{bottom:730.585950px;}
.y183{bottom:733.084500px;}
.y1b0{bottom:736.208400px;}
.y56{bottom:738.175950px;}
.yc2{bottom:742.376205px;}
.yf4{bottom:742.858800px;}
.y9f{bottom:743.614350px;}
.y139{bottom:749.219550px;}
.y10f{bottom:749.872050px;}
.y160{bottom:750.645750px;}
.y1af{bottom:752.040150px;}
.y6{bottom:753.141000px;}
.y182{bottom:759.160500px;}
.yf3{bottom:760.857600px;}
.y9e{bottom:761.613150px;}
.y55{bottom:761.707950px;}
.y2b{bottom:762.644700px;}
.y7b{bottom:763.467750px;}
.yc1{bottom:765.464835px;}
.y15f{bottom:765.644250px;}
.y138{bottom:767.224350px;}
.y1ae{bottom:767.871900px;}
.y181{bottom:777.159300px;}
.yb7{bottom:777.213570px;}
.yf2{bottom:778.864500px;}
.y54{bottom:779.709150px;}
.y10e{bottom:781.982100px;}
.y1ad{bottom:783.703650px;}
.y137{bottom:785.223150px;}
.y9d{bottom:785.987850px;}
.yc0{bottom:788.545020px;}
.y15e{bottom:792.121680px;}
.y180{bottom:795.158100px;}
.y15d{bottom:795.307500px;}
.y5{bottom:796.661700px;}
.y53{bottom:797.707950px;}
.y1ac{bottom:799.535400px;}
.y136{bottom:803.221950px;}
.yf1{bottom:803.239200px;}
.y9c{bottom:803.986650px;}
.ybf{bottom:811.633650px;}
.y2a{bottom:811.898850px;}
.y17f{bottom:813.156900px;}
.y7a{bottom:814.864500px;}
.y1ab{bottom:815.367150px;}
.y52{bottom:815.706000px;}
.y4{bottom:819.152700px;}
.y135{bottom:821.220750px;}
.yf0{bottom:821.238000px;}
.y10d{bottom:821.239200px;}
.y9b{bottom:821.985450px;}
.yb6{bottom:826.118850px;}
.y17e{bottom:831.159600px;}
.y1aa{bottom:831.198900px;}
.y79{bottom:832.863300px;}
.y134{bottom:839.219550px;}
.yef{bottom:839.236800px;}
.y51{bottom:839.238000px;}
.y15c{bottom:839.239200px;}
.y9a{bottom:839.984250px;}
.y29{bottom:844.903650px;}
.y1a9{bottom:847.030650px;}
.yb0{bottom:850.471950px;}
.y78{bottom:850.862100px;}
.y133{bottom:857.221950px;}
.yee{bottom:857.235600px;}
.y50{bottom:857.236800px;}
.y15b{bottom:857.238000px;}
.y99{bottom:857.984250px;}
.y1a8{bottom:862.862400px;}
.yaf{bottom:869.533950px;}
.y132{bottom:875.220750px;}
.y4f{bottom:875.235600px;}
.y77{bottom:875.236800px;}
.y28{bottom:877.908450px;}
.y1a7{bottom:878.694150px;}
.y131{bottom:893.219550px;}
.y4e{bottom:893.235600px;}
.y98{bottom:893.984250px;}
.y27{bottom:894.408450px;}
.y1a6{bottom:894.525900px;}
.y3{bottom:912.163650px;}
.y2{bottom:927.157650px;}
.y1{bottom:942.457650px;}
.y1bc{bottom:1077.636450px;}
.y1bb{bottom:1098.334650px;}
.y1ba{bottom:1119.032850px;}
.y1b9{bottom:1139.731050px;}
.h14{height:21.052800px;}
.h20{height:24.644946px;}
.h1e{height:24.659400px;}
.h1d{height:24.981768px;}
.h1c{height:24.996222px;}
.h27{height:26.177760px;}
.h28{height:28.812000px;}
.h1a{height:30.960000px;}
.h2{height:34.986000px;}
.hb{height:35.088000px;}
.he{height:36.363000px;}
.h18{height:37.044000px;}
.h19{height:37.152000px;}
.hc{height:37.890000px;}
.hd{height:37.900800px;}
.h2f{height:39.216000px;}
.h7{height:39.628800px;}
.h9{height:39.638400px;}
.h8{height:39.648000px;}
.h6{height:41.068800px;}
.h5{height:43.756800px;}
.h10{height:43.764600px;}
.h11{height:43.770000px;}
.h15{height:44.460000px;}
.h24{height:45.146321px;}
.ha{height:45.346800px;}
.h3{height:45.366000px;}
.h17{height:47.228880px;}
.h16{height:47.232480px;}
.h12{height:47.237280px;}
.h29{height:47.242080px;}
.h13{height:47.245680px;}
.hf{height:53.352000px;}
.h2c{height:53.628000px;}
.h22{height:53.656800px;}
.h2b{height:56.464080px;}
.h25{height:56.476800px;}
.h2a{height:59.949360px;}
.h4{height:62.244000px;}
.h23{height:66.371280px;}
.h2d{height:67.068000px;}
.h2e{height:70.105800px;}
.h32{height:70.664062px;}
.h26{height:83.542266px;}
.h1b{height:157.629000px;}
.h1f{height:157.807500px;}
.h21{height:157.809000px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.h30{height:1262.835000px;}
.h31{height:1263.000000px;}
.w2{width:219.523500px;}
.w3{width:219.525000px;}
.w6{width:222.525000px;}
.w5{width:225.525000px;}
.w4{width:228.523500px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.w7{width:892.914000px;}
.w8{width:893.250000px;}
.x0{left:0.000000px;}
.x10{left:7.347150px;}
.x19{left:14.090738px;}
.x30{left:19.065593px;}
.x23{left:20.282075px;}
.x27{left:22.039927px;}
.x1{left:89.291400px;}
.x29{left:94.510350px;}
.x5{left:97.795350px;}
.x20{left:100.510350px;}
.xc{left:102.409350px;}
.x46{left:104.170800px;}
.x5a{left:106.299150px;}
.x59{left:111.407400px;}
.x4{left:114.800550px;}
.x1f{left:117.846000px;}
.x28{left:120.846000px;}
.x7{left:123.307050px;}
.x54{left:124.400850px;}
.x47{left:125.839800px;}
.x15{left:128.847122px;}
.x13{left:133.407150px;}
.x2d{left:135.129146px;}
.x58{left:138.265350px;}
.x14{left:140.739128px;}
.x2c{left:142.264350px;}
.x3c{left:143.862150px;}
.x24{left:145.264350px;}
.x50{left:149.290050px;}
.x36{left:150.356250px;}
.x11{left:151.972650px;}
.x2{left:153.070800px;}
.x2a{left:154.972650px;}
.x21{left:157.972650px;}
.x9{left:159.102750px;}
.x6{left:161.574900px;}
.x3f{left:169.495950px;}
.xe{left:174.468900px;}
.xf{left:177.600900px;}
.xb{left:187.783350px;}
.x12{left:198.116400px;}
.x2b{left:201.114900px;}
.x33{left:203.016300px;}
.x26{left:204.115950px;}
.x22{left:207.114900px;}
.x55{left:211.583850px;}
.x39{left:217.267950px;}
.x1e{left:219.734850px;}
.x40{left:229.533600px;}
.x48{left:233.666700px;}
.x49{left:242.393100px;}
.x38{left:248.873100px;}
.x37{left:250.439100px;}
.xd{left:255.100200px;}
.x3e{left:257.489250px;}
.x3d{left:259.068750px;}
.xa{left:264.029850px;}
.x41{left:266.974950px;}
.x34{left:270.401250px;}
.x3a{left:279.280650px;}
.x42{left:288.662550px;}
.x43{left:297.388800px;}
.x8{left:312.814200px;}
.x3{left:347.602800px;}
.x57{left:349.972350px;}
.x56{left:351.970350px;}
.x25{left:387.219000px;}
.x2e{left:388.719000px;}
.x17{left:390.219000px;}
.x35{left:397.206750px;}
.x1d{left:399.618914px;}
.x1b{left:404.311582px;}
.x3b{left:406.086150px;}
.x31{left:407.786550px;}
.x1a{left:409.004250px;}
.x32{left:410.139285px;}
.x1c{left:411.350584px;}
.x2f{left:422.846700px;}
.x18{left:423.886500px;}
.x4a{left:424.922250px;}
.x4b{left:433.648650px;}
.x44{left:464.398350px;}
.x45{left:473.124750px;}
.x16{left:483.456150px;}
.x52{left:496.437750px;}
.x4c{left:505.772400px;}
.x4d{left:514.498800px;}
.x53{left:516.910500px;}
.x51{left:553.459500px;}
.x4e{left:614.883900px;}
.x4f{left:621.863400px;}
@media print{
.v3{vertical-align:-18.656000pt;}
.v4{vertical-align:-14.960000pt;}
.v0{vertical-align:0.000000pt;}
.v5{vertical-align:11.295360pt;}
.v1{vertical-align:14.966400pt;}
.v2{vertical-align:18.651733pt;}
.v7{vertical-align:26.688000pt;}
.v6{vertical-align:29.951360pt;}
.v8{vertical-align:42.501867pt;}
.lsa{letter-spacing:-4.800000pt;}
.lsb{letter-spacing:-4.522667pt;}
.ls9{letter-spacing:-4.416000pt;}
.ls2{letter-spacing:-3.328000pt;}
.ls4{letter-spacing:-0.480000pt;}
.ls8{letter-spacing:-0.091310pt;}
.ls1{letter-spacing:0.000000pt;}
.lsd{letter-spacing:0.000107pt;}
.ls10{letter-spacing:1.130667pt;}
.lsc{letter-spacing:4.159467pt;}
.ls0{letter-spacing:20.073600pt;}
.ls3{letter-spacing:34.000000pt;}
.ls6{letter-spacing:80.201227pt;}
.ls7{letter-spacing:81.296693pt;}
.ls5{letter-spacing:123.147293pt;}
.lsf{letter-spacing:241.866667pt;}
.lse{letter-spacing:1089.846400pt;}
.ws6f{word-spacing:-131.608723pt;}
.ws8e{word-spacing:-90.666667pt;}
.ws75{word-spacing:-89.758123pt;}
.ws72{word-spacing:-88.548640pt;}
.ws8c{word-spacing:-17.333333pt;}
.wsd4{word-spacing:-16.000000pt;}
.ws1a{word-spacing:-14.133333pt;}
.ws2{word-spacing:-12.800000pt;}
.wsa8{word-spacing:-12.000000pt;}
.ws0{word-spacing:-11.333333pt;}
.ws59{word-spacing:-10.000000pt;}
.ws3{word-spacing:-9.472000pt;}
.ws8f{word-spacing:-9.333333pt;}
.ws1{word-spacing:-8.500000pt;}
.ws55{word-spacing:-8.480000pt;}
.ws8d{word-spacing:-8.000000pt;}
.ws7a{word-spacing:-7.584000pt;}
.wsac{word-spacing:-7.200000pt;}
.ws4a{word-spacing:-7.055360pt;}
.wsa6{word-spacing:-2.770133pt;}
.ws25{word-spacing:-2.657067pt;}
.ws39{word-spacing:-2.430933pt;}
.wsc5{word-spacing:-2.381333pt;}
.ws6b{word-spacing:-2.374400pt;}
.wsbc{word-spacing:-2.317867pt;}
.ws4c{word-spacing:-2.261333pt;}
.wsb9{word-spacing:-2.204800pt;}
.ws4f{word-spacing:-2.091733pt;}
.ws2d{word-spacing:-2.035200pt;}
.ws3a{word-spacing:-1.978667pt;}
.wsc1{word-spacing:-1.925333pt;}
.wsba{word-spacing:-1.809067pt;}
.ws21{word-spacing:-1.752533pt;}
.ws1b{word-spacing:-1.740800pt;}
.ws2f{word-spacing:-1.639467pt;}
.ws36{word-spacing:-1.582933pt;}
.ws14{word-spacing:-1.536000pt;}
.ws1d{word-spacing:-1.469867pt;}
.wsce{word-spacing:-1.317333pt;}
.ws30{word-spacing:-1.300267pt;}
.wsa2{word-spacing:-1.243733pt;}
.ws62{word-spacing:-1.224000pt;}
.wsa5{word-spacing:-1.187200pt;}
.ws53{word-spacing:-1.178667pt;}
.ws35{word-spacing:-1.074133pt;}
.wscf{word-spacing:-1.064000pt;}
.wsa7{word-spacing:-1.017920pt;}
.wsb8{word-spacing:-1.017600pt;}
.wsc9{word-spacing:-0.962667pt;}
.ws90{word-spacing:-0.961067pt;}
.ws98{word-spacing:-0.904533pt;}
.ws7f{word-spacing:-0.848000pt;}
.ws68{word-spacing:-0.791467pt;}
.ws69{word-spacing:-0.734933pt;}
.ws24{word-spacing:-0.678400pt;}
.ws10{word-spacing:-0.665600pt;}
.ws43{word-spacing:-0.621867pt;}
.ws9f{word-spacing:-0.565333pt;}
.ws67{word-spacing:-0.508800pt;}
.wsd{word-spacing:-0.460800pt;}
.wsca{word-spacing:-0.456000pt;}
.ws5b{word-spacing:-0.452267pt;}
.wsbf{word-spacing:-0.395733pt;}
.wsb6{word-spacing:-0.282667pt;}
.ws11{word-spacing:-0.256000pt;}
.ws63{word-spacing:-0.136000pt;}
.ws3b{word-spacing:-0.113067pt;}
.wsc0{word-spacing:-0.101333pt;}
.ws4{word-spacing:0.000000pt;}
.ws78{word-spacing:0.091310pt;}
.wsd0{word-spacing:0.101333pt;}
.ws99{word-spacing:0.113067pt;}
.ws16{word-spacing:0.136000pt;}
.ws5f{word-spacing:0.226133pt;}
.wsa3{word-spacing:0.282667pt;}
.wsc3{word-spacing:0.354667pt;}
.wsb0{word-spacing:0.440000pt;}
.ws66{word-spacing:0.452267pt;}
.ws95{word-spacing:0.508800pt;}
.wse{word-spacing:0.512000pt;}
.wsd3{word-spacing:0.557333pt;}
.ws6a{word-spacing:0.565333pt;}
.wsc{word-spacing:0.614400pt;}
.ws41{word-spacing:0.621867pt;}
.ws47{word-spacing:0.678400pt;}
.ws32{word-spacing:0.734933pt;}
.ws4b{word-spacing:0.791467pt;}
.ws6e{word-spacing:0.848000pt;}
.ws1e{word-spacing:0.961067pt;}
.wscd{word-spacing:0.962667pt;}
.ws48{word-spacing:1.017600pt;}
.wsb4{word-spacing:1.074133pt;}
.ws81{word-spacing:1.130667pt;}
.ws6{word-spacing:1.177600pt;}
.wscc{word-spacing:1.216000pt;}
.ws94{word-spacing:1.243733pt;}
.wsb2{word-spacing:1.300267pt;}
.ws9d{word-spacing:1.356800pt;}
.ws2b{word-spacing:1.413333pt;}
.ws7e{word-spacing:1.469867pt;}
.ws92{word-spacing:1.526400pt;}
.ws44{word-spacing:1.582933pt;}
.ws18{word-spacing:1.632000pt;}
.ws3c{word-spacing:1.639467pt;}
.wsc4{word-spacing:1.672000pt;}
.ws49{word-spacing:1.809067pt;}
.ws65{word-spacing:1.865600pt;}
.ws37{word-spacing:1.922133pt;}
.ws52{word-spacing:1.949333pt;}
.ws3d{word-spacing:1.978667pt;}
.ws5{word-spacing:2.090667pt;}
.ws46{word-spacing:2.091733pt;}
.ws51{word-spacing:2.130667pt;}
.ws23{word-spacing:2.148267pt;}
.wsa{word-spacing:2.150400pt;}
.ws40{word-spacing:2.204800pt;}
.wsb{word-spacing:2.252800pt;}
.ws38{word-spacing:2.261333pt;}
.ws97{word-spacing:2.317867pt;}
.ws5d{word-spacing:2.374400pt;}
.ws83{word-spacing:2.430933pt;}
.wsd1{word-spacing:2.432000pt;}
.ws15{word-spacing:2.457600pt;}
.ws29{word-spacing:2.487467pt;}
.wsa1{word-spacing:2.544000pt;}
.ws60{word-spacing:2.600533pt;}
.ws7{word-spacing:2.611200pt;}
.ws5c{word-spacing:2.713600pt;}
.ws9a{word-spacing:2.770133pt;}
.ws26{word-spacing:3.109333pt;}
.wsd2{word-spacing:3.141333pt;}
.wsa0{word-spacing:3.222400pt;}
.ws87{word-spacing:3.264000pt;}
.ws84{word-spacing:3.278933pt;}
.ws88{word-spacing:3.309333pt;}
.ws9c{word-spacing:3.335467pt;}
.wscb{word-spacing:3.344000pt;}
.ws33{word-spacing:3.392000pt;}
.ws19{word-spacing:3.400000pt;}
.wsaf{word-spacing:3.448533pt;}
.ws50{word-spacing:3.536000pt;}
.ws82{word-spacing:3.561600pt;}
.wsb1{word-spacing:3.618133pt;}
.ws22{word-spacing:3.787733pt;}
.ws2c{word-spacing:3.844267pt;}
.ws54{word-spacing:3.853333pt;}
.ws86{word-spacing:3.900800pt;}
.ws28{word-spacing:3.957333pt;}
.ws3e{word-spacing:4.013867pt;}
.ws3f{word-spacing:4.070400pt;}
.ws9e{word-spacing:4.126933pt;}
.wsc8{word-spacing:4.154667pt;}
.ws12{word-spacing:4.300800pt;}
.ws61{word-spacing:4.352000pt;}
.ws6d{word-spacing:4.353067pt;}
.ws6c{word-spacing:4.409600pt;}
.wsb7{word-spacing:4.466133pt;}
.wsa4{word-spacing:4.579200pt;}
.ws5e{word-spacing:4.692267pt;}
.wsae{word-spacing:4.748800pt;}
.ws13{word-spacing:4.761600pt;}
.wsc7{word-spacing:4.813333pt;}
.wsf{word-spacing:4.864000pt;}
.ws5a{word-spacing:4.918400pt;}
.ws17{word-spacing:4.941333pt;}
.ws4e{word-spacing:4.974933pt;}
.ws2a{word-spacing:5.031467pt;}
.ws2e{word-spacing:5.088000pt;}
.ws91{word-spacing:5.144533pt;}
.ws85{word-spacing:5.201067pt;}
.ws8{word-spacing:5.427200pt;}
.ws64{word-spacing:5.483733pt;}
.ws42{word-spacing:5.540267pt;}
.ws9{word-spacing:5.632000pt;}
.ws45{word-spacing:5.766400pt;}
.wsc2{word-spacing:5.776000pt;}
.ws20{word-spacing:5.822933pt;}
.ws31{word-spacing:6.049067pt;}
.wsc6{word-spacing:6.434667pt;}
.wsad{word-spacing:6.557867pt;}
.wsbe{word-spacing:6.784000pt;}
.ws9b{word-spacing:6.840533pt;}
.wsb5{word-spacing:6.953600pt;}
.wsbb{word-spacing:7.066667pt;}
.ws27{word-spacing:7.179733pt;}
.ws4d{word-spacing:7.349333pt;}
.ws80{word-spacing:7.405867pt;}
.ws34{word-spacing:7.518933pt;}
.wsbd{word-spacing:7.575467pt;}
.ws1f{word-spacing:7.632000pt;}
.ws93{word-spacing:7.801600pt;}
.wsb3{word-spacing:7.971200pt;}
.ws7d{word-spacing:13.398400pt;}
.ws1c{word-spacing:46.208000pt;}
.ws70{word-spacing:72.835262pt;}
.ws71{word-spacing:84.044640pt;}
.ws74{word-spacing:85.192603pt;}
.wsa9{word-spacing:126.139200pt;}
.ws57{word-spacing:139.387200pt;}
.wsaa{word-spacing:196.891200pt;}
.ws58{word-spacing:209.568000pt;}
.wsab{word-spacing:251.856000pt;}
.ws7b{word-spacing:316.512000pt;}
.ws8a{word-spacing:329.376000pt;}
.ws56{word-spacing:366.566400pt;}
.ws7c{word-spacing:393.168000pt;}
.ws8b{word-spacing:394.080000pt;}
.ws79{word-spacing:449.376000pt;}
.ws89{word-spacing:450.240000pt;}
.ws73{word-spacing:792.672000pt;}
.ws76{word-spacing:813.792000pt;}
.ws77{word-spacing:848.448000pt;}
.ws96{word-spacing:1082.517333pt;}
._2d{margin-left:-123.147293pt;}
._32{margin-left:-81.296693pt;}
._30{margin-left:-80.201227pt;}
._3f{margin-left:-16.170667pt;}
._3{margin-left:-7.066667pt;}
._6{margin-left:-5.487760pt;}
._c{margin-left:-4.511360pt;}
._1{margin-left:-3.622133pt;}
._2{margin-left:-2.707333pt;}
._0{margin-left:-1.804267pt;}
._7{margin-left:-0.893067pt;}
._e{width:1.196693pt;}
._4{width:2.565120pt;}
._5{width:3.589120pt;}
._34{width:4.800000pt;}
._3e{width:10.994667pt;}
._2a{width:18.906133pt;}
._a{width:20.400000pt;}
._8{width:34.661867pt;}
._b{width:38.506667pt;}
._d{width:42.686693pt;}
._9{width:46.208000pt;}
._2e{width:93.654034pt;}
._10{width:98.256000pt;}
._39{width:100.752000pt;}
._2f{width:121.487893pt;}
._31{width:123.147293pt;}
._3b{width:125.616000pt;}
._37{width:132.432000pt;}
._38{width:136.080000pt;}
._f{width:141.844800pt;}
._1e{width:143.568000pt;}
._3c{width:149.616000pt;}
._28{width:155.568000pt;}
._20{width:161.568000pt;}
._1a{width:167.568000pt;}
._3a{width:169.920000pt;}
._1f{width:173.568000pt;}
._22{width:179.568000pt;}
._1c{width:185.568000pt;}
._36{width:187.920000pt;}
._25{width:191.568000pt;}
._1b{width:197.568000pt;}
._18{width:209.568000pt;}
._12{width:215.568000pt;}
._35{width:219.893867pt;}
._23{width:221.568000pt;}
._13{width:233.568000pt;}
._14{width:239.568000pt;}
._3d{width:247.767733pt;}
._16{width:251.568000pt;}
._27{width:333.936000pt;}
._1d{width:341.952000pt;}
._19{width:389.952000pt;}
._33{width:401.184000pt;}
._11{width:411.408000pt;}
._29{width:468.576000pt;}
._26{width:503.280000pt;}
._2b{width:506.467333pt;}
._17{width:508.704000pt;}
._21{width:515.280000pt;}
._24{width:527.280000pt;}
._2c{width:564.214133pt;}
._15{width:743.280000pt;}
.fs5{font-size:27.200000pt;}
.fs14{font-size:28.800000pt;}
.fse{font-size:30.009067pt;}
.fsd{font-size:30.026667pt;}
.fsc{font-size:30.419200pt;}
.fsb{font-size:30.436800pt;}
.fs11{font-size:32.000000pt;}
.fs7{font-size:33.920000pt;}
.fs1{font-size:34.000000pt;}
.fs13{font-size:37.333333pt;}
.fsa{font-size:40.000000pt;}
.fs0{font-size:45.333333pt;}
.fs9{font-size:48.000000pt;}
.fs15{font-size:50.666667pt;}
.fs4{font-size:51.200000pt;}
.fs8{font-size:53.333333pt;}
.fs3{font-size:56.533333pt;}
.fs10{font-size:57.796322pt;}
.fs6{font-size:64.000000pt;}
.fsf{font-size:69.333333pt;}
.fs2{font-size:74.666667pt;}
.fs12{font-size:90.666667pt;}
.y0{bottom:0.000000pt;}
.yb2{bottom:3.659067pt;}
.ye2{bottom:3.659600pt;}
.yd2{bottom:3.659867pt;}
.yc6{bottom:3.660133pt;}
.yb5{bottom:16.865067pt;}
.ye5{bottom:16.865467pt;}
.yd5{bottom:16.865733pt;}
.yc9{bottom:16.866000pt;}
.ybd{bottom:18.530000pt;}
.y26{bottom:59.157467pt;}
.y1b{bottom:59.168800pt;}
.yb3{bottom:61.886533pt;}
.ye3{bottom:61.994933pt;}
.yd3{bottom:61.995067pt;}
.yc7{bottom:61.995333pt;}
.ybb{bottom:63.050933pt;}
.y76{bottom:90.692667pt;}
.y97{bottom:90.696533pt;}
.y10c{bottom:90.700667pt;}
.y1c{bottom:90.709467pt;}
.y4d{bottom:91.450800pt;}
.y1a5{bottom:91.464533pt;}
.y130{bottom:91.872667pt;}
.y15a{bottom:92.165067pt;}
.y17d{bottom:92.968800pt;}
.yed{bottom:94.919333pt;}
.y75{bottom:103.363333pt;}
.y96{bottom:103.367200pt;}
.y10b{bottom:103.371333pt;}
.y12f{bottom:105.047760pt;}
.y1a4{bottom:105.537200pt;}
.y4c{bottom:107.449733pt;}
.y12e{bottom:107.871600pt;}
.y159{bottom:108.182000pt;}
.y17c{bottom:108.967733pt;}
.y25{bottom:111.549733pt;}
.ye1{bottom:113.814667pt;}
.y74{bottom:116.034000pt;}
.y95{bottom:116.037867pt;}
.y1a3{bottom:119.609867pt;}
.y10a{bottom:119.782000pt;}
.y4b{bottom:123.456267pt;}
.y158{bottom:124.180933pt;}
.y24{bottom:124.220400pt;}
.y17b{bottom:124.978267pt;}
.y73{bottom:128.704667pt;}
.ye4{bottom:130.680133pt;}
.y94{bottom:132.448533pt;}
.y1a2{bottom:133.682533pt;}
.ye6{bottom:133.742779pt;}
.yd6{bottom:133.743045pt;}
.yca{bottom:133.743312pt;}
.ybe{bottom:133.832400pt;}
.y23{bottom:136.891067pt;}
.y12d{bottom:137.855867pt;}
.y17a{bottom:140.977200pt;}
.ye9{bottom:142.753792pt;}
.y12c{bottom:144.142133pt;}
.y4a{bottom:144.741067pt;}
.y72{bottom:145.115333pt;}
.y12b{bottom:146.968800pt;}
.y1a1{bottom:147.755200pt;}
.y157{bottom:147.811867pt;}
.y109{bottom:149.080133pt;}
.y22{bottom:149.561733pt;}
.yec{bottom:153.160183pt;}
.y71{bottom:154.038000pt;}
.y179{bottom:156.976133pt;}
.y49{bottom:160.744267pt;}
.y1a0{bottom:161.827867pt;}
.y21{bottom:162.232400pt;}
.y93{bottom:162.718667pt;}
.y156{bottom:163.810800pt;}
.y108{bottom:165.079067pt;}
.y12a{bottom:166.753867pt;}
.y70{bottom:170.448667pt;}
.y178{bottom:172.975067pt;}
.y20{bottom:174.903067pt;}
.y19f{bottom:175.900533pt;}
.y48{bottom:176.743200pt;}
.y129{bottom:177.254933pt;}
.y127{bottom:177.257760pt;}
.ye8{bottom:177.687629pt;}
.y155{bottom:179.809733pt;}
.y128{bottom:180.081600pt;}
.y126{bottom:180.083200pt;}
.y107{bottom:181.078000pt;}
.yeb{bottom:184.624225pt;}
.y92{bottom:186.135733pt;}
.y1f{bottom:187.569733pt;}
.y177{bottom:188.974000pt;}
.y19e{bottom:189.973200pt;}
.y47{bottom:192.742133pt;}
.y154{bottom:195.808667pt;}
.y106{bottom:197.076933pt;}
.y1e{bottom:200.236400pt;}
.y6f{bottom:201.158800pt;}
.y19d{bottom:204.045867pt;}
.y176{bottom:204.972933pt;}
.y46{bottom:208.741067pt;}
.y91{bottom:209.127733pt;}
.y125{bottom:210.074133pt;}
.y153{bottom:211.807600pt;}
.ye7{bottom:212.621467pt;}
.y1d{bottom:212.905467pt;}
.y105{bottom:213.076933pt;}
.yea{bottom:216.088267pt;}
.y6e{bottom:217.156933pt;}
.y19c{bottom:218.118533pt;}
.y175{bottom:220.971867pt;}
.y45{bottom:224.747600pt;}
.y124{bottom:226.073067pt;}
.y152{bottom:227.806533pt;}
.y104{bottom:229.075867pt;}
.y90{bottom:232.119733pt;}
.y19b{bottom:232.191200pt;}
.y6d{bottom:233.155867pt;}
.y174{bottom:236.970800pt;}
.y151{bottom:243.805467pt;}
.y1a{bottom:245.630667pt;}
.y44{bottom:246.032400pt;}
.y19a{bottom:246.263867pt;}
.y123{bottom:247.739467pt;}
.y6c{bottom:254.073200pt;}
.y8f{bottom:255.111733pt;}
.y19{bottom:260.299467pt;}
.y199{bottom:260.336533pt;}
.y173{bottom:260.531067pt;}
.ye0{bottom:261.647467pt;}
.y43{bottom:262.045333pt;}
.y103{bottom:262.083733pt;}
.y122{bottom:263.738400pt;}
.y150{bottom:267.436400pt;}
.y6b{bottom:270.072133pt;}
.y198{bottom:274.409200pt;}
.y18{bottom:274.968267pt;}
.y172{bottom:276.530000pt;}
.y42{bottom:278.044267pt;}
.y8e{bottom:278.103733pt;}
.yd1{bottom:278.590667pt;}
.y121{bottom:279.737333pt;}
.y14f{bottom:283.435333pt;}
.y6a{bottom:286.072133pt;}
.y197{bottom:288.481867pt;}
.y17{bottom:289.637067pt;}
.yff{bottom:290.302400pt;}
.y171{bottom:292.528933pt;}
.y100{bottom:292.978400pt;}
.y41{bottom:294.043200pt;}
.yd4{bottom:295.456400pt;}
.y120{bottom:295.736267pt;}
.y14e{bottom:299.434267pt;}
.y8d{bottom:301.095733pt;}
.y69{bottom:302.071067pt;}
.y196{bottom:302.554533pt;}
.y102{bottom:303.639200pt;}
.y16{bottom:304.299467pt;}
.yda{bottom:307.807755pt;}
.y170{bottom:308.527867pt;}
.y40{bottom:310.042133pt;}
.y11f{bottom:311.735200pt;}
.y14d{bottom:315.443333pt;}
.ydf{bottom:315.657958pt;}
.y195{bottom:316.627200pt;}
.y68{bottom:318.076400pt;}
.y15{bottom:318.968267pt;}
.y8c{bottom:324.087733pt;}
.y16f{bottom:324.526800pt;}
.y11e{bottom:327.740133pt;}
.y194{bottom:330.699867pt;}
.y3f{bottom:331.326933pt;}
.y14c{bottom:331.442267pt;}
.y14{bottom:333.637067pt;}
.yd9{bottom:333.937748pt;}
.y67{bottom:334.075333pt;}
.yde{bottom:334.992935pt;}
.y193{bottom:344.772533pt;}
.y8b{bottom:347.079733pt;}
.y3e{bottom:347.325867pt;}
.y14b{bottom:347.441200pt;}
.y11d{bottom:349.406533pt;}
.y66{bottom:350.074267pt;}
.ydd{bottom:354.327912pt;}
.y192{bottom:358.845200pt;}
.y16e{bottom:359.424400pt;}
.yd8{bottom:360.067741pt;}
.y3d{bottom:363.324800pt;}
.y11c{bottom:365.405467pt;}
.y101{bottom:365.907200pt;}
.y65{bottom:366.073200pt;}
.y13{bottom:367.201467pt;}
.y8a{bottom:370.071733pt;}
.y14a{bottom:371.072133pt;}
.y191{bottom:372.917867pt;}
.ydc{bottom:373.662889pt;}
.y3c{bottom:379.323733pt;}
.y11b{bottom:381.404400pt;}
.y64{bottom:382.072133pt;}
.yd7{bottom:386.197733pt;}
.y149{bottom:387.071067pt;}
.ydb{bottom:392.997867pt;}
.y89{bottom:393.063733pt;}
.y3b{bottom:395.325867pt;}
.y11a{bottom:397.410533pt;}
.y63{bottom:398.071067pt;}
.y190{bottom:402.984533pt;}
.y148{bottom:403.070000pt;}
.yfe{bottom:409.198533pt;}
.yae{bottom:409.648000pt;}
.y3a{bottom:411.324800pt;}
.y16d{bottom:414.543067pt;}
.y88{bottom:416.055733pt;}
.y147{bottom:419.068933pt;}
.y119{bottom:419.076933pt;}
.y12{bottom:419.098400pt;}
.y16c{bottom:425.213067pt;}
.yad{bottom:425.646933pt;}
.yd0{bottom:426.423600pt;}
.y39{bottom:427.323733pt;}
.y62{bottom:427.677467pt;}
.yfd{bottom:433.534533pt;}
.y118{bottom:435.075867pt;}
.y146{bottom:435.082800pt;}
.y16b{bottom:435.883067pt;}
.y87{bottom:439.707733pt;}
.yac{bottom:441.645867pt;}
.y38{bottom:443.334533pt;}
.yc5{bottom:443.366667pt;}
.y16a{bottom:446.553067pt;}
.y117{bottom:451.074800pt;}
.y145{bottom:451.081733pt;}
.y11{bottom:451.098400pt;}
.y18f{bottom:452.453733pt;}
.yab{bottom:457.644800pt;}
.yc8{bottom:460.232667pt;}
.yfc{bottom:462.074800pt;}
.y37{bottom:464.619333pt;}
.y86{bottom:466.742267pt;}
.y116{bottom:467.073733pt;}
.y144{bottom:467.080667pt;}
.y18e{bottom:468.452667pt;}
.y169{bottom:469.984667pt;}
.ycf{bottom:473.100865pt;}
.yaa{bottom:473.667333pt;}
.y61{bottom:475.251600pt;}
.y36{bottom:480.618267pt;}
.y143{bottom:483.079600pt;}
.y10{bottom:483.098400pt;}
.y168{bottom:483.316667pt;}
.y18d{bottom:484.451600pt;}
.ya9{bottom:489.666267pt;}
.y60{bottom:491.250533pt;}
.yce{bottom:493.904417pt;}
.y115{bottom:496.302133pt;}
.y35{bottom:496.617200pt;}
.yf{bottom:497.767200pt;}
.yfb{bottom:498.863867pt;}
.y85{bottom:499.743600pt;}
.y18c{bottom:500.450533pt;}
.ya8{bottom:505.665200pt;}
.y167{bottom:506.308667pt;}
.y142{bottom:506.710533pt;}
.y5f{bottom:507.249467pt;}
.ye{bottom:512.436000pt;}
.y34{bottom:512.616133pt;}
.ycd{bottom:514.707970pt;}
.yfa{bottom:514.862800pt;}
.y84{bottom:515.742533pt;}
.y18b{bottom:516.449467pt;}
.y141{bottom:522.709467pt;}
.y111{bottom:523.920800pt;}
.y112{bottom:526.596800pt;}
.yd{bottom:527.104800pt;}
.ya7{bottom:527.331600pt;}
.y5e{bottom:528.166800pt;}
.y33{bottom:528.615067pt;}
.y166{bottom:529.300667pt;}
.yf9{bottom:530.861733pt;}
.y83{bottom:531.741467pt;}
.y18a{bottom:532.448400pt;}
.ycc{bottom:535.503914pt;}
.y114{bottom:537.557733pt;}
.y140{bottom:538.708400pt;}
.yc{bottom:541.773600pt;}
.y1b8{bottom:541.826133pt;}
.ya6{bottom:543.330533pt;}
.y5d{bottom:544.165733pt;}
.y32{bottom:544.621600pt;}
.yf8{bottom:546.860667pt;}
.y82{bottom:547.740400pt;}
.y189{bottom:548.447333pt;}
.y165{bottom:552.292667pt;}
.y1b7{bottom:555.898800pt;}
.ycb{bottom:556.307467pt;}
.yb{bottom:556.438133pt;}
.ya5{bottom:559.329467pt;}
.y5c{bottom:560.164667pt;}
.y13f{bottom:562.339333pt;}
.yf7{bottom:562.859600pt;}
.y81{bottom:563.743333pt;}
.y31{bottom:565.906400pt;}
.y1b6{bottom:569.971467pt;}
.ya{bottom:571.106933pt;}
.y188{bottom:571.626000pt;}
.y164{bottom:575.284667pt;}
.ya4{bottom:575.328400pt;}
.y5b{bottom:576.163600pt;}
.y13e{bottom:578.338267pt;}
.yf6{bottom:578.858533pt;}
.y30{bottom:581.910667pt;}
.y1b5{bottom:584.044133pt;}
.y80{bottom:585.409733pt;}
.y9{bottom:585.769333pt;}
.y187{bottom:587.624933pt;}
.yc4{bottom:591.200000pt;}
.ya3{bottom:591.327333pt;}
.y5a{bottom:592.162533pt;}
.y13d{bottom:594.345200pt;}
.y2f{bottom:597.909600pt;}
.y1b4{bottom:598.116800pt;}
.y163{bottom:598.276667pt;}
.y113{bottom:599.225733pt;}
.y8{bottom:600.438133pt;}
.y7f{bottom:601.410800pt;}
.y186{bottom:603.627067pt;}
.yba{bottom:608.142667pt;}
.y59{bottom:608.161467pt;}
.yb1{bottom:608.302667pt;}
.y13c{bottom:610.344133pt;}
.yf5{bottom:610.858533pt;}
.y1b3{bottom:612.189467pt;}
.ya2{bottom:612.993733pt;}
.yb9{bottom:613.644800pt;}
.y2e{bottom:613.908533pt;}
.y7{bottom:615.106933pt;}
.y7e{bottom:617.411867pt;}
.y185{bottom:619.626000pt;}
.y162{bottom:621.268667pt;}
.y58{bottom:624.160400pt;}
.yb4{bottom:625.167733pt;}
.y1b2{bottom:626.262133pt;}
.y13b{bottom:626.343067pt;}
.ybc{bottom:626.672667pt;}
.ya1{bottom:628.992667pt;}
.y2d{bottom:629.907467pt;}
.y7d{bottom:633.410800pt;}
.y184{bottom:635.624933pt;}
.yc3{bottom:639.366733pt;}
.y57{bottom:640.157467pt;}
.y1b1{bottom:640.334800pt;}
.y110{bottom:642.216933pt;}
.y13a{bottom:642.342000pt;}
.y161{bottom:644.260667pt;}
.ya0{bottom:644.991600pt;}
.y2c{bottom:645.906400pt;}
.yb8{bottom:647.232963pt;}
.y7c{bottom:649.409733pt;}
.y183{bottom:651.630667pt;}
.y1b0{bottom:654.407467pt;}
.y56{bottom:656.156400pt;}
.yc2{bottom:659.889960pt;}
.yf4{bottom:660.318933pt;}
.y9f{bottom:660.990533pt;}
.y139{bottom:665.972933pt;}
.y10f{bottom:666.552933pt;}
.y160{bottom:667.240667pt;}
.y1af{bottom:668.480133pt;}
.y6{bottom:669.458667pt;}
.y182{bottom:674.809333pt;}
.yf3{bottom:676.317867pt;}
.y9e{bottom:676.989467pt;}
.y55{bottom:677.073733pt;}
.y2b{bottom:677.906400pt;}
.y7b{bottom:678.638000pt;}
.yc1{bottom:680.413187pt;}
.y15f{bottom:680.572667pt;}
.y138{bottom:681.977200pt;}
.y1ae{bottom:682.552800pt;}
.y181{bottom:690.808267pt;}
.yb7{bottom:690.856507pt;}
.yf2{bottom:692.324000pt;}
.y54{bottom:693.074800pt;}
.y10e{bottom:695.095200pt;}
.y1ad{bottom:696.625467pt;}
.y137{bottom:697.976133pt;}
.y9d{bottom:698.655867pt;}
.yc0{bottom:700.928907pt;}
.y15e{bottom:704.108160pt;}
.y180{bottom:706.807200pt;}
.y15d{bottom:706.940000pt;}
.y5{bottom:708.143733pt;}
.y53{bottom:709.073733pt;}
.y1ac{bottom:710.698133pt;}
.y136{bottom:713.975067pt;}
.yf1{bottom:713.990400pt;}
.y9c{bottom:714.654800pt;}
.ybf{bottom:721.452133pt;}
.y2a{bottom:721.687867pt;}
.y17f{bottom:722.806133pt;}
.y7a{bottom:724.324000pt;}
.y1ab{bottom:724.770800pt;}
.y52{bottom:725.072000pt;}
.y4{bottom:728.135733pt;}
.y135{bottom:729.974000pt;}
.yf0{bottom:729.989333pt;}
.y10d{bottom:729.990400pt;}
.y9b{bottom:730.653733pt;}
.yb6{bottom:734.327867pt;}
.y17e{bottom:738.808533pt;}
.y1aa{bottom:738.843467pt;}
.y79{bottom:740.322933pt;}
.y134{bottom:745.972933pt;}
.yef{bottom:745.988267pt;}
.y51{bottom:745.989333pt;}
.y15c{bottom:745.990400pt;}
.y9a{bottom:746.652667pt;}
.y29{bottom:751.025467pt;}
.y1a9{bottom:752.916133pt;}
.yb0{bottom:755.975067pt;}
.y78{bottom:756.321867pt;}
.y133{bottom:761.975067pt;}
.yee{bottom:761.987200pt;}
.y50{bottom:761.988267pt;}
.y15b{bottom:761.989333pt;}
.y99{bottom:762.652667pt;}
.y1a8{bottom:766.988800pt;}
.yaf{bottom:772.919067pt;}
.y132{bottom:777.974000pt;}
.y4f{bottom:777.987200pt;}
.y77{bottom:777.988267pt;}
.y28{bottom:780.363067pt;}
.y1a7{bottom:781.061467pt;}
.y131{bottom:793.972933pt;}
.y4e{bottom:793.987200pt;}
.y98{bottom:794.652667pt;}
.y27{bottom:795.029733pt;}
.y1a6{bottom:795.134133pt;}
.y3{bottom:810.812133pt;}
.y2{bottom:824.140133pt;}
.y1{bottom:837.740133pt;}
.y1bc{bottom:957.899067pt;}
.y1bb{bottom:976.297467pt;}
.y1ba{bottom:994.695867pt;}
.y1b9{bottom:1013.094267pt;}
.h14{height:18.713600pt;}
.h20{height:21.906619pt;}
.h1e{height:21.919467pt;}
.h1d{height:22.206016pt;}
.h1c{height:22.218864pt;}
.h27{height:23.269120pt;}
.h28{height:25.610667pt;}
.h1a{height:27.520000pt;}
.h2{height:31.098667pt;}
.hb{height:31.189333pt;}
.he{height:32.322667pt;}
.h18{height:32.928000pt;}
.h19{height:33.024000pt;}
.hc{height:33.680000pt;}
.hd{height:33.689600pt;}
.h2f{height:34.858667pt;}
.h7{height:35.225600pt;}
.h9{height:35.234133pt;}
.h8{height:35.242667pt;}
.h6{height:36.505600pt;}
.h5{height:38.894933pt;}
.h10{height:38.901867pt;}
.h11{height:38.906667pt;}
.h15{height:39.520000pt;}
.h24{height:40.130064pt;}
.ha{height:40.308267pt;}
.h3{height:40.325333pt;}
.h17{height:41.981227pt;}
.h16{height:41.984427pt;}
.h12{height:41.988693pt;}
.h29{height:41.992960pt;}
.h13{height:41.996160pt;}
.hf{height:47.424000pt;}
.h2c{height:47.669333pt;}
.h22{height:47.694933pt;}
.h2b{height:50.190293pt;}
.h25{height:50.201600pt;}
.h2a{height:53.288320pt;}
.h4{height:55.328000pt;}
.h23{height:58.996693pt;}
.h2d{height:59.616000pt;}
.h2e{height:62.316267pt;}
.h32{height:62.812500pt;}
.h26{height:74.259792pt;}
.h1b{height:140.114667pt;}
.h1f{height:140.273333pt;}
.h21{height:140.274667pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.h30{height:1122.520000pt;}
.h31{height:1122.666667pt;}
.w2{width:195.132000pt;}
.w3{width:195.133333pt;}
.w6{width:197.800000pt;}
.w5{width:200.466667pt;}
.w4{width:203.132000pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.w7{width:793.701333pt;}
.w8{width:794.000000pt;}
.x0{left:0.000000pt;}
.x10{left:6.530800pt;}
.x19{left:12.525101pt;}
.x30{left:16.947194pt;}
.x23{left:18.028511pt;}
.x27{left:19.591046pt;}
.x1{left:79.370133pt;}
.x29{left:84.009200pt;}
.x5{left:86.929200pt;}
.x20{left:89.342533pt;}
.xc{left:91.030533pt;}
.x46{left:92.596267pt;}
.x5a{left:94.488133pt;}
.x59{left:99.028800pt;}
.x4{left:102.044933pt;}
.x1f{left:104.752000pt;}
.x28{left:107.418667pt;}
.x7{left:109.606267pt;}
.x54{left:110.578533pt;}
.x47{left:111.857600pt;}
.x15{left:114.530775pt;}
.x13{left:118.584133pt;}
.x2d{left:120.114797pt;}
.x58{left:122.902533pt;}
.x14{left:125.101447pt;}
.x2c{left:126.457200pt;}
.x3c{left:127.877467pt;}
.x24{left:129.123867pt;}
.x50{left:132.702267pt;}
.x36{left:133.650000pt;}
.x11{left:135.086800pt;}
.x2{left:136.062933pt;}
.x2a{left:137.753467pt;}
.x21{left:140.420133pt;}
.x9{left:141.424667pt;}
.x6{left:143.622133pt;}
.x3f{left:150.663067pt;}
.xe{left:155.083467pt;}
.xf{left:157.867467pt;}
.xb{left:166.918533pt;}
.x12{left:176.103467pt;}
.x2b{left:178.768800pt;}
.x33{left:180.458933pt;}
.x26{left:181.436400pt;}
.x22{left:184.102133pt;}
.x55{left:188.074533pt;}
.x39{left:193.127067pt;}
.x1e{left:195.319867pt;}
.x40{left:204.029867pt;}
.x48{left:207.703733pt;}
.x49{left:215.460533pt;}
.x38{left:221.220533pt;}
.x37{left:222.612533pt;}
.xd{left:226.755733pt;}
.x3e{left:228.879333pt;}
.x3d{left:230.283333pt;}
.xa{left:234.693200pt;}
.x41{left:237.311067pt;}
.x34{left:240.356667pt;}
.x3a{left:248.249467pt;}
.x42{left:256.588933pt;}
.x43{left:264.345600pt;}
.x8{left:278.057067pt;}
.x3{left:308.980267pt;}
.x57{left:311.086533pt;}
.x56{left:312.862533pt;}
.x25{left:344.194667pt;}
.x2e{left:345.528000pt;}
.x17{left:346.861333pt;}
.x35{left:353.072667pt;}
.x1d{left:355.216813pt;}
.x1b{left:359.388073pt;}
.x3b{left:360.965467pt;}
.x31{left:362.476933pt;}
.x1a{left:363.559333pt;}
.x32{left:364.568253pt;}
.x1c{left:365.644963pt;}
.x2f{left:375.863733pt;}
.x18{left:376.788000pt;}
.x4a{left:377.708667pt;}
.x4b{left:385.465467pt;}
.x44{left:412.798533pt;}
.x45{left:420.555333pt;}
.x16{left:429.738800pt;}
.x52{left:441.278000pt;}
.x4c{left:449.575467pt;}
.x4d{left:457.332267pt;}
.x53{left:459.476000pt;}
.x51{left:491.964000pt;}
.x4e{left:546.563467pt;}
.x4f{left:552.767467pt;}
}




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