
    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_41cd1e8170519f5c1162dd63.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_6a322cc07596a004aa37c8e8.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3;src:url('chunks/assets/font_32cb63392d08c8553807aa1f.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4;src:url('chunks/assets/font_fe3ee004d29e98205baff975.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_512837ff5c0ccf71b47e10dd.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.752000;font-style:normal;font-weight: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_bcbb2232e3b714ec1a5158c7.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_fc5b38ef8aa7685be7913df0.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.844000;font-style:normal;font-weight: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_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.847000;font-style:normal;font-weight: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_a252cac57e4f55eee84dab27.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_337d2307b377ad3164dc2fce.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_d5a0843a5b42efbca109b5b0.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.111000;font-style:normal;font-weight: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_2596bbb15e7bc764292c61b6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.826000;font-style:normal;font-weight: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_5d891ee50e1571defa336e3a.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_6cd4c80ca146264badf20554.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b18da237178e9a617321c595.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_a252cac57e4f55eee84dab27.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_714f679b96854ed1419367f7.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.888000;font-style:normal;font-weight: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_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_fe4b6811ce580ae000ccb6d8.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.844000;font-style:normal;font-weight: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_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.847000;font-style:normal;font-weight: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_a252cac57e4f55eee84dab27.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_714f679b96854ed1419367f7.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.888000;font-style:normal;font-weight: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_b18da237178e9a617321c595.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_fc5b38ef8aa7685be7913df0.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.844000;font-style:normal;font-weight: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_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_c0edfd651afabb26795a48e0.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.847000;font-style:normal;font-weight: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_b18da237178e9a617321c595.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_a252cac57e4f55eee84dab27.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_a51925702f84e780610370a1.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.888000;font-style:normal;font-weight: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_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.847000;font-style:normal;font-weight: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_fe4b6811ce580ae000ccb6d8.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.844000;font-style:normal;font-weight: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_d5a0843a5b42efbca109b5b0.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.111000;font-style:normal;font-weight: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_2cf48d07773da993c71c503a.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_714f679b96854ed1419367f7.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.888000;font-style:normal;font-weight: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_af5642b3c22ddaaf02abb608.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_fe4b6811ce580ae000ccb6d8.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.844000;font-style:normal;font-weight: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_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_132b681f334983232f43e51d.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.840000;font-style:normal;font-weight: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_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.847000;font-style:normal;font-weight: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_bcbb2232e3b714ec1a5158c7.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_a252cac57e4f55eee84dab27.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_714f679b96854ed1419367f7.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.888000;font-style:normal;font-weight: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_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.847000;font-style:normal;font-weight: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_a252cac57e4f55eee84dab27.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_714f679b96854ed1419367f7.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.888000;font-style:normal;font-weight: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_bcbb2232e3b714ec1a5158c7.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_fc5b38ef8aa7685be7913df0.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.844000;font-style:normal;font-weight: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_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_f52adf1787f104e98828cd38.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.544000;font-style:normal;font-weight: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_b18da237178e9a617321c595.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_a252cac57e4f55eee84dab27.woff2')format("woff");}.ff36{font-family:ff36;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:ff37;src:url('chunks/assets/font_714f679b96854ed1419367f7.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_fe4b6811ce580ae000ccb6d8.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.847000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_420f427afd512e3918eaced1.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_a252cac57e4f55eee84dab27.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_714f679b96854ed1419367f7.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_b18da237178e9a617321c595.woff2')format("woff");}.ff3d{font-family:ff3d;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:ff3e;src:url('chunks/assets/font_fc5b38ef8aa7685be7913df0.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_af00603ff9d3857470f44ce1.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:0.847000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_bcbb2232e3b714ec1a5158c7.woff2')format("woff");}.ff41{font-family:ff41;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:ff42;src:url('chunks/assets/font_a252cac57e4f55eee84dab27.woff2')format("woff");}.ff42{font-family:ff42;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:ff43;src:url('chunks/assets/font_714f679b96854ed1419367f7.woff2')format("woff");}.ff43{font-family:ff43;line-height:0.888000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_337d2307b377ad3164dc2fce.woff2')format("woff");}.ff44{font-family:ff44;line-height:0.900000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_fc5b38ef8aa7685be7913df0.woff2')format("woff");}.ff45{font-family:ff45;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_ae48b0f4c1af128b68db50a4.woff2')format("woff");}.ff46{font-family:ff46;line-height:0.922000;font-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:-28.206000px;}
.v4{vertical-align:-17.358000px;}
.v5{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:11.226000px;}
.v6{vertical-align:21.696720px;}
.v1{vertical-align:28.206000px;}
.lsa{letter-spacing:-1.080000px;}
.ls9{letter-spacing:0.000000px;}
.ls8{letter-spacing:0.540000px;}
.ls13{letter-spacing:2.450800px;}
.ls2{letter-spacing:2.986176px;}
.ls4{letter-spacing:2.987674px;}
.ls0{letter-spacing:2.988000px;}
.ls3{letter-spacing:2.989200px;}
.ls1{letter-spacing:3.804450px;}
.ls1d{letter-spacing:8.189257px;}
.ls1f{letter-spacing:11.118262px;}
.ls7{letter-spacing:11.955150px;}
.ls28{letter-spacing:12.375971px;}
.ls27{letter-spacing:12.732203px;}
.ls25{letter-spacing:12.911530px;}
.ls6{letter-spacing:13.449600px;}
.ls24{letter-spacing:13.688612px;}
.ls26{letter-spacing:14.764573px;}
.lsf{letter-spacing:14.943900px;}
.ls14{letter-spacing:15.302554px;}
.ls1b{letter-spacing:16.438290px;}
.ls1e{letter-spacing:16.552579px;}
.ls17{letter-spacing:16.617617px;}
.ls1a{letter-spacing:17.574026px;}
.ls12{letter-spacing:17.633802px;}
.ls19{letter-spacing:17.928128px;}
.ls1c{letter-spacing:17.933528px;}
.ls16{letter-spacing:17.934128px;}
.ls23{letter-spacing:18.530436px;}
.lsb{letter-spacing:19.427100px;}
.ls18{letter-spacing:19.845499px;}
.ls10{letter-spacing:20.919302px;}
.ls15{letter-spacing:21.339889px;}
.lse{letter-spacing:21.758318px;}
.ls5{letter-spacing:21.788352px;}
.ls11{letter-spacing:22.296299px;}
.ls21{letter-spacing:22.535401px;}
.ls20{letter-spacing:22.595177px;}
.lsd{letter-spacing:23.366282px;}
.ls22{letter-spacing:23.491811px;}
.lsc{letter-spacing:528.752374px;}
.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;}
}
.ws24{word-spacing:-19.427100px;}
.ws2{word-spacing:-15.984000px;}
.ws1{word-spacing:-15.012000px;}
.ws21{word-spacing:-13.500000px;}
.ws26{word-spacing:-12.000000px;}
.ws25{word-spacing:-0.540000px;}
.ws0{word-spacing:-0.099000px;}
.wsa{word-spacing:-0.077708px;}
.ws57{word-spacing:-0.059776px;}
.ws9{word-spacing:-0.054396px;}
.ws1e{word-spacing:-0.053798px;}
.ws5{word-spacing:-0.047821px;}
.ws22{word-spacing:0.000000px;}
.ws23{word-spacing:1.080000px;}
.wsa0{word-spacing:9.659761px;}
.wsc8{word-spacing:10.281429px;}
.wsd2{word-spacing:10.568353px;}
.wscc{word-spacing:10.663994px;}
.ws10{word-spacing:10.759680px;}
.wsc5{word-spacing:10.998738px;}
.wsc6{word-spacing:11.094379px;}
.wscb{word-spacing:11.142200px;}
.ws77{word-spacing:11.297588px;}
.ws89{word-spacing:11.476915px;}
.wsae{word-spacing:11.596466px;}
.wsb7{word-spacing:11.716018px;}
.wsb6{word-spacing:11.775793px;}
.ws37{word-spacing:11.895344px;}
.ws4{word-spacing:11.907329px;}
.ws48{word-spacing:11.955120px;}
.ws2b{word-spacing:12.014896px;}
.wsbe{word-spacing:12.194222px;}
.wsd3{word-spacing:12.242074px;}
.wsc4{word-spacing:12.289894px;}
.ws85{word-spacing:12.373549px;}
.wscd{word-spacing:12.385535px;}
.wsc{word-spacing:12.481229px;}
.ws3a{word-spacing:12.552876px;}
.ws74{word-spacing:12.612652px;}
.ws3e{word-spacing:12.672427px;}
.wsba{word-spacing:12.732203px;}
.wsd1{word-spacing:12.768100px;}
.wsb{word-spacing:12.804019px;}
.ws4a{word-spacing:12.851754px;}
.ws14{word-spacing:12.857818px;}
.wse{word-spacing:12.911616px;}
.ws4d{word-spacing:12.971305px;}
.ws7c{word-spacing:13.031081px;}
.wsbc{word-spacing:13.090856px;}
.ws49{word-spacing:13.210408px;}
.ws71{word-spacing:13.270183px;}
.ws41{word-spacing:13.329959px;}
.wsa5{word-spacing:13.389734px;}
.ws1c{word-spacing:13.395802px;}
.wsca{word-spacing:13.437589px;}
.ws80{word-spacing:13.509286px;}
.ws9a{word-spacing:13.569061px;}
.ws9c{word-spacing:13.628837px;}
.wsc3{word-spacing:13.676692px;}
.ws6d{word-spacing:13.688612px;}
.wsc9{word-spacing:13.724512px;}
.wsc7{word-spacing:13.820153px;}
.ws3b{word-spacing:13.867939px;}
.ws9e{word-spacing:13.987490px;}
.ws8a{word-spacing:14.047266px;}
.wsad{word-spacing:14.107042px;}
.ws3{word-spacing:14.156916px;}
.ws3d{word-spacing:14.166817px;}
.wsbb{word-spacing:14.226593px;}
.ws19{word-spacing:14.256576px;}
.ws76{word-spacing:14.286368px;}
.ws34{word-spacing:14.346144px;}
.ws5b{word-spacing:14.405920px;}
.ws83{word-spacing:14.465695px;}
.ws73{word-spacing:14.525471px;}
.wsa1{word-spacing:14.585246px;}
.wsd4{word-spacing:14.585283px;}
.ws98{word-spacing:14.645022px;}
.ws96{word-spacing:14.764573px;}
.ws54{word-spacing:14.824349px;}
.ws2d{word-spacing:14.884124px;}
.wsa3{word-spacing:14.943900px;}
.ws91{word-spacing:15.003676px;}
.wsbf{word-spacing:15.063451px;}
.ws29{word-spacing:15.183002px;}
.ws4b{word-spacing:15.242778px;}
.wsb9{word-spacing:15.362329px;}
.wsb1{word-spacing:15.422105px;}
.ws93{word-spacing:15.481880px;}
.ws55{word-spacing:15.541656px;}
.ws97{word-spacing:15.601432px;}
.wscf{word-spacing:15.637336px;}
.ws87{word-spacing:15.661207px;}
.ws11{word-spacing:15.709133px;}
.ws30{word-spacing:15.720983px;}
.wsd0{word-spacing:15.732977px;}
.ws4e{word-spacing:15.780758px;}
.ws1a{word-spacing:15.816730px;}
.ws9b{word-spacing:15.840534px;}
.wsf{word-spacing:15.870528px;}
.ws50{word-spacing:15.900310px;}
.wsa9{word-spacing:15.960085px;}
.ws31{word-spacing:16.019861px;}
.ws1b{word-spacing:16.031923px;}
.ws3f{word-spacing:16.079636px;}
.ws9f{word-spacing:16.139412px;}
.ws5a{word-spacing:16.199188px;}
.ws7e{word-spacing:16.258963px;}
.ws3c{word-spacing:16.318739px;}
.ws68{word-spacing:16.378514px;}
.wsc2{word-spacing:16.438290px;}
.ws95{word-spacing:16.498066px;}
.ws18{word-spacing:16.516109px;}
.ws9d{word-spacing:16.557841px;}
.wsa4{word-spacing:16.617617px;}
.ws7a{word-spacing:16.677392px;}
.ws2e{word-spacing:16.737168px;}
.ws63{word-spacing:16.856719px;}
.ws81{word-spacing:16.976270px;}
.ws16{word-spacing:17.107891px;}
.ws84{word-spacing:17.155597px;}
.ws15{word-spacing:17.161690px;}
.ws6b{word-spacing:17.275148px;}
.ws13{word-spacing:17.323085px;}
.ws94{word-spacing:17.334924px;}
.ws88{word-spacing:17.394700px;}
.ws7d{word-spacing:17.514251px;}
.ws59{word-spacing:17.574026px;}
.ws5c{word-spacing:17.633802px;}
.wsb5{word-spacing:17.693578px;}
.wsce{word-spacing:17.741443px;}
.ws5d{word-spacing:17.813129px;}
.ws6{word-spacing:17.861069px;}
.wsaf{word-spacing:17.872904px;}
.ws70{word-spacing:17.932680px;}
.ws6a{word-spacing:17.992456px;}
.ws53{word-spacing:18.052231px;}
.ws2c{word-spacing:18.112007px;}
.ws28{word-spacing:18.171782px;}
.ws62{word-spacing:18.291334px;}
.ws99{word-spacing:18.410885px;}
.ws2a{word-spacing:18.470660px;}
.wsb2{word-spacing:18.530436px;}
.ws33{word-spacing:18.590212px;}
.ws38{word-spacing:18.649987px;}
.ws6f{word-spacing:18.709763px;}
.ws36{word-spacing:18.769538px;}
.ws40{word-spacing:18.829314px;}
.wsa2{word-spacing:18.948865px;}
.ws69{word-spacing:19.128192px;}
.ws6e{word-spacing:19.187968px;}
.wsbd{word-spacing:19.307519px;}
.ws8{word-spacing:19.349392px;}
.ws32{word-spacing:19.427070px;}
.ws4c{word-spacing:19.486846px;}
.wsd{word-spacing:19.528819px;}
.ws52{word-spacing:19.606397px;}
.wsa8{word-spacing:19.666172px;}
.ws65{word-spacing:19.725948px;}
.ws66{word-spacing:19.785724px;}
.ws64{word-spacing:19.845499px;}
.wsb4{word-spacing:19.905275px;}
.ws72{word-spacing:19.965050px;}
.ws79{word-spacing:20.204153px;}
.wsa6{word-spacing:20.263928px;}
.wsa7{word-spacing:20.323704px;}
.ws12{word-spacing:20.389594px;}
.wsc1{word-spacing:20.503031px;}
.ws67{word-spacing:20.622582px;}
.wsb3{word-spacing:20.682358px;}
.ws82{word-spacing:20.742133px;}
.ws1d{word-spacing:20.766182px;}
.ws5e{word-spacing:20.921460px;}
.ws60{word-spacing:21.100787px;}
.ws47{word-spacing:21.220338px;}
.ws5f{word-spacing:21.280114px;}
.wsaa{word-spacing:21.339889px;}
.wsb8{word-spacing:21.519216px;}
.ws35{word-spacing:21.698543px;}
.ws17{word-spacing:21.734554px;}
.wsac{word-spacing:21.818094px;}
.ws6c{word-spacing:21.937645px;}
.ws42{word-spacing:22.057196px;}
.ws58{word-spacing:22.176748px;}
.ws56{word-spacing:22.236523px;}
.ws45{word-spacing:22.356074px;}
.wsab{word-spacing:22.415850px;}
.ws86{word-spacing:22.475626px;}
.ws78{word-spacing:23.073382px;}
.ws51{word-spacing:23.133157px;}
.ws39{word-spacing:23.252708px;}
.ws2f{word-spacing:23.312484px;}
.ws61{word-spacing:23.372260px;}
.ws7f{word-spacing:23.432035px;}
.ws43{word-spacing:23.671138px;}
.wsb0{word-spacing:24.926425px;}
.ws7{word-spacing:25.303131px;}
.ws1f{word-spacing:25.351171px;}
.ws75{word-spacing:25.583957px;}
.ws46{word-spacing:26.719693px;}
.ws7b{word-spacing:27.018571px;}
.ws44{word-spacing:27.496776px;}
.ws4f{word-spacing:28.034756px;}
.ws27{word-spacing:29.828024px;}
.ws8e{word-spacing:85.598659px;}
.ws8b{word-spacing:85.658435px;}
.ws92{word-spacing:116.807500px;}
.ws8d{word-spacing:135.451510px;}
.ws8c{word-spacing:153.683068px;}
.ws90{word-spacing:166.953251px;}
.ws8f{word-spacing:457.044238px;}
.wsc0{word-spacing:516.749404px;}
.ws20{word-spacing:1361.384400px;}
._24{margin-left:-22.102914px;}
._11{margin-left:-8.729974px;}
._2{margin-left:-6.211200px;}
._3{margin-left:-4.548544px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._4{width:1.899497px;}
._b{width:3.166739px;}
._f{width:8.129482px;}
._10{width:10.759608px;}
._1c{width:13.210408px;}
._6{width:15.780758px;}
._e{width:16.974902px;}
._c{width:18.530436px;}
._d{width:21.740790px;}
._25{width:23.384457px;}
._27{width:25.437793px;}
._a{width:29.887800px;}
._26{width:35.196037px;}
._13{width:71.964360px;}
._19{width:116.861298px;}
._17{width:135.451510px;}
._15{width:153.742843px;}
._16{width:167.013026px;}
._18{width:242.987814px;}
._1b{width:271.439632px;}
._23{width:312.572210px;}
._22{width:315.859868px;}
._1a{width:324.580140px;}
._8{width:343.584900px;}
._1d{width:366.842857px;}
._12{width:377.303587px;}
._14{width:382.504064px;}
._21{width:435.351293px;}
._1e{width:455.316343px;}
._20{width:475.221618px;}
._9{width:528.392347px;}
._1f{width:626.747166px;}
._5{width:649.830600px;}
._7{width:745.830600px;}
.fc4{color:transparent;}
.fc3{color:rgb(0,57,255);}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:35.865600px;}
.fs9{font-size:38.854200px;}
.fsd{font-size:41.842800px;}
.fs4{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:51.108000px;}
.fsb{font-size:53.798400px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:54.396000px;}
.fsc{font-size:59.775600px;}
.fs5{font-size:71.731200px;}
.fs7{font-size:77.708400px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:101.619000px;}
.y35{bottom:-156.131304px;}
.y34{bottom:-141.187367px;}
.y33{bottom:-126.243429px;}
.y32{bottom:-100.413455px;}
.y31{bottom:-73.339410px;}
.y30{bottom:-57.199890px;}
.y67{bottom:-47.284725px;}
.y2f{bottom:-41.060370px;}
.y66{bottom:-32.340788px;}
.y36{bottom:-31.889700px;}
.y2e{bottom:-24.920850px;}
.y65{bottom:-17.396850px;}
.y0{bottom:0.000000px;}
.y63{bottom:35.506516px;}
.y69{bottom:48.000000px;}
.y62{bottom:51.646036px;}
.y61{bottom:67.785556px;}
.y7{bottom:68.015850px;}
.y6{bottom:81.515850px;}
.y60{bottom:83.925076px;}
.y5{bottom:96.515850px;}
.y159{bottom:107.998454px;}
.y142{bottom:107.999940px;}
.y119{bottom:108.000540px;}
.y173{bottom:108.001740px;}
.y10c{bottom:108.002160px;}
.yee{bottom:108.007861px;}
.y4{bottom:110.015850px;}
.y5f{bottom:117.992912px;}
.y158{bottom:125.931134px;}
.y141{bottom:125.932620px;}
.y118{bottom:125.933220px;}
.y172{bottom:125.934420px;}
.y10b{bottom:125.934840px;}
.yed{bottom:125.940541px;}
.y5e{bottom:134.132432px;}
.yc0{bottom:134.578800px;}
.y157{bottom:143.863814px;}
.y140{bottom:143.865300px;}
.y117{bottom:143.865900px;}
.y171{bottom:143.867100px;}
.y10a{bottom:143.867520px;}
.yec{bottom:143.873221px;}
.y5d{bottom:150.271952px;}
.y116{bottom:161.798580px;}
.y170{bottom:161.799780px;}
.y109{bottom:161.800200px;}
.yeb{bottom:161.805901px;}
.y3a{bottom:163.276500px;}
.y5c{bottom:166.411472px;}
.y64{bottom:171.717150px;}
.ybf{bottom:179.668362px;}
.y115{bottom:179.731260px;}
.y16f{bottom:179.732460px;}
.y108{bottom:179.732880px;}
.yea{bottom:179.738581px;}
.y5b{bottom:182.550992px;}
.y95{bottom:182.578800px;}
.y13f{bottom:185.046720px;}
.y156{bottom:185.049202px;}
.ybe{bottom:197.601042px;}
.y114{bottom:197.663940px;}
.y16e{bottom:197.665140px;}
.y107{bottom:197.665560px;}
.ye9{bottom:197.671261px;}
.y1a4{bottom:198.445275px;}
.y5a{bottom:198.690512px;}
.y13e{bottom:202.979400px;}
.y155{bottom:202.981882px;}
.y1a3{bottom:213.389212px;}
.y59{bottom:214.830032px;}
.ybd{bottom:215.533722px;}
.y113{bottom:215.596620px;}
.y16d{bottom:215.597820px;}
.y106{bottom:215.598240px;}
.ye8{bottom:215.603941px;}
.y13d{bottom:220.912080px;}
.y154{bottom:220.914562px;}
.y39{bottom:224.025150px;}
.y94{bottom:227.668362px;}
.y1a2{bottom:228.333150px;}
.y58{bottom:230.969552px;}
.ybc{bottom:233.466402px;}
.y16c{bottom:233.530500px;}
.y105{bottom:233.530920px;}
.ye7{bottom:233.536621px;}
.y13c{bottom:238.844760px;}
.y153{bottom:238.847242px;}
.y38{bottom:239.025150px;}
.y1a1{bottom:243.277087px;}
.y93{bottom:245.601042px;}
.y57{bottom:247.109072px;}
.ybb{bottom:251.399082px;}
.y16b{bottom:251.463180px;}
.y104{bottom:251.463600px;}
.ye6{bottom:251.469301px;}
.y37{bottom:254.025150px;}
.y13b{bottom:256.777440px;}
.y152{bottom:256.779922px;}
.y1a0{bottom:258.221025px;}
.y56{bottom:263.248592px;}
.y92{bottom:263.533722px;}
.yba{bottom:269.331762px;}
.y16a{bottom:269.395860px;}
.y103{bottom:269.396280px;}
.ye5{bottom:269.401981px;}
.y8{bottom:272.125500px;}
.y19f{bottom:273.164962px;}
.y13a{bottom:274.710120px;}
.y151{bottom:274.712602px;}
.y55{bottom:279.388112px;}
.y2d{bottom:281.269412px;}
.y91{bottom:281.466402px;}
.yb9{bottom:287.264442px;}
.y169{bottom:287.328540px;}
.y102{bottom:287.328960px;}
.ye4{bottom:287.334661px;}
.y19e{bottom:288.108900px;}
.y139{bottom:292.642800px;}
.y150{bottom:292.645282px;}
.y54{bottom:295.527632px;}
.y2c{bottom:297.408932px;}
.y90{bottom:299.399082px;}
.y19d{bottom:303.052837px;}
.yb8{bottom:305.197122px;}
.y168{bottom:305.261220px;}
.y101{bottom:305.261640px;}
.ye3{bottom:305.267341px;}
.y53{bottom:311.667152px;}
.y2b{bottom:313.548452px;}
.y8f{bottom:317.331762px;}
.y19c{bottom:317.996775px;}
.y138{bottom:318.079800px;}
.yb7{bottom:323.129802px;}
.y167{bottom:323.193900px;}
.y100{bottom:323.194320px;}
.ye2{bottom:323.200021px;}
.y52{bottom:327.806672px;}
.y2a{bottom:329.687972px;}
.y19b{bottom:332.940712px;}
.y8e{bottom:335.264442px;}
.yb6{bottom:341.062482px;}
.y166{bottom:341.126580px;}
.yff{bottom:341.127000px;}
.ye1{bottom:341.132701px;}
.y137{bottom:341.986800px;}
.y51{bottom:343.946192px;}
.y29{bottom:345.827492px;}
.y19a{bottom:347.884650px;}
.y8d{bottom:353.197122px;}
.yb5{bottom:358.995162px;}
.y165{bottom:359.059260px;}
.yfe{bottom:359.059680px;}
.ye0{bottom:359.065381px;}
.y50{bottom:360.085712px;}
.y28{bottom:361.967012px;}
.y199{bottom:362.828587px;}
.y8c{bottom:371.129802px;}
.y4f{bottom:376.225232px;}
.yb4{bottom:376.927842px;}
.y164{bottom:376.991940px;}
.yfd{bottom:376.992360px;}
.ydf{bottom:376.998061px;}
.y198{bottom:377.772525px;}
.y27{bottom:378.106532px;}
.y14f{bottom:387.990358px;}
.y136{bottom:387.992400px;}
.y8b{bottom:389.062482px;}
.y197{bottom:392.716462px;}
.y26{bottom:394.246052px;}
.yb3{bottom:394.860522px;}
.y163{bottom:394.924620px;}
.yfc{bottom:394.925040px;}
.yde{bottom:394.930741px;}
.y4e{bottom:402.532650px;}
.y14e{bottom:405.923038px;}
.y135{bottom:405.925080px;}
.y8a{bottom:406.995162px;}
.y196{bottom:407.660400px;}
.y25{bottom:410.385572px;}
.yb2{bottom:412.793202px;}
.y162{bottom:412.857300px;}
.yfb{bottom:412.857720px;}
.ydd{bottom:412.863421px;}
.y195{bottom:422.604337px;}
.y14d{bottom:423.855718px;}
.y134{bottom:423.857760px;}
.y89{bottom:424.927842px;}
.y24{bottom:426.525092px;}
.yb1{bottom:430.725882px;}
.yfa{bottom:430.790400px;}
.ydc{bottom:430.796101px;}
.y194{bottom:437.548275px;}
.y14c{bottom:441.788398px;}
.y133{bottom:441.790440px;}
.y23{bottom:442.664612px;}
.y88{bottom:442.860522px;}
.yb0{bottom:448.658562px;}
.yf9{bottom:448.723080px;}
.ydb{bottom:448.728781px;}
.y193{bottom:452.492212px;}
.y22{bottom:458.804132px;}
.y14b{bottom:459.721078px;}
.y132{bottom:459.723120px;}
.y87{bottom:460.793202px;}
.y161{bottom:461.182080px;}
.y4d{bottom:461.666362px;}
.yaf{bottom:466.591242px;}
.yf8{bottom:466.655760px;}
.yda{bottom:466.661461px;}
.y192{bottom:467.436150px;}
.y21{bottom:474.943652px;}
.y14a{bottom:477.653758px;}
.y131{bottom:477.655800px;}
.y86{bottom:478.725882px;}
.y160{bottom:479.114760px;}
.y4c{bottom:480.949800px;}
.y191{bottom:482.380087px;}
.yae{bottom:484.523922px;}
.yf7{bottom:484.588440px;}
.yd9{bottom:484.594141px;}
.y179{bottom:484.893019px;}
.y20{bottom:491.083172px;}
.y4b{bottom:492.300863px;}
.y85{bottom:496.658562px;}
.y15f{bottom:497.047440px;}
.y190{bottom:497.324025px;}
.yad{bottom:502.456602px;}
.yf6{bottom:502.521120px;}
.yd8{bottom:502.526821px;}
.y1f{bottom:507.222692px;}
.y4a{bottom:511.584300px;}
.y18f{bottom:512.267962px;}
.y84{bottom:514.591242px;}
.y15e{bottom:514.980120px;}
.yac{bottom:520.389282px;}
.yf5{bottom:520.454580px;}
.yd7{bottom:520.459501px;}
.y130{bottom:521.885220px;}
.y149{bottom:521.887702px;}
.y1e{bottom:523.362212px;}
.y18e{bottom:527.211900px;}
.y49{bottom:527.275800px;}
.y83{bottom:532.523922px;}
.y15d{bottom:532.912800px;}
.yab{bottom:538.321962px;}
.yf4{bottom:538.387260px;}
.yd6{bottom:538.392181px;}
.y1d{bottom:539.501732px;}
.y12f{bottom:539.817900px;}
.y148{bottom:539.820382px;}
.y18d{bottom:542.155837px;}
.y178{bottom:542.755800px;}
.y48{bottom:542.967300px;}
.y82{bottom:550.456602px;}
.yaa{bottom:556.254642px;}
.yf3{bottom:556.319940px;}
.y177{bottom:556.324861px;}
.y18c{bottom:557.099775px;}
.y12e{bottom:557.750580px;}
.y147{bottom:557.753062px;}
.y15c{bottom:558.348300px;}
.y112{bottom:560.688480px;}
.y47{bottom:562.531531px;}
.y1c{bottom:565.809150px;}
.y81{bottom:568.389282px;}
.y18b{bottom:572.043712px;}
.ya9{bottom:574.187322px;}
.yf2{bottom:574.252620px;}
.yd5{bottom:574.257541px;}
.y12d{bottom:575.683260px;}
.y146{bottom:575.685742px;}
.y111{bottom:578.621160px;}
.y45{bottom:581.734800px;}
.y15b{bottom:582.257362px;}
.y46{bottom:584.444165px;}
.y43{bottom:584.445300px;}
.y44{bottom:584.542436px;}
.y80{bottom:586.321962px;}
.y18a{bottom:586.987650px;}
.ya8{bottom:592.120002px;}
.yf1{bottom:592.185120px;}
.y176{bottom:592.190221px;}
.y12c{bottom:593.615940px;}
.y145{bottom:593.618422px;}
.y110{bottom:596.553840px;}
.y15a{bottom:597.201300px;}
.y189{bottom:601.931587px;}
.y7f{bottom:604.254642px;}
.ya7{bottom:610.052682px;}
.yf0{bottom:610.117800px;}
.y175{bottom:610.122901px;}
.yd4{bottom:610.421779px;}
.y12b{bottom:611.548620px;}
.y144{bottom:611.551102px;}
.y10f{bottom:614.486520px;}
.y188{bottom:616.875525px;}
.y42{bottom:621.579750px;}
.y7e{bottom:622.187322px;}
.y1b{bottom:624.942862px;}
.ya6{bottom:627.985362px;}
.y12a{bottom:629.481300px;}
.y143{bottom:629.483782px;}
.y187{bottom:631.819462px;}
.y10e{bottom:632.419200px;}
.y7d{bottom:640.120002px;}
.y1a{bottom:644.226300px;}
.ya5{bottom:645.918042px;}
.y174{bottom:646.287139px;}
.y186{bottom:646.763400px;}
.y10d{bottom:650.351880px;}
.y41{bottom:652.065450px;}
.y129{bottom:654.918300px;}
.y19{bottom:655.577363px;}
.y7c{bottom:658.052682px;}
.y185{bottom:661.707337px;}
.ya4{bottom:663.850722px;}
.yef{bottom:665.986800px;}
.yd3{bottom:668.284560px;}
.y18{bottom:674.860800px;}
.y7b{bottom:675.985362px;}
.y184{bottom:676.651275px;}
.yb{bottom:676.733342px;}
.y128{bottom:678.825300px;}
.ya3{bottom:681.783402px;}
.y40{bottom:682.551150px;}
.yd2{bottom:686.217240px;}
.y17{bottom:690.552300px;}
.ya{bottom:690.912150px;}
.y183{bottom:691.595212px;}
.y7a{bottom:693.918042px;}
.ya2{bottom:699.716082px;}
.yd1{bottom:704.149920px;}
.y16{bottom:706.243800px;}
.y182{bottom:706.539150px;}
.y79{bottom:711.850722px;}
.ya1{bottom:717.648762px;}
.y3f{bottom:719.462850px;}
.y127{bottom:721.783722px;}
.yd0{bottom:722.082600px;}
.y15{bottom:725.808031px;}
.y78{bottom:729.783402px;}
.ya0{bottom:735.581442px;}
.y3e{bottom:737.395650px;}
.y126{bottom:739.716402px;}
.ycf{bottom:740.015280px;}
.y13{bottom:745.011300px;}
.y77{bottom:747.716082px;}
.y14{bottom:747.720665px;}
.y11{bottom:747.721800px;}
.y12{bottom:747.818935px;}
.y9f{bottom:753.514122px;}
.y125{bottom:757.649082px;}
.yce{bottom:757.947960px;}
.y76{bottom:765.648762px;}
.y9e{bottom:771.446802px;}
.y9{bottom:771.865650px;}
.y124{bottom:775.581762px;}
.ycd{bottom:775.880640px;}
.y75{bottom:783.581442px;}
.y181{bottom:784.548102px;}
.y10{bottom:784.856250px;}
.y3d{bottom:785.582342px;}
.y9d{bottom:789.379482px;}
.y123{bottom:793.514442px;}
.ycc{bottom:793.813320px;}
.y3c{bottom:799.761150px;}
.y74{bottom:801.514122px;}
.y180{bottom:802.480782px;}
.y9c{bottom:807.312162px;}
.y122{bottom:811.447122px;}
.ycb{bottom:811.746000px;}
.yf{bottom:815.341950px;}
.y73{bottom:819.446802px;}
.y17f{bottom:820.413462px;}
.y9b{bottom:825.244842px;}
.y121{bottom:829.379802px;}
.yca{bottom:829.678680px;}
.y72{bottom:837.379482px;}
.y17e{bottom:838.346142px;}
.y9a{bottom:843.177522px;}
.ye{bottom:845.827650px;}
.y120{bottom:847.312482px;}
.yc9{bottom:847.611360px;}
.y71{bottom:855.312162px;}
.y17d{bottom:856.278822px;}
.y99{bottom:861.110202px;}
.y11f{bottom:865.245162px;}
.yc8{bottom:865.544040px;}
.y70{bottom:873.244842px;}
.y17c{bottom:874.211502px;}
.y98{bottom:879.042882px;}
.y3b{bottom:880.714650px;}
.yd{bottom:882.739350px;}
.y11e{bottom:883.177842px;}
.yc7{bottom:883.476720px;}
.y6f{bottom:891.177522px;}
.y17b{bottom:892.144182px;}
.y97{bottom:896.975562px;}
.yc{bottom:900.672150px;}
.y11d{bottom:901.110522px;}
.yc6{bottom:901.409400px;}
.y6e{bottom:909.110202px;}
.y11c{bottom:919.043202px;}
.yc5{bottom:919.342080px;}
.y6d{bottom:927.042882px;}
.y17a{bottom:928.308420px;}
.y96{bottom:933.139800px;}
.y11b{bottom:936.975882px;}
.yc4{bottom:937.274760px;}
.y6c{bottom:944.975562px;}
.y11a{bottom:954.908562px;}
.yc3{bottom:955.207440px;}
.y3{bottom:961.130850px;}
.yc2{bottom:973.140120px;}
.y6b{bottom:981.139800px;}
.y1{bottom:988.999500px;}
.yc1{bottom:991.072800px;}
.y6a{bottom:1020.960300px;}
.y2{bottom:1033.378950px;}
.y68{bottom:1035.561750px;}
.h1b{height:24.424474px;}
.h11{height:24.603802px;}
.h17{height:28.062000px;}
.h12{height:32.804932px;}
.h9{height:32.900573px;}
.h25{height:33.139676px;}
.h24{height:33.187496px;}
.h4{height:33.328125px;}
.h5{height:36.000000px;}
.h15{height:36.905702px;}
.h14{height:37.013299px;}
.h8{height:37.257732px;}
.h13{height:37.336090px;}
.h16{height:37.494141px;}
.h3{height:38.664000px;}
.h6{height:40.500000px;}
.h1d{height:41.006062px;}
.h1a{height:41.125613px;}
.h19{height:41.484266px;}
.h1e{height:41.783144px;}
.ha{height:49.351066px;}
.h21{height:50.187827px;}
.h20{height:50.191667px;}
.h22{height:50.454562px;}
.hd{height:53.463379px;}
.he{height:64.689379px;}
.hc{height:65.630448px;}
.hf{height:65.634990px;}
.h10{height:65.654923px;}
.hb{height:69.913872px;}
.h2{height:74.646000px;}
.h7{height:646.914000px;}
.h18{height:948.189000px;}
.h1f{height:1007.716500px;}
.h23{height:1009.843500px;}
.h1c{height:1011.967500px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:0.000000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x1b{left:-708.378000px;}
.x1d{left:-699.898350px;}
.x1c{left:-690.445320px;}
.x26{left:-673.163850px;}
.x25{left:-637.938000px;}
.x20{left:-585.018000px;}
.x24{left:-582.693000px;}
.x0{left:0.000000px;}
.x18{left:56.125950px;}
.x4{left:58.251900px;}
.x2b{left:101.531925px;}
.x17{left:108.000000px;}
.x19{left:109.003950px;}
.x8{left:112.576500px;}
.x15{left:115.446000px;}
.x12{left:117.370500px;}
.xb{left:121.381530px;}
.x13{left:123.462000px;}
.x1a{left:125.932680px;}
.x28{left:128.921174px;}
.xd{left:132.997500px;}
.xa{left:134.592000px;}
.x23{left:143.214000px;}
.x27{left:159.417000px;}
.x14{left:165.555729px;}
.x22{left:178.440000px;}
.x29{left:187.812243px;}
.x16{left:199.162060px;}
.x1f{left:231.359850px;}
.x21{left:233.685000px;}
.x2{left:236.123100px;}
.x1e{left:240.189000px;}
.x3{left:248.268900px;}
.x5{left:266.034000px;}
.x6{left:271.737000px;}
.x2a{left:277.224809px;}
.x1{left:284.738700px;}
.x9{left:286.901249px;}
.xc{left:327.414052px;}
.x11{left:368.951275px;}
.xe{left:447.275986px;}
.xf{left:469.803000px;}
.x10{left:473.707032px;}
.x7{left:538.767230px;}
@media print{
.v2{vertical-align:-25.072000pt;}
.v4{vertical-align:-15.429333pt;}
.v5{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:9.978667pt;}
.v6{vertical-align:19.285973pt;}
.v1{vertical-align:25.072000pt;}
.lsa{letter-spacing:-0.960000pt;}
.ls9{letter-spacing:0.000000pt;}
.ls8{letter-spacing:0.480000pt;}
.ls13{letter-spacing:2.178489pt;}
.ls2{letter-spacing:2.654379pt;}
.ls4{letter-spacing:2.655710pt;}
.ls0{letter-spacing:2.656000pt;}
.ls3{letter-spacing:2.657067pt;}
.ls1{letter-spacing:3.381733pt;}
.ls1d{letter-spacing:7.279340pt;}
.ls1f{letter-spacing:9.882899pt;}
.ls7{letter-spacing:10.626800pt;}
.ls28{letter-spacing:11.000863pt;}
.ls27{letter-spacing:11.317514pt;}
.ls25{letter-spacing:11.476915pt;}
.ls6{letter-spacing:11.955200pt;}
.ls24{letter-spacing:12.167655pt;}
.ls26{letter-spacing:13.124065pt;}
.lsf{letter-spacing:13.283467pt;}
.ls14{letter-spacing:13.602270pt;}
.ls1b{letter-spacing:14.611813pt;}
.ls1e{letter-spacing:14.713404pt;}
.ls17{letter-spacing:14.771215pt;}
.ls1a{letter-spacing:15.621357pt;}
.ls12{letter-spacing:15.674491pt;}
.ls19{letter-spacing:15.936114pt;}
.ls1c{letter-spacing:15.940914pt;}
.ls16{letter-spacing:15.941447pt;}
.ls23{letter-spacing:16.471499pt;}
.lsb{letter-spacing:17.268533pt;}
.ls18{letter-spacing:17.640444pt;}
.ls10{letter-spacing:18.594935pt;}
.ls15{letter-spacing:18.968790pt;}
.lse{letter-spacing:19.340727pt;}
.ls5{letter-spacing:19.367424pt;}
.ls11{letter-spacing:19.818932pt;}
.ls21{letter-spacing:20.031468pt;}
.ls20{letter-spacing:20.084602pt;}
.lsd{letter-spacing:20.770028pt;}
.ls22{letter-spacing:20.881610pt;}
.lsc{letter-spacing:470.002110pt;}
.ws24{word-spacing:-17.268533pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws21{word-spacing:-12.000000pt;}
.ws26{word-spacing:-10.666667pt;}
.ws25{word-spacing:-0.480000pt;}
.ws0{word-spacing:-0.088000pt;}
.wsa{word-spacing:-0.069074pt;}
.ws57{word-spacing:-0.053134pt;}
.ws9{word-spacing:-0.048352pt;}
.ws1e{word-spacing:-0.047821pt;}
.ws5{word-spacing:-0.042507pt;}
.ws22{word-spacing:0.000000pt;}
.ws23{word-spacing:0.960000pt;}
.wsa0{word-spacing:8.586454pt;}
.wsc8{word-spacing:9.139048pt;}
.wsd2{word-spacing:9.394091pt;}
.wscc{word-spacing:9.479106pt;}
.ws10{word-spacing:9.564160pt;}
.wsc5{word-spacing:9.776656pt;}
.wsc6{word-spacing:9.861670pt;}
.wscb{word-spacing:9.904178pt;}
.ws77{word-spacing:10.042301pt;}
.ws89{word-spacing:10.201702pt;}
.wsae{word-spacing:10.307970pt;}
.wsb7{word-spacing:10.414238pt;}
.wsb6{word-spacing:10.467372pt;}
.ws37{word-spacing:10.573639pt;}
.ws4{word-spacing:10.584293pt;}
.ws48{word-spacing:10.626773pt;}
.ws2b{word-spacing:10.679907pt;}
.wsbe{word-spacing:10.839309pt;}
.wsd3{word-spacing:10.881843pt;}
.wsc4{word-spacing:10.924350pt;}
.ws85{word-spacing:10.998710pt;}
.wscd{word-spacing:11.009365pt;}
.wsc{word-spacing:11.094426pt;}
.ws3a{word-spacing:11.158112pt;}
.ws74{word-spacing:11.211246pt;}
.ws3e{word-spacing:11.264380pt;}
.wsba{word-spacing:11.317514pt;}
.wsd1{word-spacing:11.349422pt;}
.wsb{word-spacing:11.381350pt;}
.ws4a{word-spacing:11.423781pt;}
.ws14{word-spacing:11.429171pt;}
.wse{word-spacing:11.476992pt;}
.ws4d{word-spacing:11.530049pt;}
.ws7c{word-spacing:11.583183pt;}
.wsbc{word-spacing:11.636317pt;}
.ws49{word-spacing:11.742585pt;}
.ws71{word-spacing:11.795718pt;}
.ws41{word-spacing:11.848852pt;}
.wsa5{word-spacing:11.901986pt;}
.ws1c{word-spacing:11.907379pt;}
.wsca{word-spacing:11.944523pt;}
.ws80{word-spacing:12.008254pt;}
.ws9a{word-spacing:12.061388pt;}
.ws9c{word-spacing:12.114522pt;}
.wsc3{word-spacing:12.157059pt;}
.ws6d{word-spacing:12.167655pt;}
.wsc9{word-spacing:12.199566pt;}
.wsc7{word-spacing:12.284581pt;}
.ws3b{word-spacing:12.327057pt;}
.ws9e{word-spacing:12.433325pt;}
.ws8a{word-spacing:12.486459pt;}
.wsad{word-spacing:12.539593pt;}
.ws3{word-spacing:12.583925pt;}
.ws3d{word-spacing:12.592726pt;}
.wsbb{word-spacing:12.645860pt;}
.ws19{word-spacing:12.672512pt;}
.ws76{word-spacing:12.698994pt;}
.ws34{word-spacing:12.752128pt;}
.ws5b{word-spacing:12.805262pt;}
.ws83{word-spacing:12.858396pt;}
.ws73{word-spacing:12.911530pt;}
.wsa1{word-spacing:12.964663pt;}
.wsd4{word-spacing:12.964696pt;}
.ws98{word-spacing:13.017797pt;}
.ws96{word-spacing:13.124065pt;}
.ws54{word-spacing:13.177199pt;}
.ws2d{word-spacing:13.230333pt;}
.wsa3{word-spacing:13.283467pt;}
.ws91{word-spacing:13.336601pt;}
.wsbf{word-spacing:13.389734pt;}
.ws29{word-spacing:13.496002pt;}
.ws4b{word-spacing:13.549136pt;}
.wsb9{word-spacing:13.655404pt;}
.wsb1{word-spacing:13.708538pt;}
.ws93{word-spacing:13.761671pt;}
.ws55{word-spacing:13.814805pt;}
.ws97{word-spacing:13.867939pt;}
.wscf{word-spacing:13.899854pt;}
.ws87{word-spacing:13.921073pt;}
.ws11{word-spacing:13.963674pt;}
.ws30{word-spacing:13.974207pt;}
.wsd0{word-spacing:13.984869pt;}
.ws4e{word-spacing:14.027341pt;}
.ws1a{word-spacing:14.059315pt;}
.ws9b{word-spacing:14.080475pt;}
.wsf{word-spacing:14.107136pt;}
.ws50{word-spacing:14.133609pt;}
.wsa9{word-spacing:14.186742pt;}
.ws31{word-spacing:14.239876pt;}
.ws1b{word-spacing:14.250598pt;}
.ws3f{word-spacing:14.293010pt;}
.ws9f{word-spacing:14.346144pt;}
.ws5a{word-spacing:14.399278pt;}
.ws7e{word-spacing:14.452412pt;}
.ws3c{word-spacing:14.505546pt;}
.ws68{word-spacing:14.558679pt;}
.wsc2{word-spacing:14.611813pt;}
.ws95{word-spacing:14.664947pt;}
.ws18{word-spacing:14.680986pt;}
.ws9d{word-spacing:14.718081pt;}
.wsa4{word-spacing:14.771215pt;}
.ws7a{word-spacing:14.824349pt;}
.ws2e{word-spacing:14.877483pt;}
.ws63{word-spacing:14.983750pt;}
.ws81{word-spacing:15.090018pt;}
.ws16{word-spacing:15.207014pt;}
.ws84{word-spacing:15.249420pt;}
.ws15{word-spacing:15.254835pt;}
.ws6b{word-spacing:15.355687pt;}
.ws13{word-spacing:15.398298pt;}
.ws94{word-spacing:15.408821pt;}
.ws88{word-spacing:15.461955pt;}
.ws7d{word-spacing:15.568223pt;}
.ws59{word-spacing:15.621357pt;}
.ws5c{word-spacing:15.674491pt;}
.wsb5{word-spacing:15.727625pt;}
.wsce{word-spacing:15.770171pt;}
.ws5d{word-spacing:15.833892pt;}
.ws6{word-spacing:15.876506pt;}
.wsaf{word-spacing:15.887026pt;}
.ws70{word-spacing:15.940160pt;}
.ws6a{word-spacing:15.993294pt;}
.ws53{word-spacing:16.046428pt;}
.ws2c{word-spacing:16.099562pt;}
.ws28{word-spacing:16.152695pt;}
.ws62{word-spacing:16.258963pt;}
.ws99{word-spacing:16.365231pt;}
.ws2a{word-spacing:16.418365pt;}
.wsb2{word-spacing:16.471499pt;}
.ws33{word-spacing:16.524633pt;}
.ws38{word-spacing:16.577766pt;}
.ws6f{word-spacing:16.630900pt;}
.ws36{word-spacing:16.684034pt;}
.ws40{word-spacing:16.737168pt;}
.wsa2{word-spacing:16.843436pt;}
.ws69{word-spacing:17.002837pt;}
.ws6e{word-spacing:17.055971pt;}
.wsbd{word-spacing:17.162239pt;}
.ws8{word-spacing:17.199459pt;}
.ws32{word-spacing:17.268507pt;}
.ws4c{word-spacing:17.321641pt;}
.wsd{word-spacing:17.358950pt;}
.ws52{word-spacing:17.427908pt;}
.wsa8{word-spacing:17.481042pt;}
.ws65{word-spacing:17.534176pt;}
.ws66{word-spacing:17.587310pt;}
.ws64{word-spacing:17.640444pt;}
.wsb4{word-spacing:17.693578pt;}
.ws72{word-spacing:17.746711pt;}
.ws79{word-spacing:17.959247pt;}
.wsa6{word-spacing:18.012381pt;}
.wsa7{word-spacing:18.065515pt;}
.ws12{word-spacing:18.124083pt;}
.wsc1{word-spacing:18.224916pt;}
.ws67{word-spacing:18.331184pt;}
.wsb3{word-spacing:18.384318pt;}
.ws82{word-spacing:18.437452pt;}
.ws1d{word-spacing:18.458829pt;}
.ws5e{word-spacing:18.596853pt;}
.ws60{word-spacing:18.756255pt;}
.ws47{word-spacing:18.862523pt;}
.ws5f{word-spacing:18.915657pt;}
.wsaa{word-spacing:18.968790pt;}
.wsb8{word-spacing:19.128192pt;}
.ws35{word-spacing:19.287594pt;}
.ws17{word-spacing:19.319603pt;}
.wsac{word-spacing:19.393861pt;}
.ws6c{word-spacing:19.500129pt;}
.ws42{word-spacing:19.606397pt;}
.ws58{word-spacing:19.712665pt;}
.ws56{word-spacing:19.765798pt;}
.ws45{word-spacing:19.872066pt;}
.wsab{word-spacing:19.925200pt;}
.ws86{word-spacing:19.978334pt;}
.ws78{word-spacing:20.509673pt;}
.ws51{word-spacing:20.562806pt;}
.ws39{word-spacing:20.669074pt;}
.ws2f{word-spacing:20.722208pt;}
.ws61{word-spacing:20.775342pt;}
.ws7f{word-spacing:20.828476pt;}
.ws43{word-spacing:21.041011pt;}
.wsb0{word-spacing:22.156822pt;}
.ws7{word-spacing:22.491672pt;}
.ws1f{word-spacing:22.534374pt;}
.ws75{word-spacing:22.741295pt;}
.ws46{word-spacing:23.750838pt;}
.ws7b{word-spacing:24.016508pt;}
.ws44{word-spacing:24.441579pt;}
.ws4f{word-spacing:24.919783pt;}
.ws27{word-spacing:26.513799pt;}
.ws8e{word-spacing:76.087697pt;}
.ws8b{word-spacing:76.140831pt;}
.ws92{word-spacing:103.828889pt;}
.ws8d{word-spacing:120.401342pt;}
.ws8c{word-spacing:136.607171pt;}
.ws90{word-spacing:148.402890pt;}
.ws8f{word-spacing:406.261545pt;}
.wsc0{word-spacing:459.332803pt;}
.ws20{word-spacing:1210.119467pt;}
._24{margin-left:-19.647035pt;}
._11{margin-left:-7.759977pt;}
._2{margin-left:-5.521067pt;}
._3{margin-left:-4.043150pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._4{width:1.688442pt;}
._b{width:2.814879pt;}
._f{width:7.226206pt;}
._10{width:9.564096pt;}
._1c{width:11.742585pt;}
._6{width:14.027341pt;}
._e{width:15.088802pt;}
._c{width:16.471499pt;}
._d{width:19.325147pt;}
._25{width:20.786184pt;}
._27{width:22.611371pt;}
._a{width:26.566933pt;}
._26{width:31.285366pt;}
._13{width:63.968320pt;}
._19{width:103.876709pt;}
._17{width:120.401342pt;}
._15{width:136.660305pt;}
._16{width:148.456023pt;}
._18{width:215.989168pt;}
._1b{width:241.279673pt;}
._23{width:277.841965pt;}
._22{width:280.764327pt;}
._1a{width:288.515680pt;}
._8{width:305.408800pt;}
._1d{width:326.082540pt;}
._12{width:335.380966pt;}
._14{width:340.003613pt;}
._21{width:386.978927pt;}
._1e{width:404.725638pt;}
._20{width:422.419216pt;}
._9{width:469.682086pt;}
._1f{width:557.108592pt;}
._5{width:577.627200pt;}
._7{width:662.960533pt;}
.fsa{font-size:31.880533pt;}
.fs9{font-size:34.537067pt;}
.fsd{font-size:37.193600pt;}
.fs4{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:45.429333pt;}
.fsb{font-size:47.820800pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:48.352000pt;}
.fsc{font-size:53.133867pt;}
.fs5{font-size:63.761067pt;}
.fs7{font-size:69.074133pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:90.328000pt;}
.y35{bottom:-138.783381pt;}
.y34{bottom:-125.499881pt;}
.y33{bottom:-112.216381pt;}
.y32{bottom:-89.256404pt;}
.y31{bottom:-65.190587pt;}
.y30{bottom:-50.844347pt;}
.y67{bottom:-42.030867pt;}
.y2f{bottom:-36.498107pt;}
.y66{bottom:-28.747367pt;}
.y36{bottom:-28.346400pt;}
.y2e{bottom:-22.151867pt;}
.y65{bottom:-15.463867pt;}
.y0{bottom:0.000000pt;}
.y63{bottom:31.561347pt;}
.y69{bottom:42.666667pt;}
.y62{bottom:45.907587pt;}
.y61{bottom:60.253827pt;}
.y7{bottom:60.458533pt;}
.y6{bottom:72.458533pt;}
.y60{bottom:74.600067pt;}
.y5{bottom:85.791867pt;}
.y159{bottom:95.998626pt;}
.y142{bottom:95.999947pt;}
.y119{bottom:96.000480pt;}
.y173{bottom:96.001547pt;}
.y10c{bottom:96.001920pt;}
.yee{bottom:96.006988pt;}
.y4{bottom:97.791867pt;}
.y5f{bottom:104.882589pt;}
.y158{bottom:111.938786pt;}
.y141{bottom:111.940107pt;}
.y118{bottom:111.940640pt;}
.y172{bottom:111.941707pt;}
.y10b{bottom:111.942080pt;}
.yed{bottom:111.947148pt;}
.y5e{bottom:119.228829pt;}
.yc0{bottom:119.625600pt;}
.y157{bottom:127.878946pt;}
.y140{bottom:127.880267pt;}
.y117{bottom:127.880800pt;}
.y171{bottom:127.881867pt;}
.y10a{bottom:127.882240pt;}
.yec{bottom:127.887308pt;}
.y5d{bottom:133.575069pt;}
.y116{bottom:143.820960pt;}
.y170{bottom:143.822027pt;}
.y109{bottom:143.822400pt;}
.yeb{bottom:143.827468pt;}
.y3a{bottom:145.134667pt;}
.y5c{bottom:147.921309pt;}
.y64{bottom:152.637467pt;}
.ybf{bottom:159.705211pt;}
.y115{bottom:159.761120pt;}
.y16f{bottom:159.762187pt;}
.y108{bottom:159.762560pt;}
.yea{bottom:159.767628pt;}
.y5b{bottom:162.267549pt;}
.y95{bottom:162.292267pt;}
.y13f{bottom:164.485973pt;}
.y156{bottom:164.488180pt;}
.ybe{bottom:175.645371pt;}
.y114{bottom:175.701280pt;}
.y16e{bottom:175.702347pt;}
.y107{bottom:175.702720pt;}
.ye9{bottom:175.707788pt;}
.y1a4{bottom:176.395800pt;}
.y5a{bottom:176.613789pt;}
.y13e{bottom:180.426133pt;}
.y155{bottom:180.428340pt;}
.y1a3{bottom:189.679300pt;}
.y59{bottom:190.960029pt;}
.ybd{bottom:191.585531pt;}
.y113{bottom:191.641440pt;}
.y16d{bottom:191.642507pt;}
.y106{bottom:191.642880pt;}
.ye8{bottom:191.647948pt;}
.y13d{bottom:196.366293pt;}
.y154{bottom:196.368500pt;}
.y39{bottom:199.133467pt;}
.y94{bottom:202.371877pt;}
.y1a2{bottom:202.962800pt;}
.y58{bottom:205.306269pt;}
.ybc{bottom:207.525691pt;}
.y16c{bottom:207.582667pt;}
.y105{bottom:207.583040pt;}
.ye7{bottom:207.588108pt;}
.y13c{bottom:212.306453pt;}
.y153{bottom:212.308660pt;}
.y38{bottom:212.466800pt;}
.y1a1{bottom:216.246300pt;}
.y93{bottom:218.312037pt;}
.y57{bottom:219.652509pt;}
.ybb{bottom:223.465851pt;}
.y16b{bottom:223.522827pt;}
.y104{bottom:223.523200pt;}
.ye6{bottom:223.528268pt;}
.y37{bottom:225.800133pt;}
.y13b{bottom:228.246613pt;}
.y152{bottom:228.248820pt;}
.y1a0{bottom:229.529800pt;}
.y56{bottom:233.998749pt;}
.y92{bottom:234.252197pt;}
.yba{bottom:239.406011pt;}
.y16a{bottom:239.462987pt;}
.y103{bottom:239.463360pt;}
.ye5{bottom:239.468428pt;}
.y8{bottom:241.889333pt;}
.y19f{bottom:242.813300pt;}
.y13a{bottom:244.186773pt;}
.y151{bottom:244.188980pt;}
.y55{bottom:248.344989pt;}
.y2d{bottom:250.017255pt;}
.y91{bottom:250.192357pt;}
.yb9{bottom:255.346171pt;}
.y169{bottom:255.403147pt;}
.y102{bottom:255.403520pt;}
.ye4{bottom:255.408588pt;}
.y19e{bottom:256.096800pt;}
.y139{bottom:260.126933pt;}
.y150{bottom:260.129140pt;}
.y54{bottom:262.691229pt;}
.y2c{bottom:264.363495pt;}
.y90{bottom:266.132517pt;}
.y19d{bottom:269.380300pt;}
.yb8{bottom:271.286331pt;}
.y168{bottom:271.343307pt;}
.y101{bottom:271.343680pt;}
.ye3{bottom:271.348748pt;}
.y53{bottom:277.037469pt;}
.y2b{bottom:278.709735pt;}
.y8f{bottom:282.072677pt;}
.y19c{bottom:282.663800pt;}
.y138{bottom:282.737600pt;}
.yb7{bottom:287.226491pt;}
.y167{bottom:287.283467pt;}
.y100{bottom:287.283840pt;}
.ye2{bottom:287.288908pt;}
.y52{bottom:291.383709pt;}
.y2a{bottom:293.055975pt;}
.y19b{bottom:295.947300pt;}
.y8e{bottom:298.012837pt;}
.yb6{bottom:303.166651pt;}
.y166{bottom:303.223627pt;}
.yff{bottom:303.224000pt;}
.ye1{bottom:303.229068pt;}
.y137{bottom:303.988267pt;}
.y51{bottom:305.729949pt;}
.y29{bottom:307.402215pt;}
.y19a{bottom:309.230800pt;}
.y8d{bottom:313.952997pt;}
.yb5{bottom:319.106811pt;}
.y165{bottom:319.163787pt;}
.yfe{bottom:319.164160pt;}
.ye0{bottom:319.169228pt;}
.y50{bottom:320.076189pt;}
.y28{bottom:321.748455pt;}
.y199{bottom:322.514300pt;}
.y8c{bottom:329.893157pt;}
.y4f{bottom:334.422429pt;}
.yb4{bottom:335.046971pt;}
.y164{bottom:335.103947pt;}
.yfd{bottom:335.104320pt;}
.ydf{bottom:335.109388pt;}
.y198{bottom:335.797800pt;}
.y27{bottom:336.094695pt;}
.y14f{bottom:344.880318pt;}
.y136{bottom:344.882133pt;}
.y8b{bottom:345.833317pt;}
.y197{bottom:349.081300pt;}
.y26{bottom:350.440935pt;}
.yb3{bottom:350.987131pt;}
.y163{bottom:351.044107pt;}
.yfc{bottom:351.044480pt;}
.yde{bottom:351.049548pt;}
.y4e{bottom:357.806800pt;}
.y14e{bottom:360.820478pt;}
.y135{bottom:360.822293pt;}
.y8a{bottom:361.773477pt;}
.y196{bottom:362.364800pt;}
.y25{bottom:364.787175pt;}
.yb2{bottom:366.927291pt;}
.y162{bottom:366.984267pt;}
.yfb{bottom:366.984640pt;}
.ydd{bottom:366.989708pt;}
.y195{bottom:375.648300pt;}
.y14d{bottom:376.760638pt;}
.y134{bottom:376.762453pt;}
.y89{bottom:377.713637pt;}
.y24{bottom:379.133415pt;}
.yb1{bottom:382.867451pt;}
.yfa{bottom:382.924800pt;}
.ydc{bottom:382.929868pt;}
.y194{bottom:388.931800pt;}
.y14c{bottom:392.700798pt;}
.y133{bottom:392.702613pt;}
.y23{bottom:393.479655pt;}
.y88{bottom:393.653797pt;}
.yb0{bottom:398.807611pt;}
.yf9{bottom:398.864960pt;}
.ydb{bottom:398.870028pt;}
.y193{bottom:402.215300pt;}
.y22{bottom:407.825895pt;}
.y14b{bottom:408.640958pt;}
.y132{bottom:408.642773pt;}
.y87{bottom:409.593957pt;}
.y161{bottom:409.939627pt;}
.y4d{bottom:410.370100pt;}
.yaf{bottom:414.747771pt;}
.yf8{bottom:414.805120pt;}
.yda{bottom:414.810188pt;}
.y192{bottom:415.498800pt;}
.y21{bottom:422.172135pt;}
.y14a{bottom:424.581118pt;}
.y131{bottom:424.582933pt;}
.y86{bottom:425.534117pt;}
.y160{bottom:425.879787pt;}
.y4c{bottom:427.510933pt;}
.y191{bottom:428.782300pt;}
.yae{bottom:430.687931pt;}
.yf7{bottom:430.745280pt;}
.yd9{bottom:430.750348pt;}
.y179{bottom:431.016017pt;}
.y20{bottom:436.518375pt;}
.y4b{bottom:437.600767pt;}
.y85{bottom:441.474277pt;}
.y15f{bottom:441.819947pt;}
.y190{bottom:442.065800pt;}
.yad{bottom:446.628091pt;}
.yf6{bottom:446.685440pt;}
.yd8{bottom:446.690508pt;}
.y1f{bottom:450.864615pt;}
.y4a{bottom:454.741600pt;}
.y18f{bottom:455.349300pt;}
.y84{bottom:457.414437pt;}
.y15e{bottom:457.760107pt;}
.yac{bottom:462.568251pt;}
.yf5{bottom:462.626293pt;}
.yd7{bottom:462.630668pt;}
.y130{bottom:463.897973pt;}
.y149{bottom:463.900180pt;}
.y1e{bottom:465.210855pt;}
.y18e{bottom:468.632800pt;}
.y49{bottom:468.689600pt;}
.y83{bottom:473.354597pt;}
.y15d{bottom:473.700267pt;}
.yab{bottom:478.508411pt;}
.yf4{bottom:478.566453pt;}
.yd6{bottom:478.570828pt;}
.y1d{bottom:479.557095pt;}
.y12f{bottom:479.838133pt;}
.y148{bottom:479.840340pt;}
.y18d{bottom:481.916300pt;}
.y178{bottom:482.449600pt;}
.y48{bottom:482.637600pt;}
.y82{bottom:489.294757pt;}
.yaa{bottom:494.448571pt;}
.yf3{bottom:494.506613pt;}
.y177{bottom:494.510988pt;}
.y18c{bottom:495.199800pt;}
.y12e{bottom:495.778293pt;}
.y147{bottom:495.780500pt;}
.y15c{bottom:496.309600pt;}
.y112{bottom:498.389760pt;}
.y47{bottom:500.028028pt;}
.y1c{bottom:502.941467pt;}
.y81{bottom:505.234917pt;}
.y18b{bottom:508.483300pt;}
.ya9{bottom:510.388731pt;}
.yf2{bottom:510.446773pt;}
.yd5{bottom:510.451148pt;}
.y12d{bottom:511.718453pt;}
.y146{bottom:511.720660pt;}
.y111{bottom:514.329920pt;}
.y45{bottom:517.097600pt;}
.y15b{bottom:517.562100pt;}
.y46{bottom:519.505924pt;}
.y43{bottom:519.506933pt;}
.y44{bottom:519.593276pt;}
.y80{bottom:521.175077pt;}
.y18a{bottom:521.766800pt;}
.ya8{bottom:526.328891pt;}
.yf1{bottom:526.386773pt;}
.y176{bottom:526.391308pt;}
.y12c{bottom:527.658613pt;}
.y145{bottom:527.660820pt;}
.y110{bottom:530.270080pt;}
.y15a{bottom:530.845600pt;}
.y189{bottom:535.050300pt;}
.y7f{bottom:537.115237pt;}
.ya7{bottom:542.269051pt;}
.yf0{bottom:542.326933pt;}
.y175{bottom:542.331468pt;}
.yd4{bottom:542.597137pt;}
.y12b{bottom:543.598773pt;}
.y144{bottom:543.600980pt;}
.y10f{bottom:546.210240pt;}
.y188{bottom:548.333800pt;}
.y42{bottom:552.515333pt;}
.y7e{bottom:553.055397pt;}
.y1b{bottom:555.504767pt;}
.ya6{bottom:558.209211pt;}
.y12a{bottom:559.538933pt;}
.y143{bottom:559.541140pt;}
.y187{bottom:561.617300pt;}
.y10e{bottom:562.150400pt;}
.y7d{bottom:568.995557pt;}
.y1a{bottom:572.645600pt;}
.ya5{bottom:574.149371pt;}
.y174{bottom:574.477457pt;}
.y186{bottom:574.900800pt;}
.y10d{bottom:578.090560pt;}
.y41{bottom:579.613733pt;}
.y129{bottom:582.149600pt;}
.y19{bottom:582.735433pt;}
.y7c{bottom:584.935717pt;}
.y185{bottom:588.184300pt;}
.ya4{bottom:590.089531pt;}
.yef{bottom:591.988267pt;}
.yd3{bottom:594.030720pt;}
.y18{bottom:599.876267pt;}
.y7b{bottom:600.875877pt;}
.y184{bottom:601.467800pt;}
.yb{bottom:601.540749pt;}
.y128{bottom:603.400267pt;}
.ya3{bottom:606.029691pt;}
.y40{bottom:606.712133pt;}
.yd2{bottom:609.970880pt;}
.y17{bottom:613.824267pt;}
.ya{bottom:614.144133pt;}
.y183{bottom:614.751300pt;}
.y7a{bottom:616.816037pt;}
.ya2{bottom:621.969851pt;}
.yd1{bottom:625.911040pt;}
.y16{bottom:627.772267pt;}
.y182{bottom:628.034800pt;}
.y79{bottom:632.756197pt;}
.ya1{bottom:637.910011pt;}
.y3f{bottom:639.522533pt;}
.y127{bottom:641.585531pt;}
.yd0{bottom:641.851200pt;}
.y15{bottom:645.162694pt;}
.y78{bottom:648.696357pt;}
.ya0{bottom:653.850171pt;}
.y3e{bottom:655.462800pt;}
.y126{bottom:657.525691pt;}
.ycf{bottom:657.791360pt;}
.y13{bottom:662.232267pt;}
.y77{bottom:664.636517pt;}
.y14{bottom:664.640591pt;}
.y11{bottom:664.641600pt;}
.y12{bottom:664.727943pt;}
.y9f{bottom:669.790331pt;}
.y125{bottom:673.465851pt;}
.yce{bottom:673.731520pt;}
.y76{bottom:680.576677pt;}
.y9e{bottom:685.730491pt;}
.y9{bottom:686.102800pt;}
.y124{bottom:689.406011pt;}
.ycd{bottom:689.671680pt;}
.y75{bottom:696.516837pt;}
.y181{bottom:697.376091pt;}
.y10{bottom:697.650000pt;}
.y3d{bottom:698.295415pt;}
.y9d{bottom:701.670651pt;}
.y123{bottom:705.346171pt;}
.ycc{bottom:705.611840pt;}
.y3c{bottom:710.898800pt;}
.y74{bottom:712.456997pt;}
.y180{bottom:713.316251pt;}
.y9c{bottom:717.610811pt;}
.y122{bottom:721.286331pt;}
.ycb{bottom:721.552000pt;}
.yf{bottom:724.748400pt;}
.y73{bottom:728.397157pt;}
.y17f{bottom:729.256411pt;}
.y9b{bottom:733.550971pt;}
.y121{bottom:737.226491pt;}
.yca{bottom:737.492160pt;}
.y72{bottom:744.337317pt;}
.y17e{bottom:745.196571pt;}
.y9a{bottom:749.491131pt;}
.ye{bottom:751.846800pt;}
.y120{bottom:753.166651pt;}
.yc9{bottom:753.432320pt;}
.y71{bottom:760.277477pt;}
.y17d{bottom:761.136731pt;}
.y99{bottom:765.431291pt;}
.y11f{bottom:769.106811pt;}
.yc8{bottom:769.372480pt;}
.y70{bottom:776.217637pt;}
.y17c{bottom:777.076891pt;}
.y98{bottom:781.371451pt;}
.y3b{bottom:782.857467pt;}
.yd{bottom:784.657200pt;}
.y11e{bottom:785.046971pt;}
.yc7{bottom:785.312640pt;}
.y6f{bottom:792.157797pt;}
.y17b{bottom:793.017051pt;}
.y97{bottom:797.311611pt;}
.yc{bottom:800.597467pt;}
.y11d{bottom:800.987131pt;}
.yc6{bottom:801.252800pt;}
.y6e{bottom:808.097957pt;}
.y11c{bottom:816.927291pt;}
.yc5{bottom:817.192960pt;}
.y6d{bottom:824.038117pt;}
.y17a{bottom:825.163040pt;}
.y96{bottom:829.457600pt;}
.y11b{bottom:832.867451pt;}
.yc4{bottom:833.133120pt;}
.y6c{bottom:839.978277pt;}
.y11a{bottom:848.807611pt;}
.yc3{bottom:849.073280pt;}
.y3{bottom:854.338533pt;}
.yc2{bottom:865.013440pt;}
.y6b{bottom:872.124267pt;}
.y1{bottom:879.110667pt;}
.yc1{bottom:880.953600pt;}
.y6a{bottom:907.520267pt;}
.y2{bottom:918.559067pt;}
.y68{bottom:920.499333pt;}
.h1b{height:21.710643pt;}
.h11{height:21.870046pt;}
.h17{height:24.944000pt;}
.h12{height:29.159939pt;}
.h9{height:29.244954pt;}
.h25{height:29.457490pt;}
.h24{height:29.499997pt;}
.h4{height:29.625000pt;}
.h5{height:32.000000pt;}
.h15{height:32.805069pt;}
.h14{height:32.900710pt;}
.h8{height:33.117984pt;}
.h13{height:33.187635pt;}
.h16{height:33.328125pt;}
.h3{height:34.368000pt;}
.h6{height:36.000000pt;}
.h1d{height:36.449833pt;}
.h1a{height:36.556100pt;}
.h19{height:36.874903pt;}
.h1e{height:37.140573pt;}
.ha{height:43.867614pt;}
.h21{height:44.611402pt;}
.h20{height:44.614815pt;}
.h22{height:44.848499pt;}
.hd{height:47.523004pt;}
.he{height:57.501670pt;}
.hc{height:58.338176pt;}
.hf{height:58.342213pt;}
.h10{height:58.359932pt;}
.hb{height:62.145664pt;}
.h2{height:66.352000pt;}
.h7{height:575.034667pt;}
.h18{height:842.834667pt;}
.h1f{height:895.748000pt;}
.h23{height:897.638667pt;}
.h1c{height:899.526667pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:0.000000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x1b{left:-629.669333pt;}
.x1d{left:-622.131867pt;}
.x1c{left:-613.729173pt;}
.x26{left:-598.367867pt;}
.x25{left:-567.056000pt;}
.x20{left:-520.016000pt;}
.x24{left:-517.949333pt;}
.x0{left:0.000000pt;}
.x18{left:49.889733pt;}
.x4{left:51.779467pt;}
.x2b{left:90.250600pt;}
.x17{left:96.000000pt;}
.x19{left:96.892400pt;}
.x8{left:100.068000pt;}
.x15{left:102.618667pt;}
.x12{left:104.329333pt;}
.xb{left:107.894693pt;}
.x13{left:109.744000pt;}
.x1a{left:111.940160pt;}
.x28{left:114.596599pt;}
.xd{left:118.220000pt;}
.xa{left:119.637333pt;}
.x23{left:127.301333pt;}
.x27{left:141.704000pt;}
.x14{left:147.160648pt;}
.x22{left:158.613333pt;}
.x29{left:166.944216pt;}
.x16{left:177.032942pt;}
.x1f{left:205.653200pt;}
.x21{left:207.720000pt;}
.x2{left:209.887200pt;}
.x1e{left:213.501333pt;}
.x3{left:220.683467pt;}
.x5{left:236.474667pt;}
.x6{left:241.544000pt;}
.x2a{left:246.422053pt;}
.x1{left:253.101067pt;}
.x9{left:255.023332pt;}
.xc{left:291.034713pt;}
.x11{left:327.956689pt;}
.xe{left:397.578654pt;}
.xf{left:417.602667pt;}
.x10{left:421.072917pt;}
.x7{left:478.904205pt;}
}




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