
    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_9028f565b3b82647288a4ba7.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.934082;font-style:normal;font-weight: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_a3048d4cbedc3bd5efcb3c97.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.973145;font-style:normal;font-weight: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_defabb6f66231bbf5ae567de.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.973145;font-style:normal;font-weight: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_e9777c96ddb81f386f99298e.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.972656;font-style:normal;font-weight: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_6cb67080f9723a3e92d98d64.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.856934;font-style:normal;font-weight: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_31bf1e9334e06cb72970ef0d.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.002930;font-style:normal;font-weight: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_a1d7c00f7b6c214c1ca8bbf0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.957000;font-style:normal;font-weight: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_422a0a47a475e59db0f8ebb4.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_4a95289a34e4b63cd0c3026d.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.871094;font-style:normal;font-weight: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_1a379b4f7f03ed3325122f31.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.973145;font-style:normal;font-weight: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_89d78822b6b668363f98f359.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_ec81cb13a68bc15a53c1eb63.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.893555;font-style:normal;font-weight: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_fda79dc07bf30d47e1b5c355.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_1a379b4f7f03ed3325122f31.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.973145;font-style:normal;font-weight: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_89d78822b6b668363f98f359.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_ec81cb13a68bc15a53c1eb63.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.893555;font-style:normal;font-weight: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_fda79dc07bf30d47e1b5c355.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff12;src:url('chunks/assets/font_1a379b4f7f03ed3325122f31.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.973145;font-style:normal;font-weight: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_89d78822b6b668363f98f359.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_20af2042e7cca29b54be7f00.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.893555;font-style:normal;font-weight: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_babf7823e930e534edd1b4a8.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.871094;font-style:normal;font-weight: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_b4c4ecd7680db17db8354903.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_c15f24fa57273d3c5b3106fe.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_faf6d5ad3f99a178f67ce8e5.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.862793;font-style:normal;font-weight: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_1a379b4f7f03ed3325122f31.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.973145;font-style:normal;font-weight: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_89d78822b6b668363f98f359.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_dac884c4f21a391f4c251237.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.893555;font-style:normal;font-weight: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_006f1620a77cb06e6b754ff7.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_b4c4ecd7680db17db8354903.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_1a379b4f7f03ed3325122f31.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.973145;font-style:normal;font-weight: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_89d78822b6b668363f98f359.woff2')format("woff");}.ff1f{font-family:ff1f;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:ff20;src:url('chunks/assets/font_fbe7e6ac20345a6d6f1e6376.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.893555;font-style:normal;font-weight: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_babf7823e930e534edd1b4a8.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.871094;font-style:normal;font-weight: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_bb6a90b8bd5494276625e398.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_1a379b4f7f03ed3325122f31.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.973145;font-style:normal;font-weight: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_89d78822b6b668363f98f359.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_bb6c386bdfbadc3150e5693d.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.893555;font-style:normal;font-weight: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_161d7d5d8fd1e2e1d69baccb.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_1a379b4f7f03ed3325122f31.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.973145;font-style:normal;font-weight: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_89d78822b6b668363f98f359.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_0c1f2d96787b113761191612.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.893555;font-style:normal;font-weight: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_b4c4ecd7680db17db8354903.woff2')format("woff");}.ff2a{font-family:ff2a;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:ff2b;src:url('chunks/assets/font_22ace349bc4ab287132f21bd.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_63c36f40e4917590186a9005.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v2{vertical-align:-19.800000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:27.720000px;}
.lse{letter-spacing:-0.483840px;}
.ls21{letter-spacing:-0.476582px;}
.ls18{letter-spacing:-0.465773px;}
.ls2b{letter-spacing:-0.453600px;}
.ls28{letter-spacing:-0.362880px;}
.ls1d{letter-spacing:-0.349330px;}
.ls33{letter-spacing:-0.330000px;}
.ls13{letter-spacing:-0.317520px;}
.ls1a{letter-spacing:-0.261997px;}
.lsf{letter-spacing:-0.241920px;}
.ls22{letter-spacing:-0.238291px;}
.ls19{letter-spacing:-0.232886px;}
.ls11{letter-spacing:-0.136080px;}
.ls24{letter-spacing:-0.134039px;}
.ls1c{letter-spacing:-0.130999px;}
.ls27{letter-spacing:-0.090720px;}
.ls10{letter-spacing:-0.045360px;}
.ls25{letter-spacing:-0.044680px;}
.ls1b{letter-spacing:-0.043666px;}
.ls4{letter-spacing:0.000000px;}
.ls31{letter-spacing:0.004800px;}
.ls2{letter-spacing:0.007200px;}
.ls1{letter-spacing:0.007800px;}
.ls3{letter-spacing:0.010200px;}
.ls30{letter-spacing:0.029400px;}
.ls17{letter-spacing:0.043666px;}
.ls23{letter-spacing:0.044680px;}
.lsc{letter-spacing:0.045360px;}
.lsd{letter-spacing:0.120000px;}
.ls32{letter-spacing:0.235200px;}
.ls1e{letter-spacing:0.261997px;}
.ls12{letter-spacing:0.272160px;}
.ls14{letter-spacing:0.408240px;}
.ls8{letter-spacing:2.574000px;}
.ls6{letter-spacing:2.740200px;}
.ls34{letter-spacing:6.403800px;}
.ls5{letter-spacing:38.229600px;}
.ls16{letter-spacing:142.133481px;}
.ls2a{letter-spacing:160.891920px;}
.ls26{letter-spacing:161.028000px;}
.ls20{letter-spacing:223.085243px;}
.ls29{letter-spacing:1456.111800px;}
.ls35{letter-spacing:1456.440000px;}
.lsb{letter-spacing:1456.791600px;}
.ls2d{letter-spacing:1457.119800px;}
.ls15{letter-spacing:1457.916600px;}
.ls2e{letter-spacing:1458.244800px;}
.ls1f{letter-spacing:1459.159200px;}
.ls2f{letter-spacing:1459.486800px;}
.ls9{letter-spacing:1462.299600px;}
.lsa{letter-spacing:1462.651200px;}
.ls2c{letter-spacing:1462.979400px;}
.ls0{letter-spacing:1464.104400px;}
.ls7{letter-spacing:1465.346400px;}
.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;}
}
.ws29{word-spacing:-233.182832px;}
.ws2f{word-spacing:-171.279360px;}
.ws35{word-spacing:-171.143280px;}
.ws1d{word-spacing:-152.002042px;}
.wsb{word-spacing:-17.490000px;}
.wsc{word-spacing:-14.916000px;}
.wsd{word-spacing:-14.636160px;}
.ws28{word-spacing:-14.416618px;}
.ws1c{word-spacing:-14.089627px;}
.ws3{word-spacing:-13.560000px;}
.ws1{word-spacing:-11.741520px;}
.ws0{word-spacing:-11.568000px;}
.ws12{word-spacing:-10.659600px;}
.ws11{word-spacing:-10.523520px;}
.ws10{word-spacing:-10.206000px;}
.ws31{word-spacing:-9.888480px;}
.ws20{word-spacing:-9.824895px;}
.ws1f{word-spacing:-9.606564px;}
.ws21{word-spacing:-9.519232px;}
.ws2{word-spacing:-8.386800px;}
.ws3f{word-spacing:-3.234000px;}
.ws39{word-spacing:-2.574000px;}
.ws38{word-spacing:-1.254000px;}
.ws27{word-spacing:-0.436662px;}
.ws5{word-spacing:-0.264000px;}
.ws16{word-spacing:-0.136080px;}
.ws2e{word-spacing:-0.134039px;}
.ws18{word-spacing:-0.120000px;}
.ws33{word-spacing:-0.090720px;}
.ws15{word-spacing:-0.045360px;}
.ws2c{word-spacing:-0.044680px;}
.ws24{word-spacing:-0.043666px;}
.ws4{word-spacing:0.000000px;}
.ws25{word-spacing:0.087332px;}
.ws32{word-spacing:0.136080px;}
.ws23{word-spacing:0.232886px;}
.ws2b{word-spacing:0.238291px;}
.ws14{word-spacing:0.241920px;}
.ws37{word-spacing:0.272160px;}
.ws43{word-spacing:0.330000px;}
.ws34{word-spacing:0.589680px;}
.ws2d{word-spacing:0.670194px;}
.ws1b{word-spacing:0.680400px;}
.ws26{word-spacing:0.785992px;}
.ws17{word-spacing:0.861840px;}
.ws42{word-spacing:1.122000px;}
.ws48{word-spacing:1.188000px;}
.ws8{word-spacing:1.440000px;}
.ws46{word-spacing:1.650000px;}
.ws3e{word-spacing:2.376000px;}
.ws3c{word-spacing:2.640000px;}
.wsa{word-spacing:2.760000px;}
.ws3a{word-spacing:3.234000px;}
.ws40{word-spacing:4.158000px;}
.ws44{word-spacing:6.138000px;}
.ws45{word-spacing:6.402000px;}
.ws3b{word-spacing:6.732000px;}
.ws9{word-spacing:7.440000px;}
.ws7{word-spacing:12.912000px;}
.ws6{word-spacing:13.680000px;}
.ws41{word-spacing:15.510000px;}
.ws47{word-spacing:20.460000px;}
.ws3d{word-spacing:38.214000px;}
.ws1e{word-spacing:109.995158px;}
.ws36{word-spacing:127.506960px;}
.ws30{word-spacing:127.643040px;}
.wsf{word-spacing:166.425840px;}
.wse{word-spacing:178.083360px;}
.ws1a{word-spacing:217.092960px;}
.ws19{word-spacing:228.705120px;}
.ws22{word-spacing:242.318299px;}
.ws2a{word-spacing:247.941994px;}
.ws13{word-spacing:251.717760px;}
._1e{margin-left:-15.172800px;}
._19{margin-left:-13.560000px;}
._24{margin-left:-11.047549px;}
._30{margin-left:-8.640000px;}
._f{margin-left:-7.152000px;}
._0{margin-left:-5.581200px;}
._3{margin-left:-4.078800px;}
._4{margin-left:-3.060000px;}
._2{margin-left:-1.380000px;}
._9{width:1.860000px;}
._6{width:3.840000px;}
._b{width:5.520000px;}
._a{width:6.600000px;}
._1{width:7.706400px;}
._5{width:9.180000px;}
._d{width:10.800000px;}
._15{width:12.126000px;}
._e{width:13.165200px;}
._16{width:15.972000px;}
._12{width:17.424000px;}
._10{width:18.942000px;}
._11{width:20.016000px;}
._14{width:21.120000px;}
._27{width:22.264800px;}
._2b{width:23.496000px;}
._2e{width:24.810000px;}
._28{width:25.872000px;}
._29{width:27.192000px;}
._2c{width:30.252000px;}
._2d{width:31.410000px;}
._2f{width:33.336000px;}
._c{width:38.133000px;}
._2a{width:41.772000px;}
._32{width:71.208000px;}
._1f{width:132.103200px;}
._1d{width:199.810800px;}
._21{width:250.477920px;}
._22{width:487.314792px;}
._25{width:498.624336px;}
._1b{width:506.217600px;}
._23{width:684.103800px;}
._26{width:702.461319px;}
._20{width:710.640000px;}
._1c{width:713.158387px;}
._18{width:917.312400px;}
._17{width:1465.778400px;}
._31{width:1466.958600px;}
._1a{width:1468.410000px;}
._13{width:1472.811600px;}
._8{width:1474.286400px;}
._7{width:1917.046800px;}
.fc7{color:rgb(112,109,110);}
.fc6{color:rgb(90,87,88);}
.fc5{color:rgb(60,84,172);}
.fc3{color:transparent;}
.fc4{color:rgb(65,84,167);}
.fc2{color:rgb(0,0,0);}
.fc1{color:rgb(35,31,32);}
.fc0{color:rgb(69,83,173);}
.fsf{font-size:29.110800px;}
.fs14{font-size:29.786400px;}
.fsa{font-size:30.240000px;}
.fs6{font-size:34.800000px;}
.fs7{font-size:36.000000px;}
.fs12{font-size:43.666200px;}
.fs17{font-size:44.679600px;}
.fsd{font-size:45.360000px;}
.fs0{font-size:48.000000px;}
.fse{font-size:48.324000px;}
.fs5{font-size:48.720000px;}
.fs13{font-size:49.445400px;}
.fs9{font-size:50.198400px;}
.fs11{font-size:53.563800px;}
.fs16{font-size:54.807000px;}
.fsc{font-size:55.641600px;}
.fs10{font-size:58.221600px;}
.fs15{font-size:59.572800px;}
.fs1{font-size:60.000000px;}
.fsb{font-size:60.480000px;}
.fs8{font-size:66.000000px;}
.fs4{font-size:84.000000px;}
.fs3{font-size:96.000000px;}
.fs2{font-size:132.000000px;}
.y1d8{bottom:-59.493121px;}
.yf5{bottom:-56.607072px;}
.y129{bottom:-55.190172px;}
.y1a5{bottom:-54.816693px;}
.y17c{bottom:-54.535200px;}
.y204{bottom:-28.010100px;}
.y1d7{bottom:-26.386369px;}
.yf4{bottom:-26.059834px;}
.y164{bottom:-24.949500px;}
.y1a4{bottom:-24.727650px;}
.y17b{bottom:-24.700650px;}
.y128{bottom:-24.642934px;}
.y23{bottom:-21.881700px;}
.y0{bottom:0.000000px;}
.y203{bottom:1.473750px;}
.y1d6{bottom:2.797650px;}
.yf3{bottom:3.277200px;}
.y127{bottom:4.694100px;}
.y1{bottom:68.077500px;}
.y91{bottom:128.417400px;}
.y22{bottom:130.733100px;}
.y11c{bottom:134.061750px;}
.y222{bottom:138.574950px;}
.y27e{bottom:138.616500px;}
.yc7{bottom:139.362300px;}
.ye8{bottom:141.525750px;}
.ya1{bottom:141.916500px;}
.y90{bottom:147.917400px;}
.y1c7{bottom:148.723500px;}
.y21{bottom:148.733250px;}
.y11b{bottom:152.061600px;}
.yc5{bottom:157.362300px;}
.y221{bottom:158.074950px;}
.y294{bottom:158.716500px;}
.y27d{bottom:158.716650px;}
.ye7{bottom:161.025750px;}
.ya0{bottom:161.416500px;}
.y1fb{bottom:163.415550px;}
.y20{bottom:166.733250px;}
.y8f{bottom:167.417400px;}
.y1c6{bottom:168.223500px;}
.y174{bottom:168.549900px;}
.y257{bottom:170.416950px;}
.y1a2{bottom:172.015524px;}
.yc6{bottom:175.362300px;}
.y220{bottom:177.574950px;}
.y6c{bottom:177.915600px;}
.y11a{bottom:178.565700px;}
.y293{bottom:178.816500px;}
.y27c{bottom:178.816650px;}
.ye6{bottom:180.525750px;}
.y9f{bottom:180.916500px;}
.y1fa{bottom:181.415550px;}
.y1f{bottom:184.733250px;}
.y8e{bottom:186.917400px;}
.y1c5{bottom:187.723500px;}
.y173{bottom:188.049900px;}
.y1a1{bottom:189.589500px;}
.y256{bottom:190.516950px;}
.y21f{bottom:197.074950px;}
.y6b{bottom:197.415600px;}
.y119{bottom:198.065700px;}
.y292{bottom:198.916500px;}
.y27b{bottom:198.916650px;}
.yc4{bottom:199.368300px;}
.y1f9{bottom:199.415550px;}
.y150{bottom:199.439100px;}
.ye5{bottom:200.025750px;}
.y9e{bottom:200.416500px;}
.y23e{bottom:204.916950px;}
.y8d{bottom:206.417400px;}
.y1c4{bottom:207.223500px;}
.y172{bottom:207.549900px;}
.y255{bottom:210.616950px;}
.y1a0{bottom:213.418800px;}
.y48{bottom:213.530700px;}
.y21e{bottom:216.574950px;}
.y6a{bottom:216.915600px;}
.yc2{bottom:217.368300px;}
.y1f8{bottom:217.415550px;}
.y118{bottom:217.565700px;}
.y14f{bottom:218.939100px;}
.y27a{bottom:219.016500px;}
.ye4{bottom:219.525750px;}
.y9d{bottom:219.916500px;}
.y1e{bottom:223.733700px;}
.y179{bottom:224.054928px;}
.y23d{bottom:224.416950px;}
.y8c{bottom:225.917400px;}
.y19f{bottom:230.248200px;}
.y254{bottom:230.716950px;}
.y47{bottom:231.530700px;}
.y1c3{bottom:235.227450px;}
.yc1{bottom:235.368300px;}
.y21d{bottom:236.074950px;}
.y69{bottom:236.415600px;}
.y117{bottom:237.065700px;}
.y14e{bottom:238.439100px;}
.ye3{bottom:239.025750px;}
.y279{bottom:239.116500px;}
.y9c{bottom:239.416500px;}
.y178{bottom:241.230300px;}
.y23c{bottom:243.916950px;}
.y1f7{bottom:243.919500px;}
.y15e{bottom:244.057800px;}
.y8b{bottom:245.417400px;}
.y202{bottom:247.627350px;}
.y163{bottom:249.046050px;}
.y253{bottom:250.816950px;}
.y1c2{bottom:253.227450px;}
.yc3{bottom:253.368300px;}
.y21c{bottom:255.574950px;}
.y68{bottom:255.915600px;}
.y162{bottom:256.131150px;}
.y116{bottom:256.565700px;}
.yf2{bottom:256.839450px;}
.y14d{bottom:257.939100px;}
.y126{bottom:258.256350px;}
.ye2{bottom:258.525750px;}
.y9b{bottom:258.916500px;}
.y291{bottom:259.216500px;}
.y278{bottom:259.216650px;}
.y16b{bottom:260.215290px;}
.y46{bottom:262.286700px;}
.y23b{bottom:263.416950px;}
.y1f6{bottom:263.419500px;}
.y177{bottom:264.519000px;}
.y8a{bottom:264.917400px;}
.y201{bottom:265.468950px;}
.y19d{bottom:266.194950px;}
.y252{bottom:270.916950px;}
.y1c1{bottom:271.227450px;}
.y161{bottom:273.972750px;}
.yf1{bottom:274.681050px;}
.y21b{bottom:275.074950px;}
.y67{bottom:275.415600px;}
.y115{bottom:276.065700px;}
.y125{bottom:276.097950px;}
.yc0{bottom:277.374150px;}
.y14c{bottom:277.439100px;}
.ye1{bottom:278.025750px;}
.y9a{bottom:278.416500px;}
.y290{bottom:279.316500px;}
.y277{bottom:279.316650px;}
.y45{bottom:280.286700px;}
.y176{bottom:280.966650px;}
.y23a{bottom:282.916950px;}
.y1f5{bottom:282.919500px;}
.y89{bottom:284.417400px;}
.y19c{bottom:285.694950px;}
.ybd{bottom:286.374150px;}
.y1c0{bottom:289.227450px;}
.y200{bottom:289.661100px;}
.y165{bottom:290.254950px;}
.y16c{bottom:290.889990px;}
.y251{bottom:291.016950px;}
.y21a{bottom:294.574950px;}
.y66{bottom:294.915600px;}
.y1a{bottom:295.236150px;}
.ybf{bottom:295.374150px;}
.y114{bottom:295.565700px;}
.y14b{bottom:296.939100px;}
.ye0{bottom:297.525750px;}
.y99{bottom:297.916500px;}
.y160{bottom:298.164900px;}
.y44{bottom:298.286700px;}
.yf0{bottom:298.873200px;}
.y28f{bottom:299.416500px;}
.y276{bottom:299.416650px;}
.y124{bottom:300.290100px;}
.y239{bottom:302.416950px;}
.y1f4{bottom:302.419500px;}
.y88{bottom:303.917400px;}
.ybc{bottom:304.374150px;}
.y19b{bottom:305.194950px;}
.y1ff{bottom:306.746700px;}
.y1bf{bottom:307.227450px;}
.y1d5{bottom:309.279900px;}
.y19{bottom:310.236150px;}
.y250{bottom:311.116950px;}
.ybe{bottom:313.374150px;}
.y219{bottom:314.074950px;}
.y65{bottom:314.415600px;}
.y15f{bottom:315.250500px;}
.yef{bottom:315.958800px;}
.y43{bottom:316.286700px;}
.y14a{bottom:316.439100px;}
.ydf{bottom:317.025750px;}
.y123{bottom:317.375700px;}
.y98{bottom:317.416500px;}
.y275{bottom:319.516500px;}
.y238{bottom:321.916950px;}
.y166{bottom:322.131690px;}
.y16d{bottom:322.766730px;}
.y87{bottom:323.417400px;}
.y113{bottom:323.569500px;}
.y19a{bottom:324.694950px;}
.y18{bottom:325.236150px;}
.y1d4{bottom:327.121500px;}
.y24f{bottom:331.216950px;}
.y1d{bottom:332.736150px;}
.y218{bottom:333.574950px;}
.y1be{bottom:333.731400px;}
.y64{bottom:333.915600px;}
.y42{bottom:334.286700px;}
.yde{bottom:336.525750px;}
.y97{bottom:336.916500px;}
.ybb{bottom:337.380000px;}
.y1d1{bottom:338.928300px;}
.y274{bottom:339.616500px;}
.y17{bottom:340.236150px;}
.y237{bottom:341.416950px;}
.y112{bottom:341.569500px;}
.y86{bottom:342.917400px;}
.y199{bottom:344.194950px;}
.y149{bottom:344.443050px;}
.y1c{bottom:347.736150px;}
.y1d3{bottom:351.313650px;}
.y24e{bottom:351.316950px;}
.y41{bottom:352.286700px;}
.y1bd{bottom:353.231400px;}
.y63{bottom:353.415600px;}
.y1e6{bottom:353.524470px;}
.y167{bottom:354.008430px;}
.y16e{bottom:354.643470px;}
.y16{bottom:355.236150px;}
.yb9{bottom:355.380000px;}
.y96{bottom:356.416500px;}
.y111{bottom:359.569500px;}
.y28e{bottom:359.716500px;}
.y273{bottom:359.716650px;}
.y236{bottom:360.916950px;}
.yad{bottom:362.417400px;}
.y148{bottom:362.443050px;}
.y1b{bottom:362.736150px;}
.y198{bottom:363.694950px;}
.y1d2{bottom:368.399250px;}
.y40{bottom:370.286700px;}
.y24d{bottom:371.416950px;}
.y1bc{bottom:372.731400px;}
.y62{bottom:372.915600px;}
.yba{bottom:373.380000px;}
.y217{bottom:374.075400px;}
.y95{bottom:375.916500px;}
.y1d9{bottom:377.020950px;}
.ydd{bottom:377.026200px;}
.y110{bottom:377.569500px;}
.y1e7{bottom:377.633310px;}
.y28d{bottom:379.816500px;}
.y272{bottom:379.816650px;}
.y235{bottom:380.416950px;}
.y147{bottom:380.443050px;}
.yac{bottom:381.917400px;}
.y197{bottom:383.194950px;}
.y85{bottom:383.417850px;}
.y15{bottom:385.236150px;}
.y168{bottom:385.885170px;}
.y16f{bottom:386.520210px;}
.y3f{bottom:388.286700px;}
.y24c{bottom:391.516950px;}
.y1bb{bottom:392.231400px;}
.y61{bottom:392.415600px;}
.y94{bottom:395.416500px;}
.y1da{bottom:395.743290px;}
.y1e8{bottom:396.355650px;}
.yb8{bottom:397.386000px;}
.y146{bottom:398.443050px;}
.y28c{bottom:399.916500px;}
.y271{bottom:399.916650px;}
.y234{bottom:399.916950px;}
.y14{bottom:400.236150px;}
.yab{bottom:401.417400px;}
.y84{bottom:402.917850px;}
.y10f{bottom:404.073450px;}
.y3e{bottom:406.286700px;}
.y196{bottom:411.199050px;}
.y24b{bottom:411.616950px;}
.y1ba{bottom:411.731400px;}
.y60{bottom:411.915600px;}
.y1db{bottom:414.465630px;}
.y93{bottom:414.916500px;}
.y1e9{bottom:415.077990px;}
.yb7{bottom:415.386000px;}
.y169{bottom:417.761910px;}
.y170{bottom:418.396950px;}
.y233{bottom:419.416950px;}
.y270{bottom:420.016500px;}
.yaa{bottom:420.917400px;}
.y10e{bottom:423.573450px;}
.y3d{bottom:424.286700px;}
.yb4{bottom:424.386000px;}
.y145{bottom:424.947000px;}
.y216{bottom:425.074050px;}
.ydc{bottom:428.024850px;}
.y195{bottom:429.199050px;}
.y1b9{bottom:431.231400px;}
.y5f{bottom:431.415600px;}
.y24a{bottom:431.716950px;}
.y1dc{bottom:433.187970px;}
.yb6{bottom:433.386000px;}
.y1ea{bottom:433.800330px;}
.y92{bottom:434.416500px;}
.y232{bottom:438.916950px;}
.y26f{bottom:440.116500px;}
.ya9{bottom:440.417400px;}
.y3c{bottom:442.286700px;}
.y13{bottom:443.316300px;}
.y144{bottom:444.447000px;}
.y215{bottom:444.574050px;}
.y194{bottom:447.199050px;}
.ydb{bottom:447.524850px;}
.y16a{bottom:449.638650px;}
.y171{bottom:450.273690px;}
.y1b8{bottom:450.731400px;}
.y5e{bottom:450.915600px;}
.yb5{bottom:451.386000px;}
.y249{bottom:451.816950px;}
.y1dd{bottom:451.910310px;}
.y1eb{bottom:452.522670px;}
.y83{bottom:453.916500px;}
.y231{bottom:458.416950px;}
.ya8{bottom:459.917400px;}
.y28b{bottom:460.216500px;}
.y26e{bottom:460.216650px;}
.y3b{bottom:460.286700px;}
.y143{bottom:463.947000px;}
.y214{bottom:464.074050px;}
.y193{bottom:465.199050px;}
.y12{bottom:466.266300px;}
.yda{bottom:467.024850px;}
.y1b7{bottom:470.231400px;}
.y5d{bottom:470.415600px;}
.y1de{bottom:470.632650px;}
.y1ec{bottom:471.245010px;}
.y248{bottom:471.916950px;}
.y82{bottom:473.416500px;}
.yb3{bottom:475.391850px;}
.y230{bottom:477.916950px;}
.y3a{bottom:478.286700px;}
.ya7{bottom:479.417400px;}
.yee{bottom:479.581800px;}
.y28a{bottom:480.316500px;}
.y26d{bottom:480.316650px;}
.y142{bottom:483.447000px;}
.y11{bottom:484.266300px;}
.yd9{bottom:486.524850px;}
.y1df{bottom:489.354990px;}
.y1b6{bottom:489.731400px;}
.y5c{bottom:489.915600px;}
.y1ed{bottom:489.967350px;}
.y192{bottom:491.702850px;}
.y247{bottom:492.016950px;}
.y81{bottom:492.916500px;}
.yb1{bottom:493.391850px;}
.y105{bottom:495.352290px;}
.y39{bottom:496.286700px;}
.y22f{bottom:497.416950px;}
.ya6{bottom:498.917400px;}
.y289{bottom:500.416500px;}
.y26c{bottom:500.416650px;}
.y10{bottom:502.266300px;}
.yd8{bottom:506.024850px;}
.y1e0{bottom:508.077330px;}
.y1ee{bottom:508.689690px;}
.y5b{bottom:509.415600px;}
.y15d{bottom:510.632550px;}
.y191{bottom:511.202850px;}
.yb2{bottom:511.391850px;}
.y246{bottom:512.116950px;}
.y80{bottom:512.416500px;}
.y38{bottom:514.286700px;}
.yf6{bottom:515.866350px;}
.y106{bottom:516.422010px;}
.y22e{bottom:516.916950px;}
.ya5{bottom:518.417400px;}
.y1fe{bottom:520.081800px;}
.y26b{bottom:520.516500px;}
.yd7{bottom:525.524850px;}
.y1e1{bottom:526.799670px;}
.y1ef{bottom:527.412030px;}
.yf7{bottom:528.510450px;}
.y15c{bottom:528.632550px;}
.y5a{bottom:528.915600px;}
.y1b5{bottom:530.231850px;}
.y190{bottom:530.702850px;}
.y7f{bottom:531.916500px;}
.y245{bottom:532.216950px;}
.y37{bottom:532.286700px;}
.y20c{bottom:532.759020px;}
.yf{bottom:534.816300px;}
.yb0{bottom:535.397850px;}
.y22d{bottom:536.416950px;}
.ya4{bottom:537.917400px;}
.y122{bottom:539.455800px;}
.y26a{bottom:540.616500px;}
.yf8{bottom:541.154550px;}
.y107{bottom:541.721550px;}
.yd6{bottom:545.024850px;}
.y1e2{bottom:545.522010px;}
.y1f0{bottom:546.134370px;}
.y59{bottom:548.415600px;}
.y36{bottom:550.286700px;}
.y7e{bottom:551.416500px;}
.y244{bottom:552.316950px;}
.yf9{bottom:553.798650px;}
.y22c{bottom:555.916950px;}
.y139{bottom:556.643190px;}
.ya3{bottom:557.417400px;}
.ye{bottom:558.816300px;}
.y205{bottom:559.997700px;}
.y20d{bottom:560.621400px;}
.y288{bottom:560.716500px;}
.y269{bottom:560.716650px;}
.y1e3{bottom:564.244350px;}
.yd5{bottom:564.524850px;}
.y1f1{bottom:564.856710px;}
.yfa{bottom:566.442750px;}
.y108{bottom:567.021090px;}
.y175{bottom:567.210300px;}
.y15b{bottom:567.892350px;}
.y58{bottom:567.915600px;}
.y35{bottom:568.286700px;}
.y17a{bottom:570.751200px;}
.y7d{bottom:570.916500px;}
.yaf{bottom:572.156700px;}
.y243{bottom:572.416950px;}
.y22b{bottom:575.416950px;}
.y12a{bottom:577.157250px;}
.y13a{bottom:577.712910px;}
.yfb{bottom:579.086850px;}
.y287{bottom:580.816500px;}
.y268{bottom:580.816650px;}
.y186{bottom:582.552673px;}
.yd{bottom:582.816300px;}
.y1e4{bottom:582.966690px;}
.y1f2{bottom:583.579050px;}
.yd4{bottom:584.024850px;}
.y206{bottom:586.238460px;}
.y20e{bottom:586.862160px;}
.y15a{bottom:587.392350px;}
.y57{bottom:587.415600px;}
.y1b4{bottom:589.734450px;}
.y12b{bottom:589.801350px;}
.yae{bottom:590.156700px;}
.y7c{bottom:590.416500px;}
.yfc{bottom:591.730950px;}
.y109{bottom:592.320630px;}
.y242{bottom:592.516950px;}
.y22a{bottom:594.916950px;}
.ya2{bottom:597.917850px;}
.y286{bottom:600.916500px;}
.y267{bottom:600.916650px;}
.y1e5{bottom:601.689030px;}
.y1f3{bottom:602.301390px;}
.y12c{bottom:602.445450px;}
.y13b{bottom:603.012450px;}
.yd3{bottom:603.524850px;}
.yfd{bottom:604.375050px;}
.y17d{bottom:604.997100px;}
.y187{bottom:605.597510px;}
.yc{bottom:606.816300px;}
.y159{bottom:606.892350px;}
.y56{bottom:606.915600px;}
.y34{bottom:607.287150px;}
.y1b3{bottom:607.734450px;}
.y7b{bottom:609.916500px;}
.y207{bottom:612.479220px;}
.y241{bottom:612.616950px;}
.y20f{bottom:613.102920px;}
.y229{bottom:614.416950px;}
.y12d{bottom:615.089550px;}
.yfe{bottom:617.019150px;}
.y10a{bottom:617.620170px;}
.y266{bottom:621.016500px;}
.y17e{bottom:622.703744px;}
.yd2{bottom:623.024850px;}
.y188{bottom:623.304154px;}
.y1b2{bottom:625.734450px;}
.y158{bottom:626.392350px;}
.y55{bottom:626.415600px;}
.y12e{bottom:627.733650px;}
.y13c{bottom:628.311990px;}
.y7a{bottom:629.416500px;}
.yff{bottom:629.663250px;}
.y240{bottom:632.716950px;}
.y228{bottom:633.916950px;}
.y208{bottom:638.719980px;}
.y210{bottom:639.343680px;}
.y12f{bottom:640.377750px;}
.y17f{bottom:640.410388px;}
.y189{bottom:641.010798px;}
.y265{bottom:641.116500px;}
.y100{bottom:642.307350px;}
.y10b{bottom:642.919710px;}
.y54{bottom:645.915600px;}
.y79{bottom:648.916500px;}
.yb{bottom:652.076100px;}
.y1b1{bottom:652.238400px;}
.y23f{bottom:652.816950px;}
.y130{bottom:653.021850px;}
.y227{bottom:653.416950px;}
.y13d{bottom:653.611530px;}
.y157{bottom:654.396300px;}
.y101{bottom:654.951450px;}
.y33{bottom:656.785650px;}
.y180{bottom:658.117032px;}
.y18a{bottom:658.717443px;}
.y1d0{bottom:658.769850px;}
.y285{bottom:661.216500px;}
.y264{bottom:661.216650px;}
.yd1{bottom:663.525300px;}
.y209{bottom:664.960740px;}
.y53{bottom:665.415600px;}
.y211{bottom:665.584440px;}
.y131{bottom:665.665950px;}
.y102{bottom:667.595550px;}
.y10c{bottom:668.219250px;}
.y78{bottom:668.416500px;}
.y1b0{bottom:671.738400px;}
.y32{bottom:674.785650px;}
.y181{bottom:675.823676px;}
.y18b{bottom:676.424087px;}
.y1cf{bottom:676.769850px;}
.y132{bottom:678.310050px;}
.y13e{bottom:678.911070px;}
.ya{bottom:679.076100px;}
.y103{bottom:680.239650px;}
.y284{bottom:681.316500px;}
.y263{bottom:681.316650px;}
.y52{bottom:684.915600px;}
.y77{bottom:687.916500px;}
.y156{bottom:689.404200px;}
.y133{bottom:690.954150px;}
.y20a{bottom:691.201500px;}
.y1af{bottom:691.238400px;}
.y212{bottom:691.825200px;}
.y104{bottom:692.883750px;}
.y10d{bottom:693.518790px;}
.y182{bottom:693.530321px;}
.y226{bottom:693.917400px;}
.y18c{bottom:694.130731px;}
.y283{bottom:701.416500px;}
.y262{bottom:701.416650px;}
.y134{bottom:703.598250px;}
.y13f{bottom:704.210610px;}
.y51{bottom:704.415600px;}
.y31{bottom:705.541650px;}
.y9{bottom:706.076100px;}
.y155{bottom:707.404200px;}
.y76{bottom:707.416500px;}
.y183{bottom:711.236965px;}
.y18d{bottom:711.837375px;}
.yd0{bottom:714.523800px;}
.y135{bottom:716.242350px;}
.y20b{bottom:717.442260px;}
.y213{bottom:718.065960px;}
.y261{bottom:721.516500px;}
.y30{bottom:723.541650px;}
.y50{bottom:723.915600px;}
.y1ce{bottom:724.533600px;}
.y75{bottom:726.916500px;}
.y19e{bottom:727.746300px;}
.y136{bottom:728.886450px;}
.y184{bottom:728.943609px;}
.y140{bottom:729.510150px;}
.y18e{bottom:729.544019px;}
.y1a3{bottom:731.915700px;}
.ycf{bottom:734.023800px;}
.y137{bottom:741.530550px;}
.y2f{bottom:741.541650px;}
.y260{bottom:741.616500px;}
.y154{bottom:742.412100px;}
.y1cd{bottom:742.533600px;}
.y4f{bottom:743.415600px;}
.y225{bottom:744.916050px;}
.y8{bottom:745.831950px;}
.yed{bottom:746.156250px;}
.y74{bottom:746.416500px;}
.y185{bottom:746.650253px;}
.y18f{bottom:747.250663px;}
.y1aa{bottom:750.014182px;}
.yce{bottom:753.523800px;}
.y138{bottom:754.174650px;}
.y141{bottom:754.809690px;}
.y2e{bottom:759.541650px;}
.y153{bottom:760.412100px;}
.y1cc{bottom:760.533600px;}
.y282{bottom:761.716500px;}
.y25f{bottom:761.716650px;}
.y4e{bottom:762.915600px;}
.yec{bottom:764.156250px;}
.y224{bottom:764.416050px;}
.y73{bottom:765.916500px;}
.ycd{bottom:773.023800px;}
.y1a6{bottom:775.984200px;}
.y1ab{bottom:776.609714px;}
.y2d{bottom:777.541650px;}
.y152{bottom:778.412100px;}
.y1cb{bottom:778.533600px;}
.y25e{bottom:781.816500px;}
.y7{bottom:781.831950px;}
.y4d{bottom:782.415600px;}
.y223{bottom:783.916050px;}
.y72{bottom:785.416500px;}
.y1fd{bottom:786.656700px;}
.y2c{bottom:795.541650px;}
.y151{bottom:796.412100px;}
.y1ca{bottom:796.533600px;}
.y1a7{bottom:800.122354px;}
.y1ac{bottom:800.747868px;}
.y121{bottom:801.777750px;}
.y4c{bottom:801.915600px;}
.y281{bottom:801.916500px;}
.y25d{bottom:801.916650px;}
.yeb{bottom:803.416050px;}
.y1fc{bottom:804.656700px;}
.y71{bottom:804.916500px;}
.ycc{bottom:812.776800px;}
.y2b{bottom:813.541650px;}
.y6{bottom:817.831950px;}
.y120{bottom:819.777750px;}
.y4b{bottom:821.415600px;}
.y280{bottom:822.016500px;}
.y25c{bottom:822.016650px;}
.yea{bottom:822.916050px;}
.y1a8{bottom:824.260508px;}
.y70{bottom:824.416500px;}
.y1ad{bottom:824.886022px;}
.ycb{bottom:830.776800px;}
.y1c9{bottom:831.541500px;}
.y2a{bottom:831.541650px;}
.y25b{bottom:842.116500px;}
.ye9{bottom:842.416050px;}
.y6f{bottom:843.916500px;}
.y1a9{bottom:848.398662px;}
.y1ae{bottom:849.024176px;}
.y1c8{bottom:849.541500px;}
.y29{bottom:849.541650px;}
.y5{bottom:853.831950px;}
.yca{bottom:854.782650px;}
.y4a{bottom:861.916050px;}
.y27f{bottom:862.216500px;}
.y25a{bottom:862.216650px;}
.y6e{bottom:863.416500px;}
.y11f{bottom:867.541500px;}
.y28{bottom:867.541650px;}
.yc9{bottom:872.782650px;}
.y259{bottom:882.316500px;}
.y6d{bottom:882.916500px;}
.y11e{bottom:885.541500px;}
.y27{bottom:885.541650px;}
.y4{bottom:889.831950px;}
.yc8{bottom:896.788650px;}
.y49{bottom:902.416500px;}
.y258{bottom:902.416650px;}
.y11d{bottom:903.541500px;}
.y26{bottom:903.541650px;}
.y25{bottom:949.248450px;}
.y3{bottom:951.159000px;}
.y24{bottom:963.648450px;}
.y2{bottom:967.659000px;}
.h1d{height:22.017885px;}
.h24{height:22.528874px;}
.h12{height:22.871953px;}
.h7{height:26.320898px;}
.ha{height:26.532000px;}
.h21{height:31.342438px;}
.h29{height:32.069830px;}
.h16{height:32.558203px;}
.h2{height:36.304688px;}
.h1c{height:36.549744px;}
.h23{height:37.397912px;}
.h11{height:37.967442px;}
.h27{height:37.974186px;}
.h20{height:38.446673px;}
.h19{height:38.552456px;}
.h1e{height:38.804924px;}
.h28{height:39.339009px;}
.h1f{height:39.458780px;}
.h25{height:39.705504px;}
.h15{height:39.938063px;}
.h13{height:40.310156px;}
.h26{height:40.374534px;}
.h8{height:40.781250px;}
.h14{height:40.989375px;}
.hf{height:41.015625px;}
.h1a{height:41.074219px;}
.he{height:41.572266px;}
.hb{height:44.859375px;}
.hc{height:45.117188px;}
.h2c{height:45.181641px;}
.h3{height:45.380859px;}
.h9{height:49.482422px;}
.hd{height:54.430664px;}
.h6{height:64.569258px;}
.h5{height:72.562500px;}
.h4{height:99.837891px;}
.h22{height:159.150000px;}
.h1b{height:214.210500px;}
.h2b{height:235.984500px;}
.h17{height:240.943500px;}
.h10{height:242.361000px;}
.h18{height:246.613500px;}
.h2a{height:293.385000px;}
.h1{height:1021.500000px;}
.h0{height:1021.708800px;}
.w3{width:542.835000px;}
.w2{width:552.756000px;}
.w1{width:723.000000px;}
.w0{width:723.173400px;}
.xf{left:-12.255300px;}
.x4c{left:-7.079400px;}
.x23{left:-5.892450px;}
.x3d{left:-1.979850px;}
.x0{left:0.000000px;}
.x53{left:4.752600px;}
.x67{left:6.524250px;}
.x4{left:14.330400px;}
.x1{left:84.369750px;}
.x51{left:89.330400px;}
.xb{left:90.747750px;}
.x1c{left:91.926900px;}
.x4b{left:95.105213px;}
.x2f{left:98.289900px;}
.x6f{left:101.118960px;}
.x65{left:102.260670px;}
.x2{left:105.369750px;}
.x9{left:109.881600px;}
.x3c{left:114.153150px;}
.x50{left:124.698907px;}
.xa{left:130.869750px;}
.x64{left:134.069370px;}
.x21{left:135.393300px;}
.x1d{left:140.416740px;}
.x48{left:142.450290px;}
.x30{left:146.779740px;}
.x1b{left:148.547520px;}
.x47{left:150.201041px;}
.x70{left:152.545860px;}
.x2e{left:154.910520px;}
.x7{left:158.983050px;}
.x63{left:161.999790px;}
.x49{left:166.193786px;}
.x6e{left:172.787760px;}
.x46{left:179.773975px;}
.x4a{left:190.002782px;}
.x61{left:191.302350px;}
.x5f{left:193.377570px;}
.x66{left:208.890690px;}
.x1e{left:221.100840px;}
.x62{left:222.861570px;}
.x60{left:226.104810px;}
.x32{left:227.463840px;}
.x45{left:234.935302px;}
.x6d{left:236.269080px;}
.x44{left:244.978528px;}
.x8{left:246.284850px;}
.x3b{left:249.756870px;}
.x1a{left:260.824860px;}
.x20{left:263.580480px;}
.x43{left:265.512558px;}
.x31{left:266.518800px;}
.x1f{left:267.538140px;}
.x33{left:269.943480px;}
.xe{left:273.361500px;}
.x22{left:279.724350px;}
.x34{left:285.693900px;}
.x52{left:290.369400px;}
.x6{left:292.863900px;}
.x4f{left:294.436707px;}
.x5e{left:295.607670px;}
.x3a{left:301.172430px;}
.x6c{left:315.569700px;}
.x5d{left:318.605190px;}
.x19{left:330.531840px;}
.x2d{left:336.894840px;}
.x6b{left:338.555880px;}
.x39{left:342.189210px;}
.x42{left:347.648681px;}
.x18{left:352.043820px;}
.x38{left:355.865250px;}
.x5{left:359.300400px;}
.x6a{left:361.542060px;}
.x17{left:363.179700px;}
.x5c{left:364.611570px;}
.x4e{left:366.169805px;}
.x2c{left:369.542700px;}
.x37{left:383.205990px;}
.xc{left:385.550850px;}
.x5b{left:387.609090px;}
.x2b{left:391.825800px;}
.x16{left:396.598680px;}
.x2a{left:402.961680px;}
.xd{left:406.630050px;}
.x15{left:407.734560px;}
.x41{left:409.250772px;}
.x5a{left:410.606610px;}
.x29{left:414.097560px;}
.x14{left:418.870440px;}
.x28{left:425.233440px;}
.x59{left:433.604130px;}
.x3{left:439.367850px;}
.x13{left:452.289420px;}
.x58{left:456.601650px;}
.x27{left:458.652420px;}
.x40{left:470.841947px;}
.x57{left:479.599170px;}
.x54{left:541.512600px;}
.x68{left:543.284250px;}
.x10{left:547.487100px;}
.x56{left:548.591730px;}
.x12{left:552.557700px;}
.x24{left:553.849950px;}
.x26{left:558.920700px;}
.x36{left:560.949150px;}
.x55{left:571.589250px;}
.x3f{left:573.512100px;}
.x11{left:574.840800px;}
.x25{left:581.203800px;}
.x69{left:591.415200px;}
.x35{left:615.461400px;}
.x3e{left:627.489450px;}
.x4d{left:630.424050px;}
@media print{
.v2{vertical-align:-17.600000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:24.640000pt;}
.lse{letter-spacing:-0.430080pt;}
.ls21{letter-spacing:-0.423629pt;}
.ls18{letter-spacing:-0.414020pt;}
.ls2b{letter-spacing:-0.403200pt;}
.ls28{letter-spacing:-0.322560pt;}
.ls1d{letter-spacing:-0.310515pt;}
.ls33{letter-spacing:-0.293333pt;}
.ls13{letter-spacing:-0.282240pt;}
.ls1a{letter-spacing:-0.232886pt;}
.lsf{letter-spacing:-0.215040pt;}
.ls22{letter-spacing:-0.211814pt;}
.ls19{letter-spacing:-0.207010pt;}
.ls11{letter-spacing:-0.120960pt;}
.ls24{letter-spacing:-0.119146pt;}
.ls1c{letter-spacing:-0.116443pt;}
.ls27{letter-spacing:-0.080640pt;}
.ls10{letter-spacing:-0.040320pt;}
.ls25{letter-spacing:-0.039715pt;}
.ls1b{letter-spacing:-0.038814pt;}
.ls4{letter-spacing:0.000000pt;}
.ls31{letter-spacing:0.004267pt;}
.ls2{letter-spacing:0.006400pt;}
.ls1{letter-spacing:0.006933pt;}
.ls3{letter-spacing:0.009067pt;}
.ls30{letter-spacing:0.026133pt;}
.ls17{letter-spacing:0.038814pt;}
.ls23{letter-spacing:0.039715pt;}
.lsc{letter-spacing:0.040320pt;}
.lsd{letter-spacing:0.106667pt;}
.ls32{letter-spacing:0.209067pt;}
.ls1e{letter-spacing:0.232886pt;}
.ls12{letter-spacing:0.241920pt;}
.ls14{letter-spacing:0.362880pt;}
.ls8{letter-spacing:2.288000pt;}
.ls6{letter-spacing:2.435733pt;}
.ls34{letter-spacing:5.692267pt;}
.ls5{letter-spacing:33.981867pt;}
.ls16{letter-spacing:126.340872pt;}
.ls2a{letter-spacing:143.015040pt;}
.ls26{letter-spacing:143.136000pt;}
.ls20{letter-spacing:198.297994pt;}
.ls29{letter-spacing:1294.321600pt;}
.ls35{letter-spacing:1294.613333pt;}
.lsb{letter-spacing:1294.925867pt;}
.ls2d{letter-spacing:1295.217600pt;}
.ls15{letter-spacing:1295.925867pt;}
.ls2e{letter-spacing:1296.217600pt;}
.ls1f{letter-spacing:1297.030400pt;}
.ls2f{letter-spacing:1297.321600pt;}
.ls9{letter-spacing:1299.821867pt;}
.lsa{letter-spacing:1300.134400pt;}
.ls2c{letter-spacing:1300.426133pt;}
.ls0{letter-spacing:1301.426133pt;}
.ls7{letter-spacing:1302.530133pt;}
.ws29{word-spacing:-207.273629pt;}
.ws2f{word-spacing:-152.248320pt;}
.ws35{word-spacing:-152.127360pt;}
.ws1d{word-spacing:-135.112926pt;}
.wsb{word-spacing:-15.546667pt;}
.wsc{word-spacing:-13.258667pt;}
.wsd{word-spacing:-13.009920pt;}
.ws28{word-spacing:-12.814771pt;}
.ws1c{word-spacing:-12.524113pt;}
.ws3{word-spacing:-12.053333pt;}
.ws1{word-spacing:-10.436907pt;}
.ws0{word-spacing:-10.282667pt;}
.ws12{word-spacing:-9.475200pt;}
.ws11{word-spacing:-9.354240pt;}
.ws10{word-spacing:-9.072000pt;}
.ws31{word-spacing:-8.789760pt;}
.ws20{word-spacing:-8.733240pt;}
.ws1f{word-spacing:-8.539168pt;}
.ws21{word-spacing:-8.461539pt;}
.ws2{word-spacing:-7.454933pt;}
.ws3f{word-spacing:-2.874667pt;}
.ws39{word-spacing:-2.288000pt;}
.ws38{word-spacing:-1.114667pt;}
.ws27{word-spacing:-0.388144pt;}
.ws5{word-spacing:-0.234667pt;}
.ws16{word-spacing:-0.120960pt;}
.ws2e{word-spacing:-0.119146pt;}
.ws18{word-spacing:-0.106667pt;}
.ws33{word-spacing:-0.080640pt;}
.ws15{word-spacing:-0.040320pt;}
.ws2c{word-spacing:-0.039715pt;}
.ws24{word-spacing:-0.038814pt;}
.ws4{word-spacing:0.000000pt;}
.ws25{word-spacing:0.077629pt;}
.ws32{word-spacing:0.120960pt;}
.ws23{word-spacing:0.207010pt;}
.ws2b{word-spacing:0.211814pt;}
.ws14{word-spacing:0.215040pt;}
.ws37{word-spacing:0.241920pt;}
.ws43{word-spacing:0.293333pt;}
.ws34{word-spacing:0.524160pt;}
.ws2d{word-spacing:0.595728pt;}
.ws1b{word-spacing:0.604800pt;}
.ws26{word-spacing:0.698659pt;}
.ws17{word-spacing:0.766080pt;}
.ws42{word-spacing:0.997333pt;}
.ws48{word-spacing:1.056000pt;}
.ws8{word-spacing:1.280000pt;}
.ws46{word-spacing:1.466667pt;}
.ws3e{word-spacing:2.112000pt;}
.ws3c{word-spacing:2.346667pt;}
.wsa{word-spacing:2.453333pt;}
.ws3a{word-spacing:2.874667pt;}
.ws40{word-spacing:3.696000pt;}
.ws44{word-spacing:5.456000pt;}
.ws45{word-spacing:5.690667pt;}
.ws3b{word-spacing:5.984000pt;}
.ws9{word-spacing:6.613333pt;}
.ws7{word-spacing:11.477333pt;}
.ws6{word-spacing:12.160000pt;}
.ws41{word-spacing:13.786667pt;}
.ws47{word-spacing:18.186667pt;}
.ws3d{word-spacing:33.968000pt;}
.ws1e{word-spacing:97.773474pt;}
.ws36{word-spacing:113.339520pt;}
.ws30{word-spacing:113.460480pt;}
.wsf{word-spacing:147.934080pt;}
.wse{word-spacing:158.296320pt;}
.ws1a{word-spacing:192.971520pt;}
.ws19{word-spacing:203.293440pt;}
.ws22{word-spacing:215.394044pt;}
.ws2a{word-spacing:220.392883pt;}
.ws13{word-spacing:223.749120pt;}
._1e{margin-left:-13.486933pt;}
._19{margin-left:-12.053333pt;}
._24{margin-left:-9.820043pt;}
._30{margin-left:-7.680000pt;}
._f{margin-left:-6.357333pt;}
._0{margin-left:-4.961067pt;}
._3{margin-left:-3.625600pt;}
._4{margin-left:-2.720000pt;}
._2{margin-left:-1.226667pt;}
._9{width:1.653333pt;}
._6{width:3.413333pt;}
._b{width:4.906667pt;}
._a{width:5.866667pt;}
._1{width:6.850133pt;}
._5{width:8.160000pt;}
._d{width:9.600000pt;}
._15{width:10.778667pt;}
._e{width:11.702400pt;}
._16{width:14.197333pt;}
._12{width:15.488000pt;}
._10{width:16.837333pt;}
._11{width:17.792000pt;}
._14{width:18.773333pt;}
._27{width:19.790933pt;}
._2b{width:20.885333pt;}
._2e{width:22.053333pt;}
._28{width:22.997333pt;}
._29{width:24.170667pt;}
._2c{width:26.890667pt;}
._2d{width:27.920000pt;}
._2f{width:29.632000pt;}
._c{width:33.896000pt;}
._2a{width:37.130667pt;}
._32{width:63.296000pt;}
._1f{width:117.425067pt;}
._1d{width:177.609600pt;}
._21{width:222.647040pt;}
._22{width:433.168704pt;}
._25{width:443.221632pt;}
._1b{width:449.971200pt;}
._23{width:608.092267pt;}
._26{width:624.410061pt;}
._20{width:631.680000pt;}
._1c{width:633.918566pt;}
._18{width:815.388800pt;}
._17{width:1302.914133pt;}
._31{width:1303.963200pt;}
._1a{width:1305.253333pt;}
._13{width:1309.165867pt;}
._8{width:1310.476800pt;}
._7{width:1704.041600pt;}
.fsf{font-size:25.876267pt;}
.fs14{font-size:26.476800pt;}
.fsa{font-size:26.880000pt;}
.fs6{font-size:30.933333pt;}
.fs7{font-size:32.000000pt;}
.fs12{font-size:38.814400pt;}
.fs17{font-size:39.715200pt;}
.fsd{font-size:40.320000pt;}
.fs0{font-size:42.666667pt;}
.fse{font-size:42.954667pt;}
.fs5{font-size:43.306667pt;}
.fs13{font-size:43.951467pt;}
.fs9{font-size:44.620800pt;}
.fs11{font-size:47.612267pt;}
.fs16{font-size:48.717333pt;}
.fsc{font-size:49.459200pt;}
.fs10{font-size:51.752533pt;}
.fs15{font-size:52.953600pt;}
.fs1{font-size:53.333333pt;}
.fsb{font-size:53.760000pt;}
.fs8{font-size:58.666667pt;}
.fs4{font-size:74.666667pt;}
.fs3{font-size:85.333333pt;}
.fs2{font-size:117.333333pt;}
.y1d8{bottom:-52.882774pt;}
.yf5{bottom:-50.317397pt;}
.y129{bottom:-49.057931pt;}
.y1a5{bottom:-48.725949pt;}
.y17c{bottom:-48.475733pt;}
.y204{bottom:-24.897867pt;}
.y1d7{bottom:-23.454550pt;}
.yf4{bottom:-23.164297pt;}
.y164{bottom:-22.177333pt;}
.y1a4{bottom:-21.980133pt;}
.y17b{bottom:-21.956133pt;}
.y128{bottom:-21.904830pt;}
.y23{bottom:-19.450400pt;}
.y0{bottom:0.000000pt;}
.y203{bottom:1.310000pt;}
.y1d6{bottom:2.486800pt;}
.yf3{bottom:2.913067pt;}
.y127{bottom:4.172533pt;}
.y1{bottom:60.513333pt;}
.y91{bottom:114.148800pt;}
.y22{bottom:116.207200pt;}
.y11c{bottom:119.166000pt;}
.y222{bottom:123.177733pt;}
.y27e{bottom:123.214667pt;}
.yc7{bottom:123.877600pt;}
.ye8{bottom:125.800667pt;}
.ya1{bottom:126.148000pt;}
.y90{bottom:131.482133pt;}
.y1c7{bottom:132.198667pt;}
.y21{bottom:132.207333pt;}
.y11b{bottom:135.165867pt;}
.yc5{bottom:139.877600pt;}
.y221{bottom:140.511067pt;}
.y294{bottom:141.081333pt;}
.y27d{bottom:141.081467pt;}
.ye7{bottom:143.134000pt;}
.ya0{bottom:143.481333pt;}
.y1fb{bottom:145.258267pt;}
.y20{bottom:148.207333pt;}
.y8f{bottom:148.815467pt;}
.y1c6{bottom:149.532000pt;}
.y174{bottom:149.822133pt;}
.y257{bottom:151.481733pt;}
.y1a2{bottom:152.902688pt;}
.yc6{bottom:155.877600pt;}
.y220{bottom:157.844400pt;}
.y6c{bottom:158.147200pt;}
.y11a{bottom:158.725067pt;}
.y293{bottom:158.948000pt;}
.y27c{bottom:158.948133pt;}
.ye6{bottom:160.467333pt;}
.y9f{bottom:160.814667pt;}
.y1fa{bottom:161.258267pt;}
.y1f{bottom:164.207333pt;}
.y8e{bottom:166.148800pt;}
.y1c5{bottom:166.865333pt;}
.y173{bottom:167.155467pt;}
.y1a1{bottom:168.524000pt;}
.y256{bottom:169.348400pt;}
.y21f{bottom:175.177733pt;}
.y6b{bottom:175.480533pt;}
.y119{bottom:176.058400pt;}
.y292{bottom:176.814667pt;}
.y27b{bottom:176.814800pt;}
.yc4{bottom:177.216267pt;}
.y1f9{bottom:177.258267pt;}
.y150{bottom:177.279200pt;}
.ye5{bottom:177.800667pt;}
.y9e{bottom:178.148000pt;}
.y23e{bottom:182.148400pt;}
.y8d{bottom:183.482133pt;}
.y1c4{bottom:184.198667pt;}
.y172{bottom:184.488800pt;}
.y255{bottom:187.215067pt;}
.y1a0{bottom:189.705600pt;}
.y48{bottom:189.805067pt;}
.y21e{bottom:192.511067pt;}
.y6a{bottom:192.813867pt;}
.yc2{bottom:193.216267pt;}
.y1f8{bottom:193.258267pt;}
.y118{bottom:193.391733pt;}
.y14f{bottom:194.612533pt;}
.y27a{bottom:194.681333pt;}
.ye4{bottom:195.134000pt;}
.y9d{bottom:195.481333pt;}
.y1e{bottom:198.874400pt;}
.y179{bottom:199.159936pt;}
.y23d{bottom:199.481733pt;}
.y8c{bottom:200.815467pt;}
.y19f{bottom:204.665067pt;}
.y254{bottom:205.081733pt;}
.y47{bottom:205.805067pt;}
.y1c3{bottom:209.091067pt;}
.yc1{bottom:209.216267pt;}
.y21d{bottom:209.844400pt;}
.y69{bottom:210.147200pt;}
.y117{bottom:210.725067pt;}
.y14e{bottom:211.945867pt;}
.ye3{bottom:212.467333pt;}
.y279{bottom:212.548000pt;}
.y9c{bottom:212.814667pt;}
.y178{bottom:214.426933pt;}
.y23c{bottom:216.815067pt;}
.y1f7{bottom:216.817333pt;}
.y15e{bottom:216.940267pt;}
.y8b{bottom:218.148800pt;}
.y202{bottom:220.113200pt;}
.y163{bottom:221.374267pt;}
.y253{bottom:222.948400pt;}
.y1c2{bottom:225.091067pt;}
.yc3{bottom:225.216267pt;}
.y21c{bottom:227.177733pt;}
.y68{bottom:227.480533pt;}
.y162{bottom:227.672133pt;}
.y116{bottom:228.058400pt;}
.yf2{bottom:228.301733pt;}
.y14d{bottom:229.279200pt;}
.y126{bottom:229.561200pt;}
.ye2{bottom:229.800667pt;}
.y9b{bottom:230.148000pt;}
.y291{bottom:230.414667pt;}
.y278{bottom:230.414800pt;}
.y16b{bottom:231.302480pt;}
.y46{bottom:233.143733pt;}
.y23b{bottom:234.148400pt;}
.y1f6{bottom:234.150667pt;}
.y177{bottom:235.128000pt;}
.y8a{bottom:235.482133pt;}
.y201{bottom:235.972400pt;}
.y19d{bottom:236.617733pt;}
.y252{bottom:240.815067pt;}
.y1c1{bottom:241.091067pt;}
.y161{bottom:243.531333pt;}
.yf1{bottom:244.160933pt;}
.y21b{bottom:244.511067pt;}
.y67{bottom:244.813867pt;}
.y115{bottom:245.391733pt;}
.y125{bottom:245.420400pt;}
.yc0{bottom:246.554800pt;}
.y14c{bottom:246.612533pt;}
.ye1{bottom:247.134000pt;}
.y9a{bottom:247.481333pt;}
.y290{bottom:248.281333pt;}
.y277{bottom:248.281467pt;}
.y45{bottom:249.143733pt;}
.y176{bottom:249.748133pt;}
.y23a{bottom:251.481733pt;}
.y1f5{bottom:251.484000pt;}
.y89{bottom:252.815467pt;}
.y19c{bottom:253.951067pt;}
.ybd{bottom:254.554800pt;}
.y1c0{bottom:257.091067pt;}
.y200{bottom:257.476533pt;}
.y165{bottom:258.004400pt;}
.y16c{bottom:258.568880pt;}
.y251{bottom:258.681733pt;}
.y21a{bottom:261.844400pt;}
.y66{bottom:262.147200pt;}
.y1a{bottom:262.432133pt;}
.ybf{bottom:262.554800pt;}
.y114{bottom:262.725067pt;}
.y14b{bottom:263.945867pt;}
.ye0{bottom:264.467333pt;}
.y99{bottom:264.814667pt;}
.y160{bottom:265.035467pt;}
.y44{bottom:265.143733pt;}
.yf0{bottom:265.665067pt;}
.y28f{bottom:266.148000pt;}
.y276{bottom:266.148133pt;}
.y124{bottom:266.924533pt;}
.y239{bottom:268.815067pt;}
.y1f4{bottom:268.817333pt;}
.y88{bottom:270.148800pt;}
.ybc{bottom:270.554800pt;}
.y19b{bottom:271.284400pt;}
.y1ff{bottom:272.663733pt;}
.y1bf{bottom:273.091067pt;}
.y1d5{bottom:274.915467pt;}
.y19{bottom:275.765467pt;}
.y250{bottom:276.548400pt;}
.ybe{bottom:278.554800pt;}
.y219{bottom:279.177733pt;}
.y65{bottom:279.480533pt;}
.y15f{bottom:280.222667pt;}
.yef{bottom:280.852267pt;}
.y43{bottom:281.143733pt;}
.y14a{bottom:281.279200pt;}
.ydf{bottom:281.800667pt;}
.y123{bottom:282.111733pt;}
.y98{bottom:282.148000pt;}
.y275{bottom:284.014667pt;}
.y238{bottom:286.148400pt;}
.y166{bottom:286.339280pt;}
.y16d{bottom:286.903760pt;}
.y87{bottom:287.482133pt;}
.y113{bottom:287.617333pt;}
.y19a{bottom:288.617733pt;}
.y18{bottom:289.098800pt;}
.y1d4{bottom:290.774667pt;}
.y24f{bottom:294.415067pt;}
.y1d{bottom:295.765467pt;}
.y218{bottom:296.511067pt;}
.y1be{bottom:296.650133pt;}
.y64{bottom:296.813867pt;}
.y42{bottom:297.143733pt;}
.yde{bottom:299.134000pt;}
.y97{bottom:299.481333pt;}
.ybb{bottom:299.893333pt;}
.y1d1{bottom:301.269600pt;}
.y274{bottom:301.881333pt;}
.y17{bottom:302.432133pt;}
.y237{bottom:303.481733pt;}
.y112{bottom:303.617333pt;}
.y86{bottom:304.815467pt;}
.y199{bottom:305.951067pt;}
.y149{bottom:306.171600pt;}
.y1c{bottom:309.098800pt;}
.y1d3{bottom:312.278800pt;}
.y24e{bottom:312.281733pt;}
.y41{bottom:313.143733pt;}
.y1bd{bottom:313.983467pt;}
.y63{bottom:314.147200pt;}
.y1e6{bottom:314.243973pt;}
.y167{bottom:314.674160pt;}
.y16e{bottom:315.238640pt;}
.y16{bottom:315.765467pt;}
.yb9{bottom:315.893333pt;}
.y96{bottom:316.814667pt;}
.y111{bottom:319.617333pt;}
.y28e{bottom:319.748000pt;}
.y273{bottom:319.748133pt;}
.y236{bottom:320.815067pt;}
.yad{bottom:322.148800pt;}
.y148{bottom:322.171600pt;}
.y1b{bottom:322.432133pt;}
.y198{bottom:323.284400pt;}
.y1d2{bottom:327.466000pt;}
.y40{bottom:329.143733pt;}
.y24d{bottom:330.148400pt;}
.y1bc{bottom:331.316800pt;}
.y62{bottom:331.480533pt;}
.yba{bottom:331.893333pt;}
.y217{bottom:332.511467pt;}
.y95{bottom:334.148000pt;}
.y1d9{bottom:335.129733pt;}
.ydd{bottom:335.134400pt;}
.y110{bottom:335.617333pt;}
.y1e7{bottom:335.674053pt;}
.y28d{bottom:337.614667pt;}
.y272{bottom:337.614800pt;}
.y235{bottom:338.148400pt;}
.y147{bottom:338.171600pt;}
.yac{bottom:339.482133pt;}
.y197{bottom:340.617733pt;}
.y85{bottom:340.815867pt;}
.y15{bottom:342.432133pt;}
.y168{bottom:343.009040pt;}
.y16f{bottom:343.573520pt;}
.y3f{bottom:345.143733pt;}
.y24c{bottom:348.015067pt;}
.y1bb{bottom:348.650133pt;}
.y61{bottom:348.813867pt;}
.y94{bottom:351.481333pt;}
.y1da{bottom:351.771813pt;}
.y1e8{bottom:352.316133pt;}
.yb8{bottom:353.232000pt;}
.y146{bottom:354.171600pt;}
.y28c{bottom:355.481333pt;}
.y271{bottom:355.481467pt;}
.y234{bottom:355.481733pt;}
.y14{bottom:355.765467pt;}
.yab{bottom:356.815467pt;}
.y84{bottom:358.149200pt;}
.y10f{bottom:359.176400pt;}
.y3e{bottom:361.143733pt;}
.y196{bottom:365.510267pt;}
.y24b{bottom:365.881733pt;}
.y1ba{bottom:365.983467pt;}
.y60{bottom:366.147200pt;}
.y1db{bottom:368.413893pt;}
.y93{bottom:368.814667pt;}
.y1e9{bottom:368.958213pt;}
.yb7{bottom:369.232000pt;}
.y169{bottom:371.343920pt;}
.y170{bottom:371.908400pt;}
.y233{bottom:372.815067pt;}
.y270{bottom:373.348000pt;}
.yaa{bottom:374.148800pt;}
.y10e{bottom:376.509733pt;}
.y3d{bottom:377.143733pt;}
.yb4{bottom:377.232000pt;}
.y145{bottom:377.730667pt;}
.y216{bottom:377.843600pt;}
.ydc{bottom:380.466533pt;}
.y195{bottom:381.510267pt;}
.y1b9{bottom:383.316800pt;}
.y5f{bottom:383.480533pt;}
.y24a{bottom:383.748400pt;}
.y1dc{bottom:385.055973pt;}
.yb6{bottom:385.232000pt;}
.y1ea{bottom:385.600293pt;}
.y92{bottom:386.148000pt;}
.y232{bottom:390.148400pt;}
.y26f{bottom:391.214667pt;}
.ya9{bottom:391.482133pt;}
.y3c{bottom:393.143733pt;}
.y13{bottom:394.058933pt;}
.y144{bottom:395.064000pt;}
.y215{bottom:395.176933pt;}
.y194{bottom:397.510267pt;}
.ydb{bottom:397.799867pt;}
.y16a{bottom:399.678800pt;}
.y171{bottom:400.243280pt;}
.y1b8{bottom:400.650133pt;}
.y5e{bottom:400.813867pt;}
.yb5{bottom:401.232000pt;}
.y249{bottom:401.615067pt;}
.y1dd{bottom:401.698053pt;}
.y1eb{bottom:402.242373pt;}
.y83{bottom:403.481333pt;}
.y231{bottom:407.481733pt;}
.ya8{bottom:408.815467pt;}
.y28b{bottom:409.081333pt;}
.y26e{bottom:409.081467pt;}
.y3b{bottom:409.143733pt;}
.y143{bottom:412.397333pt;}
.y214{bottom:412.510267pt;}
.y193{bottom:413.510267pt;}
.y12{bottom:414.458933pt;}
.yda{bottom:415.133200pt;}
.y1b7{bottom:417.983467pt;}
.y5d{bottom:418.147200pt;}
.y1de{bottom:418.340133pt;}
.y1ec{bottom:418.884453pt;}
.y248{bottom:419.481733pt;}
.y82{bottom:420.814667pt;}
.yb3{bottom:422.570533pt;}
.y230{bottom:424.815067pt;}
.y3a{bottom:425.143733pt;}
.ya7{bottom:426.148800pt;}
.yee{bottom:426.294933pt;}
.y28a{bottom:426.948000pt;}
.y26d{bottom:426.948133pt;}
.y142{bottom:429.730667pt;}
.y11{bottom:430.458933pt;}
.yd9{bottom:432.466533pt;}
.y1df{bottom:434.982213pt;}
.y1b6{bottom:435.316800pt;}
.y5c{bottom:435.480533pt;}
.y1ed{bottom:435.526533pt;}
.y192{bottom:437.069200pt;}
.y247{bottom:437.348400pt;}
.y81{bottom:438.148000pt;}
.yb1{bottom:438.570533pt;}
.y105{bottom:440.313147pt;}
.y39{bottom:441.143733pt;}
.y22f{bottom:442.148400pt;}
.ya6{bottom:443.482133pt;}
.y289{bottom:444.814667pt;}
.y26c{bottom:444.814800pt;}
.y10{bottom:446.458933pt;}
.yd8{bottom:449.799867pt;}
.y1e0{bottom:451.624293pt;}
.y1ee{bottom:452.168613pt;}
.y5b{bottom:452.813867pt;}
.y15d{bottom:453.895600pt;}
.y191{bottom:454.402533pt;}
.yb2{bottom:454.570533pt;}
.y246{bottom:455.215067pt;}
.y80{bottom:455.481333pt;}
.y38{bottom:457.143733pt;}
.yf6{bottom:458.547867pt;}
.y106{bottom:459.041787pt;}
.y22e{bottom:459.481733pt;}
.ya5{bottom:460.815467pt;}
.y1fe{bottom:462.294933pt;}
.y26b{bottom:462.681333pt;}
.yd7{bottom:467.133200pt;}
.y1e1{bottom:468.266373pt;}
.y1ef{bottom:468.810693pt;}
.yf7{bottom:469.787067pt;}
.y15c{bottom:469.895600pt;}
.y5a{bottom:470.147200pt;}
.y1b5{bottom:471.317200pt;}
.y190{bottom:471.735867pt;}
.y7f{bottom:472.814667pt;}
.y245{bottom:473.081733pt;}
.y37{bottom:473.143733pt;}
.y20c{bottom:473.563573pt;}
.yf{bottom:475.392267pt;}
.yb0{bottom:475.909200pt;}
.y22d{bottom:476.815067pt;}
.ya4{bottom:478.148800pt;}
.y122{bottom:479.516267pt;}
.y26a{bottom:480.548000pt;}
.yf8{bottom:481.026267pt;}
.y107{bottom:481.530267pt;}
.yd6{bottom:484.466533pt;}
.y1e2{bottom:484.908453pt;}
.y1f0{bottom:485.452773pt;}
.y59{bottom:487.480533pt;}
.y36{bottom:489.143733pt;}
.y7e{bottom:490.148000pt;}
.y244{bottom:490.948400pt;}
.yf9{bottom:492.265467pt;}
.y22c{bottom:494.148400pt;}
.y139{bottom:494.793947pt;}
.ya3{bottom:495.482133pt;}
.ye{bottom:496.725600pt;}
.y205{bottom:497.775733pt;}
.y20d{bottom:498.330133pt;}
.y288{bottom:498.414667pt;}
.y269{bottom:498.414800pt;}
.y1e3{bottom:501.550533pt;}
.yd5{bottom:501.799867pt;}
.y1f1{bottom:502.094853pt;}
.yfa{bottom:503.504667pt;}
.y108{bottom:504.018747pt;}
.y175{bottom:504.186933pt;}
.y15b{bottom:504.793200pt;}
.y58{bottom:504.813867pt;}
.y35{bottom:505.143733pt;}
.y17a{bottom:507.334400pt;}
.y7d{bottom:507.481333pt;}
.yaf{bottom:508.583733pt;}
.y243{bottom:508.815067pt;}
.y22b{bottom:511.481733pt;}
.y12a{bottom:513.028667pt;}
.y13a{bottom:513.522587pt;}
.yfb{bottom:514.743867pt;}
.y287{bottom:516.281333pt;}
.y268{bottom:516.281467pt;}
.y186{bottom:517.824598pt;}
.yd{bottom:518.058933pt;}
.y1e4{bottom:518.192613pt;}
.y1f2{bottom:518.736933pt;}
.yd4{bottom:519.133200pt;}
.y206{bottom:521.100853pt;}
.y20e{bottom:521.655253pt;}
.y15a{bottom:522.126533pt;}
.y57{bottom:522.147200pt;}
.y1b4{bottom:524.208400pt;}
.y12b{bottom:524.267867pt;}
.yae{bottom:524.583733pt;}
.y7c{bottom:524.814667pt;}
.yfc{bottom:525.983067pt;}
.y109{bottom:526.507227pt;}
.y242{bottom:526.681733pt;}
.y22a{bottom:528.815067pt;}
.ya2{bottom:531.482533pt;}
.y286{bottom:534.148000pt;}
.y267{bottom:534.148133pt;}
.y1e5{bottom:534.834693pt;}
.y1f3{bottom:535.379013pt;}
.y12c{bottom:535.507067pt;}
.y13b{bottom:536.011067pt;}
.yd3{bottom:536.466533pt;}
.yfd{bottom:537.222267pt;}
.y17d{bottom:537.775200pt;}
.y187{bottom:538.308898pt;}
.yc{bottom:539.392267pt;}
.y159{bottom:539.459867pt;}
.y56{bottom:539.480533pt;}
.y34{bottom:539.810800pt;}
.y1b3{bottom:540.208400pt;}
.y7b{bottom:542.148000pt;}
.y207{bottom:544.425973pt;}
.y241{bottom:544.548400pt;}
.y20f{bottom:544.980373pt;}
.y229{bottom:546.148400pt;}
.y12d{bottom:546.746267pt;}
.yfe{bottom:548.461467pt;}
.y10a{bottom:548.995707pt;}
.y266{bottom:552.014667pt;}
.y17e{bottom:553.514439pt;}
.yd2{bottom:553.799867pt;}
.y188{bottom:554.048137pt;}
.y1b2{bottom:556.208400pt;}
.y158{bottom:556.793200pt;}
.y55{bottom:556.813867pt;}
.y12e{bottom:557.985467pt;}
.y13c{bottom:558.499547pt;}
.y7a{bottom:559.481333pt;}
.yff{bottom:559.700667pt;}
.y240{bottom:562.415067pt;}
.y228{bottom:563.481733pt;}
.y208{bottom:567.751093pt;}
.y210{bottom:568.305493pt;}
.y12f{bottom:569.224667pt;}
.y17f{bottom:569.253678pt;}
.y189{bottom:569.787376pt;}
.y265{bottom:569.881333pt;}
.y100{bottom:570.939867pt;}
.y10b{bottom:571.484187pt;}
.y54{bottom:574.147200pt;}
.y79{bottom:576.814667pt;}
.yb{bottom:579.623200pt;}
.y1b1{bottom:579.767467pt;}
.y23f{bottom:580.281733pt;}
.y130{bottom:580.463867pt;}
.y227{bottom:580.815067pt;}
.y13d{bottom:580.988027pt;}
.y157{bottom:581.685600pt;}
.y101{bottom:582.179067pt;}
.y33{bottom:583.809467pt;}
.y180{bottom:584.992918pt;}
.y18a{bottom:585.526616pt;}
.y1d0{bottom:585.573200pt;}
.y285{bottom:587.748000pt;}
.y264{bottom:587.748133pt;}
.yd1{bottom:589.800267pt;}
.y209{bottom:591.076213pt;}
.y53{bottom:591.480533pt;}
.y211{bottom:591.630613pt;}
.y131{bottom:591.703067pt;}
.y102{bottom:593.418267pt;}
.y10c{bottom:593.972667pt;}
.y78{bottom:594.148000pt;}
.y1b0{bottom:597.100800pt;}
.y32{bottom:599.809467pt;}
.y181{bottom:600.732157pt;}
.y18b{bottom:601.265855pt;}
.y1cf{bottom:601.573200pt;}
.y132{bottom:602.942267pt;}
.y13e{bottom:603.476507pt;}
.ya{bottom:603.623200pt;}
.y103{bottom:604.657467pt;}
.y284{bottom:605.614667pt;}
.y263{bottom:605.614800pt;}
.y52{bottom:608.813867pt;}
.y77{bottom:611.481333pt;}
.y156{bottom:612.803733pt;}
.y133{bottom:614.181467pt;}
.y20a{bottom:614.401333pt;}
.y1af{bottom:614.434133pt;}
.y212{bottom:614.955733pt;}
.y104{bottom:615.896667pt;}
.y10d{bottom:616.461147pt;}
.y182{bottom:616.471396pt;}
.y226{bottom:616.815467pt;}
.y18c{bottom:617.005094pt;}
.y283{bottom:623.481333pt;}
.y262{bottom:623.481467pt;}
.y134{bottom:625.420667pt;}
.y13f{bottom:625.964987pt;}
.y51{bottom:626.147200pt;}
.y31{bottom:627.148133pt;}
.y9{bottom:627.623200pt;}
.y155{bottom:628.803733pt;}
.y76{bottom:628.814667pt;}
.y183{bottom:632.210635pt;}
.y18d{bottom:632.744333pt;}
.yd0{bottom:635.132267pt;}
.y135{bottom:636.659867pt;}
.y20b{bottom:637.726453pt;}
.y213{bottom:638.280853pt;}
.y261{bottom:641.348000pt;}
.y30{bottom:643.148133pt;}
.y50{bottom:643.480533pt;}
.y1ce{bottom:644.029867pt;}
.y75{bottom:646.148000pt;}
.y19e{bottom:646.885600pt;}
.y136{bottom:647.899067pt;}
.y184{bottom:647.949874pt;}
.y140{bottom:648.453467pt;}
.y18e{bottom:648.483572pt;}
.y1a3{bottom:650.591733pt;}
.ycf{bottom:652.465600pt;}
.y137{bottom:659.138267pt;}
.y2f{bottom:659.148133pt;}
.y260{bottom:659.214667pt;}
.y154{bottom:659.921867pt;}
.y1cd{bottom:660.029867pt;}
.y4f{bottom:660.813867pt;}
.y225{bottom:662.147600pt;}
.y8{bottom:662.961733pt;}
.yed{bottom:663.250000pt;}
.y74{bottom:663.481333pt;}
.y185{bottom:663.689114pt;}
.y18f{bottom:664.222812pt;}
.y1aa{bottom:666.679273pt;}
.yce{bottom:669.798933pt;}
.y138{bottom:670.377467pt;}
.y141{bottom:670.941947pt;}
.y2e{bottom:675.148133pt;}
.y153{bottom:675.921867pt;}
.y1cc{bottom:676.029867pt;}
.y282{bottom:677.081333pt;}
.y25f{bottom:677.081467pt;}
.y4e{bottom:678.147200pt;}
.yec{bottom:679.250000pt;}
.y224{bottom:679.480933pt;}
.y73{bottom:680.814667pt;}
.ycd{bottom:687.132267pt;}
.y1a6{bottom:689.763733pt;}
.y1ab{bottom:690.319746pt;}
.y2d{bottom:691.148133pt;}
.y152{bottom:691.921867pt;}
.y1cb{bottom:692.029867pt;}
.y25e{bottom:694.948000pt;}
.y7{bottom:694.961733pt;}
.y4d{bottom:695.480533pt;}
.y223{bottom:696.814267pt;}
.y72{bottom:698.148000pt;}
.y1fd{bottom:699.250400pt;}
.y2c{bottom:707.148133pt;}
.y151{bottom:707.921867pt;}
.y1ca{bottom:708.029867pt;}
.y1a7{bottom:711.219870pt;}
.y1ac{bottom:711.775883pt;}
.y121{bottom:712.691333pt;}
.y4c{bottom:712.813867pt;}
.y281{bottom:712.814667pt;}
.y25d{bottom:712.814800pt;}
.yeb{bottom:714.147600pt;}
.y1fc{bottom:715.250400pt;}
.y71{bottom:715.481333pt;}
.ycc{bottom:722.468267pt;}
.y2b{bottom:723.148133pt;}
.y6{bottom:726.961733pt;}
.y120{bottom:728.691333pt;}
.y4b{bottom:730.147200pt;}
.y280{bottom:730.681333pt;}
.y25c{bottom:730.681467pt;}
.yea{bottom:731.480933pt;}
.y1a8{bottom:732.676007pt;}
.y70{bottom:732.814667pt;}
.y1ad{bottom:733.232020pt;}
.ycb{bottom:738.468267pt;}
.y1c9{bottom:739.148000pt;}
.y2a{bottom:739.148133pt;}
.y25b{bottom:748.548000pt;}
.ye9{bottom:748.814267pt;}
.y6f{bottom:750.148000pt;}
.y1a9{bottom:754.132144pt;}
.y1ae{bottom:754.688157pt;}
.y1c8{bottom:755.148000pt;}
.y29{bottom:755.148133pt;}
.y5{bottom:758.961733pt;}
.yca{bottom:759.806800pt;}
.y4a{bottom:766.147600pt;}
.y27f{bottom:766.414667pt;}
.y25a{bottom:766.414800pt;}
.y6e{bottom:767.481333pt;}
.y11f{bottom:771.148000pt;}
.y28{bottom:771.148133pt;}
.yc9{bottom:775.806800pt;}
.y259{bottom:784.281333pt;}
.y6d{bottom:784.814667pt;}
.y11e{bottom:787.148000pt;}
.y27{bottom:787.148133pt;}
.y4{bottom:790.961733pt;}
.yc8{bottom:797.145467pt;}
.y49{bottom:802.148000pt;}
.y258{bottom:802.148133pt;}
.y11d{bottom:803.148000pt;}
.y26{bottom:803.148133pt;}
.y25{bottom:843.776400pt;}
.y3{bottom:845.474667pt;}
.y24{bottom:856.576400pt;}
.y2{bottom:860.141333pt;}
.h1d{height:19.571454pt;}
.h24{height:20.025666pt;}
.h12{height:20.330625pt;}
.h7{height:23.396354pt;}
.ha{height:23.584000pt;}
.h21{height:27.859945pt;}
.h29{height:28.506516pt;}
.h16{height:28.940625pt;}
.h2{height:32.270833pt;}
.h1c{height:32.488661pt;}
.h23{height:33.242589pt;}
.h11{height:33.748838pt;}
.h27{height:33.754832pt;}
.h20{height:34.174820pt;}
.h19{height:34.268850pt;}
.h1e{height:34.493266pt;}
.h28{height:34.968008pt;}
.h1f{height:35.074471pt;}
.h25{height:35.293781pt;}
.h15{height:35.500500pt;}
.h13{height:35.831250pt;}
.h26{height:35.888475pt;}
.h8{height:36.250000pt;}
.h14{height:36.435000pt;}
.hf{height:36.458333pt;}
.h1a{height:36.510417pt;}
.he{height:36.953125pt;}
.hb{height:39.875000pt;}
.hc{height:40.104167pt;}
.h2c{height:40.161458pt;}
.h3{height:40.338542pt;}
.h9{height:43.984375pt;}
.hd{height:48.382812pt;}
.h6{height:57.394896pt;}
.h5{height:64.500000pt;}
.h4{height:88.744792pt;}
.h22{height:141.466667pt;}
.h1b{height:190.409333pt;}
.h2b{height:209.764000pt;}
.h17{height:214.172000pt;}
.h10{height:215.432000pt;}
.h18{height:219.212000pt;}
.h2a{height:260.786667pt;}
.h1{height:908.000000pt;}
.h0{height:908.185600pt;}
.w3{width:482.520000pt;}
.w2{width:491.338667pt;}
.w1{width:642.666667pt;}
.w0{width:642.820800pt;}
.xf{left:-10.893600pt;}
.x4c{left:-6.292800pt;}
.x23{left:-5.237733pt;}
.x3d{left:-1.759867pt;}
.x0{left:0.000000pt;}
.x53{left:4.224533pt;}
.x67{left:5.799333pt;}
.x4{left:12.738133pt;}
.x1{left:74.995333pt;}
.x51{left:79.404800pt;}
.xb{left:80.664667pt;}
.x1c{left:81.712800pt;}
.x4b{left:84.537967pt;}
.x2f{left:87.368800pt;}
.x6f{left:89.883520pt;}
.x65{left:90.898373pt;}
.x2{left:93.662000pt;}
.x9{left:97.672533pt;}
.x3c{left:101.469467pt;}
.x50{left:110.843473pt;}
.xa{left:116.328667pt;}
.x64{left:119.172773pt;}
.x21{left:120.349600pt;}
.x1d{left:124.814880pt;}
.x48{left:126.622480pt;}
.x30{left:130.470880pt;}
.x1b{left:132.042240pt;}
.x47{left:133.512036pt;}
.x70{left:135.596320pt;}
.x2e{left:137.698240pt;}
.x7{left:141.318267pt;}
.x63{left:143.999813pt;}
.x49{left:147.727810pt;}
.x6e{left:153.589120pt;}
.x46{left:159.799089pt;}
.x4a{left:168.891362pt;}
.x61{left:170.046533pt;}
.x5f{left:171.891173pt;}
.x66{left:185.680613pt;}
.x1e{left:196.534080pt;}
.x62{left:198.099173pt;}
.x60{left:200.982053pt;}
.x32{left:202.190080pt;}
.x45{left:208.831379pt;}
.x6d{left:210.016960pt;}
.x44{left:217.758691pt;}
.x8{left:218.919867pt;}
.x3b{left:222.006107pt;}
.x1a{left:231.844320pt;}
.x20{left:234.293760pt;}
.x43{left:236.011163pt;}
.x31{left:236.905600pt;}
.x1f{left:237.811680pt;}
.x33{left:239.949760pt;}
.xe{left:242.988000pt;}
.x22{left:248.643867pt;}
.x34{left:253.950133pt;}
.x52{left:258.106133pt;}
.x6{left:260.323467pt;}
.x4f{left:261.721518pt;}
.x5e{left:262.762373pt;}
.x3a{left:267.708827pt;}
.x6c{left:280.506400pt;}
.x5d{left:283.204613pt;}
.x19{left:293.806080pt;}
.x2d{left:299.462080pt;}
.x6b{left:300.938560pt;}
.x39{left:304.168187pt;}
.x42{left:309.021049pt;}
.x18{left:312.927840pt;}
.x38{left:316.324667pt;}
.x5{left:319.378133pt;}
.x6a{left:321.370720pt;}
.x17{left:322.826400pt;}
.x5c{left:324.099173pt;}
.x4e{left:325.484271pt;}
.x2c{left:328.482400pt;}
.x37{left:340.627547pt;}
.xc{left:342.711867pt;}
.x5b{left:344.541413pt;}
.x2b{left:348.289600pt;}
.x16{left:352.532160pt;}
.x2a{left:358.188160pt;}
.xd{left:361.448933pt;}
.x15{left:362.430720pt;}
.x41{left:363.778464pt;}
.x5a{left:364.983653pt;}
.x29{left:368.086720pt;}
.x14{left:372.329280pt;}
.x28{left:377.985280pt;}
.x59{left:385.425893pt;}
.x3{left:390.549200pt;}
.x13{left:402.035040pt;}
.x58{left:405.868133pt;}
.x27{left:407.691040pt;}
.x40{left:418.526175pt;}
.x57{left:426.310373pt;}
.x54{left:481.344533pt;}
.x68{left:482.919333pt;}
.x10{left:486.655200pt;}
.x56{left:487.637093pt;}
.x12{left:491.162400pt;}
.x24{left:492.311067pt;}
.x26{left:496.818400pt;}
.x36{left:498.621467pt;}
.x55{left:508.079333pt;}
.x3f{left:509.788533pt;}
.x11{left:510.969600pt;}
.x25{left:516.625600pt;}
.x69{left:525.702400pt;}
.x35{left:547.076800pt;}
.x3e{left:557.768400pt;}
.x4d{left:560.376933pt;}
}




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