
    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_ed5b4c0ce0972d51092306db.woff')format("woff");}.ff1{font-family:ff1;line-height:0.914000;font-style:normal;font-weight: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_7498fb04ad97826f20c06eda.woff')format("woff");}.ff2{font-family:ff2;line-height:0.734863;font-style:normal;font-weight: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_a700ac1f2a5c30f6f7edc988.woff')format("woff");}.ff3{font-family:ff3;line-height:0.932129;font-style:normal;font-weight: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_38eeeaf2552e800867a9eb1f.woff')format("woff");}.ff4{font-family:ff4;line-height:0.718000;font-style:normal;font-weight: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_dab6573cce4184c783365250.woff')format("woff");}.ff5{font-family:ff5;line-height:0.932129;font-style:normal;font-weight: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_43ae29037fcba49c74380497.woff')format("woff");}.ff6{font-family:ff6;line-height:0.956000;font-style:normal;font-weight: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_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ff7{font-family:ff7;line-height:0.830000;font-style:normal;font-weight: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_7643d5d3b9cd9e2698cc43e1.woff')format("woff");}.ff8{font-family:ff8;line-height:0.996000;font-style:normal;font-weight: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_f51f639cafae398b5951b2af.woff')format("woff");}.ff9{font-family:ff9;line-height:0.764000;font-style:normal;font-weight: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_f632783da3d085cf86a8a44b.woff')format("woff");}.ffa{font-family:ffa;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_a9d04f8291d7ad8057a73d7a.woff')format("woff");}.ffb{font-family:ffb;line-height:0.830000;font-style:normal;font-weight: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_36e02255913f01cf0defdc21.woff')format("woff");}.ffc{font-family:ffc;line-height:0.970000;font-style:normal;font-weight: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_db420c42b343b2d6b2278a9a.woff')format("woff");}.ffd{font-family:ffd;line-height:0.764000;font-style:normal;font-weight: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_c3199766216983c67ac94cd9.woff')format("woff");}.ffe{font-family:ffe;line-height:0.964000;font-style:normal;font-weight: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_1bc436205c2f64ce8edc963d.woff')format("woff");}.fff{font-family:fff;line-height:1.120000;font-style:normal;font-weight: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_9f2f59d6620bcfffa95f8efc.woff')format("woff");}.ff10{font-family:ff10;line-height:0.754000;font-style:normal;font-weight: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_dafdc2e56aa06dfc9e66dba2.woff')format("woff");}.ff11{font-family:ff11;line-height:0.964000;font-style:normal;font-weight: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_71a76438088db8c4d4e1a525.woff')format("woff");}.ff12{font-family:ff12;line-height:0.990000;font-style:normal;font-weight: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_22f4e67648b9f01ea90bf23c.woff')format("woff");}.ff13{font-family:ff13;line-height:0.825000;font-style:normal;font-weight: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_148622a1bd3dc9994725ea83.woff')format("woff");}.ff14{font-family:ff14;line-height:0.950000;font-style:normal;font-weight: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_cd57e5b47cd2f4a6cd80c99d.woff')format("woff");}.ff15{font-family:ff15;line-height:0.964000;font-style:normal;font-weight: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_9f2f59d6620bcfffa95f8efc.woff')format("woff");}.ff16{font-family:ff16;line-height:0.754000;font-style:normal;font-weight: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_815d3c62e0c376030c0356f3.woff')format("woff");}.ff17{font-family:ff17;line-height:0.990234;font-style:normal;font-weight: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_450c90e31088fba610acfbfe.woff')format("woff");}.ff18{font-family:ff18;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_9f2f59d6620bcfffa95f8efc.woff')format("woff");}.ff19{font-family:ff19;line-height:0.754000;font-style:normal;font-weight: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_7db378ab20d2b7ce4bfac59b.woff')format("woff");}.ff1a{font-family:ff1a;line-height:0.956000;font-style:normal;font-weight: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_99cf20dd2f8eda1013f4a840.woff')format("woff");}.ff1b{font-family:ff1b;line-height:0.964000;font-style:normal;font-weight: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_23ad5434e5e4338328dffe9b.woff')format("woff");}.ff1c{font-family:ff1c;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_9f2f59d6620bcfffa95f8efc.woff')format("woff");}.ff1d{font-family:ff1d;line-height:0.754000;font-style:normal;font-weight: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_d04920f5fd3cf20dc007331e.woff')format("woff");}.ff1e{font-family:ff1e;line-height:0.964000;font-style:normal;font-weight: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_6f1cd80d59218065b0136de1.woff')format("woff");}.ff1f{font-family:ff1f;line-height:0.894043;font-style:normal;font-weight: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_2959c486a6f024a9ae7df732.woff')format("woff");}.ff20{font-family:ff20;line-height:0.825000;font-style:normal;font-weight: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_5965a735a623cc535fe5fbcf.woff')format("woff");}.ff21{font-family:ff21;line-height:0.964000;font-style:normal;font-weight: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_f2b518708cadf8a1351d5cd9.woff')format("woff");}.ff22{font-family:ff22;line-height:0.996000;font-style:normal;font-weight: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_d0a61a7f64226153195957cf.woff')format("woff");}.ff23{font-family:ff23;line-height:1.461000;font-style:normal;font-weight: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_8b913b00a24058ac9699fe6a.woff')format("woff");}.ff24{font-family:ff24;line-height:0.970000;font-style:normal;font-weight: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_7e043ed96fe1c006281ffb03.woff')format("woff");}.ff25{font-family:ff25;line-height:0.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_bf9624ba798e7cc2d2a29680.woff')format("woff");}.ff26{font-family:ff26;line-height:0.936523;font-style:normal;font-weight: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_6610627279a317b9b7dcdf76.woff')format("woff");}.ff27{font-family:ff27;line-height:0.932129;font-style:normal;font-weight: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_1ac0ea30e5b233b23595a9cc.woff')format("woff");}.ff28{font-family:ff28;line-height:0.964000;font-style:normal;font-weight: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_7298dc5833efea2564e0754c.woff')format("woff");}.ff29{font-family:ff29;line-height:0.855000;font-style:normal;font-weight: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_2e7f136d2405f35caaf1a6ec.woff')format("woff");}.ff2a{font-family:ff2a;line-height:0.716000;font-style:normal;font-weight: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_b65698bff4947f1fb895ffc8.woff')format("woff");}.ff2b{font-family:ff2b;line-height:0.708008;font-style:normal;font-weight: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_0c5d854640b9b2eb838880d8.woff')format("woff");}.ff2c{font-family:ff2c;line-height:0.932000;font-style:normal;font-weight: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_a0bb1540e2d2f33441c3f00c.woff')format("woff");}.ff2d{font-family:ff2d;line-height:0.931000;font-style:normal;font-weight: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_08fd60c78929b6e5bd29c2d3.woff')format("woff");}.ff2e{font-family:ff2e;line-height:0.914000;font-style:normal;font-weight: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_e42c4001326615302a1588c2.woff')format("woff");}.ff2f{font-family:ff2f;line-height:1.135000;font-style:normal;font-weight: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_f1128b120742a3116380d294.woff')format("woff");}.ff30{font-family:ff30;line-height:0.936000;font-style:normal;font-weight: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_a560fb5d24b20e2740cd1d3b.woff')format("woff");}.ff31{font-family:ff31;line-height:1.150000;font-style:normal;font-weight: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_dfee252496de352f4ba9918a.woff')format("woff");}.ff32{font-family:ff32;line-height:0.967000;font-style:normal;font-weight: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_1d1cc579654ccd574c7d3c33.woff')format("woff");}.ff33{font-family:ff33;line-height:0.970000;font-style:normal;font-weight: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_c42bc25bf7567a367e9a5ceb.woff')format("woff");}.ff34{font-family:ff34;line-height:0.990000;font-style:normal;font-weight: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_9c5195e409c4b9f936e2e673.woff')format("woff");}.ff35{font-family:ff35;line-height:1.122000;font-style:normal;font-weight: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_9ea8a82336f57b86c82bc9a5.woff')format("woff");}.ff36{font-family:ff36;line-height:0.825000;font-style:normal;font-weight: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_da2a056a3d874e5ef5543bb8.woff')format("woff");}.ff37{font-family:ff37;line-height:0.931000;font-style:normal;font-weight: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_7c3539b656d99fa4fc23e838.woff')format("woff");}.ff38{font-family:ff38;line-height:0.876000;font-style:normal;font-weight: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_f38f92c6dca5187eeb9f3a74.woff')format("woff");}.ff39{font-family:ff39;line-height:0.990000;font-style:normal;font-weight: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_8386c3fdd39a0accb4436ce7.woff')format("woff");}.ff3a{font-family:ff3a;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_da2a056a3d874e5ef5543bb8.woff')format("woff");}.ff3b{font-family:ff3b;line-height:0.931000;font-style:normal;font-weight: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_a666b9628a8e5535585f6bf4.woff')format("woff");}.ff3c{font-family:ff3c;line-height:1.461000;font-style:normal;font-weight: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_b2284dfa094a597354a2e3de.woff')format("woff");}.ff3d{font-family:ff3d;line-height:0.964000;font-style:normal;font-weight: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_a4810367070c71647d0a30f5.woff')format("woff");}.ff3e{font-family:ff3e;line-height:0.855000;font-style:normal;font-weight: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_da2a056a3d874e5ef5543bb8.woff')format("woff");}.ff3f{font-family:ff3f;line-height:0.931000;font-style:normal;font-weight: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_f85da7cbf18ab993f530e26a.woff')format("woff");}.ff40{font-family:ff40;line-height:0.719000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_7aec8fc8fa16755c79705ab7.woff')format("woff");}.ff41{font-family:ff41;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_4ebeaeb83391cbb94b013877.woff')format("woff");}.ff42{font-family:ff42;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_da2a056a3d874e5ef5543bb8.woff')format("woff");}.ff43{font-family:ff43;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_6e6ce8aa6b1c25420701912e.woff')format("woff");}.ff44{font-family:ff44;line-height:0.754000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_f771b8b1e004a4b60183fb63.woff')format("woff");}.ff45{font-family:ff45;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_5d34bc140cd02d3f81b5c774.woff')format("woff");}.ff46{font-family:ff46;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_da2a056a3d874e5ef5543bb8.woff')format("woff");}.ff47{font-family:ff47;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_65116078c4d8bae90d8462d8.woff')format("woff");}.ff48{font-family:ff48;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_e9de24b1e005ae11c168d3d2.woff')format("woff");}.ff49{font-family:ff49;line-height:0.964000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4a;src:url('chunks/assets/font_b469e0eb3af5c3786e02d8cf.woff')format("woff");}.ff4a{font-family:ff4a;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4b;src:url('chunks/assets/font_f38677fb577304206a4f4aaa.woff')format("woff");}.ff4b{font-family:ff4b;line-height:0.687988;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4c;src:url('chunks/assets/font_753b39495fdab79e5ef9adcb.woff')format("woff");}.ff4c{font-family:ff4c;line-height:0.755000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4d;src:url('chunks/assets/font_3df055a947e1d1726ba317bc.woff')format("woff");}.ff4d{font-family:ff4d;line-height:0.940000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4e;src:url('chunks/assets/font_84cdd187b1ff23fa6a7184fd.woff')format("woff");}.ff4e{font-family:ff4e;line-height:0.840000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff4f;src:url('chunks/assets/font_64f8f834fdabb5de8ed71daa.woff')format("woff");}.ff4f{font-family:ff4f;line-height:0.914000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff50;src:url('chunks/assets/font_9277c9fcce9436991636163a.woff')format("woff");}.ff50{font-family:ff50;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff51;src:url('chunks/assets/font_ee48b31f2a693c426cd7c75d.woff')format("woff");}.ff51{font-family:ff51;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff52;src:url('chunks/assets/font_3d0ad7d49cae670b36649e2a.woff')format("woff");}.ff52{font-family:ff52;line-height:0.970000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff53;src:url('chunks/assets/font_753b39495fdab79e5ef9adcb.woff')format("woff");}.ff53{font-family:ff53;line-height:0.755000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff54;src:url('chunks/assets/font_7d477ae727690d972b5f3676.woff')format("woff");}.ff54{font-family:ff54;line-height:0.825000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff55;src:url('chunks/assets/font_9d67cd25088cbf3cae1cb9b2.woff')format("woff");}.ff55{font-family:ff55;line-height:0.996000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff56;src:url('chunks/assets/font_df0e19a2dab19612a1ce5c09.woff')format("woff");}.ff56{font-family:ff56;line-height:0.990000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff57;src:url('chunks/assets/font_159f60ed925d58c049ca6a75.woff')format("woff");}.ff57{font-family:ff57;line-height:0.927000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff58;src:url('chunks/assets/font_041961e1b2d1538efe91a26d.woff')format("woff");}.ff58{font-family:ff58;line-height:0.708008;font-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.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);}
.m3{transform:matrix(0.249840,-0.008940,0.008940,0.249840,0,0);-ms-transform:matrix(0.249840,-0.008940,0.008940,0.249840,0,0);-webkit-transform:matrix(0.249840,-0.008940,0.008940,0.249840,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);}
.m2{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;}
.ls0{letter-spacing:0.000000px;}
.ls1{letter-spacing:1.733339px;}
.ls2{letter-spacing:6.382301px;}
.ls3{letter-spacing:9.043951px;}
.ls4{letter-spacing:10.338748px;}
.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;}
}
.ws4{word-spacing:-336.942919px;}
.ws5{word-spacing:-151.192335px;}
.ws1{word-spacing:-65.969997px;}
.ws15{word-spacing:-55.473749px;}
.ws14{word-spacing:-53.976901px;}
.wsd{word-spacing:-47.346389px;}
.ws0{word-spacing:-44.977498px;}
.wsb{word-spacing:-26.977499px;}
.wsf{word-spacing:-24.623999px;}
.wsa{word-spacing:-21.666730px;}
.ws2{word-spacing:-19.991403px;}
.wse{word-spacing:-19.655999px;}
.wsc{word-spacing:-19.484999px;}
.ws16{word-spacing:-19.068074px;}
.ws12{word-spacing:-18.734483px;}
.ws13{word-spacing:-18.137519px;}
.ws1b{word-spacing:-17.992300px;}
.ws9{word-spacing:-17.157689px;}
.ws11{word-spacing:-16.835039px;}
.ws18{word-spacing:-16.455959px;}
.ws19{word-spacing:-16.281449px;}
.ws17{word-spacing:-14.779889px;}
.ws8{word-spacing:-14.111999px;}
.ws1a{word-spacing:-12.947039px;}
.ws7{word-spacing:-12.930119px;}
.ws6{word-spacing:-12.798179px;}
.ws1c{word-spacing:-11.628359px;}
.ws3{word-spacing:0.000000px;}
.ws10{word-spacing:15.186682px;}
.ws1d{word-spacing:25.571475px;}
._29{margin-left:-9.007285px;}
._24{margin-left:-4.424790px;}
._25{margin-left:-3.374624px;}
._23{margin-left:-2.294119px;}
._2{margin-left:-1.199486px;}
._4{width:1.804694px;}
._1{width:2.998603px;}
._0{width:4.198468px;}
._3{width:5.950302px;}
._9{width:7.170650px;}
._c{width:8.469259px;}
._b{width:9.569965px;}
._a{width:11.141193px;}
._12{width:12.406099px;}
._18{width:14.049333px;}
._d{width:15.060794px;}
._6{width:16.185205px;}
._8{width:17.227181px;}
._11{width:18.362762px;}
._e{width:19.555030px;}
._5{width:21.382000px;}
._f{width:23.399176px;}
._1a{width:25.378462px;}
._1c{width:27.205384px;}
._19{width:28.462474px;}
._1d{width:29.751416px;}
._26{width:30.945322px;}
._17{width:32.158171px;}
._14{width:33.367027px;}
._20{width:34.383057px;}
._13{width:35.925512px;}
._1e{width:37.814443px;}
._1f{width:38.945939px;}
._7{width:41.969194px;}
._10{width:44.165825px;}
._15{width:45.321108px;}
._21{width:47.188619px;}
._22{width:48.204250px;}
._35{width:49.512017px;}
._2e{width:51.555532px;}
._42{width:53.073104px;}
._45{width:54.445203px;}
._16{width:56.011369px;}
._2c{width:59.273571px;}
._2d{width:60.322849px;}
._3d{width:61.467417px;}
._34{width:64.851211px;}
._33{width:65.870380px;}
._27{width:67.587275px;}
._47{width:71.641479px;}
._28{width:72.915092px;}
._41{width:74.632904px;}
._46{width:76.783517px;}
._37{width:78.232657px;}
._36{width:79.921508px;}
._44{width:83.617841px;}
._40{width:102.241211px;}
._39{width:103.612544px;}
._31{width:104.912283px;}
._2b{width:108.512516px;}
._2a{width:112.741391px;}
._3c{width:116.242266px;}
._30{width:119.755552px;}
._38{width:124.173462px;}
._3b{width:127.907201px;}
._3a{width:143.093548px;}
._32{width:149.495377px;}
._2f{width:166.049281px;}
._43{width:170.222465px;}
._3f{width:179.646117px;}
._3e{width:239.626985px;}
._1b{width:661.971655px;}
.fca{color:rgb(0,0,255);}
.fcc{color:rgb(77,77,78);}
.fc9{color:rgb(220,227,210);}
.fc7{color:rgb(212,186,133);}
.fcb{color:rgb(93,93,96);}
.fc6{color:rgb(43,71,67);}
.fc4{color:rgb(42,54,32);}
.fc3{color:rgb(44,55,32);}
.fc8{color:transparent;}
.fc2{color:rgb(72,93,54);}
.fc1{color:rgb(85,99,56);}
.fc5{color:rgb(0,0,0);}
.fc0{color:rgb(255,255,255);}
.fs28{font-size:36.000397px;}
.fs1{font-size:44.980751px;}
.fs12{font-size:48.000045px;}
.fsf{font-size:52.486648px;}
.fs0{font-size:53.976901px;}
.fs8{font-size:53.999998px;}
.fs26{font-size:59.939996px;}
.fsa{font-size:59.959341px;}
.fse{font-size:65.969996px;}
.fs7{font-size:71.954996px;}
.fs17{font-size:71.969202px;}
.fsb{font-size:71.999997px;}
.fs21{font-size:74.937930px;}
.fs23{font-size:74.969996px;}
.fs24{font-size:76.184997px;}
.fs19{font-size:77.939997px;}
.fs16{font-size:77.984997px;}
.fs1b{font-size:82.799997px;}
.fs1e{font-size:83.924997px;}
.fs10{font-size:83.969997px;}
.fs18{font-size:89.954996px;}
.fs9{font-size:95.939996px;}
.fs14{font-size:101.969996px;}
.fs11{font-size:107.909996px;}
.fs25{font-size:107.953803px;}
.fs13{font-size:107.954996px;}
.fs5{font-size:107.999996px;}
.fs1f{font-size:109.889995px;}
.fs15{font-size:113.984995px;}
.fsc{font-size:119.924995px;}
.fs1d{font-size:119.969995px;}
.fs6{font-size:125.909995px;}
.fs4{font-size:125.999995px;}
.fs3{font-size:131.939995px;}
.fs1a{font-size:131.984995px;}
.fs1c{font-size:173.429997px;}
.fs2{font-size:179.909993px;}
.fs27{font-size:179.923004px;}
.fs22{font-size:221.894995px;}
.fs20{font-size:283.904988px;}
.fsd{font-size:431.978101px;}
.y0{bottom:0.000000px;}
.y1{bottom:0.000021px;}
.y4{bottom:44.527315px;}
.y1d1{bottom:49.338819px;}
.y30{bottom:49.501222px;}
.yda{bottom:57.000206px;}
.yf5{bottom:57.153706px;}
.y3{bottom:61.395096px;}
.y3b{bottom:62.214673px;}
.y25{bottom:62.318759px;}
.yd3{bottom:62.382129px;}
.y1ce{bottom:65.750520px;}
.y48{bottom:73.149261px;}
.y2{bottom:77.138359px;}
.y126{bottom:78.538785px;}
.y1cd{bottom:81.493783px;}
.yf4{bottom:81.903705px;}
.yd2{bottom:83.757129px;}
.y1a1{bottom:86.893636px;}
.ya9{bottom:87.376532px;}
.y181{bottom:92.202404px;}
.y47{bottom:95.649260px;}
.y125{bottom:99.913784px;}
.yf3{bottom:106.653704px;}
.yd1{bottom:109.632127px;}
.ya8{bottom:112.126531px;}
.y1a0{bottom:112.768635px;}
.y46{bottom:118.149259px;}
.y124{bottom:121.288783px;}
.y180{bottom:121.452403px;}
.y71{bottom:128.330203px;}
.yd0{bottom:131.007127px;}
.yf2{bottom:131.403703px;}
.y13c{bottom:136.730226px;}
.ya7{bottom:136.876530px;}
.y15{bottom:137.246214px;}
.y19f{bottom:138.643633px;}
.y45{bottom:140.649258px;}
.y123{bottom:142.663782px;}
.y1b3{bottom:149.578748px;}
.y17f{bottom:150.702402px;}
.y70{bottom:150.830202px;}
.yd9{bottom:151.238478px;}
.yf1{bottom:156.153701px;}
.ycf{bottom:156.882125px;}
.y13b{bottom:159.230225px;}
.ya6{bottom:161.626529px;}
.y14{bottom:161.973461px;}
.y15f{bottom:162.904133px;}
.y44{bottom:163.149257px;}
.y2f{bottom:163.961525px;}
.y122{bottom:164.038781px;}
.y19e{bottom:164.518632px;}
.y1d0{bottom:165.439555px;}
.y87{bottom:167.400538px;}
.y6f{bottom:173.330201px;}
.yce{bottom:178.257125px;}
.y17e{bottom:179.952401px;}
.yf0{bottom:180.903700px;}
.y13a{bottom:181.730224px;}
.y121{bottom:185.413780px;}
.y43{bottom:185.649256px;}
.ya5{bottom:186.376528px;}
.y2e{bottom:186.461524px;}
.y15e{bottom:187.654132px;}
.y14f{bottom:188.190244px;}
.y19d{bottom:190.393631px;}
.y13{bottom:193.842064px;}
.y1b2{bottom:194.974962px;}
.y6e{bottom:195.830200px;}
.y1b0{bottom:198.545301px;}
.ycd{bottom:204.132123px;}
.y139{bottom:204.230223px;}
.yef{bottom:205.653699px;}
.y120{bottom:206.788779px;}
.y42{bottom:208.149255px;}
.yb4{bottom:208.955475px;}
.y2d{bottom:208.961523px;}
.y17d{bottom:209.202399px;}
.y14e{bottom:210.690243px;}
.ya4{bottom:211.126527px;}
.y15d{bottom:212.404131px;}
.y19c{bottom:216.268630px;}
.y6d{bottom:218.330199px;}
.y109{bottom:220.264695px;}
.y1cf{bottom:221.825453px;}
.ycc{bottom:225.507123px;}
.y12{bottom:226.467063px;}
.y138{bottom:226.730223px;}
.y11f{bottom:228.163778px;}
.y1af{bottom:230.031826px;}
.yee{bottom:230.403698px;}
.y41{bottom:230.649254px;}
.y2c{bottom:231.461522px;}
.y14d{bottom:233.190242px;}
.ya3{bottom:235.876526px;}
.y15c{bottom:237.154130px;}
.y17c{bottom:238.452398px;}
.y1b1{bottom:240.651688px;}
.y6c{bottom:240.830198px;}
.y19b{bottom:242.143629px;}
.y108{bottom:247.264694px;}
.y137{bottom:249.230222px;}
.y11e{bottom:249.538778px;}
.yd8{bottom:250.303094px;}
.y40{bottom:253.149253px;}
.y2b{bottom:253.961521px;}
.yed{bottom:255.153697px;}
.y14c{bottom:255.690241px;}
.y11{bottom:259.092061px;}
.ya2{bottom:260.626525px;}
.y15b{bottom:261.904129px;}
.y6b{bottom:263.330197px;}
.y17b{bottom:267.702397px;}
.y19a{bottom:268.018628px;}
.y11d{bottom:270.913777px;}
.yd7{bottom:271.678093px;}
.y136{bottom:271.730221px;}
.y107{bottom:274.264693px;}
.y3f{bottom:275.649253px;}
.y2a{bottom:276.461520px;}
.y14b{bottom:278.190240px;}
.yec{bottom:279.903696px;}
.ya1{bottom:285.376524px;}
.y6a{bottom:285.830196px;}
.y15a{bottom:286.654128px;}
.y10{bottom:291.717060px;}
.y11c{bottom:292.288776px;}
.yd6{bottom:293.053092px;}
.y199{bottom:293.893627px;}
.y135{bottom:294.230220px;}
.y17a{bottom:296.952396px;}
.y3e{bottom:298.149252px;}
.y29{bottom:298.961520px;}
.y14a{bottom:300.690239px;}
.y106{bottom:301.264691px;}
.yeb{bottom:304.653695px;}
.y69{bottom:308.330195px;}
.ya0{bottom:310.126523px;}
.y11b{bottom:313.663775px;}
.y134{bottom:316.730219px;}
.y1ad{bottom:317.048099px;}
.yd5{bottom:317.803091px;}
.y198{bottom:319.768626px;}
.y3d{bottom:320.649251px;}
.y28{bottom:321.461519px;}
.y1cc{bottom:321.545219px;}
.y149{bottom:323.190239px;}
.yf{bottom:324.342058px;}
.y179{bottom:326.202394px;}
.y105{bottom:328.264690px;}
.yea{bottom:329.403694px;}
.y68{bottom:330.830194px;}
.y1ac{bottom:333.923098px;}
.y9f{bottom:334.876522px;}
.y11a{bottom:335.038774px;}
.y159{bottom:336.898210px;}
.y133{bottom:339.230218px;}
.y3c{bottom:342.024250px;}
.y1cb{bottom:342.920218px;}
.y27{bottom:343.961518px;}
.y197{bottom:345.643625px;}
.y148{bottom:345.690238px;}
.y1ab{bottom:350.798097px;}
.y67{bottom:353.330193px;}
.ye9{bottom:354.153693px;}
.y178{bottom:355.452393px;}
.y119{bottom:356.413773px;}
.ycb{bottom:358.189617px;}
.y9e{bottom:359.626521px;}
.y158{bottom:361.648209px;}
.y132{bottom:361.730217px;}
.y16{bottom:366.403269px;}
.y147{bottom:368.190237px;}
.y196{bottom:371.518624px;}
.y66{bottom:375.830192px;}
.y104{bottom:377.438276px;}
.y1ca{bottom:377.759684px;}
.yca{bottom:381.814616px;}
.y131{bottom:384.230216px;}
.y9d{bottom:384.376520px;}
.y26{bottom:384.461516px;}
.y177{bottom:384.702392px;}
.y157{bottom:386.398208px;}
.y1aa{bottom:390.173096px;}
.y146{bottom:390.690236px;}
.y1c9{bottom:394.634684px;}
.yf8{bottom:396.189919px;}
.y195{bottom:397.393623px;}
.y65{bottom:398.330191px;}
.yc9{bottom:405.439615px;}
.y103{bottom:406.688275px;}
.y1a9{bottom:407.048095px;}
.y9c{bottom:409.126519px;}
.y156{bottom:411.148207px;}
.y1c8{bottom:411.509683px;}
.y145{bottom:413.190235px;}
.y176{bottom:413.952391px;}
.y130{bottom:416.805643px;}
.y64{bottom:420.830190px;}
.y194{bottom:423.268622px;}
.y1a8{bottom:423.923094px;}
.y128{bottom:423.968814px;}
.y1c7{bottom:428.384682px;}
.yc8{bottom:429.064614px;}
.y16b{bottom:433.029357px;}
.y9b{bottom:433.876518px;}
.y144{bottom:435.690234px;}
.y155{bottom:435.898206px;}
.y12f{bottom:439.305642px;}
.y1a7{bottom:441.923094px;}
.y175{bottom:443.202390px;}
.y63{bottom:443.330190px;}
.y22{bottom:446.162500px;}
.y193{bottom:449.143620px;}
.y169{bottom:452.202605px;}
.yc7{bottom:452.689613px;}
.yf7{bottom:455.814917px;}
.y143{bottom:458.190233px;}
.y9a{bottom:458.626517px;}
.y154{bottom:460.648205px;}
.y12e{bottom:461.805641px;}
.y62{bottom:465.830189px;}
.y1c6{bottom:468.708511px;}
.y21{bottom:470.912499px;}
.y174{bottom:472.452388px;}
.y168{bottom:474.702604px;}
.y192{bottom:475.018619px;}
.y142{bottom:480.690232px;}
.y99{bottom:483.376516px;}
.y12d{bottom:484.305640px;}
.y153{bottom:485.398204px;}
.yd4{bottom:487.249684px;}
.y1c5{bottom:487.833510px;}
.y20{bottom:495.662498px;}
.y167{bottom:497.202603px;}
.y191{bottom:500.893618px;}
.y173{bottom:501.702387px;}
.y141{bottom:503.190231px;}
.y12c{bottom:506.805639px;}
.y98{bottom:508.126515px;}
.y1c4{bottom:509.208509px;}
.y152{bottom:510.148203px;}
.y61{bottom:510.830187px;}
.yf6{bottom:515.439915px;}
.y166{bottom:519.702602px;}
.y118{bottom:520.352381px;}
.y1f{bottom:520.412497px;}
.y190{bottom:526.768617px;}
.yc6{bottom:526.778402px;}
.y12b{bottom:529.305638px;}
.y172{bottom:530.952386px;}
.y97{bottom:532.876514px;}
.y86{bottom:535.135496px;}
.y165{bottom:542.202601px;}
.y117{bottom:545.102380px;}
.y1e{bottom:545.162496px;}
.y1c3{bottom:547.458508px;}
.y18f{bottom:552.643616px;}
.y60{bottom:555.867880px;}
.y96{bottom:557.626513px;}
.y85{bottom:559.885495px;}
.y171{bottom:560.202385px;}
.y4c{bottom:563.848029px;}
.y164{bottom:564.702600px;}
.y1c2{bottom:568.833507px;}
.y116{bottom:569.852379px;}
.y1d{bottom:569.912495px;}
.y5f{bottom:578.367880px;}
.y18e{bottom:578.518615px;}
.y95{bottom:582.376512px;}
.y140{bottom:584.504227px;}
.y4b{bottom:584.623993px;}
.y84{bottom:584.635494px;}
.y163{bottom:587.202600px;}
.y170{bottom:589.452383px;}
.y1c1{bottom:590.208506px;}
.y12a{bottom:591.769739px;}
.y115{bottom:594.602378px;}
.y1c{bottom:594.662494px;}
.y5e{bottom:600.867879px;}
.y18d{bottom:604.393614px;}
.y4a{bottom:605.399958px;}
.y94{bottom:607.126511px;}
.y83{bottom:609.385493px;}
.y162{bottom:609.702599px;}
.y1c0{bottom:611.583505px;}
.y13f{bottom:612.629226px;}
.y16f{bottom:618.702382px;}
.y114{bottom:619.352377px;}
.y1b{bottom:619.412493px;}
.yff{bottom:619.876468px;}
.y5d{bottom:623.367878px;}
.y49{bottom:626.175923px;}
.y18c{bottom:630.268613px;}
.y93{bottom:631.876510px;}
.y82{bottom:634.135492px;}
.yba{bottom:637.820394px;}
.y13e{bottom:640.754225px;}
.y113{bottom:644.102376px;}
.y1a{bottom:644.162492px;}
.y5c{bottom:645.867877px;}
.yfe{bottom:646.876467px;}
.y16e{bottom:647.952381px;}
.y1bf{bottom:649.833503px;}
.y18b{bottom:656.143612px;}
.y81{bottom:658.885491px;}
.yb9{bottom:662.570393px;}
.y5b{bottom:668.367876px;}
.y112{bottom:668.852375px;}
.y13d{bottom:668.879223px;}
.y19{bottom:668.912491px;}
.y1be{bottom:671.208502px;}
.yfd{bottom:673.876466px;}
.y89{bottom:677.035034px;}
.y16d{bottom:677.202380px;}
.y18a{bottom:682.018611px;}
.ye8{bottom:682.079299px;}
.y80{bottom:683.635490px;}
.yb8{bottom:687.320392px;}
.y5a{bottom:690.867875px;}
.y1bd{bottom:692.583502px;}
.y111{bottom:693.602373px;}
.y18{bottom:693.662490px;}
.yfc{bottom:700.876465px;}
.y16c{bottom:706.452379px;}
.y189{bottom:707.893610px;}
.ye7{bottom:708.071343px;}
.y7f{bottom:708.385488px;}
.y88{bottom:709.660032px;}
.yb7{bottom:712.070391px;}
.y59{bottom:713.367874px;}
.y110{bottom:718.352372px;}
.yfb{bottom:727.876464px;}
.y1bc{bottom:730.833500px;}
.ye6{bottom:732.805511px;}
.y7e{bottom:733.135487px;}
.y58{bottom:735.867873px;}
.y10f{bottom:743.102371px;}
.yb3{bottom:750.963770px;}
.y1bb{bottom:752.208499px;}
.ye5{bottom:757.539679px;}
.y7d{bottom:757.885486px;}
.y57{bottom:758.367872px;}
.y10e{bottom:767.852370px;}
.y1ba{bottom:773.583498px;}
.yfa{bottom:774.769097px;}
.yb2{bottom:775.713769px;}
.y56{bottom:780.867871px;}
.ye4{bottom:782.273846px;}
.y8{bottom:782.342370px;}
.y7c{bottom:782.635485px;}
.y10d{bottom:792.602369px;}
.y1b9{bottom:794.958497px;}
.y92{bottom:796.869856px;}
.yb1{bottom:800.463768px;}
.y55{bottom:803.367870px;}
.yf9{bottom:804.019096px;}
.ye3{bottom:805.750138px;}
.y7b{bottom:807.385484px;}
.y7{bottom:816.092368px;}
.y1b8{bottom:816.333496px;}
.y10c{bottom:817.352368px;}
.y91{bottom:821.619855px;}
.yb0{bottom:825.213767px;}
.y54{bottom:825.867869px;}
.y16a{bottom:827.621964px;}
.y3a{bottom:829.214789px;}
.yc5{bottom:829.261765px;}
.ye{bottom:829.344339px;}
.y1a2{bottom:831.039971px;}
.ye2{bottom:831.742182px;}
.y7a{bottom:832.135483px;}
.y1b7{bottom:837.708495px;}
.y10b{bottom:842.102367px;}
.y182{bottom:846.133165px;}
.y90{bottom:846.369854px;}
.y53{bottom:848.367868px;}
.yaf{bottom:849.963766px;}
.yc4{bottom:851.761765px;}
.y39{bottom:853.964788px;}
.ye1{bottom:856.476349px;}
.y79{bottom:856.885482px;}
.y6{bottom:860.131062px;}
.y10a{bottom:866.852366px;}
.y151{bottom:867.364484px;}
.y52{bottom:870.867867px;}
.y8f{bottom:871.119853px;}
.yc3{bottom:874.261764px;}
.yae{bottom:874.713765px;}
.y38{bottom:878.714787px;}
.ye0{bottom:881.210517px;}
.y78{bottom:881.635481px;}
.y51{bottom:893.367866px;}
.y150{bottom:895.489483px;}
.y8e{bottom:895.869852px;}
.yc2{bottom:896.761763px;}
.yad{bottom:899.463764px;}
.y37{bottom:903.464786px;}
.ydf{bottom:905.944685px;}
.y5{bottom:906.256060px;}
.y77{bottom:906.385480px;}
.yc1{bottom:919.261762px;}
.y8d{bottom:920.619851px;}
.y50{bottom:922.926385px;}
.yac{bottom:924.213763px;}
.y36{bottom:928.214785px;}
.yde{bottom:930.678852px;}
.y76{bottom:931.135479px;}
.yc0{bottom:941.761761px;}
.y8c{bottom:945.369850px;}
.y17{bottom:945.605413px;}
.y127{bottom:945.686715px;}
.y35{bottom:952.964784px;}
.y4f{bottom:955.551384px;}
.y75{bottom:955.885478px;}
.ydd{bottom:958.652265px;}
.ybf{bottom:964.261760px;}
.y8b{bottom:970.119849px;}
.y1a6{bottom:972.388129px;}
.y34{bottom:977.714783px;}
.y102{bottom:977.957714px;}
.y74{bottom:980.635477px;}
.y188{bottom:985.633181px;}
.ybe{bottom:986.761759px;}
.y1a5{bottom:993.763129px;}
.y8a{bottom:994.869848px;}
.yb5{bottom:998.752095px;}
.y33{bottom:1002.464782px;}
.ybd{bottom:1009.261758px;}
.y101{bottom:1012.832713px;}
.y1ae{bottom:1013.040063px;}
.y185{bottom:1023.953051px;}
.y32{bottom:1027.214781px;}
.y73{bottom:1031.368997px;}
.yab{bottom:1031.377093px;}
.ybc{bottom:1031.761757px;}
.y1a4{bottom:1036.080303px;}
.yd{bottom:1036.728804px;}
.y161{bottom:1047.588026px;}
.y100{bottom:1047.707712px;}
.y31{bottom:1051.964780px;}
.y184{bottom:1055.453050px;}
.y72{bottom:1063.993996px;}
.yaa{bottom:1064.002092px;}
.y1a3{bottom:1067.566828px;}
.yc{bottom:1073.853802px;}
.y160{bottom:1079.088025px;}
.y183{bottom:1086.953049px;}
.y4d{bottom:1091.487083px;}
.yb6{bottom:1091.819320px;}
.ydc{bottom:1092.135486px;}
.yb{bottom:1110.978801px;}
.ydb{bottom:1115.760485px;}
.y1b6{bottom:1134.091651px;}
.ya{bottom:1148.103799px;}
.y187{bottom:1160.078048px;}
.y4e{bottom:1162.069735px;}
.y24{bottom:1162.070800px;}
.ybb{bottom:1163.545450px;}
.y129{bottom:1164.521115px;}
.y1b5{bottom:1165.578177px;}
.y9{bottom:1185.228798px;}
.y186{bottom:1194.953046px;}
.y23{bottom:1196.945799px;}
.y1b4{bottom:1197.064702px;}
.h4a{height:25.136996px;}
.h4{height:32.615437px;}
.h1f{height:36.562534px;}
.h3{height:37.891785px;}
.hb{height:39.959998px;}
.h20{height:41.317381px;}
.h18{height:45.138517px;}
.h47{height:46.753197px;}
.h3f{height:49.513967px;}
.h17{height:49.741377px;}
.hd{height:49.766253px;}
.h28{height:50.251933px;}
.h49{height:50.522380px;}
.h12{height:51.456597px;}
.ha{height:52.139265px;}
.h25{height:52.171873px;}
.h3e{height:52.606427px;}
.h42{height:53.978397px;}
.h16{height:54.254067px;}
.h14{height:54.287998px;}
.h2a{height:55.882978px;}
.h11{height:56.124897px;}
.h2d{height:56.149198px;}
.he{height:56.159998px;}
.h46{height:56.227497px;}
.h24{height:56.508660px;}
.h44{height:57.443488px;}
.h31{height:58.644718px;}
.h3b{height:58.766758px;}
.h26{height:58.800688px;}
.h1d{height:59.399998px;}
.h43{height:59.424298px;}
.h2c{height:59.615998px;}
.h13{height:60.479997px;}
.h39{height:60.793197px;}
.h1a{height:61.919997px;}
.h34{height:62.999997px;}
.h19{height:63.313377px;}
.h29{height:64.767597px;}
.h35{height:65.461497px;}
.hc{height:69.519021px;}
.h3c{height:72.602637px;}
.h30{height:73.473747px;}
.h27{height:75.752817px;}
.h45{height:75.783569px;}
.h8{height:75.815997px;}
.h33{height:76.885377px;}
.h1e{height:79.853397px;}
.h1c{height:81.364137px;}
.h21{height:84.204896px;}
.h3d{height:85.146791px;}
.h41{height:88.144871px;}
.h37{height:88.177946px;}
.h7{height:88.451996px;}
.h9{height:88.640636px;}
.h1b{height:88.744496px;}
.h2f{height:88.777796px;}
.h23{height:88.908296px;}
.h15{height:90.423446px;}
.h32{height:90.457376px;}
.h2b{height:92.653467px;}
.hf{height:93.541496px;}
.h6{height:95.604957px;}
.h36{height:100.329566px;}
.h22{height:121.956115px;}
.h5{height:126.296815px;}
.h48{height:126.305949px;}
.h3a{height:136.326054px;}
.h2e{height:149.149798px;}
.h40{height:155.770287px;}
.h38{height:212.077026px;}
.h10{height:321.823685px;}
.h1{height:1263.000000px;}
.h2{height:1263.374947px;}
.h0{height:1263.374968px;}
.w1{width:893.249963px;}
.w0{width:893.250000px;}
.x0{left:0.000000px;}
.x3b{left:8.656838px;}
.x9{left:10.183710px;}
.x8{left:12.228265px;}
.x1a{left:13.732991px;}
.xa{left:15.884514px;}
.x40{left:17.965311px;}
.xb{left:20.397324px;}
.x5{left:22.564593px;}
.x29{left:24.102750px;}
.x3{left:25.613395px;}
.x1e{left:27.026871px;}
.x2d{left:29.574292px;}
.x30{left:33.999804px;}
.x45{left:36.572832px;}
.x7{left:41.654188px;}
.x52{left:44.650824px;}
.x1f{left:50.412121px;}
.x1c{left:52.175240px;}
.x48{left:58.752845px;}
.x2a{left:60.300108px;}
.x2b{left:62.070313px;}
.x2c{left:63.840518px;}
.x2e{left:65.610722px;}
.x2f{left:67.380927px;}
.x51{left:82.780038px;}
.x6{left:89.291333px;}
.x3c{left:101.490454px;}
.xf{left:134.056606px;}
.x4b{left:139.889882px;}
.x1b{left:144.925867px;}
.x3f{left:153.510254px;}
.x1{left:156.050720px;}
.x4e{left:163.916728px;}
.x4a{left:169.737537px;}
.x4d{left:172.600322px;}
.x56{left:175.013003px;}
.x4c{left:178.418681px;}
.x17{left:184.023558px;}
.x13{left:188.275532px;}
.x4{left:195.365341px;}
.xd{left:197.874903px;}
.x14{left:202.575203px;}
.x49{left:206.669176px;}
.x10{left:214.048359px;}
.x46{left:217.603402px;}
.x25{left:221.268769px;}
.x15{left:230.612311px;}
.x3e{left:231.661380px;}
.x24{left:235.159223px;}
.x11{left:242.085467px;}
.x36{left:244.509686px;}
.x18{left:255.241131px;}
.x20{left:256.326340px;}
.x4f{left:259.200691px;}
.xe{left:260.354804px;}
.x31{left:261.742337px;}
.x3d{left:274.334755px;}
.x53{left:278.884577px;}
.x47{left:280.474091px;}
.x57{left:325.226654px;}
.x58{left:327.179121px;}
.x22{left:334.610032px;}
.x23{left:340.201698px;}
.x35{left:357.578290px;}
.x27{left:361.145201px;}
.x16{left:373.343626px;}
.x43{left:395.264032px;}
.x21{left:413.963947px;}
.x38{left:417.438922px;}
.x34{left:427.838008px;}
.x42{left:437.003067px;}
.x32{left:439.650507px;}
.x3a{left:449.985963px;}
.x41{left:460.340182px;}
.x19{left:465.815987px;}
.x44{left:478.747730px;}
.x50{left:521.025710px;}
.x33{left:530.494253px;}
.x37{left:547.746436px;}
.x54{left:551.562471px;}
.x55{left:567.294893px;}
.x28{left:571.766291px;}
.xc{left:596.382909px;}
.x2{left:756.877594px;}
.x59{left:771.561436px;}
.x26{left:835.001245px;}
.x39{left:838.572157px;}
.x12{left:842.052637px;}
.x1d{left:843.063373px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls1{letter-spacing:1.540746pt;}
.ls2{letter-spacing:5.673157pt;}
.ls3{letter-spacing:8.039068pt;}
.ls4{letter-spacing:9.189999pt;}
.ws4{word-spacing:-299.504817pt;}
.ws5{word-spacing:-134.393187pt;}
.ws1{word-spacing:-58.639998pt;}
.ws15{word-spacing:-49.309999pt;}
.ws14{word-spacing:-47.979468pt;}
.wsd{word-spacing:-42.085679pt;}
.ws0{word-spacing:-39.979998pt;}
.wsb{word-spacing:-23.979999pt;}
.wsf{word-spacing:-21.887999pt;}
.wsa{word-spacing:-19.259316pt;}
.ws2{word-spacing:-17.770136pt;}
.wse{word-spacing:-17.471999pt;}
.wsc{word-spacing:-17.319999pt;}
.ws16{word-spacing:-16.949399pt;}
.ws12{word-spacing:-16.652873pt;}
.ws13{word-spacing:-16.122239pt;}
.ws1b{word-spacing:-15.993156pt;}
.ws9{word-spacing:-15.251279pt;}
.ws11{word-spacing:-14.964479pt;}
.ws18{word-spacing:-14.627519pt;}
.ws19{word-spacing:-14.472399pt;}
.ws17{word-spacing:-13.137679pt;}
.ws8{word-spacing:-12.543999pt;}
.ws1a{word-spacing:-11.508479pt;}
.ws7{word-spacing:-11.493439pt;}
.ws6{word-spacing:-11.376159pt;}
.ws1c{word-spacing:-10.336319pt;}
.ws3{word-spacing:0.000000pt;}
.ws10{word-spacing:13.499273pt;}
.ws1d{word-spacing:22.730200pt;}
._29{margin-left:-8.006476pt;}
._24{margin-left:-3.933147pt;}
._25{margin-left:-2.999665pt;}
._23{margin-left:-2.039217pt;}
._2{margin-left:-1.066210pt;}
._4{width:1.604172pt;}
._1{width:2.665425pt;}
._0{width:3.731972pt;}
._3{width:5.289157pt;}
._9{width:6.373911pt;}
._c{width:7.528230pt;}
._b{width:8.506636pt;}
._a{width:9.903282pt;}
._12{width:11.027643pt;}
._18{width:12.488296pt;}
._d{width:13.387373pt;}
._6{width:14.386849pt;}
._8{width:15.313050pt;}
._11{width:16.322455pt;}
._e{width:17.382248pt;}
._5{width:19.006222pt;}
._f{width:20.799268pt;}
._1a{width:22.558633pt;}
._1c{width:24.182564pt;}
._19{width:25.299976pt;}
._1d{width:26.445703pt;}
._26{width:27.506953pt;}
._17{width:28.585040pt;}
._14{width:29.659579pt;}
._20{width:30.562718pt;}
._13{width:31.933788pt;}
._1e{width:33.612838pt;}
._1f{width:34.618613pt;}
._7{width:37.305950pt;}
._10{width:39.258511pt;}
._15{width:40.285429pt;}
._21{width:41.945439pt;}
._22{width:42.848222pt;}
._35{width:44.010682pt;}
._2e{width:45.827139pt;}
._42{width:47.176092pt;}
._45{width:48.395736pt;}
._16{width:49.787884pt;}
._2c{width:52.687619pt;}
._2d{width:53.620310pt;}
._3d{width:54.637704pt;}
._34{width:57.645521pt;}
._33{width:58.551449pt;}
._27{width:60.077577pt;}
._47{width:63.681315pt;}
._28{width:64.813415pt;}
._41{width:66.340359pt;}
._46{width:68.252015pt;}
._37{width:69.540139pt;}
._36{width:71.041340pt;}
._44{width:74.326970pt;}
._40{width:90.881077pt;}
._39{width:92.100039pt;}
._31{width:93.255362pt;}
._2b{width:96.455570pt;}
._2a{width:100.214570pt;}
._3c{width:103.326459pt;}
._30{width:106.449380pt;}
._38{width:110.376411pt;}
._3b{width:113.695289pt;}
._3a{width:127.194265pt;}
._32{width:132.884780pt;}
._2f{width:147.599361pt;}
._43{width:151.308857pt;}
._3f{width:159.685438pt;}
._3e{width:213.001764pt;}
._1b{width:588.419249pt;}
.fs28{font-size:32.000353pt;}
.fs1{font-size:39.982890pt;}
.fs12{font-size:42.666707pt;}
.fsf{font-size:46.654798pt;}
.fs0{font-size:47.979468pt;}
.fs8{font-size:47.999998pt;}
.fs26{font-size:53.279997pt;}
.fsa{font-size:53.297192pt;}
.fse{font-size:58.639997pt;}
.fs7{font-size:63.959997pt;}
.fs17{font-size:63.972624pt;}
.fsb{font-size:63.999997pt;}
.fs21{font-size:66.611494pt;}
.fs23{font-size:66.639996pt;}
.fs24{font-size:67.719997pt;}
.fs19{font-size:69.279997pt;}
.fs16{font-size:69.319997pt;}
.fs1b{font-size:73.599997pt;}
.fs1e{font-size:74.599997pt;}
.fs10{font-size:74.639997pt;}
.fs18{font-size:79.959997pt;}
.fs9{font-size:85.279996pt;}
.fs14{font-size:90.639996pt;}
.fs11{font-size:95.919996pt;}
.fs25{font-size:95.958936pt;}
.fs13{font-size:95.959996pt;}
.fs5{font-size:95.999996pt;}
.fs1f{font-size:97.679996pt;}
.fs15{font-size:101.319996pt;}
.fsc{font-size:106.599996pt;}
.fs1d{font-size:106.639996pt;}
.fs6{font-size:111.919995pt;}
.fs4{font-size:111.999995pt;}
.fs3{font-size:117.279995pt;}
.fs1a{font-size:117.319996pt;}
.fs1c{font-size:154.159998pt;}
.fs2{font-size:159.919993pt;}
.fs27{font-size:159.931559pt;}
.fs22{font-size:197.239996pt;}
.fs20{font-size:252.359989pt;}
.fsd{font-size:383.980534pt;}
.y0{bottom:0.000000pt;}
.y1{bottom:0.000018pt;}
.y4{bottom:39.579835pt;}
.y1d1{bottom:43.856728pt;}
.y30{bottom:44.001086pt;}
.yda{bottom:50.666850pt;}
.yf5{bottom:50.803294pt;}
.y3{bottom:54.573419pt;}
.y3b{bottom:55.301931pt;}
.y25{bottom:55.394453pt;}
.yd3{bottom:55.450782pt;}
.y1ce{bottom:58.444907pt;}
.y48{bottom:65.021565pt;}
.y2{bottom:68.567431pt;}
.y126{bottom:69.812253pt;}
.y1cd{bottom:72.438918pt;}
.yf4{bottom:72.803293pt;}
.yd2{bottom:74.450781pt;}
.y1a1{bottom:77.238787pt;}
.ya9{bottom:77.668029pt;}
.y181{bottom:81.957693pt;}
.y47{bottom:85.021564pt;}
.y125{bottom:88.812252pt;}
.yf3{bottom:94.803292pt;}
.yd1{bottom:97.450780pt;}
.ya8{bottom:99.668028pt;}
.y1a0{bottom:100.238786pt;}
.y46{bottom:105.021564pt;}
.y124{bottom:107.812252pt;}
.y180{bottom:107.957692pt;}
.y71{bottom:114.071291pt;}
.yd0{bottom:116.450779pt;}
.yf2{bottom:116.803291pt;}
.y13c{bottom:121.537979pt;}
.ya7{bottom:121.668027pt;}
.y15{bottom:121.996635pt;}
.y19f{bottom:123.238785pt;}
.y45{bottom:125.021563pt;}
.y123{bottom:126.812251pt;}
.y1b3{bottom:132.958887pt;}
.y17f{bottom:133.957690pt;}
.y70{bottom:134.071290pt;}
.yd9{bottom:134.434202pt;}
.yf1{bottom:138.803290pt;}
.ycf{bottom:139.450778pt;}
.y13b{bottom:141.537978pt;}
.ya6{bottom:143.668026pt;}
.y14{bottom:143.976410pt;}
.y15f{bottom:144.803674pt;}
.y44{bottom:145.021562pt;}
.y2f{bottom:145.743578pt;}
.y122{bottom:145.812250pt;}
.y19e{bottom:146.238784pt;}
.y1d0{bottom:147.057382pt;}
.y87{bottom:148.800478pt;}
.y6f{bottom:154.071290pt;}
.yce{bottom:158.450777pt;}
.y17e{bottom:159.957689pt;}
.yf0{bottom:160.803289pt;}
.y13a{bottom:161.537977pt;}
.y121{bottom:164.812249pt;}
.y43{bottom:165.021561pt;}
.ya5{bottom:165.668025pt;}
.y2e{bottom:165.743577pt;}
.y15e{bottom:166.803673pt;}
.y14f{bottom:167.280217pt;}
.y19d{bottom:169.238783pt;}
.y13{bottom:172.304057pt;}
.y1b2{bottom:173.311077pt;}
.y6e{bottom:174.071289pt;}
.y1b0{bottom:176.484712pt;}
.ycd{bottom:181.450776pt;}
.y139{bottom:181.537976pt;}
.yef{bottom:182.803288pt;}
.y120{bottom:183.812248pt;}
.y42{bottom:185.021560pt;}
.yb4{bottom:185.738200pt;}
.y2d{bottom:185.743576pt;}
.y17d{bottom:185.957688pt;}
.y14e{bottom:187.280216pt;}
.ya4{bottom:187.668024pt;}
.y15d{bottom:188.803672pt;}
.y19c{bottom:192.238782pt;}
.y6d{bottom:194.071288pt;}
.y109{bottom:195.790840pt;}
.y1cf{bottom:197.178180pt;}
.ycc{bottom:200.450776pt;}
.y12{bottom:201.304056pt;}
.y138{bottom:201.537976pt;}
.y11f{bottom:202.812248pt;}
.y1af{bottom:204.472735pt;}
.yee{bottom:204.803287pt;}
.y41{bottom:205.021559pt;}
.y2c{bottom:205.743575pt;}
.y14d{bottom:207.280215pt;}
.ya3{bottom:209.668023pt;}
.y15c{bottom:210.803671pt;}
.y17c{bottom:211.957687pt;}
.y1b1{bottom:213.912612pt;}
.y6c{bottom:214.071287pt;}
.y19b{bottom:215.238781pt;}
.y108{bottom:219.790839pt;}
.y137{bottom:221.537975pt;}
.y11e{bottom:221.812247pt;}
.yd8{bottom:222.491639pt;}
.y40{bottom:225.021559pt;}
.y2b{bottom:225.743575pt;}
.yed{bottom:226.803287pt;}
.y14c{bottom:227.280215pt;}
.y11{bottom:230.304054pt;}
.ya2{bottom:231.668022pt;}
.y15b{bottom:232.803670pt;}
.y6b{bottom:234.071286pt;}
.y17b{bottom:237.957686pt;}
.y19a{bottom:238.238780pt;}
.y11d{bottom:240.812246pt;}
.yd7{bottom:241.491638pt;}
.y136{bottom:241.537974pt;}
.y107{bottom:243.790838pt;}
.y3f{bottom:245.021558pt;}
.y2a{bottom:245.743574pt;}
.y14b{bottom:247.280214pt;}
.yec{bottom:248.803286pt;}
.ya1{bottom:253.668021pt;}
.y6a{bottom:254.071285pt;}
.y15a{bottom:254.803669pt;}
.y10{bottom:259.304053pt;}
.y11c{bottom:259.812245pt;}
.yd6{bottom:260.491637pt;}
.y199{bottom:261.238780pt;}
.y135{bottom:261.537973pt;}
.y17a{bottom:263.957685pt;}
.y3e{bottom:265.021557pt;}
.y29{bottom:265.743573pt;}
.y14a{bottom:267.280213pt;}
.y106{bottom:267.790837pt;}
.yeb{bottom:270.803285pt;}
.y69{bottom:274.071285pt;}
.ya0{bottom:275.668021pt;}
.y11b{bottom:278.812244pt;}
.y134{bottom:281.537972pt;}
.y1ad{bottom:281.820532pt;}
.yd5{bottom:282.491636pt;}
.y198{bottom:284.238779pt;}
.y3d{bottom:285.021556pt;}
.y28{bottom:285.743572pt;}
.y1cc{bottom:285.817972pt;}
.y149{bottom:287.280212pt;}
.yf{bottom:288.304052pt;}
.y179{bottom:289.957684pt;}
.y105{bottom:291.790836pt;}
.yea{bottom:292.803284pt;}
.y68{bottom:294.071284pt;}
.y1ac{bottom:296.820532pt;}
.y9f{bottom:297.668020pt;}
.y11a{bottom:297.812244pt;}
.y159{bottom:299.465076pt;}
.y133{bottom:301.537971pt;}
.y3c{bottom:304.021555pt;}
.y1cb{bottom:304.817971pt;}
.y27{bottom:305.743571pt;}
.y197{bottom:307.238778pt;}
.y148{bottom:307.280211pt;}
.y1ab{bottom:311.820531pt;}
.y67{bottom:314.071283pt;}
.ye9{bottom:314.803283pt;}
.y178{bottom:315.957683pt;}
.y119{bottom:316.812243pt;}
.ycb{bottom:318.390771pt;}
.y9e{bottom:319.668019pt;}
.y158{bottom:321.465075pt;}
.y132{bottom:321.537971pt;}
.y16{bottom:325.691794pt;}
.y147{bottom:327.280210pt;}
.y196{bottom:330.238777pt;}
.y66{bottom:334.071282pt;}
.y104{bottom:335.500690pt;}
.y1ca{bottom:335.786386pt;}
.yca{bottom:339.390770pt;}
.y131{bottom:341.537970pt;}
.y9d{bottom:341.668018pt;}
.y26{bottom:341.743570pt;}
.y177{bottom:341.957682pt;}
.y157{bottom:343.465074pt;}
.y1aa{bottom:346.820530pt;}
.y146{bottom:347.280210pt;}
.y1c9{bottom:350.786385pt;}
.yf8{bottom:352.168817pt;}
.y195{bottom:353.238776pt;}
.y65{bottom:354.071281pt;}
.yc9{bottom:360.390769pt;}
.y103{bottom:361.500689pt;}
.y1a9{bottom:361.820529pt;}
.y9c{bottom:363.668017pt;}
.y156{bottom:365.465073pt;}
.y1c8{bottom:365.786385pt;}
.y145{bottom:367.280209pt;}
.y176{bottom:367.957681pt;}
.y130{bottom:370.493905pt;}
.y64{bottom:374.071280pt;}
.y194{bottom:376.238775pt;}
.y1a8{bottom:376.820528pt;}
.y128{bottom:376.861168pt;}
.y1c7{bottom:380.786384pt;}
.yc8{bottom:381.390768pt;}
.y16b{bottom:384.914984pt;}
.y9b{bottom:385.668016pt;}
.y144{bottom:387.280208pt;}
.y155{bottom:387.465072pt;}
.y12f{bottom:390.493904pt;}
.y1a7{bottom:392.820528pt;}
.y175{bottom:393.957680pt;}
.y63{bottom:394.071280pt;}
.y22{bottom:396.588889pt;}
.y193{bottom:399.238774pt;}
.y169{bottom:401.957871pt;}
.yc7{bottom:402.390767pt;}
.yf7{bottom:405.168815pt;}
.y143{bottom:407.280207pt;}
.y9a{bottom:407.668015pt;}
.y154{bottom:409.465071pt;}
.y12e{bottom:410.493903pt;}
.y62{bottom:414.071279pt;}
.y1c6{bottom:416.629787pt;}
.y21{bottom:418.588888pt;}
.y174{bottom:419.957679pt;}
.y168{bottom:421.957870pt;}
.y192{bottom:422.238773pt;}
.y142{bottom:427.280206pt;}
.y99{bottom:429.668014pt;}
.y12d{bottom:430.493902pt;}
.y153{bottom:431.465070pt;}
.yd4{bottom:433.110830pt;}
.y1c5{bottom:433.629787pt;}
.y20{bottom:440.588887pt;}
.y167{bottom:441.957870pt;}
.y191{bottom:445.238772pt;}
.y173{bottom:445.957677pt;}
.y141{bottom:447.280205pt;}
.y12c{bottom:450.493901pt;}
.y98{bottom:451.668013pt;}
.y1c4{bottom:452.629786pt;}
.y152{bottom:453.465069pt;}
.y61{bottom:454.071277pt;}
.yf6{bottom:458.168813pt;}
.y166{bottom:461.957869pt;}
.y118{bottom:462.535450pt;}
.y1f{bottom:462.588886pt;}
.y190{bottom:468.238771pt;}
.yc6{bottom:468.247468pt;}
.y12b{bottom:470.493900pt;}
.y172{bottom:471.957676pt;}
.y97{bottom:473.668012pt;}
.y86{bottom:475.675996pt;}
.y165{bottom:481.957868pt;}
.y117{bottom:484.535449pt;}
.y1e{bottom:484.588885pt;}
.y1c3{bottom:486.629785pt;}
.y18f{bottom:491.238770pt;}
.y60{bottom:494.104783pt;}
.y96{bottom:495.668011pt;}
.y85{bottom:497.675995pt;}
.y171{bottom:497.957675pt;}
.y4c{bottom:501.198248pt;}
.y164{bottom:501.957867pt;}
.y1c2{bottom:505.629784pt;}
.y116{bottom:506.535448pt;}
.y1d{bottom:506.588884pt;}
.y5f{bottom:514.104782pt;}
.y18e{bottom:514.238769pt;}
.y95{bottom:517.668010pt;}
.y140{bottom:519.559313pt;}
.y4b{bottom:519.665772pt;}
.y84{bottom:519.675994pt;}
.y163{bottom:521.957866pt;}
.y170{bottom:523.957674pt;}
.y1c1{bottom:524.629783pt;}
.y12a{bottom:526.017546pt;}
.y115{bottom:528.535447pt;}
.y1c{bottom:528.588884pt;}
.y5e{bottom:534.104781pt;}
.y18d{bottom:537.238768pt;}
.y4a{bottom:538.133296pt;}
.y94{bottom:539.668010pt;}
.y83{bottom:541.675993pt;}
.y162{bottom:541.957865pt;}
.y1c0{bottom:543.629782pt;}
.y13f{bottom:544.559312pt;}
.y16f{bottom:549.957673pt;}
.y114{bottom:550.535446pt;}
.y1b{bottom:550.588883pt;}
.yff{bottom:551.001305pt;}
.y5d{bottom:554.104780pt;}
.y49{bottom:556.600821pt;}
.y18c{bottom:560.238767pt;}
.y93{bottom:561.668009pt;}
.y82{bottom:563.675993pt;}
.yba{bottom:566.951461pt;}
.y13e{bottom:569.559311pt;}
.y113{bottom:572.535445pt;}
.y1a{bottom:572.588882pt;}
.y5c{bottom:574.104779pt;}
.yfe{bottom:575.001304pt;}
.y16e{bottom:575.957672pt;}
.y1bf{bottom:577.629781pt;}
.y18b{bottom:583.238766pt;}
.y81{bottom:585.675992pt;}
.yb9{bottom:588.951460pt;}
.y5b{bottom:594.104778pt;}
.y112{bottom:594.535444pt;}
.y13d{bottom:594.559310pt;}
.y19{bottom:594.588881pt;}
.y1be{bottom:596.629780pt;}
.yfd{bottom:599.001303pt;}
.y89{bottom:601.808919pt;}
.y16d{bottom:601.957671pt;}
.y18a{bottom:606.238765pt;}
.ye8{bottom:606.292710pt;}
.y80{bottom:607.675991pt;}
.yb8{bottom:610.951459pt;}
.y5a{bottom:614.104778pt;}
.y1bd{bottom:615.629779pt;}
.y111{bottom:616.535443pt;}
.y18{bottom:616.588880pt;}
.yfc{bottom:623.001302pt;}
.y16c{bottom:627.957670pt;}
.y189{bottom:629.238764pt;}
.ye7{bottom:629.396749pt;}
.y7f{bottom:629.675990pt;}
.y88{bottom:630.808918pt;}
.yb7{bottom:632.951458pt;}
.y59{bottom:634.104777pt;}
.y110{bottom:638.535442pt;}
.yfb{bottom:647.001301pt;}
.y1bc{bottom:649.629778pt;}
.ye6{bottom:651.382676pt;}
.y7e{bottom:651.675989pt;}
.y58{bottom:654.104776pt;}
.y10f{bottom:660.535441pt;}
.yb3{bottom:667.523351pt;}
.y1bb{bottom:668.629777pt;}
.ye5{bottom:673.368603pt;}
.y7d{bottom:673.675988pt;}
.y57{bottom:674.104775pt;}
.y10e{bottom:682.535440pt;}
.y1ba{bottom:687.629776pt;}
.yfa{bottom:688.683642pt;}
.yb2{bottom:689.523350pt;}
.y56{bottom:694.104774pt;}
.ye4{bottom:695.354530pt;}
.y8{bottom:695.415440pt;}
.y7c{bottom:695.675987pt;}
.y10d{bottom:704.535439pt;}
.y1b9{bottom:706.629775pt;}
.y92{bottom:708.328761pt;}
.yb1{bottom:711.523350pt;}
.y55{bottom:714.104773pt;}
.yf9{bottom:714.683641pt;}
.ye3{bottom:716.222344pt;}
.y7b{bottom:717.675986pt;}
.y7{bottom:725.415439pt;}
.y1b8{bottom:725.629775pt;}
.y10c{bottom:726.535439pt;}
.y91{bottom:730.328760pt;}
.yb0{bottom:733.523349pt;}
.y54{bottom:734.104773pt;}
.y16a{bottom:735.663968pt;}
.y3a{bottom:737.079812pt;}
.yc5{bottom:737.121569pt;}
.ye{bottom:737.194968pt;}
.y1a2{bottom:738.702196pt;}
.ye2{bottom:739.326384pt;}
.y7a{bottom:739.675985pt;}
.y1b7{bottom:744.629774pt;}
.y10b{bottom:748.535438pt;}
.y182{bottom:752.118369pt;}
.y90{bottom:752.328759pt;}
.y53{bottom:754.104772pt;}
.yaf{bottom:755.523348pt;}
.yc4{bottom:757.121568pt;}
.y39{bottom:759.079812pt;}
.ye1{bottom:761.312310pt;}
.y79{bottom:761.675984pt;}
.y6{bottom:764.560944pt;}
.y10a{bottom:770.535437pt;}
.y151{bottom:770.990653pt;}
.y52{bottom:774.104771pt;}
.y8f{bottom:774.328758pt;}
.yc3{bottom:777.121568pt;}
.yae{bottom:777.523347pt;}
.y38{bottom:781.079811pt;}
.ye0{bottom:783.298237pt;}
.y78{bottom:783.675983pt;}
.y51{bottom:794.104770pt;}
.y150{bottom:795.990652pt;}
.y8e{bottom:796.328757pt;}
.yc2{bottom:797.121567pt;}
.yad{bottom:799.523346pt;}
.y37{bottom:803.079810pt;}
.ydf{bottom:805.284164pt;}
.y5{bottom:805.560942pt;}
.y77{bottom:805.675982pt;}
.yc1{bottom:817.121566pt;}
.y8d{bottom:818.328756pt;}
.y50{bottom:820.379009pt;}
.yac{bottom:821.523345pt;}
.y36{bottom:825.079809pt;}
.yde{bottom:827.270091pt;}
.y76{bottom:827.675982pt;}
.yc0{bottom:837.121565pt;}
.y8c{bottom:840.328755pt;}
.y17{bottom:840.538145pt;}
.y127{bottom:840.610413pt;}
.y35{bottom:847.079808pt;}
.y4f{bottom:849.379008pt;}
.y75{bottom:849.675981pt;}
.ydd{bottom:852.135347pt;}
.ybf{bottom:857.121564pt;}
.y8b{bottom:862.328754pt;}
.y1a6{bottom:864.345004pt;}
.y34{bottom:869.079807pt;}
.y102{bottom:869.295746pt;}
.y74{bottom:871.675980pt;}
.y188{bottom:876.118383pt;}
.ybe{bottom:877.121563pt;}
.y1a5{bottom:883.345003pt;}
.y8a{bottom:884.328754pt;}
.yb5{bottom:887.779640pt;}
.y33{bottom:891.079806pt;}
.ybd{bottom:897.121563pt;}
.y101{bottom:900.295745pt;}
.y1ae{bottom:900.480056pt;}
.y185{bottom:910.180490pt;}
.y32{bottom:913.079805pt;}
.y73{bottom:916.772442pt;}
.yab{bottom:916.779639pt;}
.ybc{bottom:917.121562pt;}
.y1a4{bottom:920.960269pt;}
.yd{bottom:921.536715pt;}
.y161{bottom:931.189356pt;}
.y100{bottom:931.295744pt;}
.y31{bottom:935.079804pt;}
.y184{bottom:938.180489pt;}
.y72{bottom:945.772441pt;}
.yaa{bottom:945.779637pt;}
.y1a3{bottom:948.948292pt;}
.yc{bottom:954.536713pt;}
.y160{bottom:959.189355pt;}
.y183{bottom:966.180488pt;}
.y4d{bottom:970.210740pt;}
.yb6{bottom:970.506062pt;}
.ydc{bottom:970.787099pt;}
.yb{bottom:987.536712pt;}
.ydb{bottom:991.787098pt;}
.y1b6{bottom:1008.081467pt;}
.ya{bottom:1020.536710pt;}
.y187{bottom:1031.180487pt;}
.y4e{bottom:1032.950875pt;}
.y24{bottom:1032.951822pt;}
.ybb{bottom:1034.262623pt;}
.y129{bottom:1035.129880pt;}
.y1b5{bottom:1036.069490pt;}
.y9{bottom:1053.536709pt;}
.y186{bottom:1062.180486pt;}
.y23{bottom:1063.951821pt;}
.y1b4{bottom:1064.057513pt;}
.h4a{height:22.343996pt;}
.h4{height:28.991500pt;}
.h1f{height:32.500030pt;}
.h3{height:33.681586pt;}
.hb{height:35.519999pt;}
.h20{height:36.726561pt;}
.h18{height:40.123127pt;}
.h47{height:41.558397pt;}
.h3f{height:44.012415pt;}
.h17{height:44.214558pt;}
.hd{height:44.236669pt;}
.h28{height:44.668385pt;}
.h49{height:44.908782pt;}
.h12{height:45.739197pt;}
.ha{height:46.346013pt;}
.h25{height:46.374998pt;}
.h3e{height:46.761269pt;}
.h42{height:47.980797pt;}
.h16{height:48.225837pt;}
.h14{height:48.255998pt;}
.h2a{height:49.673758pt;}
.h11{height:49.888797pt;}
.h2d{height:49.910398pt;}
.he{height:49.919998pt;}
.h46{height:49.979997pt;}
.h24{height:50.229920pt;}
.h44{height:51.060878pt;}
.h31{height:52.128638pt;}
.h3b{height:52.237118pt;}
.h26{height:52.267278pt;}
.h1d{height:52.799998pt;}
.h43{height:52.821598pt;}
.h2c{height:52.991998pt;}
.h13{height:53.759998pt;}
.h39{height:54.038398pt;}
.h1a{height:55.039998pt;}
.h34{height:55.999998pt;}
.h19{height:56.278558pt;}
.h29{height:57.571198pt;}
.h35{height:58.187998pt;}
.hc{height:61.794685pt;}
.h3c{height:64.535677pt;}
.h30{height:65.309997pt;}
.h27{height:67.335837pt;}
.h45{height:67.363173pt;}
.h8{height:67.391997pt;}
.h33{height:68.342557pt;}
.h1e{height:70.980797pt;}
.h1c{height:72.323677pt;}
.h21{height:74.848797pt;}
.h3d{height:75.686037pt;}
.h41{height:78.350997pt;}
.h37{height:78.380397pt;}
.h7{height:78.623997pt;}
.h9{height:78.791677pt;}
.h1b{height:78.883997pt;}
.h2f{height:78.913597pt;}
.h23{height:79.029597pt;}
.h15{height:80.376397pt;}
.h32{height:80.406557pt;}
.h2b{height:82.358637pt;}
.hf{height:83.147997pt;}
.h6{height:84.982184pt;}
.h36{height:89.181836pt;}
.h22{height:108.405435pt;}
.h5{height:112.263835pt;}
.h48{height:112.271955pt;}
.h3a{height:121.178715pt;}
.h2e{height:132.577598pt;}
.h40{height:138.462477pt;}
.h38{height:188.512912pt;}
.h10{height:286.065498pt;}
.h1{height:1122.666667pt;}
.h2{height:1122.999953pt;}
.h0{height:1122.999972pt;}
.w1{width:793.999967pt;}
.w0{width:794.000000pt;}
.x0{left:0.000000pt;}
.x3b{left:7.694967pt;}
.x9{left:9.052187pt;}
.x8{left:10.869569pt;}
.x1a{left:12.207103pt;}
.xa{left:14.119568pt;}
.x40{left:15.969166pt;}
.xb{left:18.130955pt;}
.x5{left:20.057416pt;}
.x29{left:21.424667pt;}
.x3{left:22.767462pt;}
.x1e{left:24.023886pt;}
.x2d{left:26.288260pt;}
.x30{left:30.222048pt;}
.x45{left:32.509184pt;}
.x7{left:37.025945pt;}
.x52{left:39.689622pt;}
.x1f{left:44.810774pt;}
.x1c{left:46.377991pt;}
.x48{left:52.224751pt;}
.x2a{left:53.600096pt;}
.x2b{left:55.173611pt;}
.x2c{left:56.747127pt;}
.x2e{left:58.320642pt;}
.x2f{left:59.894157pt;}
.x51{left:73.582256pt;}
.x6{left:79.370073pt;}
.x3c{left:90.213737pt;}
.xf{left:119.161427pt;}
.x4b{left:124.346561pt;}
.x1b{left:128.822993pt;}
.x3f{left:136.453559pt;}
.x1{left:138.711751pt;}
.x4e{left:145.703759pt;}
.x4a{left:150.877810pt;}
.x4d{left:153.422508pt;}
.x56{left:155.567114pt;}
.x4c{left:158.594383pt;}
.x17{left:163.576496pt;}
.x13{left:167.356028pt;}
.x4{left:173.658081pt;}
.xd{left:175.888802pt;}
.x14{left:180.066847pt;}
.x49{left:183.705934pt;}
.x10{left:190.265208pt;}
.x46{left:193.425246pt;}
.x25{left:196.683351pt;}
.x15{left:204.988721pt;}
.x3e{left:205.921227pt;}
.x24{left:209.030420pt;}
.x11{left:215.187082pt;}
.x36{left:217.341943pt;}
.x18{left:226.881005pt;}
.x20{left:227.845635pt;}
.x4f{left:230.400614pt;}
.xe{left:231.426493pt;}
.x31{left:232.659855pt;}
.x3d{left:243.853116pt;}
.x53{left:247.897402pt;}
.x47{left:249.310303pt;}
.x57{left:289.090359pt;}
.x58{left:290.825885pt;}
.x22{left:297.431140pt;}
.x23{left:302.401509pt;}
.x35{left:317.847369pt;}
.x27{left:321.017956pt;}
.x16{left:331.861001pt;}
.x43{left:351.345806pt;}
.x21{left:367.967953pt;}
.x38{left:371.056820pt;}
.x34{left:380.300451pt;}
.x42{left:388.447171pt;}
.x32{left:390.800451pt;}
.x3a{left:399.987523pt;}
.x41{left:409.191273pt;}
.x19{left:414.058655pt;}
.x44{left:425.553537pt;}
.x50{left:463.133965pt;}
.x33{left:471.550448pt;}
.x37{left:486.885721pt;}
.x54{left:490.277752pt;}
.x55{left:504.262127pt;}
.x28{left:508.236703pt;}
.xc{left:530.118141pt;}
.x2{left:672.780084pt;}
.x59{left:685.832387pt;}
.x26{left:742.223329pt;}
.x39{left:745.397473pt;}
.x12{left:748.491233pt;}
.x1d{left:749.389665pt;}
}




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