
    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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff1{font-family:ff1;line-height:1.123047;font-style:normal;font-weight: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_1dcdb53d10b33b8b76af3605.woff')format("woff");}.ff2{font-family:ff2;line-height:1.111816;font-style:normal;font-weight: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_620e9c24ff8c662ee7c69553.woff')format("woff");}.ff3{font-family:ff3;line-height:1.111816;font-style:normal;font-weight: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_e0f4eee873a8a4f55fc0832c.woff')format("woff");}.ff4{font-family:ff4;line-height:1.123047;font-style:normal;font-weight: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_e0afddaabc365c6cafec48ba.woff')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_f633cc84966d28f04b1fbe83.woff')format("woff");}.ff6{font-family:ff6;line-height:1.117188;font-style:normal;font-weight: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_543d259d2f407055772093d2.woff')format("woff");}.ff7{font-family:ff7;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:ff8;src:url('chunks/assets/font_d3e7b68e185d17673261bf19.woff')format("woff");}.ff8{font-family:ff8;line-height:1.123047;font-style:normal;font-weight: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_9c8c6df7ae885710522cd1ee.woff')format("woff");}.ff9{font-family:ff9;line-height:1.123047;font-style:normal;font-weight: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_ff8694005fd993e1a9438ef5.woff')format("woff");}.ffa{font-family:ffa;line-height:1.117188;font-style:normal;font-weight: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_3e8909c3d24e8dc98c5a13a7.woff')format("woff");}.ffb{font-family:ffb;line-height:1.111816;font-style:normal;font-weight: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_d65176410cd8c16983c5766f.woff')format("woff");}.ffc{font-family:ffc;line-height:1.111816;font-style:normal;font-weight: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_ae76ed9a73f35c9dbc9c79a0.woff')format("woff");}.ffd{font-family:ffd;line-height:1.107422;font-style:normal;font-weight: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_87380ea9190f7fca3bb569a5.woff')format("woff");}.ffe{font-family:ffe;line-height:1.123047;font-style:normal;font-weight: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_ea448b3ea6caff9fe65a9144.woff')format("woff");}.fff{font-family:fff;line-height:1.123047;font-style:normal;font-weight: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_1426cf5218d50396417ba1ba.woff')format("woff");}.ff10{font-family:ff10;line-height:1.117188;font-style:normal;font-weight: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_df6d2ed9ce88702220bde3bc.woff')format("woff");}.ff11{font-family:ff11;line-height:1.117188;font-style:normal;font-weight: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_0c81e7b419a6c7700e605f25.woff')format("woff");}.ff12{font-family:ff12;line-height:1.111816;font-style:normal;font-weight: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_798854a67817713f3652432b.woff')format("woff");}.ff13{font-family:ff13;line-height:1.111816;font-style:normal;font-weight: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_49d80d474b511d7c4f0a4118.woff')format("woff");}.ff14{font-family:ff14;line-height:1.107422;font-style:normal;font-weight: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_dcce40d6b13a8681e4534e3e.woff')format("woff");}.ff15{font-family:ff15;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff16{font-family:ff16;line-height:1.123047;font-style:normal;font-weight: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_d4c1926bbbd28e1e1967fe03.woff')format("woff");}.ff17{font-family:ff17;line-height:1.106934;font-style:normal;font-weight: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_0c9d286850cc7ff214bdac4d.woff')format("woff");}.ff18{font-family:ff18;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff19{font-family:ff19;line-height:1.123047;font-style:normal;font-weight: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_34dc075640fc14fa37032c58.woff')format("woff");}.ff1a{font-family:ff1a;line-height:1.117188;font-style:normal;font-weight: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_c660d72cec5eb395cc49d180.woff')format("woff");}.ff1b{font-family:ff1b;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff1c{font-family:ff1c;line-height:1.123047;font-style:normal;font-weight: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_fdc12ba270cac8615e7ca64e.woff')format("woff");}.ff1d{font-family:ff1d;line-height:1.117188;font-style:normal;font-weight: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_4d70a1d7c2cda977d2d6547c.woff')format("woff");}.ff1e{font-family:ff1e;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff1f{font-family:ff1f;line-height:1.123047;font-style:normal;font-weight: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_dd7be1d14faf4cc5ebb0221f.woff')format("woff");}.ff20{font-family:ff20;line-height:1.117188;font-style:normal;font-weight: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_cf299f95ef75b423d65eab1f.woff')format("woff");}.ff21{font-family:ff21;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff22{font-family:ff22;line-height:1.123047;font-style:normal;font-weight: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_22b7dab1769d6910a8983295.woff')format("woff");}.ff23{font-family:ff23;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff24{font-family:ff24;line-height:1.123047;font-style:normal;font-weight: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_bf4c628669f76b6ff3023a50.woff')format("woff");}.ff25{font-family:ff25;line-height:1.117188;font-style:normal;font-weight: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_fee93d249101a5620278b8ab.woff')format("woff");}.ff26{font-family:ff26;line-height:1.104004;font-style:normal;font-weight: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_df6d2ed9ce88702220bde3bc.woff')format("woff");}.ff27{font-family:ff27;line-height:1.117188;font-style:normal;font-weight: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_92d5f9a107c3c401d68cce2b.woff')format("woff");}.ff28{font-family:ff28;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff29{font-family:ff29;line-height:1.123047;font-style:normal;font-weight: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_6a2314fd56b99006207cd0e1.woff')format("woff");}.ff2a{font-family:ff2a;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff2b{font-family:ff2b;line-height:1.123047;font-style:normal;font-weight: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_2a6b984ee46861d8f1083bdd.woff')format("woff");}.ff2c{font-family:ff2c;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff2d{font-family:ff2d;line-height:1.123047;font-style:normal;font-weight: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_7511ca38df9537204691ea19.woff')format("woff");}.ff2e{font-family:ff2e;line-height:1.117188;font-style:normal;font-weight: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_ff2ce74a427e7aa48d8302b0.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff30{font-family:ff30;line-height:1.123047;font-style:normal;font-weight: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_95e972e63897415739fb1393.woff')format("woff");}.ff31{font-family:ff31;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff32{font-family:ff32;line-height:1.123047;font-style:normal;font-weight: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_2cea70d8c573f02dc8d38b04.woff')format("woff");}.ff33{font-family:ff33;line-height:1.117188;font-style:normal;font-weight: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_1bd67bd67823bb8e41a0f287.woff')format("woff");}.ff34{font-family:ff34;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff35{font-family:ff35;line-height:1.123047;font-style:normal;font-weight: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_1d3f581e2b34484ea7482d9b.woff')format("woff");}.ff36{font-family:ff36;line-height:1.117188;font-style:normal;font-weight: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_76c8db3b490bee7a0b26ca27.woff')format("woff");}.ff37{font-family:ff37;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff38{font-family:ff38;line-height:1.123047;font-style:normal;font-weight: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_8019495267a3c818984344f5.woff')format("woff");}.ff39{font-family:ff39;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff3a{font-family:ff3a;line-height:1.123047;font-style:normal;font-weight: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_c03337c2a3b2bc025657f38e.woff')format("woff");}.ff3b{font-family:ff3b;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff3c{font-family:ff3c;line-height:1.123047;font-style:normal;font-weight: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_8eaf5a68a63bdc5bf788e1c8.woff')format("woff");}.ff3d{font-family:ff3d;line-height:1.117188;font-style:normal;font-weight: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_df6d2ed9ce88702220bde3bc.woff')format("woff");}.ff3e{font-family:ff3e;line-height:1.117188;font-style:normal;font-weight: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_a02abf372aa7163858a3ed75.woff')format("woff");}.ff3f{font-family:ff3f;line-height:1.123047;font-style:normal;font-weight: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_1ab6980dbf7ace53a7fd881d.woff')format("woff");}.ff40{font-family:ff40;line-height:1.123047;font-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);}
.v0{vertical-align:0.000000px;}
.ls20{letter-spacing:-0.720000px;}
.lsd{letter-spacing:-0.624960px;}
.lsc{letter-spacing:-0.546840px;}
.ls24{letter-spacing:-0.360000px;}
.ls4{letter-spacing:0.000000px;}
.ls23{letter-spacing:0.000001px;}
.ls1a{letter-spacing:0.000003px;}
.ls0{letter-spacing:0.048960px;}
.ls22{letter-spacing:0.080400px;}
.ls1e{letter-spacing:0.089280px;}
.ls15{letter-spacing:0.144000px;}
.ls3{letter-spacing:0.162000px;}
.ls14{letter-spacing:0.180000px;}
.ls5{letter-spacing:0.219960px;}
.ls1b{letter-spacing:0.224400px;}
.lse{letter-spacing:0.239400px;}
.ls1f{letter-spacing:0.247680px;}
.ls10{letter-spacing:0.270600px;}
.ls18{letter-spacing:0.276480px;}
.ls12{letter-spacing:0.284400px;}
.lsa{letter-spacing:0.287280px;}
.ls1{letter-spacing:0.288000px;}
.ls11{letter-spacing:0.312000px;}
.ls21{letter-spacing:0.336960px;}
.ls13{letter-spacing:0.351360px;}
.ls16{letter-spacing:0.351600px;}
.ls9{letter-spacing:0.359424px;}
.lsf{letter-spacing:0.360000px;}
.ls6{letter-spacing:0.373320px;}
.ls1c{letter-spacing:0.382800px;}
.ls8{letter-spacing:0.413280px;}
.ls17{letter-spacing:0.439200px;}
.ls25{letter-spacing:0.495360px;}
.ls2{letter-spacing:0.504000px;}
.ls7{letter-spacing:0.513360px;}
.ls1d{letter-spacing:0.540000px;}
.lsb{letter-spacing:0.541080px;}
.ls19{letter-spacing:52.068000px;}
.ls26{letter-spacing:846.840000px;}
.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;}
}
.wsd{word-spacing:-69.120000px;}
.wsf{word-spacing:-17.662800px;}
.ws6{word-spacing:-17.640000px;}
.ws2{word-spacing:-17.639424px;}
.wsa{word-spacing:-17.556480px;}
.ws11{word-spacing:-17.550600px;}
.ws10{word-spacing:-17.360400px;}
.wsb{word-spacing:-17.280003px;}
.ws3{word-spacing:-17.280000px;}
.ws12{word-spacing:-16.920000px;}
.ws0{word-spacing:-16.416000px;}
.ws4{word-spacing:-15.571080px;}
.ws13{word-spacing:-15.030000px;}
.wsc{word-spacing:-13.860000px;}
.wse{word-spacing:-13.500000px;}
.ws8{word-spacing:-13.407840px;}
.ws7{word-spacing:-13.280640px;}
.ws9{word-spacing:-12.968640px;}
.ws5{word-spacing:-12.209400px;}
.ws1{word-spacing:0.000000px;}
._11{margin-left:-4.969440px;}
._8{margin-left:-3.764880px;}
._7{margin-left:-2.110320px;}
._4{margin-left:-1.093680px;}
._0{width:1.142280px;}
._1{width:3.129240px;}
._2{width:4.624080px;}
._5{width:6.310080px;}
._6{width:7.601520px;}
._b{width:8.910000px;}
._c{width:10.022400px;}
._12{width:11.113920px;}
._d{width:12.267000px;}
._9{width:13.853160px;}
._a{width:15.828480px;}
._f{width:19.244520px;}
._e{width:20.321280px;}
._10{width:33.796080px;}
._3{width:846.717960px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(68,114,196);}
.fs7{font-size:36.000000px;}
.fs6{font-size:45.000000px;}
.fs2{font-size:47.880000px;}
.fs4{font-size:54.000000px;}
.fs8{font-size:56.880000px;}
.fs1{font-size:60.120000px;}
.fs0{font-size:69.120000px;}
.fs3{font-size:72.000000px;}
.fs5{font-size:78.120000px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000092px;}
.y2{bottom:24.929908px;}
.y25{bottom:90.089908px;}
.y17c{bottom:91.439908px;}
.y67{bottom:92.429908px;}
.ycb{bottom:95.399908px;}
.y9b{bottom:95.579908px;}
.y87{bottom:96.209908px;}
.yf3{bottom:103.409908px;}
.y145{bottom:105.209908px;}
.y24{bottom:105.569908px;}
.y156{bottom:107.009908px;}
.y43{bottom:107.639908px;}
.y173{bottom:107.819908px;}
.y120{bottom:108.179908px;}
.y66{bottom:108.809908px;}
.y86{bottom:109.529908px;}
.ye7{bottom:113.849908px;}
.y113{bottom:114.209908px;}
.ya9{bottom:117.179908px;}
.y18d{bottom:117.269908px;}
.yca{bottom:118.259908px;}
.y9a{bottom:118.349908px;}
.y12c{bottom:118.979908px;}
.y23{bottom:121.049908px;}
.y65{bottom:125.189908px;}
.yf2{bottom:126.179908px;}
.y144{bottom:127.979908px;}
.y155{bottom:129.869908px;}
.y42{bottom:130.409908px;}
.y172{bottom:130.679908px;}
.y11f{bottom:131.039908px;}
.y18c{bottom:135.269908px;}
.y22{bottom:136.529908px;}
.ye6{bottom:136.619908px;}
.y17b{bottom:136.979908px;}
.yc9{bottom:141.029908px;}
.y64{bottom:141.569908px;}
.y12b{bottom:141.839908px;}
.y112{bottom:145.979908px;}
.ya8{bottom:149.039908px;}
.y99{bottom:149.219908px;}
.y143{bottom:150.869908px;}
.y21{bottom:152.039908px;}
.y154{bottom:152.669908px;}
.y41{bottom:153.299908px;}
.y11e{bottom:153.839908px;}
.y63{bottom:157.889908px;}
.ye5{bottom:159.509908px;}
.y17a{bottom:159.869908px;}
.y171{bottom:162.479908px;}
.yc8{bottom:163.919908px;}
.y12a{bottom:164.639908px;}
.y85{bottom:167.069908px;}
.y20{bottom:167.519908px;}
.y111{bottom:168.869908px;}
.y98{bottom:169.139908px;}
.ya7{bottom:171.839908px;}
.y142{bottom:173.639908px;}
.y62{bottom:174.269908px;}
.y153{bottom:175.439908px;}
.y40{bottom:176.069908px;}
.y11d{bottom:176.699908px;}
.y61{bottom:178.049908px;}
.y18b{bottom:180.299908px;}
.ye4{bottom:182.279908px;}
.y179{bottom:182.639908px;}
.y1f{bottom:182.999908px;}
.y170{bottom:185.339908px;}
.yc7{bottom:186.689908px;}
.y129{bottom:187.499908px;}
.y84{bottom:189.839908px;}
.y60{bottom:191.369908px;}
.y110{bottom:191.639908px;}
.ya6{bottom:194.699908px;}
.y141{bottom:196.499908px;}
.y152{bottom:198.299908px;}
.y97{bottom:198.839908px;}
.y3f{bottom:198.929908px;}
.y1e{bottom:199.289908px;}
.y11c{bottom:199.469908px;}
.y14a{bottom:205.139908px;}
.y178{bottom:205.499908px;}
.y16f{bottom:208.109908px;}
.yc6{bottom:209.459908px;}
.y128{bottom:210.269908px;}
.y83{bottom:212.699908px;}
.ye3{bottom:214.139908px;}
.y1d{bottom:215.759908px;}
.ya5{bottom:217.469908px;}
.y140{bottom:219.269908px;}
.y151{bottom:221.069908px;}
.y3e{bottom:221.699908px;}
.y11b{bottom:222.329908px;}
.y10f{bottom:223.499908px;}
.y18a{bottom:225.299908px;}
.y5f{bottom:229.079908px;}
.y16e{bottom:230.969908px;}
.y1c{bottom:232.139908px;}
.yc5{bottom:232.319908px;}
.y127{bottom:233.129908px;}
.y82{bottom:235.469908px;}
.ye2{bottom:236.909908px;}
.y177{bottom:237.269908px;}
.yf1{bottom:240.329908px;}
.y189{bottom:243.299908px;}
.y96{bottom:244.469908px;}
.y11a{bottom:245.099908px;}
.y10e{bottom:246.269908px;}
.ya4{bottom:249.329908px;}
.y13f{bottom:251.129908px;}
.y5d{bottom:251.939908px;}
.y3d{bottom:253.469908px;}
.y16d{bottom:253.739908px;}
.yc4{bottom:255.089908px;}
.y150{bottom:255.809908px;}
.y126{bottom:255.899908px;}
.y81{bottom:258.329908px;}
.y5e{bottom:258.689908px;}
.ye1{bottom:259.769908px;}
.y176{bottom:260.129908px;}
.y1b{bottom:260.669908px;}
.y188{bottom:261.299908px;}
.yf0{bottom:263.099908px;}
.y95{bottom:267.329908px;}
.y10d{bottom:269.129908px;}
.ya3{bottom:272.099908px;}
.y13e{bottom:273.899908px;}
.y5c{bottom:274.709908px;}
.y3c{bottom:276.329908px;}
.y16c{bottom:276.509908px;}
.y119{bottom:276.959908px;}
.yc3{bottom:277.949908px;}
.y125{bottom:278.759908px;}
.y80{bottom:281.099908px;}
.ye0{bottom:282.539908px;}
.y175{bottom:282.899908px;}
.y187{bottom:288.299908px;}
.y94{bottom:290.099908px;}
.y10c{bottom:291.899908px;}
.y1a{bottom:293.429908px;}
.ya2{bottom:294.959908px;}
.y13d{bottom:296.759908px;}
.y5b{bottom:297.569908px;}
.y3b{bottom:299.099908px;}
.y16b{bottom:299.369908px;}
.y118{bottom:299.729908px;}
.yc2{bottom:300.719908px;}
.y124{bottom:301.529908px;}
.y7f{bottom:303.959908px;}
.y186{bottom:306.299908px;}
.y93{bottom:312.959908px;}
.ydf{bottom:314.399908px;}
.y10b{bottom:314.759908px;}
.y174{bottom:317.639908px;}
.ya1{bottom:317.729908px;}
.y13c{bottom:319.529908px;}
.y5a{bottom:320.339908px;}
.y3a{bottom:321.959908px;}
.y16a{bottom:322.139908px;}
.y117{bottom:322.499908px;}
.y123{bottom:324.389908px;}
.y19{bottom:325.109908px;}
.y7e{bottom:326.729908px;}
.yc1{bottom:332.579908px;}
.y185{bottom:333.299908px;}
.y92{bottom:335.729908px;}
.yde{bottom:337.169908px;}
.y10a{bottom:337.529908px;}
.ya0{bottom:340.499908px;}
.y13b{bottom:342.389908px;}
.y59{bottom:343.199908px;}
.y39{bottom:344.729908px;}
.y169{bottom:344.999908px;}
.y116{bottom:345.359908px;}
.y18{bottom:347.879908px;}
.y7d{bottom:349.499908px;}
.yc0{bottom:355.349908px;}
.y91{bottom:358.499908px;}
.y122{bottom:359.129908px;}
.ydd{bottom:359.939908px;}
.y9f{bottom:363.359908px;}
.y13a{bottom:365.159908px;}
.y17{bottom:367.679908px;}
.y168{bottom:367.769908px;}
.y109{bottom:369.389908px;}
.y184{bottom:370.109908px;}
.y7c{bottom:372.359908px;}
.y58{bottom:374.969908px;}
.y38{bottom:376.589908px;}
.y115{bottom:377.129908px;}
.ybf{bottom:378.209908px;}
.y90{bottom:381.359908px;}
.ydc{bottom:382.799908px;}
.yef{bottom:386.129908px;}
.y16{bottom:387.479908px;}
.y139{bottom:387.929908px;}
.y167{bottom:390.629908px;}
.y108{bottom:392.159908px;}
.y7b{bottom:395.129908px;}
.y57{bottom:397.829908px;}
.y37{bottom:399.359908px;}
.y121{bottom:399.899908px;}
.ybe{bottom:400.979908px;}
.y8f{bottom:404.129908px;}
.ydb{bottom:405.569908px;}
.y15{bottom:407.279908px;}
.yee{bottom:408.989908px;}
.y138{bottom:410.789908px;}
.y166{bottom:413.399908px;}
.y107{bottom:414.929908px;}
.y7a{bottom:417.989908px;}
.y56{bottom:420.599908px;}
.y36{bottom:422.219908px;}
.ybd{bottom:423.839908px;}
.y14{bottom:426.989908px;}
.yda{bottom:428.429908px;}
.yed{bottom:431.759908px;}
.y14f{bottom:433.559908px;}
.y106{bottom:437.789908px;}
.y79{bottom:440.759908px;}
.y137{bottom:442.559908px;}
.y55{bottom:443.459908px;}
.y35{bottom:444.989908px;}
.y165{bottom:445.259908px;}
.ybc{bottom:446.609908px;}
.y13{bottom:446.789908px;}
.y8e{bottom:449.759908px;}
.yd9{bottom:451.199908px;}
.y1a0{bottom:453.269908px;}
.yec{bottom:454.619908px;}
.y14e{bottom:456.419908px;}
.y105{bottom:460.559908px;}
.y9e{bottom:463.619908px;}
.y136{bottom:465.419908px;}
.y54{bottom:466.229908px;}
.y12{bottom:466.589908px;}
.y34{bottom:467.849908px;}
.y164{bottom:468.029908px;}
.ybb{bottom:469.379908px;}
.y78{bottom:472.619908px;}
.yeb{bottom:477.389908px;}
.y14d{bottom:479.189908px;}
.y19f{bottom:479.549908px;}
.yd8{bottom:483.059908px;}
.y104{bottom:483.419908px;}
.y149{bottom:486.029908px;}
.y11{bottom:486.389908px;}
.y135{bottom:488.189908px;}
.y183{bottom:488.999908px;}
.y33{bottom:490.619908px;}
.y163{bottom:490.889908px;}
.yba{bottom:492.269908px;}
.y77{bottom:495.419908px;}
.y19e{bottom:497.579908px;}
.yea{bottom:500.279908px;}
.y14c{bottom:502.079908px;}
.y53{bottom:504.329908px;}
.yd7{bottom:505.859908px;}
.y10{bottom:506.219908px;}
.y9d{bottom:509.279908px;}
.y134{bottom:511.079908px;}
.y32{bottom:513.509908px;}
.y76{bottom:518.279908px;}
.y182{bottom:520.889908px;}
.y162{bottom:522.689908px;}
.ye9{bottom:523.049908px;}
.yb9{bottom:524.039908px;}
.y19d{bottom:524.579908px;}
.y148{bottom:526.829908px;}
.yd6{bottom:528.719908px;}
.y103{bottom:529.079908px;}
.y9c{bottom:532.049908px;}
.y133{bottom:533.849908px;}
.yf{bottom:536.009908px;}
.y31{bottom:536.279908px;}
.y75{bottom:541.049908px;}
.y19c{bottom:542.579908px;}
.y181{bottom:543.659908px;}
.y161{bottom:545.459908px;}
.ye8{bottom:545.909908px;}
.yb8{bottom:546.899908px;}
.yd5{bottom:551.489908px;}
.y102{bottom:551.849908px;}
.y52{bottom:554.909908px;}
.y132{bottom:556.709908px;}
.y30{bottom:559.049908px;}
.y74{bottom:563.909908px;}
.y180{bottom:566.519908px;}
.ye{bottom:567.779908px;}
.y147{bottom:567.959908px;}
.y160{bottom:568.319908px;}
.y19b{bottom:569.579908px;}
.yb7{bottom:569.669908px;}
.yd4{bottom:574.349908px;}
.y101{bottom:574.709908px;}
.y51{bottom:577.679908px;}
.y131{bottom:579.479908px;}
.y2f{bottom:581.909908px;}
.y73{bottom:586.679908px;}
.y19a{bottom:587.579908px;}
.y17f{bottom:589.289908px;}
.y15f{bottom:591.089908px;}
.yb6{bottom:592.529908px;}
.y100{bottom:597.479908px;}
.yd{bottom:599.639908px;}
.y50{bottom:600.449908px;}
.y130{bottom:602.339908px;}
.y2e{bottom:604.679908px;}
.yd3{bottom:606.119908px;}
.y72{bottom:609.449908px;}
.y17e{bottom:612.149908px;}
.y199{bottom:614.579908px;}
.yb5{bottom:615.299908px;}
.y146{bottom:618.449908px;}
.yff{bottom:620.339908px;}
.y4f{bottom:623.309908px;}
.y15e{bottom:625.829908px;}
.y2d{bottom:627.539908px;}
.yd2{bottom:628.979908px;}
.yc{bottom:631.409908px;}
.y8d{bottom:632.309908px;}
.y12f{bottom:634.109908px;}
.y14b{bottom:636.989908px;}
.yb4{bottom:638.159908px;}
.y71{bottom:641.309908px;}
.y198{bottom:641.579908px;}
.yfe{bottom:643.109908px;}
.y4e{bottom:646.079908px;}
.y17d{bottom:650.219908px;}
.yd1{bottom:651.749908px;}
.y8c{bottom:655.079908px;}
.y12e{bottom:656.969908px;}
.yb3{bottom:660.929908px;}
.yb{bottom:663.179908px;}
.y70{bottom:664.079908px;}
.y2c{bottom:665.609908px;}
.yfd{bottom:665.969908px;}
.y15d{bottom:666.779908px;}
.y197{bottom:668.579908px;}
.y4d{bottom:668.939908px;}
.yd0{bottom:674.519908px;}
.y8b{bottom:677.939908px;}
.yb2{bottom:683.789908px;}
.y196{bottom:686.579908px;}
.y6f{bottom:686.939908px;}
.yfc{bottom:688.739908px;}
.y15c{bottom:689.549908px;}
.y12d{bottom:691.619908px;}
.y4c{bottom:691.709908px;}
.ya{bottom:695.039908px;}
.ycf{bottom:697.379908px;}
.y8a{bottom:700.709908px;}
.yb1{bottom:706.559908px;}
.y6e{bottom:709.709908px;}
.yfb{bottom:711.509908px;}
.y15b{bottom:712.409908px;}
.y2b{bottom:712.679908px;}
.y195{bottom:713.579908px;}
.y4b{bottom:714.569908px;}
.yce{bottom:720.149908px;}
.y89{bottom:723.569908px;}
.y9{bottom:725.909908px;}
.yb0{bottom:729.419908px;}
.y2a{bottom:729.959908px;}
.y6d{bottom:732.569908px;}
.y15a{bottom:735.179908px;}
.y194{bottom:740.579908px;}
.yfa{bottom:743.369908px;}
.y8{bottom:745.709908px;}
.y4a{bottom:746.339908px;}
.y29{bottom:750.209908px;}
.yaf{bottom:752.189908px;}
.ycd{bottom:754.889908px;}
.y6c{bottom:755.339908px;}
.y159{bottom:757.949908px;}
.y7{bottom:765.509908px;}
.yf9{bottom:766.139908px;}
.y193{bottom:767.579908px;}
.y49{bottom:769.199908px;}
.y6b{bottom:778.199908px;}
.y158{bottom:780.809908px;}
.yae{bottom:783.959908px;}
.yf8{bottom:788.999908px;}
.y48{bottom:791.969908px;}
.y192{bottom:794.579908px;}
.y6{bottom:795.569908px;}
.ycc{bottom:796.109908px;}
.y6a{bottom:800.969908px;}
.yad{bottom:806.819908px;}
.y28{bottom:808.529908px;}
.yf7{bottom:811.769908px;}
.y47{bottom:814.829908px;}
.y5{bottom:815.459908px;}
.y157{bottom:818.879908px;}
.y191{bottom:821.579908px;}
.y69{bottom:823.829908px;}
.yac{bottom:829.589908px;}
.y27{bottom:834.299908px;}
.yf6{bottom:834.659908px;}
.y4{bottom:835.289908px;}
.y88{bottom:837.629908px;}
.y46{bottom:846.629908px;}
.y190{bottom:848.609908px;}
.yf5{bottom:857.429908px;}
.y114{bottom:860.489908px;}
.y3{bottom:862.289908px;}
.yab{bottom:867.779908px;}
.y45{bottom:869.489908px;}
.y18f{bottom:875.609908px;}
.yaa{bottom:891.539908px;}
.yf4{bottom:892.169908px;}
.y44{bottom:892.259908px;}
.y18e{bottom:893.609908px;}
.y26{bottom:894.329908px;}
.y68{bottom:899.009908px;}
.he{height:32.449219px;}
.ha{height:40.070215px;}
.hd{height:40.341797px;}
.h6{height:48.673828px;}
.h10{height:51.019805px;}
.hf{height:51.269766px;}
.h8{height:53.896641px;}
.h4{height:54.190195px;}
.h11{height:61.391250px;}
.h3{height:61.965000px;}
.hc{height:62.302500px;}
.hb{height:64.546875px;}
.h5{height:64.898438px;}
.h9{height:70.033359px;}
.h7{height:993.419850px;}
.h2{height:993.419908px;}
.h0{height:993.420000px;}
.h1{height:993.750000px;}
.w3{width:663.389980px;}
.w2{width:663.389990px;}
.w0{width:663.390000px;}
.w1{width:663.750000px;}
.x0{left:0.000000px;}
.x3{left:85.049990px;}
.xe{left:97.469990px;}
.x10{left:106.289990px;}
.x7{left:133.589990px;}
.x11{left:138.269990px;}
.x6{left:203.159990px;}
.x2{left:217.829990px;}
.xf{left:234.209990px;}
.xc{left:248.069980px;}
.xd{left:265.079990px;}
.x4{left:301.619990px;}
.xb{left:302.699990px;}
.x1{left:331.679990px;}
.x8{left:430.529990px;}
.x9{left:440.069990px;}
.x5{left:498.209990px;}
.xa{left:578.399990px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls20{letter-spacing:-0.640000pt;}
.lsd{letter-spacing:-0.555520pt;}
.lsc{letter-spacing:-0.486080pt;}
.ls24{letter-spacing:-0.320000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls23{letter-spacing:0.000001pt;}
.ls1a{letter-spacing:0.000003pt;}
.ls0{letter-spacing:0.043520pt;}
.ls22{letter-spacing:0.071467pt;}
.ls1e{letter-spacing:0.079360pt;}
.ls15{letter-spacing:0.128000pt;}
.ls3{letter-spacing:0.144000pt;}
.ls14{letter-spacing:0.160000pt;}
.ls5{letter-spacing:0.195520pt;}
.ls1b{letter-spacing:0.199467pt;}
.lse{letter-spacing:0.212800pt;}
.ls1f{letter-spacing:0.220160pt;}
.ls10{letter-spacing:0.240533pt;}
.ls18{letter-spacing:0.245760pt;}
.ls12{letter-spacing:0.252800pt;}
.lsa{letter-spacing:0.255360pt;}
.ls1{letter-spacing:0.256000pt;}
.ls11{letter-spacing:0.277333pt;}
.ls21{letter-spacing:0.299520pt;}
.ls13{letter-spacing:0.312320pt;}
.ls16{letter-spacing:0.312533pt;}
.ls9{letter-spacing:0.319488pt;}
.lsf{letter-spacing:0.320000pt;}
.ls6{letter-spacing:0.331840pt;}
.ls1c{letter-spacing:0.340267pt;}
.ls8{letter-spacing:0.367360pt;}
.ls17{letter-spacing:0.390400pt;}
.ls25{letter-spacing:0.440320pt;}
.ls2{letter-spacing:0.448000pt;}
.ls7{letter-spacing:0.456320pt;}
.ls1d{letter-spacing:0.480000pt;}
.lsb{letter-spacing:0.480960pt;}
.ls19{letter-spacing:46.282667pt;}
.ls26{letter-spacing:752.746667pt;}
.wsd{word-spacing:-61.440000pt;}
.wsf{word-spacing:-15.700267pt;}
.ws6{word-spacing:-15.680000pt;}
.ws2{word-spacing:-15.679488pt;}
.wsa{word-spacing:-15.605760pt;}
.ws11{word-spacing:-15.600533pt;}
.ws10{word-spacing:-15.431467pt;}
.wsb{word-spacing:-15.360003pt;}
.ws3{word-spacing:-15.360000pt;}
.ws12{word-spacing:-15.040000pt;}
.ws0{word-spacing:-14.592000pt;}
.ws4{word-spacing:-13.840960pt;}
.ws13{word-spacing:-13.360000pt;}
.wsc{word-spacing:-12.320000pt;}
.wse{word-spacing:-12.000000pt;}
.ws8{word-spacing:-11.918080pt;}
.ws7{word-spacing:-11.805013pt;}
.ws9{word-spacing:-11.527680pt;}
.ws5{word-spacing:-10.852800pt;}
.ws1{word-spacing:0.000000pt;}
._11{margin-left:-4.417280pt;}
._8{margin-left:-3.346560pt;}
._7{margin-left:-1.875840pt;}
._4{margin-left:-0.972160pt;}
._0{width:1.015360pt;}
._1{width:2.781547pt;}
._2{width:4.110293pt;}
._5{width:5.608960pt;}
._6{width:6.756907pt;}
._b{width:7.920000pt;}
._c{width:8.908800pt;}
._12{width:9.879040pt;}
._d{width:10.904000pt;}
._9{width:12.313920pt;}
._a{width:14.069760pt;}
._f{width:17.106240pt;}
._e{width:18.063360pt;}
._10{width:30.040960pt;}
._3{width:752.638187pt;}
.fs7{font-size:32.000000pt;}
.fs6{font-size:40.000000pt;}
.fs2{font-size:42.560000pt;}
.fs4{font-size:48.000000pt;}
.fs8{font-size:50.560000pt;}
.fs1{font-size:53.440000pt;}
.fs0{font-size:61.440000pt;}
.fs3{font-size:64.000000pt;}
.fs5{font-size:69.440000pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000081pt;}
.y2{bottom:22.159919pt;}
.y25{bottom:80.079919pt;}
.y17c{bottom:81.279919pt;}
.y67{bottom:82.159919pt;}
.ycb{bottom:84.799919pt;}
.y9b{bottom:84.959919pt;}
.y87{bottom:85.519919pt;}
.yf3{bottom:91.919919pt;}
.y145{bottom:93.519919pt;}
.y24{bottom:93.839919pt;}
.y156{bottom:95.119919pt;}
.y43{bottom:95.679919pt;}
.y173{bottom:95.839919pt;}
.y120{bottom:96.159919pt;}
.y66{bottom:96.719919pt;}
.y86{bottom:97.359919pt;}
.ye7{bottom:101.199919pt;}
.y113{bottom:101.519919pt;}
.ya9{bottom:104.159919pt;}
.y18d{bottom:104.239919pt;}
.yca{bottom:105.119919pt;}
.y9a{bottom:105.199919pt;}
.y12c{bottom:105.759919pt;}
.y23{bottom:107.599919pt;}
.y65{bottom:111.279919pt;}
.yf2{bottom:112.159919pt;}
.y144{bottom:113.759919pt;}
.y155{bottom:115.439919pt;}
.y42{bottom:115.919919pt;}
.y172{bottom:116.159919pt;}
.y11f{bottom:116.479919pt;}
.y18c{bottom:120.239919pt;}
.y22{bottom:121.359919pt;}
.ye6{bottom:121.439919pt;}
.y17b{bottom:121.759919pt;}
.yc9{bottom:125.359919pt;}
.y64{bottom:125.839919pt;}
.y12b{bottom:126.079919pt;}
.y112{bottom:129.759919pt;}
.ya8{bottom:132.479919pt;}
.y99{bottom:132.639919pt;}
.y143{bottom:134.106585pt;}
.y21{bottom:135.146585pt;}
.y154{bottom:135.706585pt;}
.y41{bottom:136.266585pt;}
.y11e{bottom:136.746585pt;}
.y63{bottom:140.346585pt;}
.ye5{bottom:141.786585pt;}
.y17a{bottom:142.106585pt;}
.y171{bottom:144.426585pt;}
.yc8{bottom:145.706585pt;}
.y12a{bottom:146.346585pt;}
.y85{bottom:148.506585pt;}
.y20{bottom:148.906585pt;}
.y111{bottom:150.106585pt;}
.y98{bottom:150.346585pt;}
.ya7{bottom:152.746585pt;}
.y142{bottom:154.346585pt;}
.y62{bottom:154.906585pt;}
.y153{bottom:155.946585pt;}
.y40{bottom:156.506585pt;}
.y11d{bottom:157.066585pt;}
.y61{bottom:158.266585pt;}
.y18b{bottom:160.266585pt;}
.ye4{bottom:162.026585pt;}
.y179{bottom:162.346585pt;}
.y1f{bottom:162.666585pt;}
.y170{bottom:164.746585pt;}
.yc7{bottom:165.946585pt;}
.y129{bottom:166.666585pt;}
.y84{bottom:168.746585pt;}
.y60{bottom:170.106585pt;}
.y110{bottom:170.346585pt;}
.ya6{bottom:173.066585pt;}
.y141{bottom:174.666585pt;}
.y152{bottom:176.266585pt;}
.y97{bottom:176.746585pt;}
.y3f{bottom:176.826585pt;}
.y1e{bottom:177.146585pt;}
.y11c{bottom:177.306585pt;}
.y14a{bottom:182.346585pt;}
.y178{bottom:182.666585pt;}
.y16f{bottom:184.986585pt;}
.yc6{bottom:186.186585pt;}
.y128{bottom:186.906585pt;}
.y83{bottom:189.066585pt;}
.ye3{bottom:190.346585pt;}
.y1d{bottom:191.786585pt;}
.ya5{bottom:193.306585pt;}
.y140{bottom:194.906585pt;}
.y151{bottom:196.506585pt;}
.y3e{bottom:197.066585pt;}
.y11b{bottom:197.626585pt;}
.y10f{bottom:198.666585pt;}
.y18a{bottom:200.266585pt;}
.y5f{bottom:203.626585pt;}
.y16e{bottom:205.306585pt;}
.y1c{bottom:206.346585pt;}
.yc5{bottom:206.506585pt;}
.y127{bottom:207.226585pt;}
.y82{bottom:209.306585pt;}
.ye2{bottom:210.586585pt;}
.y177{bottom:210.906585pt;}
.yf1{bottom:213.626585pt;}
.y189{bottom:216.266585pt;}
.y96{bottom:217.306585pt;}
.y11a{bottom:217.866585pt;}
.y10e{bottom:218.906585pt;}
.ya4{bottom:221.626585pt;}
.y13f{bottom:223.226585pt;}
.y5d{bottom:223.946585pt;}
.y3d{bottom:225.306585pt;}
.y16d{bottom:225.546585pt;}
.yc4{bottom:226.746585pt;}
.y150{bottom:227.386585pt;}
.y126{bottom:227.466585pt;}
.y81{bottom:229.626585pt;}
.y5e{bottom:229.946585pt;}
.ye1{bottom:230.906585pt;}
.y176{bottom:231.226585pt;}
.y1b{bottom:231.706585pt;}
.y188{bottom:232.266585pt;}
.yf0{bottom:233.866585pt;}
.y95{bottom:237.626585pt;}
.y10d{bottom:239.226585pt;}
.ya3{bottom:241.866585pt;}
.y13e{bottom:243.466585pt;}
.y5c{bottom:244.186585pt;}
.y3c{bottom:245.626585pt;}
.y16c{bottom:245.786585pt;}
.y119{bottom:246.186585pt;}
.yc3{bottom:247.066585pt;}
.y125{bottom:247.786585pt;}
.y80{bottom:249.866585pt;}
.ye0{bottom:251.146585pt;}
.y175{bottom:251.466585pt;}
.y187{bottom:256.266585pt;}
.y94{bottom:257.866585pt;}
.y10c{bottom:259.466585pt;}
.y1a{bottom:260.826585pt;}
.ya2{bottom:262.186585pt;}
.y13d{bottom:263.786585pt;}
.y5b{bottom:264.506585pt;}
.y3b{bottom:265.866585pt;}
.y16b{bottom:266.106585pt;}
.y118{bottom:266.426585pt;}
.yc2{bottom:267.306585pt;}
.y124{bottom:268.026585pt;}
.y7f{bottom:270.186585pt;}
.y186{bottom:272.266585pt;}
.y93{bottom:278.186585pt;}
.ydf{bottom:279.466585pt;}
.y10b{bottom:279.786585pt;}
.y174{bottom:282.346585pt;}
.ya1{bottom:282.426585pt;}
.y13c{bottom:284.026585pt;}
.y5a{bottom:284.746585pt;}
.y3a{bottom:286.186585pt;}
.y16a{bottom:286.346585pt;}
.y117{bottom:286.666585pt;}
.y123{bottom:288.346585pt;}
.y19{bottom:288.986585pt;}
.y7e{bottom:290.426585pt;}
.yc1{bottom:295.626585pt;}
.y185{bottom:296.266585pt;}
.y92{bottom:298.426585pt;}
.yde{bottom:299.706585pt;}
.y10a{bottom:300.026585pt;}
.ya0{bottom:302.666585pt;}
.y13b{bottom:304.346585pt;}
.y59{bottom:305.066585pt;}
.y39{bottom:306.426585pt;}
.y169{bottom:306.666585pt;}
.y116{bottom:306.986585pt;}
.y18{bottom:309.226585pt;}
.y7d{bottom:310.666585pt;}
.yc0{bottom:315.866585pt;}
.y91{bottom:318.666585pt;}
.y122{bottom:319.226585pt;}
.ydd{bottom:319.946585pt;}
.y9f{bottom:322.986585pt;}
.y13a{bottom:324.586585pt;}
.y17{bottom:326.826585pt;}
.y168{bottom:326.906585pt;}
.y109{bottom:328.346585pt;}
.y184{bottom:328.986585pt;}
.y7c{bottom:330.986585pt;}
.y58{bottom:333.306585pt;}
.y38{bottom:334.746585pt;}
.y115{bottom:335.226585pt;}
.ybf{bottom:336.186585pt;}
.y90{bottom:338.986585pt;}
.ydc{bottom:340.266585pt;}
.yef{bottom:343.226585pt;}
.y16{bottom:344.426585pt;}
.y139{bottom:344.826585pt;}
.y167{bottom:347.226585pt;}
.y108{bottom:348.586585pt;}
.y7b{bottom:351.226585pt;}
.y57{bottom:353.626585pt;}
.y37{bottom:354.986585pt;}
.y121{bottom:355.466585pt;}
.ybe{bottom:356.426585pt;}
.y8f{bottom:359.226585pt;}
.ydb{bottom:360.506585pt;}
.y15{bottom:362.026585pt;}
.yee{bottom:363.546585pt;}
.y138{bottom:365.146585pt;}
.y166{bottom:367.466585pt;}
.y107{bottom:368.826585pt;}
.y7a{bottom:371.546585pt;}
.y56{bottom:373.866585pt;}
.y36{bottom:375.306585pt;}
.ybd{bottom:376.746585pt;}
.y14{bottom:379.546585pt;}
.yda{bottom:380.826585pt;}
.yed{bottom:383.786585pt;}
.y14f{bottom:385.386585pt;}
.y106{bottom:389.146585pt;}
.y79{bottom:391.786585pt;}
.y137{bottom:393.386585pt;}
.y55{bottom:394.186585pt;}
.y35{bottom:395.546585pt;}
.y165{bottom:395.786585pt;}
.ybc{bottom:396.986585pt;}
.y13{bottom:397.146585pt;}
.y8e{bottom:399.786585pt;}
.yd9{bottom:401.066585pt;}
.y1a0{bottom:402.906585pt;}
.yec{bottom:404.106585pt;}
.y14e{bottom:405.706585pt;}
.y105{bottom:409.386585pt;}
.y9e{bottom:412.106585pt;}
.y136{bottom:413.706585pt;}
.y54{bottom:414.426585pt;}
.y12{bottom:414.746585pt;}
.y34{bottom:415.866585pt;}
.y164{bottom:416.026585pt;}
.ybb{bottom:417.226585pt;}
.y78{bottom:420.106585pt;}
.yeb{bottom:424.346585pt;}
.y14d{bottom:425.946585pt;}
.y19f{bottom:426.266585pt;}
.yd8{bottom:429.386585pt;}
.y104{bottom:429.706585pt;}
.y149{bottom:432.026585pt;}
.y11{bottom:432.346585pt;}
.y135{bottom:433.946585pt;}
.y183{bottom:434.666585pt;}
.y33{bottom:436.106585pt;}
.y163{bottom:436.346585pt;}
.yba{bottom:437.573252pt;}
.y77{bottom:440.373252pt;}
.y19e{bottom:442.293252pt;}
.yea{bottom:444.693252pt;}
.y14c{bottom:446.293252pt;}
.y53{bottom:448.293252pt;}
.yd7{bottom:449.653252pt;}
.y10{bottom:449.973252pt;}
.y9d{bottom:452.693252pt;}
.y134{bottom:454.293252pt;}
.y32{bottom:456.453252pt;}
.y76{bottom:460.693252pt;}
.y182{bottom:463.013252pt;}
.y162{bottom:464.613252pt;}
.ye9{bottom:464.933252pt;}
.yb9{bottom:465.813252pt;}
.y19d{bottom:466.293252pt;}
.y148{bottom:468.293252pt;}
.yd6{bottom:469.973252pt;}
.y103{bottom:470.293252pt;}
.y9c{bottom:472.933252pt;}
.y133{bottom:474.533252pt;}
.yf{bottom:476.453252pt;}
.y31{bottom:476.693252pt;}
.y75{bottom:480.933252pt;}
.y19c{bottom:482.293252pt;}
.y181{bottom:483.253252pt;}
.y161{bottom:484.853252pt;}
.ye8{bottom:485.253252pt;}
.yb8{bottom:486.133252pt;}
.yd5{bottom:490.213252pt;}
.y102{bottom:490.533252pt;}
.y52{bottom:493.253252pt;}
.y132{bottom:494.853252pt;}
.y30{bottom:496.933252pt;}
.y74{bottom:501.253252pt;}
.y180{bottom:503.573252pt;}
.ye{bottom:504.693252pt;}
.y147{bottom:504.853252pt;}
.y160{bottom:505.173252pt;}
.y19b{bottom:506.293252pt;}
.yb7{bottom:506.373252pt;}
.yd4{bottom:510.533252pt;}
.y101{bottom:510.853252pt;}
.y51{bottom:513.493252pt;}
.y131{bottom:515.093252pt;}
.y2f{bottom:517.253252pt;}
.y73{bottom:521.493252pt;}
.y19a{bottom:522.293252pt;}
.y17f{bottom:523.813252pt;}
.y15f{bottom:525.413252pt;}
.yb6{bottom:526.693252pt;}
.y100{bottom:531.093252pt;}
.yd{bottom:533.013252pt;}
.y50{bottom:533.733252pt;}
.y130{bottom:535.413252pt;}
.y2e{bottom:537.493252pt;}
.yd3{bottom:538.773252pt;}
.y72{bottom:541.733252pt;}
.y17e{bottom:544.133252pt;}
.y199{bottom:546.293252pt;}
.yb5{bottom:546.933252pt;}
.y146{bottom:549.733252pt;}
.yff{bottom:551.413252pt;}
.y4f{bottom:554.053252pt;}
.y15e{bottom:556.293252pt;}
.y2d{bottom:557.813252pt;}
.yd2{bottom:559.093252pt;}
.yc{bottom:561.253252pt;}
.y8d{bottom:562.053252pt;}
.y12f{bottom:563.653252pt;}
.y14b{bottom:566.213252pt;}
.yb4{bottom:567.253252pt;}
.y71{bottom:570.053252pt;}
.y198{bottom:570.293252pt;}
.yfe{bottom:571.653252pt;}
.y4e{bottom:574.293252pt;}
.y17d{bottom:577.973252pt;}
.yd1{bottom:579.333252pt;}
.y8c{bottom:582.293252pt;}
.y12e{bottom:583.973252pt;}
.yb3{bottom:587.493252pt;}
.yb{bottom:589.493252pt;}
.y70{bottom:590.293252pt;}
.y2c{bottom:591.653252pt;}
.yfd{bottom:591.973252pt;}
.y15d{bottom:592.693252pt;}
.y197{bottom:594.293252pt;}
.y4d{bottom:594.613252pt;}
.yd0{bottom:599.573252pt;}
.y8b{bottom:602.613252pt;}
.yb2{bottom:607.813252pt;}
.y196{bottom:610.293252pt;}
.y6f{bottom:610.613252pt;}
.yfc{bottom:612.213252pt;}
.y15c{bottom:612.933252pt;}
.y12d{bottom:614.773252pt;}
.y4c{bottom:614.853252pt;}
.ya{bottom:617.813252pt;}
.ycf{bottom:619.893252pt;}
.y8a{bottom:622.853252pt;}
.yb1{bottom:628.053252pt;}
.y6e{bottom:630.853252pt;}
.yfb{bottom:632.453252pt;}
.y15b{bottom:633.253252pt;}
.y2b{bottom:633.493252pt;}
.y195{bottom:634.293252pt;}
.y4b{bottom:635.173252pt;}
.yce{bottom:640.133252pt;}
.y89{bottom:643.173252pt;}
.y9{bottom:645.253252pt;}
.yb0{bottom:648.373252pt;}
.y2a{bottom:648.853252pt;}
.y6d{bottom:651.173252pt;}
.y15a{bottom:653.493252pt;}
.y194{bottom:658.293252pt;}
.yfa{bottom:660.773252pt;}
.y8{bottom:662.853252pt;}
.y4a{bottom:663.413252pt;}
.y29{bottom:666.853252pt;}
.yaf{bottom:668.613252pt;}
.ycd{bottom:671.013252pt;}
.y6c{bottom:671.413252pt;}
.y159{bottom:673.733252pt;}
.y7{bottom:680.453252pt;}
.yf9{bottom:681.013252pt;}
.y193{bottom:682.293252pt;}
.y49{bottom:683.733252pt;}
.y6b{bottom:691.733252pt;}
.y158{bottom:694.053252pt;}
.yae{bottom:696.853252pt;}
.yf8{bottom:701.333252pt;}
.y48{bottom:703.973252pt;}
.y192{bottom:706.293252pt;}
.y6{bottom:707.173252pt;}
.ycc{bottom:707.653252pt;}
.y6a{bottom:711.973252pt;}
.yad{bottom:717.173252pt;}
.y28{bottom:718.693252pt;}
.yf7{bottom:721.573252pt;}
.y47{bottom:724.293252pt;}
.y5{bottom:724.853252pt;}
.y157{bottom:727.893252pt;}
.y191{bottom:730.293252pt;}
.y69{bottom:732.293252pt;}
.yac{bottom:737.413252pt;}
.y27{bottom:741.599919pt;}
.yf6{bottom:741.919919pt;}
.y4{bottom:742.479919pt;}
.y88{bottom:744.559919pt;}
.y46{bottom:752.559919pt;}
.y190{bottom:754.319919pt;}
.yf5{bottom:762.159919pt;}
.y114{bottom:764.879919pt;}
.y3{bottom:766.479919pt;}
.yab{bottom:771.359919pt;}
.y45{bottom:772.879919pt;}
.y18f{bottom:778.319919pt;}
.yaa{bottom:792.479919pt;}
.yf4{bottom:793.039919pt;}
.y44{bottom:793.119919pt;}
.y18e{bottom:794.319919pt;}
.y26{bottom:794.959919pt;}
.y68{bottom:799.119919pt;}
.he{height:28.843750pt;}
.ha{height:35.617969pt;}
.hd{height:35.859375pt;}
.h6{height:43.265625pt;}
.h10{height:45.350937pt;}
.hf{height:45.573125pt;}
.h8{height:47.908125pt;}
.h4{height:48.169062pt;}
.h11{height:54.570000pt;}
.h3{height:55.080000pt;}
.hc{height:55.380000pt;}
.hb{height:57.375000pt;}
.h5{height:57.687500pt;}
.h9{height:62.251875pt;}
.h7{height:883.039867pt;}
.h2{height:883.039919pt;}
.h0{height:883.040000pt;}
.h1{height:883.333333pt;}
.w3{width:589.679982pt;}
.w2{width:589.679991pt;}
.w0{width:589.680000pt;}
.w1{width:590.000000pt;}
.x0{left:0.000000pt;}
.x3{left:75.599991pt;}
.xe{left:86.639991pt;}
.x10{left:94.479991pt;}
.x7{left:118.746658pt;}
.x11{left:122.906658pt;}
.x6{left:180.586658pt;}
.x2{left:193.626658pt;}
.xf{left:208.186658pt;}
.xc{left:220.506649pt;}
.xd{left:235.626658pt;}
.x4{left:268.106658pt;}
.xb{left:269.066658pt;}
.x1{left:294.826658pt;}
.x8{left:382.693325pt;}
.x9{left:391.173325pt;}
.x5{left:442.853325pt;}
.xa{left:514.133325pt;}
}




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