
    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_9b4970710437c55c59d60681.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2;src:url('chunks/assets/font_8136ffffc5d5d956bc45840b.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.152000;font-style:normal;font-weight: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_9d8cb6f0fa03b0488c1c5767.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.284180;font-style:normal;font-weight: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_9d1506445e02590589b24e31.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.791000;font-style:normal;font-weight: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_51d5dd8562c7aa38214e197b.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.346191;font-style:normal;font-weight: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_c9f9acc5cf873150f2a65907.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.254000;font-style:normal;font-weight: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_50d1b0ae4638f7d1a290db95.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff8;src:url('chunks/assets/font_4ec4b79faaf5f208226ab597.woff2')format("woff");}.ff8{font-family:ff8;line-height:1.152000;font-style:normal;font-weight: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_2df13d520e507d4ecce55e06.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.284180;font-style:normal;font-weight: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_9311fc47a797cf552562eaa7.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.346191;font-style:normal;font-weight: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_fc944ca4aaad4ed3b03cbf74.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.254000;font-style:normal;font-weight: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_e319aad0c6fdc73737f60023.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.784000;font-style:normal;font-weight: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_e2ff41345327bab20dbde514.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_a140eb42bbf6227097e07bf5.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.284180;font-style:normal;font-weight: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_b43c59cc6342e7537b315b43.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight: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_144f4aba3a36d59e4430eb31.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284180;font-style:normal;font-weight: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_5a63c32f0710de78d3e9023d.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.346191;font-style:normal;font-weight: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_fc944ca4aaad4ed3b03cbf74.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.254000;font-style:normal;font-weight: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_e319aad0c6fdc73737f60023.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.784000;font-style:normal;font-weight: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_2f91b28b8022650ab86e4ad3.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_cb9d22ea389d9635aeab3db7.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.284180;font-style:normal;font-weight: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_1387d50bbd2d6bf1ff4d47cd.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.346191;font-style:normal;font-weight: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_8041edbbc6d5e63e81f60ed5.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.254000;font-style:normal;font-weight: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_e319aad0c6fdc73737f60023.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.784000;font-style:normal;font-weight: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_285bb6120805d27ee8c95335.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.784000;font-style:normal;font-weight: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_94f4023bad8f8703b2c9ca81.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_cb9d22ea389d9635aeab3db7.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.284180;font-style:normal;font-weight: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_6c5962a64e99d5288123c1a5.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.346191;font-style:normal;font-weight: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_9e2b428756c863a23429500e.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1e;src:url('chunks/assets/font_30b55ac49513aecfba973962.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.346191;font-style:normal;font-weight: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_fc944ca4aaad4ed3b03cbf74.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.254000;font-style:normal;font-weight: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_896b487b5e5b6208e06be18c.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.784000;font-style:normal;font-weight: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_df2fc43ab175c5c7fb23714e.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_30b55ac49513aecfba973962.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.346191;font-style:normal;font-weight: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_fc944ca4aaad4ed3b03cbf74.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.254000;font-style:normal;font-weight: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_e319aad0c6fdc73737f60023.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.784000;font-style:normal;font-weight: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_3153d196721cb5941b2fdf58.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_5903e217fb9e48c89fdc964b.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.284180;font-style:normal;font-weight: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_1f7eb4b99bdf632a30a6eec6.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.346191;font-style:normal;font-weight: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_fc944ca4aaad4ed3b03cbf74.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.254000;font-style:normal;font-weight: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_e319aad0c6fdc73737f60023.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.784000;font-style:normal;font-weight: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_9ec21ac4f3191ed5683bd035.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m2{transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-ms-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);-webkit-transform:matrix(0.237171,0.000000,-0.079057,0.237171,0,0);}
.m4{transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-ms-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);-webkit-transform:matrix(0.241484,0.000000,-0.064694,0.241484,0,0);}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m3{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:-21.600000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:21.600000px;}
.v3{vertical-align:27.576000px;}
.ls2f{letter-spacing:-2.016000px;}
.ls16{letter-spacing:-1.366104px;}
.ls26{letter-spacing:-1.224000px;}
.ls3f{letter-spacing:-1.200000px;}
.ls27{letter-spacing:-0.972000px;}
.ls24{letter-spacing:-0.792000px;}
.ls3a{letter-spacing:-0.780000px;}
.ls17{letter-spacing:-0.758947px;}
.ls39{letter-spacing:-0.720000px;}
.ls33{letter-spacing:-0.600000px;}
.ls11{letter-spacing:-0.540000px;}
.ls14{letter-spacing:-0.531263px;}
.ls15{letter-spacing:-0.504000px;}
.ls32{letter-spacing:-0.486000px;}
.ls12{letter-spacing:-0.480000px;}
.ls19{letter-spacing:-0.432000px;}
.ls30{letter-spacing:-0.420000px;}
.lsd{letter-spacing:-0.404771px;}
.lse{letter-spacing:-0.384000px;}
.ls25{letter-spacing:-0.360000px;}
.ls1b{letter-spacing:-0.288000px;}
.ls1f{letter-spacing:-0.270000px;}
.ls13{letter-spacing:-0.240000px;}
.lsf{letter-spacing:-0.202386px;}
.ls48{letter-spacing:-0.192000px;}
.ls1a{letter-spacing:-0.151789px;}
.ls1e{letter-spacing:-0.108000px;}
.ls18{letter-spacing:-0.075895px;}
.lsb{letter-spacing:0.000000px;}
.ls10{letter-spacing:0.066000px;}
.ls28{letter-spacing:0.120000px;}
.ls1d{letter-spacing:0.216000px;}
.lsc{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.360000px;}
.lsa{letter-spacing:0.378000px;}
.ls49{letter-spacing:0.384000px;}
.ls31{letter-spacing:0.420000px;}
.ls1c{letter-spacing:0.432000px;}
.ls9{letter-spacing:0.450000px;}
.ls47{letter-spacing:0.480000px;}
.ls4{letter-spacing:0.540000px;}
.ls38{letter-spacing:0.594000px;}
.ls1{letter-spacing:0.600000px;}
.ls5{letter-spacing:0.607157px;}
.ls2{letter-spacing:0.632456px;}
.ls20{letter-spacing:1.058400px;}
.ls7{letter-spacing:1.101600px;}
.ls22{letter-spacing:1.152000px;}
.ls3{letter-spacing:1.200000px;}
.ls8{letter-spacing:1.224000px;}
.ls23{letter-spacing:1.800000px;}
.ls6{letter-spacing:2.376000px;}
.ls35{letter-spacing:2.400000px;}
.ls2b{letter-spacing:2.601600px;}
.ls37{letter-spacing:3.000000px;}
.ls3e{letter-spacing:3.505176px;}
.ls3d{letter-spacing:3.552000px;}
.ls3b{letter-spacing:3.817200px;}
.ls34{letter-spacing:4.200000px;}
.ls4a{letter-spacing:4.824000px;}
.ls2d{letter-spacing:5.400000px;}
.ls29{letter-spacing:5.976000px;}
.ls21{letter-spacing:6.026400px;}
.ls43{letter-spacing:6.141600px;}
.ls2c{letter-spacing:7.200000px;}
.ls2e{letter-spacing:7.800000px;}
.ls2a{letter-spacing:8.359200px;}
.ls36{letter-spacing:9.576000px;}
.ls40{letter-spacing:9.864000px;}
.ls41{letter-spacing:10.800000px;}
.ls44{letter-spacing:10.893600px;}
.ls46{letter-spacing:11.400000px;}
.ls3c{letter-spacing:20.574000px;}
.ls45{letter-spacing:31.176000px;}
.ls42{letter-spacing:198.000000px;}
.sc_{text-shadow:none;}
.sc1{text-shadow:-0.015em 0 rgb(0,0,0),0 0.015em rgb(0,0,0),0.015em 0 rgb(0,0,0),0 -0.015em  rgb(0,0,0);}
.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;}
.sc1{-webkit-text-stroke:0.015em rgb(0,0,0);text-shadow:none;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws0{word-spacing:-41.109630px;}
.ws2{word-spacing:-32.685281px;}
.ws1{word-spacing:-30.816000px;}
.ws13{word-spacing:-26.730000px;}
.ws9{word-spacing:-24.665766px;}
.wsc{word-spacing:-24.513976px;}
.wsa{word-spacing:-24.134503px;}
.wse{word-spacing:-23.616000px;}
.ws8{word-spacing:-23.400000px;}
.wsd{word-spacing:-23.112000px;}
.wsb{word-spacing:-22.968000px;}
.ws7{word-spacing:-22.896000px;}
.ws3{word-spacing:-19.500000px;}
.ws5{word-spacing:-19.260000px;}
.ws4{word-spacing:-18.960000px;}
.ws49{word-spacing:-18.432000px;}
.ws48{word-spacing:-18.000000px;}
.wsf{word-spacing:-17.982000px;}
.ws10{word-spacing:-17.928000px;}
.ws32{word-spacing:-17.640000px;}
.ws92{word-spacing:-17.568000px;}
.ws12{word-spacing:-17.550000px;}
.ws11{word-spacing:-17.442000px;}
.ws8f{word-spacing:-17.400000px;}
.ws33{word-spacing:-17.280000px;}
.ws4a{word-spacing:-17.064000px;}
.ws34{word-spacing:-16.578000px;}
.ws91{word-spacing:-16.080000px;}
.ws86{word-spacing:-15.984000px;}
.ws85{word-spacing:-15.600000px;}
.ws84{word-spacing:-15.408000px;}
.ws90{word-spacing:-15.360000px;}
.ws35{word-spacing:-15.120000px;}
.ws6{word-spacing:-15.000000px;}
.ws62{word-spacing:-14.760000px;}
.ws61{word-spacing:-14.460000px;}
.ws47{word-spacing:-12.000000px;}
.ws60{word-spacing:-10.494000px;}
.ws3e{word-spacing:-5.256000px;}
.ws3f{word-spacing:-4.032000px;}
.ws40{word-spacing:-3.600000px;}
.ws56{word-spacing:-3.000000px;}
.ws76{word-spacing:-2.880000px;}
.ws39{word-spacing:-2.808000px;}
.ws3c{word-spacing:-2.376000px;}
.ws73{word-spacing:-1.920000px;}
.ws72{word-spacing:-1.800000px;}
.ws44{word-spacing:-1.674000px;}
.ws28{word-spacing:-1.656000px;}
.ws3a{word-spacing:-1.584000px;}
.ws45{word-spacing:-1.560000px;}
.ws2d{word-spacing:-1.224000px;}
.ws54{word-spacing:-0.600000px;}
.ws6b{word-spacing:-0.594000px;}
.ws8c{word-spacing:-0.480000px;}
.ws2c{word-spacing:-0.432000px;}
.ws53{word-spacing:-0.420000px;}
.ws2f{word-spacing:-0.378000px;}
.ws87{word-spacing:-0.360000px;}
.ws15{word-spacing:-0.288000px;}
.ws2e{word-spacing:-0.264000px;}
.ws5c{word-spacing:-0.120000px;}
.ws5d{word-spacing:-0.060000px;}
.ws7b{word-spacing:-0.006212px;}
.ws7a{word-spacing:-0.006000px;}
.ws14{word-spacing:0.000000px;}
.ws18{word-spacing:0.066000px;}
.ws1f{word-spacing:0.075895px;}
.ws1a{word-spacing:0.180000px;}
.ws19{word-spacing:0.240000px;}
.ws30{word-spacing:0.270000px;}
.ws93{word-spacing:0.360000px;}
.ws17{word-spacing:0.384000px;}
.ws16{word-spacing:0.404771px;}
.ws4e{word-spacing:0.432000px;}
.ws5e{word-spacing:0.480000px;}
.ws1c{word-spacing:0.504000px;}
.ws1b{word-spacing:0.531263px;}
.ws5f{word-spacing:0.540000px;}
.ws42{word-spacing:0.600000px;}
.ws31{word-spacing:0.690000px;}
.ws64{word-spacing:0.720000px;}
.ws1e{word-spacing:0.758947px;}
.ws66{word-spacing:0.780000px;}
.ws23{word-spacing:0.792000px;}
.ws41{word-spacing:0.840000px;}
.ws52{word-spacing:1.020000px;}
.ws59{word-spacing:1.140000px;}
.ws22{word-spacing:1.224000px;}
.ws1d{word-spacing:1.366104px;}
.ws6c{word-spacing:1.500000px;}
.ws83{word-spacing:1.518000px;}
.ws65{word-spacing:1.680000px;}
.ws46{word-spacing:1.800000px;}
.ws20{word-spacing:1.944000px;}
.ws43{word-spacing:2.040000px;}
.ws21{word-spacing:2.376000px;}
.ws77{word-spacing:2.868000px;}
.ws78{word-spacing:2.874000px;}
.ws58{word-spacing:3.000000px;}
.ws25{word-spacing:3.168000px;}
.ws3b{word-spacing:3.600000px;}
.ws5b{word-spacing:4.200000px;}
.ws29{word-spacing:4.392000px;}
.ws5a{word-spacing:4.440000px;}
.ws2a{word-spacing:4.824000px;}
.ws3d{word-spacing:5.544000px;}
.ws55{word-spacing:5.640000px;}
.ws2b{word-spacing:5.976000px;}
.ws68{word-spacing:6.480000px;}
.ws67{word-spacing:6.600000px;}
.ws4c{word-spacing:6.768000px;}
.ws88{word-spacing:7.200000px;}
.ws74{word-spacing:7.800000px;}
.ws4d{word-spacing:7.992000px;}
.ws57{word-spacing:8.040000px;}
.ws4f{word-spacing:8.424000px;}
.ws24{word-spacing:9.144000px;}
.ws4b{word-spacing:9.576000px;}
.ws37{word-spacing:10.368000px;}
.ws38{word-spacing:10.800000px;}
.ws8e{word-spacing:11.400000px;}
.ws50{word-spacing:11.592000px;}
.ws8d{word-spacing:11.640000px;}
.ws82{word-spacing:12.024000px;}
.ws69{word-spacing:12.744000px;}
.ws51{word-spacing:12.816000px;}
.ws70{word-spacing:13.176000px;}
.ws63{word-spacing:13.968000px;}
.ws89{word-spacing:14.400000px;}
.ws7f{word-spacing:15.192000px;}
.ws6a{word-spacing:15.624000px;}
.ws27{word-spacing:16.344000px;}
.ws26{word-spacing:16.776000px;}
.ws81{word-spacing:17.568000px;}
.ws79{word-spacing:18.792000px;}
.ws7c{word-spacing:22.824000px;}
.ws6e{word-spacing:24.768000px;}
.ws6f{word-spacing:25.200000px;}
.ws7e{word-spacing:25.992000px;}
.ws6d{word-spacing:27.576000px;}
.ws80{word-spacing:28.368000px;}
.ws75{word-spacing:29.592000px;}
.ws7d{word-spacing:30.024000px;}
.ws8a{word-spacing:30.744000px;}
.ws8b{word-spacing:31.176000px;}
.ws71{word-spacing:32.400000px;}
.ws36{word-spacing:33.192000px;}
._3{margin-left:-2.270400px;}
._2{margin-left:-1.200000px;}
._0{width:1.062524px;}
._1{width:2.153476px;}
._a{width:3.852000px;}
._7{width:4.922400px;}
._5{width:5.986951px;}
._8{width:7.834951px;}
._6{width:8.956800px;}
._4{width:10.817476px;}
._c{width:12.041596px;}
._b{width:13.433976px;}
._f{width:16.761600px;}
._9{width:19.319976px;}
._e{width:25.858951px;}
._d{width:30.191976px;}
.fc3{color:rgb(0,0,255);}
.fc2{color:rgb(146,0,0);}
.fc1{color:transparent;}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:39.600000px;}
.fsd{font-size:42.000000px;}
.fse{font-size:43.481065px;}
.fsc{font-size:48.000000px;}
.fs7{font-size:54.000000px;}
.fs6{font-size:60.000000px;}
.fs5{font-size:66.000000px;}
.fsf{font-size:69.600000px;}
.fs0{font-size:72.000000px;}
.fs8{font-size:75.894664px;}
.fs9{font-size:84.000000px;}
.fs2{font-size:96.000000px;}
.fs4{font-size:101.192822px;}
.fs1{font-size:120.000000px;}
.fs3{font-size:126.491170px;}
.fsb{font-size:627.600000px;}
.y0{bottom:0.000000px;}
.y70{bottom:2.625000px;}
.ycb{bottom:2.688015px;}
.y7d{bottom:2.700000px;}
.y7f{bottom:3.000000px;}
.y16{bottom:3.300000px;}
.y33{bottom:3.885000px;}
.y81{bottom:4.200000px;}
.y85{bottom:4.500000px;}
.y7b{bottom:4.605000px;}
.ybb{bottom:5.526000px;}
.y57{bottom:8.400000px;}
.y30{bottom:23.700000px;}
.y7a{bottom:30.555000px;}
.yec{bottom:36.529500px;}
.y109{bottom:36.576000px;}
.yba{bottom:36.604500px;}
.y32{bottom:48.231628px;}
.y79{bottom:56.505000px;}
.y2f{bottom:65.100000px;}
.y13{bottom:66.600000px;}
.yeb{bottom:67.533000px;}
.y108{bottom:67.626000px;}
.yb9{bottom:67.683000px;}
.y11{bottom:74.701500px;}
.y31{bottom:88.800000px;}
.yea{bottom:98.536500px;}
.y107{bottom:98.676000px;}
.yb8{bottom:98.761500px;}
.y10{bottom:111.301500px;}
.y78{bottom:125.430000px;}
.y106{bottom:129.726000px;}
.ye9{bottom:129.730500px;}
.yb7{bottom:129.840000px;}
.y55{bottom:147.000000px;}
.y9a{bottom:149.400000px;}
.ya4{bottom:152.100000px;}
.y22{bottom:152.400000px;}
.y6e{bottom:154.500000px;}
.yf4{bottom:154.800000px;}
.ye8{bottom:160.752000px;}
.y105{bottom:160.776000px;}
.yb6{bottom:160.918500px;}
.y54{bottom:164.100000px;}
.ya3{bottom:164.400000px;}
.y99{bottom:166.500000px;}
.y6d{bottom:166.800000px;}
.y133{bottom:169.500000px;}
.yc4{bottom:171.900000px;}
.yd7{bottom:172.206000px;}
.y53{bottom:181.500000px;}
.y6c{bottom:183.900000px;}
.y76{bottom:186.600000px;}
.y132{bottom:186.900000px;}
.ye7{bottom:191.773500px;}
.y104{bottom:191.826000px;}
.yb5{bottom:191.997000px;}
.y118{bottom:194.388000px;}
.y21{bottom:197.364000px;}
.yd8{bottom:198.600000px;}
.ya2{bottom:198.900000px;}
.y98{bottom:201.000000px;}
.ye{bottom:201.012000px;}
.yd6{bottom:203.400000px;}
.y52{bottom:204.000000px;}
.y6b{bottom:206.400000px;}
.y51{bottom:216.000000px;}
.y97{bottom:218.400000px;}
.y6a{bottom:218.700000px;}
.y20{bottom:221.070000px;}
.ya1{bottom:221.400000px;}
.ye6{bottom:222.795000px;}
.y103{bottom:223.020000px;}
.yb4{bottom:223.075500px;}
.y117{bottom:225.582000px;}
.yd5{bottom:234.306000px;}
.yc3{bottom:235.500000px;}
.y69{bottom:235.800000px;}
.y50{bottom:238.500000px;}
.ya0{bottom:238.800000px;}
.y75{bottom:239.688000px;}
.y131{bottom:240.000000px;}
.y96{bottom:240.900000px;}
.y1f{bottom:244.776000px;}
.y4f{bottom:250.500000px;}
.yc2{bottom:252.900000px;}
.y68{bottom:253.200000px;}
.ye5{bottom:253.816500px;}
.y102{bottom:254.070000px;}
.yb3{bottom:254.155500px;}
.y116{bottom:256.488000px;}
.yd{bottom:263.112000px;}
.yd4{bottom:265.500000px;}
.y1e{bottom:268.770000px;}
.yf3{bottom:269.706000px;}
.y74{bottom:270.594000px;}
.y130{bottom:270.906000px;}
.y4e{bottom:273.300000px;}
.yc1{bottom:275.400000px;}
.y67{bottom:275.700000px;}
.ye4{bottom:284.838000px;}
.y4d{bottom:285.000000px;}
.y101{bottom:285.120000px;}
.yb2{bottom:285.235500px;}
.y9f{bottom:285.900000px;}
.yc0{bottom:287.400000px;}
.y115{bottom:287.682000px;}
.y1d{bottom:292.476000px;}
.y66{bottom:293.100000px;}
.yc{bottom:294.018000px;}
.yd3{bottom:296.406000px;}
.yf2{bottom:300.900000px;}
.y12f{bottom:302.100000px;}
.y4c{bottom:307.500000px;}
.ybf{bottom:309.900000px;}
.y24{bottom:311.400000px;}
.yf8{bottom:311.700000px;}
.y95{bottom:313.800000px;}
.ye3{bottom:316.032000px;}
.y100{bottom:316.170000px;}
.y1c{bottom:316.182000px;}
.yb1{bottom:316.315500px;}
.y9e{bottom:316.806000px;}
.y114{bottom:318.588000px;}
.yd2{bottom:327.600000px;}
.yf1{bottom:331.806000px;}
.y12e{bottom:333.006000px;}
.y1b{bottom:340.176000px;}
.yf7{bottom:342.894000px;}
.y94{bottom:344.994000px;}
.ye2{bottom:347.082000px;}
.yff{bottom:347.220000px;}
.yb0{bottom:347.395500px;}
.y113{bottom:349.782000px;}
.yb{bottom:356.118000px;}
.yd1{bottom:358.506000px;}
.y9d{bottom:362.750700px;}
.yf0{bottom:363.000000px;}
.ybe{bottom:363.300000px;}
.y65{bottom:363.306000px;}
.y1a{bottom:363.882000px;}
.y12d{bottom:364.200000px;}
.yf6{bottom:373.800000px;}
.y93{bottom:375.900000px;}
.ye1{bottom:378.132000px;}
.yfe{bottom:378.270000px;}
.yaf{bottom:378.475500px;}
.y112{bottom:380.688000px;}
.ya{bottom:387.312000px;}
.y19{bottom:387.588000px;}
.y9c{bottom:388.550700px;}
.yd0{bottom:389.700000px;}
.yef{bottom:393.906000px;}
.ybd{bottom:394.494000px;}
.y64{bottom:394.500000px;}
.y12c{bottom:395.106000px;}
.yf5{bottom:404.994000px;}
.y92{bottom:407.094000px;}
.ye0{bottom:409.182000px;}
.yfd{bottom:409.368000px;}
.yae{bottom:409.555500px;}
.y111{bottom:411.882000px;}
.y9b{bottom:414.350700px;}
.ycf{bottom:420.606000px;}
.yee{bottom:425.094000px;}
.ybc{bottom:425.400000px;}
.y4b{bottom:425.406000px;}
.y12b{bottom:426.300000px;}
.y91{bottom:438.000000px;}
.ydf{bottom:440.232000px;}
.yfc{bottom:440.466000px;}
.yad{bottom:440.605500px;}
.y110{bottom:442.788000px;}
.y9{bottom:449.412000px;}
.y18{bottom:451.200000px;}
.ya5{bottom:451.648326px;}
.yce{bottom:451.800000px;}
.yed{bottom:456.000000px;}
.y4a{bottom:456.594000px;}
.y63{bottom:456.600000px;}
.y90{bottom:469.194000px;}
.yde{bottom:471.282000px;}
.yfb{bottom:471.564000px;}
.yac{bottom:471.655500px;}
.y10f{bottom:473.982000px;}
.ycd{bottom:482.706000px;}
.y49{bottom:487.500000px;}
.y62{bottom:487.506000px;}
.y8f{bottom:500.100000px;}
.y17{bottom:501.600000px;}
.ydd{bottom:502.380000px;}
.yab{bottom:502.849500px;}
.y10e{bottom:504.888000px;}
.y12a{bottom:510.600000px;}
.ycc{bottom:513.900000px;}
.y48{bottom:518.694000px;}
.y61{bottom:518.700000px;}
.y138{bottom:529.908300px;}
.ydc{bottom:533.478000px;}
.yaa{bottom:533.899500px;}
.y10d{bottom:536.082000px;}
.y8e{bottom:540.000000px;}
.y137{bottom:544.500000px;}
.y23{bottom:549.300000px;}
.y47{bottom:549.600000px;}
.y60{bottom:549.606000px;}
.yfa{bottom:555.789000px;}
.y8d{bottom:559.200000px;}
.ydb{bottom:564.576000px;}
.ya9{bottom:564.949500px;}
.y10c{bottom:566.988000px;}
.y136{bottom:568.494000px;}
.y2e{bottom:570.300000px;}
.y8{bottom:573.612000px;}
.yd9{bottom:575.123826px;}
.y8c{bottom:578.100000px;}
.y46{bottom:580.794000px;}
.ya8{bottom:595.999500px;}
.y8b{bottom:597.300000px;}
.y10b{bottom:598.182000px;}
.y45{bottom:611.700000px;}
.y8a{bottom:616.500000px;}
.y2d{bottom:621.882000px;}
.ya7{bottom:627.049500px;}
.y10a{bottom:629.088000px;}
.y129{bottom:632.400000px;}
.y89{bottom:635.700000px;}
.y7{bottom:635.712000px;}
.yda{bottom:636.201000px;}
.y44{bottom:642.894000px;}
.y2c{bottom:645.876000px;}
.y88{bottom:654.600000px;}
.y128{bottom:663.594000px;}
.y6{bottom:666.618000px;}
.yf9{bottom:668.135772px;}
.y2b{bottom:669.582000px;}
.y43{bottom:673.800000px;}
.y87{bottom:693.000000px;}
.y2a{bottom:693.288000px;}
.y127{bottom:694.500000px;}
.y5{bottom:697.812000px;}
.y42{bottom:704.994000px;}
.yc9{bottom:705.000000px;}
.y86{bottom:712.200000px;}
.y29{bottom:717.282000px;}
.y126{bottom:725.694000px;}
.y84{bottom:731.100000px;}
.y41{bottom:735.900000px;}
.yc8{bottom:735.906000px;}
.y28{bottom:740.988000px;}
.y83{bottom:750.300000px;}
.y125{bottom:756.600000px;}
.ya6{bottom:759.676500px;}
.y4{bottom:759.912000px;}
.y27{bottom:764.694000px;}
.y40{bottom:767.094000px;}
.yc7{bottom:767.100000px;}
.y82{bottom:769.500000px;}
.y73{bottom:778.788000px;}
.y124{bottom:787.794000px;}
.y26{bottom:788.688000px;}
.y80{bottom:788.700000px;}
.y3{bottom:790.818000px;}
.y3f{bottom:798.000000px;}
.yc6{bottom:798.006000px;}
.y7e{bottom:807.600000px;}
.y25{bottom:812.394000px;}
.y123{bottom:818.700000px;}
.y2{bottom:822.012000px;}
.y7c{bottom:826.800000px;}
.y3e{bottom:829.194000px;}
.yc5{bottom:829.200000px;}
.y122{bottom:849.894000px;}
.y1{bottom:852.918000px;}
.y5f{bottom:860.100000px;}
.y3d{bottom:860.106000px;}
.y121{bottom:880.806000px;}
.y5e{bottom:891.294000px;}
.y3c{bottom:891.300000px;}
.y12{bottom:892.500000px;}
.y120{bottom:912.000000px;}
.y15{bottom:916.500000px;}
.y5d{bottom:922.200000px;}
.y3b{bottom:922.206000px;}
.y14{bottom:937.500000px;}
.y11f{bottom:942.906000px;}
.y5c{bottom:953.394000px;}
.y3a{bottom:953.400000px;}
.y11e{bottom:974.100000px;}
.y5b{bottom:984.300000px;}
.y39{bottom:984.306000px;}
.y72{bottom:999.900000px;}
.y11d{bottom:1005.006000px;}
.y5a{bottom:1015.494000px;}
.y38{bottom:1015.500000px;}
.yf{bottom:1017.298500px;}
.y71{bottom:1031.094000px;}
.y56{bottom:1037.100000px;}
.y59{bottom:1046.400000px;}
.y37{bottom:1046.406000px;}
.y11c{bottom:1064.700000px;}
.y58{bottom:1077.594000px;}
.y36{bottom:1077.600000px;}
.y77{bottom:1085.894826px;}
.y11b{bottom:1090.500000px;}
.y135{bottom:1108.500000px;}
.y35{bottom:1108.506000px;}
.y11a{bottom:1116.600000px;}
.y34{bottom:1139.700000px;}
.y119{bottom:1142.400000px;}
.y134{bottom:1208.636811px;}
.y6f{bottom:1208.699826px;}
.yca{bottom:1221.236757px;}
.h19{height:11.746418px;}
.h26{height:13.167000px;}
.h1f{height:16.801500px;}
.h20{height:17.100000px;}
.h22{height:18.298500px;}
.h21{height:18.300000px;}
.h23{height:18.598500px;}
.h24{height:18.600000px;}
.h11{height:19.800105px;}
.h1c{height:33.349977px;}
.h29{height:36.597656px;}
.hf{height:36.901500px;}
.h14{height:38.865234px;}
.h1a{height:41.916000px;}
.h10{height:50.868000px;}
.h9{height:56.520000px;}
.ha{height:58.857422px;}
.h15{height:58.886719px;}
.h1d{height:60.465234px;}
.h8{height:62.172000px;}
.hc{height:67.824000px;}
.h2{height:70.664062px;}
.h13{height:70.688063px;}
.hb{height:71.492773px;}
.h1e{height:72.562500px;}
.h18{height:74.685375px;}
.h12{height:74.847656px;}
.h7{height:82.500000px;}
.hd{height:82.585406px;}
.h6{height:90.432000px;}
.h4{height:113.040000px;}
.h16{height:114.900000px;}
.h5{height:119.154682px;}
.h1b{height:135.908985px;}
.h3{height:165.600000px;}
.he{height:328.798500px;}
.h28{height:566.267985px;}
.h17{height:615.955078px;}
.h27{height:646.679985px;}
.h25{height:770.155500px;}
.h0{height:1262.700000px;}
.h1{height:1263.000000px;}
.w6{width:27.000000px;}
.wb{width:85.500000px;}
.wa{width:85.501500px;}
.w7{width:109.501500px;}
.w8{width:134.872500px;}
.w5{width:184.498500px;}
.w11{width:294.466500px;}
.we{width:297.877500px;}
.wc{width:331.498500px;}
.w3{width:399.900000px;}
.w9{width:513.864000px;}
.wd{width:647.058000px;}
.wf{width:647.989500px;}
.w10{width:649.471500px;}
.w2{width:706.500000px;}
.w4{width:717.600000px;}
.w0{width:893.100000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x28{left:5.100000px;}
.x16{left:10.500000px;}
.x32{left:18.106500px;}
.x26{left:39.000000px;}
.x22{left:42.600000px;}
.x29{left:46.200000px;}
.x2b{left:50.100000px;}
.x3{left:58.500000px;}
.x18{left:64.800000px;}
.x2a{left:72.600000px;}
.x36{left:106.741500px;}
.x4{left:108.600000px;}
.x1e{left:109.653000px;}
.x2{left:114.900000px;}
.x15{left:125.400000px;}
.x1{left:127.506000px;}
.x1b{left:170.130000px;}
.x2c{left:173.571000px;}
.xa{left:176.700000px;}
.xe{left:187.200000px;}
.x33{left:188.569500px;}
.x1d{left:191.400045px;}
.x27{left:195.300000px;}
.x34{left:209.599500px;}
.x1f{left:216.394500px;}
.x17{left:221.100000px;}
.x30{left:225.600000px;}
.x35{left:234.000000px;}
.xd{left:237.000000px;}
.xf{left:247.200000px;}
.x8{left:275.100000px;}
.x10{left:278.400000px;}
.x2d{left:280.312500px;}
.x11{left:284.400000px;}
.x20{left:298.944000px;}
.x23{left:299.994000px;}
.x31{left:301.023012px;}
.x21{left:319.975500px;}
.x5{left:343.200000px;}
.x2e{left:362.862000px;}
.x1c{left:379.113785px;}
.x2f{left:383.893500px;}
.x12{left:403.800000px;}
.x9{left:420.900000px;}
.x1a{left:433.050018px;}
.x19{left:486.106500px;}
.xb{left:487.500000px;}
.x24{left:526.800000px;}
.x38{left:532.194000px;}
.x6{left:545.700000px;}
.x37{left:580.200000px;}
.x13{left:586.200000px;}
.x7{left:602.400000px;}
.x25{left:612.300000px;}
.x14{left:621.900000px;}
.xc{left:745.200000px;}
@media print{
.v2{vertical-align:-19.200000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:19.200000pt;}
.v3{vertical-align:24.512000pt;}
.ls2f{letter-spacing:-1.792000pt;}
.ls16{letter-spacing:-1.214315pt;}
.ls26{letter-spacing:-1.088000pt;}
.ls3f{letter-spacing:-1.066667pt;}
.ls27{letter-spacing:-0.864000pt;}
.ls24{letter-spacing:-0.704000pt;}
.ls3a{letter-spacing:-0.693333pt;}
.ls17{letter-spacing:-0.674619pt;}
.ls39{letter-spacing:-0.640000pt;}
.ls33{letter-spacing:-0.533333pt;}
.ls11{letter-spacing:-0.480000pt;}
.ls14{letter-spacing:-0.472233pt;}
.ls15{letter-spacing:-0.448000pt;}
.ls32{letter-spacing:-0.432000pt;}
.ls12{letter-spacing:-0.426667pt;}
.ls19{letter-spacing:-0.384000pt;}
.ls30{letter-spacing:-0.373333pt;}
.lsd{letter-spacing:-0.359797pt;}
.lse{letter-spacing:-0.341333pt;}
.ls25{letter-spacing:-0.320000pt;}
.ls1b{letter-spacing:-0.256000pt;}
.ls1f{letter-spacing:-0.240000pt;}
.ls13{letter-spacing:-0.213333pt;}
.lsf{letter-spacing:-0.179898pt;}
.ls48{letter-spacing:-0.170667pt;}
.ls1a{letter-spacing:-0.134924pt;}
.ls1e{letter-spacing:-0.096000pt;}
.ls18{letter-spacing:-0.067462pt;}
.lsb{letter-spacing:0.000000pt;}
.ls10{letter-spacing:0.058667pt;}
.ls28{letter-spacing:0.106667pt;}
.ls1d{letter-spacing:0.192000pt;}
.lsc{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.320000pt;}
.lsa{letter-spacing:0.336000pt;}
.ls49{letter-spacing:0.341333pt;}
.ls31{letter-spacing:0.373333pt;}
.ls1c{letter-spacing:0.384000pt;}
.ls9{letter-spacing:0.400000pt;}
.ls47{letter-spacing:0.426667pt;}
.ls4{letter-spacing:0.480000pt;}
.ls38{letter-spacing:0.528000pt;}
.ls1{letter-spacing:0.533333pt;}
.ls5{letter-spacing:0.539695pt;}
.ls2{letter-spacing:0.562183pt;}
.ls20{letter-spacing:0.940800pt;}
.ls7{letter-spacing:0.979200pt;}
.ls22{letter-spacing:1.024000pt;}
.ls3{letter-spacing:1.066667pt;}
.ls8{letter-spacing:1.088000pt;}
.ls23{letter-spacing:1.600000pt;}
.ls6{letter-spacing:2.112000pt;}
.ls35{letter-spacing:2.133333pt;}
.ls2b{letter-spacing:2.312533pt;}
.ls37{letter-spacing:2.666667pt;}
.ls3e{letter-spacing:3.115712pt;}
.ls3d{letter-spacing:3.157333pt;}
.ls3b{letter-spacing:3.393067pt;}
.ls34{letter-spacing:3.733333pt;}
.ls4a{letter-spacing:4.288000pt;}
.ls2d{letter-spacing:4.800000pt;}
.ls29{letter-spacing:5.312000pt;}
.ls21{letter-spacing:5.356800pt;}
.ls43{letter-spacing:5.459200pt;}
.ls2c{letter-spacing:6.400000pt;}
.ls2e{letter-spacing:6.933333pt;}
.ls2a{letter-spacing:7.430400pt;}
.ls36{letter-spacing:8.512000pt;}
.ls40{letter-spacing:8.768000pt;}
.ls41{letter-spacing:9.600000pt;}
.ls44{letter-spacing:9.683200pt;}
.ls46{letter-spacing:10.133333pt;}
.ls3c{letter-spacing:18.288000pt;}
.ls45{letter-spacing:27.712000pt;}
.ls42{letter-spacing:176.000000pt;}
.ws0{word-spacing:-36.541893pt;}
.ws2{word-spacing:-29.053584pt;}
.ws1{word-spacing:-27.392000pt;}
.ws13{word-spacing:-23.760000pt;}
.ws9{word-spacing:-21.925125pt;}
.wsc{word-spacing:-21.790201pt;}
.wsa{word-spacing:-21.452892pt;}
.wse{word-spacing:-20.992000pt;}
.ws8{word-spacing:-20.800000pt;}
.wsd{word-spacing:-20.544000pt;}
.wsb{word-spacing:-20.416000pt;}
.ws7{word-spacing:-20.352000pt;}
.ws3{word-spacing:-17.333333pt;}
.ws5{word-spacing:-17.120000pt;}
.ws4{word-spacing:-16.853333pt;}
.ws49{word-spacing:-16.384000pt;}
.ws48{word-spacing:-16.000000pt;}
.wsf{word-spacing:-15.984000pt;}
.ws10{word-spacing:-15.936000pt;}
.ws32{word-spacing:-15.680000pt;}
.ws92{word-spacing:-15.616000pt;}
.ws12{word-spacing:-15.600000pt;}
.ws11{word-spacing:-15.504000pt;}
.ws8f{word-spacing:-15.466667pt;}
.ws33{word-spacing:-15.360000pt;}
.ws4a{word-spacing:-15.168000pt;}
.ws34{word-spacing:-14.736000pt;}
.ws91{word-spacing:-14.293333pt;}
.ws86{word-spacing:-14.208000pt;}
.ws85{word-spacing:-13.866667pt;}
.ws84{word-spacing:-13.696000pt;}
.ws90{word-spacing:-13.653333pt;}
.ws35{word-spacing:-13.440000pt;}
.ws6{word-spacing:-13.333333pt;}
.ws62{word-spacing:-13.120000pt;}
.ws61{word-spacing:-12.853333pt;}
.ws47{word-spacing:-10.666667pt;}
.ws60{word-spacing:-9.328000pt;}
.ws3e{word-spacing:-4.672000pt;}
.ws3f{word-spacing:-3.584000pt;}
.ws40{word-spacing:-3.200000pt;}
.ws56{word-spacing:-2.666667pt;}
.ws76{word-spacing:-2.560000pt;}
.ws39{word-spacing:-2.496000pt;}
.ws3c{word-spacing:-2.112000pt;}
.ws73{word-spacing:-1.706667pt;}
.ws72{word-spacing:-1.600000pt;}
.ws44{word-spacing:-1.488000pt;}
.ws28{word-spacing:-1.472000pt;}
.ws3a{word-spacing:-1.408000pt;}
.ws45{word-spacing:-1.386667pt;}
.ws2d{word-spacing:-1.088000pt;}
.ws54{word-spacing:-0.533333pt;}
.ws6b{word-spacing:-0.528000pt;}
.ws8c{word-spacing:-0.426667pt;}
.ws2c{word-spacing:-0.384000pt;}
.ws53{word-spacing:-0.373333pt;}
.ws2f{word-spacing:-0.336000pt;}
.ws87{word-spacing:-0.320000pt;}
.ws15{word-spacing:-0.256000pt;}
.ws2e{word-spacing:-0.234667pt;}
.ws5c{word-spacing:-0.106667pt;}
.ws5d{word-spacing:-0.053333pt;}
.ws7b{word-spacing:-0.005521pt;}
.ws7a{word-spacing:-0.005333pt;}
.ws14{word-spacing:0.000000pt;}
.ws18{word-spacing:0.058667pt;}
.ws1f{word-spacing:0.067462pt;}
.ws1a{word-spacing:0.160000pt;}
.ws19{word-spacing:0.213333pt;}
.ws30{word-spacing:0.240000pt;}
.ws93{word-spacing:0.320000pt;}
.ws17{word-spacing:0.341333pt;}
.ws16{word-spacing:0.359797pt;}
.ws4e{word-spacing:0.384000pt;}
.ws5e{word-spacing:0.426667pt;}
.ws1c{word-spacing:0.448000pt;}
.ws1b{word-spacing:0.472233pt;}
.ws5f{word-spacing:0.480000pt;}
.ws42{word-spacing:0.533333pt;}
.ws31{word-spacing:0.613333pt;}
.ws64{word-spacing:0.640000pt;}
.ws1e{word-spacing:0.674619pt;}
.ws66{word-spacing:0.693333pt;}
.ws23{word-spacing:0.704000pt;}
.ws41{word-spacing:0.746667pt;}
.ws52{word-spacing:0.906667pt;}
.ws59{word-spacing:1.013333pt;}
.ws22{word-spacing:1.088000pt;}
.ws1d{word-spacing:1.214315pt;}
.ws6c{word-spacing:1.333333pt;}
.ws83{word-spacing:1.349333pt;}
.ws65{word-spacing:1.493333pt;}
.ws46{word-spacing:1.600000pt;}
.ws20{word-spacing:1.728000pt;}
.ws43{word-spacing:1.813333pt;}
.ws21{word-spacing:2.112000pt;}
.ws77{word-spacing:2.549333pt;}
.ws78{word-spacing:2.554667pt;}
.ws58{word-spacing:2.666667pt;}
.ws25{word-spacing:2.816000pt;}
.ws3b{word-spacing:3.200000pt;}
.ws5b{word-spacing:3.733333pt;}
.ws29{word-spacing:3.904000pt;}
.ws5a{word-spacing:3.946667pt;}
.ws2a{word-spacing:4.288000pt;}
.ws3d{word-spacing:4.928000pt;}
.ws55{word-spacing:5.013333pt;}
.ws2b{word-spacing:5.312000pt;}
.ws68{word-spacing:5.760000pt;}
.ws67{word-spacing:5.866667pt;}
.ws4c{word-spacing:6.016000pt;}
.ws88{word-spacing:6.400000pt;}
.ws74{word-spacing:6.933333pt;}
.ws4d{word-spacing:7.104000pt;}
.ws57{word-spacing:7.146667pt;}
.ws4f{word-spacing:7.488000pt;}
.ws24{word-spacing:8.128000pt;}
.ws4b{word-spacing:8.512000pt;}
.ws37{word-spacing:9.216000pt;}
.ws38{word-spacing:9.600000pt;}
.ws8e{word-spacing:10.133333pt;}
.ws50{word-spacing:10.304000pt;}
.ws8d{word-spacing:10.346667pt;}
.ws82{word-spacing:10.688000pt;}
.ws69{word-spacing:11.328000pt;}
.ws51{word-spacing:11.392000pt;}
.ws70{word-spacing:11.712000pt;}
.ws63{word-spacing:12.416000pt;}
.ws89{word-spacing:12.800000pt;}
.ws7f{word-spacing:13.504000pt;}
.ws6a{word-spacing:13.888000pt;}
.ws27{word-spacing:14.528000pt;}
.ws26{word-spacing:14.912000pt;}
.ws81{word-spacing:15.616000pt;}
.ws79{word-spacing:16.704000pt;}
.ws7c{word-spacing:20.288000pt;}
.ws6e{word-spacing:22.016000pt;}
.ws6f{word-spacing:22.400000pt;}
.ws7e{word-spacing:23.104000pt;}
.ws6d{word-spacing:24.512000pt;}
.ws80{word-spacing:25.216000pt;}
.ws75{word-spacing:26.304000pt;}
.ws7d{word-spacing:26.688000pt;}
.ws8a{word-spacing:27.328000pt;}
.ws8b{word-spacing:27.712000pt;}
.ws71{word-spacing:28.800000pt;}
.ws36{word-spacing:29.504000pt;}
._3{margin-left:-2.018133pt;}
._2{margin-left:-1.066667pt;}
._0{width:0.944466pt;}
._1{width:1.914201pt;}
._a{width:3.424000pt;}
._7{width:4.375467pt;}
._5{width:5.321734pt;}
._8{width:6.964401pt;}
._6{width:7.961600pt;}
._4{width:9.615534pt;}
._c{width:10.703641pt;}
._b{width:11.941312pt;}
._f{width:14.899200pt;}
._9{width:17.173312pt;}
._e{width:22.985734pt;}
._d{width:26.837312pt;}
.fsa{font-size:35.200000pt;}
.fsd{font-size:37.333333pt;}
.fse{font-size:38.649835pt;}
.fsc{font-size:42.666667pt;}
.fs7{font-size:48.000000pt;}
.fs6{font-size:53.333333pt;}
.fs5{font-size:58.666667pt;}
.fsf{font-size:61.866667pt;}
.fs0{font-size:64.000000pt;}
.fs8{font-size:67.461923pt;}
.fs9{font-size:74.666667pt;}
.fs2{font-size:85.333333pt;}
.fs4{font-size:89.949175pt;}
.fs1{font-size:106.666667pt;}
.fs3{font-size:112.436595pt;}
.fsb{font-size:557.866667pt;}
.y0{bottom:0.000000pt;}
.y70{bottom:2.333333pt;}
.ycb{bottom:2.389347pt;}
.y7d{bottom:2.400000pt;}
.y7f{bottom:2.666667pt;}
.y16{bottom:2.933333pt;}
.y33{bottom:3.453333pt;}
.y81{bottom:3.733333pt;}
.y85{bottom:4.000000pt;}
.y7b{bottom:4.093333pt;}
.ybb{bottom:4.912000pt;}
.y57{bottom:7.466667pt;}
.y30{bottom:21.066667pt;}
.y7a{bottom:27.160000pt;}
.yec{bottom:32.470667pt;}
.y109{bottom:32.512000pt;}
.yba{bottom:32.537333pt;}
.y32{bottom:42.872559pt;}
.y79{bottom:50.226667pt;}
.y2f{bottom:57.866667pt;}
.y13{bottom:59.200000pt;}
.yeb{bottom:60.029333pt;}
.y108{bottom:60.112000pt;}
.yb9{bottom:60.162667pt;}
.y11{bottom:66.401333pt;}
.y31{bottom:78.933333pt;}
.yea{bottom:87.588000pt;}
.y107{bottom:87.712000pt;}
.yb8{bottom:87.788000pt;}
.y10{bottom:98.934667pt;}
.y78{bottom:111.493333pt;}
.y106{bottom:115.312000pt;}
.ye9{bottom:115.316000pt;}
.yb7{bottom:115.413333pt;}
.y55{bottom:130.666667pt;}
.y9a{bottom:132.800000pt;}
.ya4{bottom:135.200000pt;}
.y22{bottom:135.466667pt;}
.y6e{bottom:137.333333pt;}
.yf4{bottom:137.600000pt;}
.ye8{bottom:142.890667pt;}
.y105{bottom:142.912000pt;}
.yb6{bottom:143.038667pt;}
.y54{bottom:145.866667pt;}
.ya3{bottom:146.133333pt;}
.y99{bottom:148.000000pt;}
.y6d{bottom:148.266667pt;}
.y133{bottom:150.666667pt;}
.yc4{bottom:152.800000pt;}
.yd7{bottom:153.072000pt;}
.y53{bottom:161.333333pt;}
.y6c{bottom:163.466667pt;}
.y76{bottom:165.866667pt;}
.y132{bottom:166.133333pt;}
.ye7{bottom:170.465333pt;}
.y104{bottom:170.512000pt;}
.yb5{bottom:170.664000pt;}
.y118{bottom:172.789333pt;}
.y21{bottom:175.434667pt;}
.yd8{bottom:176.533333pt;}
.ya2{bottom:176.800000pt;}
.y98{bottom:178.666667pt;}
.ye{bottom:178.677333pt;}
.yd6{bottom:180.800000pt;}
.y52{bottom:181.333333pt;}
.y6b{bottom:183.466667pt;}
.y51{bottom:192.000000pt;}
.y97{bottom:194.133333pt;}
.y6a{bottom:194.400000pt;}
.y20{bottom:196.506667pt;}
.ya1{bottom:196.800000pt;}
.ye6{bottom:198.040000pt;}
.y103{bottom:198.240000pt;}
.yb4{bottom:198.289333pt;}
.y117{bottom:200.517333pt;}
.yd5{bottom:208.272000pt;}
.yc3{bottom:209.333333pt;}
.y69{bottom:209.600000pt;}
.y50{bottom:212.000000pt;}
.ya0{bottom:212.266667pt;}
.y75{bottom:213.056000pt;}
.y131{bottom:213.333333pt;}
.y96{bottom:214.133333pt;}
.y1f{bottom:217.578667pt;}
.y4f{bottom:222.666667pt;}
.yc2{bottom:224.800000pt;}
.y68{bottom:225.066667pt;}
.ye5{bottom:225.614667pt;}
.y102{bottom:225.840000pt;}
.yb3{bottom:225.916000pt;}
.y116{bottom:227.989333pt;}
.yd{bottom:233.877333pt;}
.yd4{bottom:236.000000pt;}
.y1e{bottom:238.906667pt;}
.yf3{bottom:239.738667pt;}
.y74{bottom:240.528000pt;}
.y130{bottom:240.805333pt;}
.y4e{bottom:242.933333pt;}
.yc1{bottom:244.800000pt;}
.y67{bottom:245.066667pt;}
.ye4{bottom:253.189333pt;}
.y4d{bottom:253.333333pt;}
.y101{bottom:253.440000pt;}
.yb2{bottom:253.542667pt;}
.y9f{bottom:254.133333pt;}
.yc0{bottom:255.466667pt;}
.y115{bottom:255.717333pt;}
.y1d{bottom:259.978667pt;}
.y66{bottom:260.533333pt;}
.yc{bottom:261.349333pt;}
.yd3{bottom:263.472000pt;}
.yf2{bottom:267.466667pt;}
.y12f{bottom:268.533333pt;}
.y4c{bottom:273.333333pt;}
.ybf{bottom:275.466667pt;}
.y24{bottom:276.800000pt;}
.yf8{bottom:277.066667pt;}
.y95{bottom:278.933333pt;}
.ye3{bottom:280.917333pt;}
.y100{bottom:281.040000pt;}
.y1c{bottom:281.050667pt;}
.yb1{bottom:281.169333pt;}
.y9e{bottom:281.605333pt;}
.y114{bottom:283.189333pt;}
.yd2{bottom:291.200000pt;}
.yf1{bottom:294.938667pt;}
.y12e{bottom:296.005333pt;}
.y1b{bottom:302.378667pt;}
.yf7{bottom:304.794667pt;}
.y94{bottom:306.661333pt;}
.ye2{bottom:308.517333pt;}
.yff{bottom:308.640000pt;}
.yb0{bottom:308.796000pt;}
.y113{bottom:310.917333pt;}
.yb{bottom:316.549333pt;}
.yd1{bottom:318.672000pt;}
.y9d{bottom:322.445067pt;}
.yf0{bottom:322.666667pt;}
.ybe{bottom:322.933333pt;}
.y65{bottom:322.938667pt;}
.y1a{bottom:323.450667pt;}
.y12d{bottom:323.733333pt;}
.yf6{bottom:332.266667pt;}
.y93{bottom:334.133333pt;}
.ye1{bottom:336.117333pt;}
.yfe{bottom:336.240000pt;}
.yaf{bottom:336.422667pt;}
.y112{bottom:338.389333pt;}
.ya{bottom:344.277333pt;}
.y19{bottom:344.522667pt;}
.y9c{bottom:345.378400pt;}
.yd0{bottom:346.400000pt;}
.yef{bottom:350.138667pt;}
.ybd{bottom:350.661333pt;}
.y64{bottom:350.666667pt;}
.y12c{bottom:351.205333pt;}
.yf5{bottom:359.994667pt;}
.y92{bottom:361.861333pt;}
.ye0{bottom:363.717333pt;}
.yfd{bottom:363.882667pt;}
.yae{bottom:364.049333pt;}
.y111{bottom:366.117333pt;}
.y9b{bottom:368.311733pt;}
.ycf{bottom:373.872000pt;}
.yee{bottom:377.861333pt;}
.ybc{bottom:378.133333pt;}
.y4b{bottom:378.138667pt;}
.y12b{bottom:378.933333pt;}
.y91{bottom:389.333333pt;}
.ydf{bottom:391.317333pt;}
.yfc{bottom:391.525333pt;}
.yad{bottom:391.649333pt;}
.y110{bottom:393.589333pt;}
.y9{bottom:399.477333pt;}
.y18{bottom:401.066667pt;}
.ya5{bottom:401.465179pt;}
.yce{bottom:401.600000pt;}
.yed{bottom:405.333333pt;}
.y4a{bottom:405.861333pt;}
.y63{bottom:405.866667pt;}
.y90{bottom:417.061333pt;}
.yde{bottom:418.917333pt;}
.yfb{bottom:419.168000pt;}
.yac{bottom:419.249333pt;}
.y10f{bottom:421.317333pt;}
.ycd{bottom:429.072000pt;}
.y49{bottom:433.333333pt;}
.y62{bottom:433.338667pt;}
.y8f{bottom:444.533333pt;}
.y17{bottom:445.866667pt;}
.ydd{bottom:446.560000pt;}
.yab{bottom:446.977333pt;}
.y10e{bottom:448.789333pt;}
.y12a{bottom:453.866667pt;}
.ycc{bottom:456.800000pt;}
.y48{bottom:461.061333pt;}
.y61{bottom:461.066667pt;}
.y138{bottom:471.029600pt;}
.ydc{bottom:474.202667pt;}
.yaa{bottom:474.577333pt;}
.y10d{bottom:476.517333pt;}
.y8e{bottom:480.000000pt;}
.y137{bottom:484.000000pt;}
.y23{bottom:488.266667pt;}
.y47{bottom:488.533333pt;}
.y60{bottom:488.538667pt;}
.yfa{bottom:494.034667pt;}
.y8d{bottom:497.066667pt;}
.ydb{bottom:501.845333pt;}
.ya9{bottom:502.177333pt;}
.y10c{bottom:503.989333pt;}
.y136{bottom:505.328000pt;}
.y2e{bottom:506.933333pt;}
.y8{bottom:509.877333pt;}
.yd9{bottom:511.221179pt;}
.y8c{bottom:513.866667pt;}
.y46{bottom:516.261333pt;}
.ya8{bottom:529.777333pt;}
.y8b{bottom:530.933333pt;}
.y10b{bottom:531.717333pt;}
.y45{bottom:543.733333pt;}
.y8a{bottom:548.000000pt;}
.y2d{bottom:552.784000pt;}
.ya7{bottom:557.377333pt;}
.y10a{bottom:559.189333pt;}
.y129{bottom:562.133333pt;}
.y89{bottom:565.066667pt;}
.y7{bottom:565.077333pt;}
.yda{bottom:565.512000pt;}
.y44{bottom:571.461333pt;}
.y2c{bottom:574.112000pt;}
.y88{bottom:581.866667pt;}
.y128{bottom:589.861333pt;}
.y6{bottom:592.549333pt;}
.yf9{bottom:593.898464pt;}
.y2b{bottom:595.184000pt;}
.y43{bottom:598.933333pt;}
.y87{bottom:616.000000pt;}
.y2a{bottom:616.256000pt;}
.y127{bottom:617.333333pt;}
.y5{bottom:620.277333pt;}
.y42{bottom:626.661333pt;}
.yc9{bottom:626.666667pt;}
.y86{bottom:633.066667pt;}
.y29{bottom:637.584000pt;}
.y126{bottom:645.061333pt;}
.y84{bottom:649.866667pt;}
.y41{bottom:654.133333pt;}
.yc8{bottom:654.138667pt;}
.y28{bottom:658.656000pt;}
.y83{bottom:666.933333pt;}
.y125{bottom:672.533333pt;}
.ya6{bottom:675.268000pt;}
.y4{bottom:675.477333pt;}
.y27{bottom:679.728000pt;}
.y40{bottom:681.861333pt;}
.yc7{bottom:681.866667pt;}
.y82{bottom:684.000000pt;}
.y73{bottom:692.256000pt;}
.y124{bottom:700.261333pt;}
.y26{bottom:701.056000pt;}
.y80{bottom:701.066667pt;}
.y3{bottom:702.949333pt;}
.y3f{bottom:709.333333pt;}
.yc6{bottom:709.338667pt;}
.y7e{bottom:717.866667pt;}
.y25{bottom:722.128000pt;}
.y123{bottom:727.733333pt;}
.y2{bottom:730.677333pt;}
.y7c{bottom:734.933333pt;}
.y3e{bottom:737.061333pt;}
.yc5{bottom:737.066667pt;}
.y122{bottom:755.461333pt;}
.y1{bottom:758.149333pt;}
.y5f{bottom:764.533333pt;}
.y3d{bottom:764.538667pt;}
.y121{bottom:782.938667pt;}
.y5e{bottom:792.261333pt;}
.y3c{bottom:792.266667pt;}
.y12{bottom:793.333333pt;}
.y120{bottom:810.666667pt;}
.y15{bottom:814.666667pt;}
.y5d{bottom:819.733333pt;}
.y3b{bottom:819.738667pt;}
.y14{bottom:833.333333pt;}
.y11f{bottom:838.138667pt;}
.y5c{bottom:847.461333pt;}
.y3a{bottom:847.466667pt;}
.y11e{bottom:865.866667pt;}
.y5b{bottom:874.933333pt;}
.y39{bottom:874.938667pt;}
.y72{bottom:888.800000pt;}
.y11d{bottom:893.338667pt;}
.y5a{bottom:902.661333pt;}
.y38{bottom:902.666667pt;}
.yf{bottom:904.265333pt;}
.y71{bottom:916.528000pt;}
.y56{bottom:921.866667pt;}
.y59{bottom:930.133333pt;}
.y37{bottom:930.138667pt;}
.y11c{bottom:946.400000pt;}
.y58{bottom:957.861333pt;}
.y36{bottom:957.866667pt;}
.y77{bottom:965.239846pt;}
.y11b{bottom:969.333333pt;}
.y135{bottom:985.333333pt;}
.y35{bottom:985.338667pt;}
.y11a{bottom:992.533333pt;}
.y34{bottom:1013.066667pt;}
.y119{bottom:1015.466667pt;}
.y134{bottom:1074.343832pt;}
.y6f{bottom:1074.399846pt;}
.yca{bottom:1085.543784pt;}
.h19{height:10.441260pt;}
.h26{height:11.704000pt;}
.h1f{height:14.934667pt;}
.h20{height:15.200000pt;}
.h22{height:16.265333pt;}
.h21{height:16.266667pt;}
.h23{height:16.532000pt;}
.h24{height:16.533333pt;}
.h11{height:17.600093pt;}
.h1c{height:29.644424pt;}
.h29{height:32.531250pt;}
.hf{height:32.801333pt;}
.h14{height:34.546875pt;}
.h1a{height:37.258667pt;}
.h10{height:45.216000pt;}
.h9{height:50.240000pt;}
.ha{height:52.317708pt;}
.h15{height:52.343750pt;}
.h1d{height:53.746875pt;}
.h8{height:55.264000pt;}
.hc{height:60.288000pt;}
.h2{height:62.812500pt;}
.h13{height:62.833833pt;}
.hb{height:63.549132pt;}
.h1e{height:64.500000pt;}
.h18{height:66.387000pt;}
.h12{height:66.531250pt;}
.h7{height:73.333333pt;}
.hd{height:73.409250pt;}
.h6{height:80.384000pt;}
.h4{height:100.480000pt;}
.h16{height:102.133333pt;}
.h5{height:105.915273pt;}
.h1b{height:120.807987pt;}
.h3{height:147.200000pt;}
.he{height:292.265333pt;}
.h28{height:503.349320pt;}
.h17{height:547.515625pt;}
.h27{height:574.826653pt;}
.h25{height:684.582667pt;}
.h0{height:1122.400000pt;}
.h1{height:1122.666667pt;}
.w6{width:24.000000pt;}
.wb{width:76.000000pt;}
.wa{width:76.001333pt;}
.w7{width:97.334667pt;}
.w8{width:119.886667pt;}
.w5{width:163.998667pt;}
.w11{width:261.748000pt;}
.we{width:264.780000pt;}
.wc{width:294.665333pt;}
.w3{width:355.466667pt;}
.w9{width:456.768000pt;}
.wd{width:575.162667pt;}
.wf{width:575.990667pt;}
.w10{width:577.308000pt;}
.w2{width:628.000000pt;}
.w4{width:637.866667pt;}
.w0{width:793.866667pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x28{left:4.533333pt;}
.x16{left:9.333333pt;}
.x32{left:16.094667pt;}
.x26{left:34.666667pt;}
.x22{left:37.866667pt;}
.x29{left:41.066667pt;}
.x2b{left:44.533333pt;}
.x3{left:52.000000pt;}
.x18{left:57.600000pt;}
.x2a{left:64.533333pt;}
.x36{left:94.881333pt;}
.x4{left:96.533333pt;}
.x1e{left:97.469333pt;}
.x2{left:102.133333pt;}
.x15{left:111.466667pt;}
.x1{left:113.338667pt;}
.x1b{left:151.226667pt;}
.x2c{left:154.285333pt;}
.xa{left:157.066667pt;}
.xe{left:166.400000pt;}
.x33{left:167.617333pt;}
.x1d{left:170.133374pt;}
.x27{left:173.600000pt;}
.x34{left:186.310667pt;}
.x1f{left:192.350667pt;}
.x17{left:196.533333pt;}
.x30{left:200.533333pt;}
.x35{left:208.000000pt;}
.xd{left:210.666667pt;}
.xf{left:219.733333pt;}
.x8{left:244.533333pt;}
.x10{left:247.466667pt;}
.x2d{left:249.166667pt;}
.x11{left:252.800000pt;}
.x20{left:265.728000pt;}
.x23{left:266.661333pt;}
.x31{left:267.576010pt;}
.x21{left:284.422667pt;}
.x5{left:305.066667pt;}
.x2e{left:322.544000pt;}
.x1c{left:336.990031pt;}
.x2f{left:341.238667pt;}
.x12{left:358.933333pt;}
.x9{left:374.133333pt;}
.x1a{left:384.933350pt;}
.x19{left:432.094667pt;}
.xb{left:433.333333pt;}
.x24{left:468.266667pt;}
.x38{left:473.061333pt;}
.x6{left:485.066667pt;}
.x37{left:515.733333pt;}
.x13{left:521.066667pt;}
.x7{left:535.466667pt;}
.x25{left:544.266667pt;}
.x14{left:552.800000pt;}
.xc{left:662.400000pt;}
}




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