
    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_5f8aa509789b3feec5da030f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.035156;font-style:normal;font-weight: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_943e2356c99319c9bc9b5415.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.217000;font-style:normal;font-weight: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_cfdf18c3b43409f479aca88a.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.133000;font-style:normal;font-weight: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_2551885be58e18392c077e43.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.133000;font-style:normal;font-weight: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_21cc865b5b3181509167bddf.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.263000;font-style:normal;font-weight: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_72cbcdef66f7f66edc111d71.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.217000;font-style:normal;font-weight: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_50a7cff37dfabfb5616965fc.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.003906;font-style:normal;font-weight: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_112cd12d449d31d8f63e2c02.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_5ad189b37a58e274b8a07206.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.739746;font-style:normal;font-weight: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_890086e563b90265e8f5b26f.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.197000;font-style:normal;font-weight: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_cf5b54b838ee9f69dcdff9c4.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.739746;font-style:normal;font-weight: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_bd4663d15e28761096fe11f4.woff2')format("woff");}.ffc{font-family:ffc;line-height:1.263000;font-style:normal;font-weight: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_6d76e00b5d1dce17480d6c58.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.197000;font-style:normal;font-weight: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_7dde66ac38037eb00057d16f.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_1886f6f8ba46bc8d94511e77.woff2')format("woff");}.fff{font-family:fff;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_2adea9e9e40cd6f7a662d6a3.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff11;src:url('chunks/assets/font_63cb1b43496fa6a9ad44f5a7.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.100500;font-style:normal;font-weight: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_a0ca4456622f35a56a6f153d.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff13;src:url('chunks/assets/font_201c89ad3d379d6732947252.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_edeaced94117a1701899b2cc.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.100500;font-style:normal;font-weight: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_d48a14ff1310a722105a9e17.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.856934;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_6bb25f9f24f0d31f4669f7c6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.871094;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff17;src:url('chunks/assets/font_914ade5b80f55be598efcd83.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.861816;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_ef4fbf33ddf2f30f8599114f.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.895996;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff19;src:url('chunks/assets/font_80d4df49e56fa5936ff6b76b.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.049000;font-style:normal;font-weight: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_2e671990099f28a5da26855b.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.981000;font-style:normal;font-weight: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_6d35d27daea8dc8410a0524e.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_c8c345530058ec7f111d3d3f.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.049000;font-style:normal;font-weight: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_22ee6991318a387c62e41545.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.952000;font-style:normal;font-weight: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_c5fe135003c7c82620c00004.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.995117;font-style:normal;font-weight: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_ef94d61260944f1e9b18541c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.875000;font-style:normal;font-weight: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_be41e7114a63dfe9122e072f.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.799000;font-style:normal;font-weight: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_3df13b17edd211df8c9472b0.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.947000;font-style:normal;font-weight: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_c4562a219e278950dbb35de9.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.987000;font-style:normal;font-weight: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_fb12000427c603c075d8649f.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.947000;font-style:normal;font-weight: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_b9ba20f9e283de1f54fc57be.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_871ff3de4e88dca4a861819c.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_c0cb8c68a13c36174f03f783.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.010000;font-style:normal;font-weight: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_a3fa03526c8a7925f0fdb4e0.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.987000;font-style:normal;font-weight: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_68436ce991868c2e6787a659.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.997000;font-style:normal;font-weight: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_f41f128798fcdf62266dc314.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_fb404e2d6a87510642a88a4d.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.049000;font-style:normal;font-weight: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_3e3200fc9a8dd9bc471cd51e.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_10f3a78c33de21bd128162b2.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.947000;font-style:normal;font-weight: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_4d795f09042ae8b1b2d09f33.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_b5b92b3ecbe8c31a7c1257f9.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.128000;font-style:normal;font-weight: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_25ae548c372714b14314222a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.313477;font-style:normal;font-weight: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_17d397610b3168025d969787.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.666000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v1{vertical-align:-4.248000px;}
.v0{vertical-align:0.000000px;}
.v2{vertical-align:19.098600px;}
.ls29{letter-spacing:-0.708869px;}
.ls2b{letter-spacing:-0.360000px;}
.ls1c{letter-spacing:-0.190200px;}
.ls24{letter-spacing:-0.137400px;}
.lsd{letter-spacing:-0.103800px;}
.ls1d{letter-spacing:-0.029520px;}
.ls17{letter-spacing:-0.021600px;}
.ls4{letter-spacing:0.000000px;}
.ls19{letter-spacing:0.021600px;}
.lsc{letter-spacing:0.026640px;}
.ls28{letter-spacing:0.039622px;}
.ls16{letter-spacing:0.097800px;}
.lsf{letter-spacing:0.098400px;}
.ls21{letter-spacing:0.120000px;}
.lse{letter-spacing:0.135600px;}
.ls0{letter-spacing:0.182880px;}
.ls5{letter-spacing:0.184800px;}
.ls25{letter-spacing:0.195000px;}
.ls27{letter-spacing:0.278400px;}
.ls8{letter-spacing:0.291000px;}
.lsb{letter-spacing:0.298800px;}
.ls1a{letter-spacing:0.303600px;}
.ls2{letter-spacing:0.318000px;}
.ls1{letter-spacing:0.360000px;}
.ls15{letter-spacing:0.720000px;}
.ls1e{letter-spacing:1.008000px;}
.ls2c{letter-spacing:2.808000px;}
.ls18{letter-spacing:3.062880px;}
.ls26{letter-spacing:4.661280px;}
.ls22{letter-spacing:10.262880px;}
.ls1b{letter-spacing:12.581280px;}
.ls14{letter-spacing:13.301280px;}
.ls23{letter-spacing:15.302880px;}
.ls3{letter-spacing:20.412000px;}
.ls1f{letter-spacing:24.662880px;}
.ls20{letter-spacing:26.822880px;}
.ls11{letter-spacing:29.837280px;}
.ls13{letter-spacing:44.562720px;}
.ls12{letter-spacing:56.802720px;}
.lsa{letter-spacing:68.688000px;}
.ls9{letter-spacing:74.448000px;}
.ls7{letter-spacing:86.688000px;}
.ls6{letter-spacing:200.342880px;}
.ls2d{letter-spacing:801.625800px;}
.ls10{letter-spacing:849.216000px;}
.ls2a{letter-spacing:4378.464000px;}
.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;}
}
.ws16{word-spacing:-69.511042px;}
.ws22{word-spacing:-58.207381px;}
.ws17{word-spacing:-51.331157px;}
.ws20{word-spacing:-42.125344px;}
.ws18{word-spacing:-31.188000px;}
.ws15{word-spacing:-24.118320px;}
.wsc{word-spacing:-23.937720px;}
.ws4{word-spacing:-23.839920px;}
.wsf{word-spacing:-23.818320px;}
.ws12{word-spacing:-23.649720px;}
.ws26{word-spacing:-21.067901px;}
.ws1d{word-spacing:-20.340000px;}
.ws11{word-spacing:-17.215680px;}
.ws10{word-spacing:-16.933680px;}
.wse{word-spacing:-16.912080px;}
.ws1e{word-spacing:-16.854296px;}
.ws19{word-spacing:-16.272000px;}
.ws6{word-spacing:-15.948120px;}
.ws14{word-spacing:-15.852120px;}
.ws8{word-spacing:-15.792720px;}
.ws9{word-spacing:-15.755520px;}
.ws5{word-spacing:-15.683760px;}
.wsd{word-spacing:-15.657120px;}
.ws13{word-spacing:-15.627600px;}
.ws7{word-spacing:-15.553320px;}
.ws1b{word-spacing:-14.916000px;}
.ws27{word-spacing:-14.723643px;}
.ws25{word-spacing:-14.723522px;}
.ws2{word-spacing:-14.148000px;}
.wsa{word-spacing:-13.651920px;}
.ws28{word-spacing:-13.385130px;}
.ws23{word-spacing:-13.385020px;}
.ws24{word-spacing:-13.384685px;}
.ws21{word-spacing:-13.381697px;}
.ws0{word-spacing:-12.836880px;}
.ws1{word-spacing:-12.069120px;}
.ws1f{word-spacing:-12.046500px;}
.wsb{word-spacing:-11.884320px;}
.ws1c{word-spacing:-2.808000px;}
.ws3{word-spacing:0.000000px;}
.ws1a{word-spacing:0.360000px;}
._8{margin-left:-199.862880px;}
._7{margin-left:-181.743360px;}
._25{margin-left:-25.627200px;}
._23{margin-left:-24.500160px;}
._28{margin-left:-18.167659px;}
._27{margin-left:-15.685121px;}
._d{margin-left:-14.383920px;}
._e{margin-left:-12.605280px;}
._b{margin-left:-11.288160px;}
._9{margin-left:-9.897120px;}
._c{margin-left:-6.859440px;}
._29{margin-left:-5.212800px;}
._16{margin-left:-3.235680px;}
._12{margin-left:-2.168640px;}
._1{margin-left:-1.041120px;}
._0{width:1.344720px;}
._f{width:2.585520px;}
._2{width:4.078080px;}
._14{width:5.952960px;}
._18{width:7.366560px;}
._17{width:8.845200px;}
._15{width:10.846320px;}
._1b{width:11.892480px;}
._10{width:13.789440px;}
._13{width:15.594480px;}
._19{width:17.118720px;}
._1a{width:18.416160px;}
._3{width:20.196000px;}
._4{width:21.279120px;}
._11{width:22.723200px;}
._1d{width:23.928960px;}
._1c{width:25.099200px;}
._22{width:26.413920px;}
._21{width:27.609120px;}
._24{width:28.968000px;}
._26{width:29.993040px;}
._5{width:31.374000px;}
._6{width:32.898000px;}
._1f{width:35.736480px;}
._1e{width:36.812160px;}
._20{width:39.322080px;}
._a{width:200.318880px;}
.fc12{color:rgb(244,244,244);}
.fc11{color:rgb(204,56,47);}
.fc10{color:rgb(248,72,94);}
.fce{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fc7{color:rgb(255,249,244);}
.fc1{color:rgb(129,180,226);}
.fcb{color:rgb(10,154,154);}
.fc3{color:rgb(48,111,182);}
.fc13{color:rgb(83,60,66);}
.fcd{color:rgb(2,2,3);}
.fc4{color:rgb(3,72,96);}
.fcf{color:rgb(0,70,81);}
.fca{color:rgb(1,1,1);}
.fc9{color:rgb(84,86,91);}
.fc5{color:transparent;}
.fc2{color:rgb(68,113,196);}
.fc6{color:rgb(5,99,193);}
.fc8{color:rgb(233,74,97);}
.fcc{color:rgb(6,154,154);}
.fs8{font-size:19.690800px;}
.fs9{font-size:33.177600px;}
.fs7{font-size:43.131000px;}
.fs14{font-size:43.479523px;}
.fs3{font-size:45.360000px;}
.fs0{font-size:48.240000px;}
.fs15{font-size:53.081249px;}
.fs4{font-size:54.000000px;}
.fs17{font-size:54.020181px;}
.fs1{font-size:59.760000px;}
.fs1b{font-size:60.007609px;}
.fs25{font-size:60.021009px;}
.fs1f{font-size:60.022510px;}
.fs29{font-size:60.023005px;}
.fs12{font-size:66.000000px;}
.fs24{font-size:66.023614px;}
.fs1e{font-size:66.024761px;}
.fs1a{font-size:66.024909px;}
.fs28{font-size:66.025306px;}
.fs6{font-size:72.000000px;}
.fs16{font-size:72.026908px;}
.fs13{font-size:72.027138px;}
.fs19{font-size:72.027173px;}
.fs26{font-size:72.197154px;}
.fs22{font-size:72.197291px;}
.fse{font-size:83.329800px;}
.fs5{font-size:84.240000px;}
.fs11{font-size:90.000000px;}
.fs1d{font-size:90.033766px;}
.fs23{font-size:90.034021px;}
.fs27{font-size:90.034508px;}
.fs20{font-size:96.032797px;}
.fs1c{font-size:120.015219px;}
.fs21{font-size:120.040991px;}
.fsa{font-size:121.522800px;}
.fsf{font-size:124.995000px;}
.fs10{font-size:138.000000px;}
.fsc{font-size:138.883200px;}
.fsd{font-size:166.659600px;}
.fs2{font-size:167.760000px;}
.fs18{font-size:180.022837px;}
.fsb{font-size:225.685200px;}
.y0{bottom:0.000000px;}
.y1c1{bottom:0.000016px;}
.y19{bottom:9.540000px;}
.y39{bottom:9.720000px;}
.y1f9{bottom:12.403159px;}
.y31{bottom:12.780000px;}
.y32{bottom:15.660000px;}
.y7{bottom:17.100000px;}
.y3{bottom:17.280000px;}
.y21d{bottom:22.910809px;}
.y37{bottom:30.060000px;}
.y3b{bottom:30.240000px;}
.y135{bottom:48.008045px;}
.y2{bottom:48.240000px;}
.y42{bottom:50.580000px;}
.y48{bottom:50.625000px;}
.y36{bottom:50.760000px;}
.y138{bottom:52.651505px;}
.y1d9{bottom:54.201398px;}
.y14a{bottom:54.885750px;}
.y239{bottom:57.717677px;}
.y137{bottom:58.032016px;}
.y134{bottom:58.381050px;}
.y13e{bottom:58.512466px;}
.y13c{bottom:58.512685px;}
.y13a{bottom:58.606216px;}
.y21c{bottom:63.178258px;}
.y136{bottom:63.417450px;}
.y13d{bottom:63.897900px;}
.y13b{bottom:63.898119px;}
.y139{bottom:63.991650px;}
.y6{bottom:70.956000px;}
.y44{bottom:71.100000px;}
.y47{bottom:71.145000px;}
.y35{bottom:71.280000px;}
.y133{bottom:71.320350px;}
.y1d8{bottom:74.459030px;}
.y1f8{bottom:76.427170px;}
.y253{bottom:76.844100px;}
.y21b{bottom:84.062309px;}
.y5{bottom:85.536000px;}
.y34{bottom:91.800000px;}
.y3f{bottom:91.980000px;}
.y1a5{bottom:92.491050px;}
.y1d7{bottom:94.716663px;}
.y1c0{bottom:95.024400px;}
.y1f7{bottom:97.435048px;}
.y21a{bottom:104.946359px;}
.y180{bottom:107.578050px;}
.y3e{bottom:112.500000px;}
.y1a4{bottom:114.091050px;}
.y1dc{bottom:114.465753px;}
.y1bf{bottom:114.824400px;}
.y1d6{bottom:114.974295px;}
.y252{bottom:117.234580px;}
.y13f{bottom:117.953550px;}
.y1f6{bottom:118.442927px;}
.y164{bottom:118.971300px;}
.y238{bottom:121.741688px;}
.yfe{bottom:122.436000px;}
.y219{bottom:125.830409px;}
.y17f{bottom:127.378050px;}
.yb1{bottom:130.176000px;}
.y3d{bottom:133.020000px;}
.y1be{bottom:134.624400px;}
.y1d5{bottom:135.231928px;}
.y4c{bottom:136.296000px;}
.y251{bottom:138.242632px;}
.ya0{bottom:138.636000px;}
.y1f5{bottom:139.450806px;}
.y163{bottom:140.571300px;}
.y1a3{bottom:141.091050px;}
.yfd{bottom:142.056000px;}
.y237{bottom:142.749566px;}
.y20{bottom:146.376000px;}
.y17e{bottom:148.978050px;}
.ycc{bottom:149.796000px;}
.y218{bottom:150.841247px;}
.y12b{bottom:154.110000px;}
.y1bd{bottom:154.424400px;}
.y1d4{bottom:155.489561px;}
.y9f{bottom:158.430000px;}
.y4b{bottom:161.310000px;}
.yb0{bottom:161.850000px;}
.y1a2{bottom:162.691050px;}
.y250{bottom:163.377266px;}
.y236{bottom:163.757445px;}
.y1f4{bottom:164.460185px;}
.ye3{bottom:165.990000px;}
.y162{bottom:167.571300px;}
.y217{bottom:171.725297px;}
.y131{bottom:173.910000px;}
.y1bc{bottom:174.224400px;}
.y17d{bottom:175.978050px;}
.y9e{bottom:178.050000px;}
.yaf{bottom:181.650000px;}
.y1a1{bottom:184.291050px;}
.y1f{bottom:184.350000px;}
.y24f{bottom:184.385318px;}
.y149{bottom:185.043450px;}
.y1f3{bottom:185.468064px;}
.ye2{bottom:185.610000px;}
.y12a{bottom:185.790000px;}
.y4a{bottom:186.330000px;}
.y235{bottom:188.766824px;}
.y161{bottom:189.171300px;}
.y216{bottom:192.609347px;}
.y75{bottom:193.170000px;}
.y130{bottom:193.530000px;}
.y17c{bottom:197.578050px;}
.y9d{bottom:197.850000px;}
.yae{bottom:201.270000px;}
.y24e{bottom:205.393370px;}
.ye1{bottom:205.410000px;}
.y129{bottom:205.590000px;}
.y1f2{bottom:206.475942px;}
.y1e{bottom:209.010000px;}
.y234{bottom:209.774703px;}
.y118{bottom:209.910000px;}
.y160{bottom:210.771300px;}
.y74{bottom:212.790000px;}
.ycb{bottom:213.330000px;}
.y215{bottom:217.620186px;}
.y9c{bottom:217.650000px;}
.y1a0{bottom:217.897050px;}
.y17b{bottom:219.178050px;}
.yad{bottom:221.070000px;}
.ye0{bottom:225.210000px;}
.y128{bottom:225.390000px;}
.y24d{bottom:226.401422px;}
.y1f1{bottom:227.483821px;}
.y117{bottom:229.530000px;}
.y233{bottom:230.782582px;}
.y49{bottom:232.050000px;}
.y73{bottom:232.590000px;}
.yca{bottom:233.130000px;}
.y1d{bottom:233.850000px;}
.y9b{bottom:237.270000px;}
.y214{bottom:238.504236px;}
.y17a{bottom:238.978050px;}
.y19f{bottom:239.497050px;}
.yac{bottom:240.690000px;}
.y1c6{bottom:242.737792px;}
.y15f{bottom:244.377300px;}
.ydf{bottom:244.830000px;}
.y127{bottom:245.010000px;}
.y24c{bottom:247.409474px;}
.y116{bottom:249.330000px;}
.y72{bottom:252.210000px;}
.y1f0{bottom:252.493200px;}
.yc9{bottom:252.750000px;}
.y232{bottom:255.791961px;}
.y9a{bottom:257.070000px;}
.y1c5{bottom:258.136789px;}
.y1c{bottom:258.510000px;}
.y213{bottom:259.388286px;}
.yab{bottom:260.490000px;}
.y19e{bottom:261.097050px;}
.y126{bottom:264.810000px;}
.y15e{bottom:265.977300px;}
.y179{bottom:265.978050px;}
.y115{bottom:269.130000px;}
.y71{bottom:272.010000px;}
.y24b{bottom:272.544107px;}
.yc8{bottom:272.550000px;}
.y1ef{bottom:273.501079px;}
.y1c4{bottom:273.535787px;}
.y99{bottom:276.690000px;}
.y231{bottom:276.799840px;}
.y19d{bottom:282.697050px;}
.y125{bottom:284.430000px;}
.y15d{bottom:287.577300px;}
.y178{bottom:287.578050px;}
.y114{bottom:288.750000px;}
.y1c3{bottom:288.934785px;}
.y70{bottom:291.810000px;}
.yaa{bottom:292.170000px;}
.y24a{bottom:293.552159px;}
.y1ee{bottom:294.508957px;}
.yde{bottom:296.310000px;}
.y1b{bottom:296.490000px;}
.y212{bottom:296.529381px;}
.y230{bottom:297.807718px;}
.y46{bottom:298.290000px;}
.y124{bottom:304.230000px;}
.y19c{bottom:304.297050px;}
.y1db{bottom:307.191345px;}
.y113{bottom:308.550000px;}
.y15c{bottom:309.177300px;}
.y177{bottom:309.178050px;}
.yc7{bottom:311.970000px;}
.y1a{bottom:312.510000px;}
.y1ed{bottom:315.516836px;}
.ydd{bottom:316.110000px;}
.y98{bottom:316.290000px;}
.y6f{bottom:323.490000px;}
.ya9{bottom:324.030000px;}
.y19b{bottom:325.897050px;}
.y112{bottom:328.170000px;}
.y249{bottom:330.691394px;}
.y15b{bottom:330.777300px;}
.y1c7{bottom:331.685652px;}
.yc6{bottom:331.770000px;}
.y22f{bottom:334.821600px;}
.ydc{bottom:335.730000px;}
.y97{bottom:335.910000px;}
.y1ec{bottom:336.524715px;}
.y211{bottom:336.796831px;}
.y18{bottom:337.575000px;}
.y176{bottom:342.784050px;}
.y6e{bottom:343.335000px;}
.yfc{bottom:343.695000px;}
.y19a{bottom:347.497050px;}
.y1da{bottom:347.706610px;}
.y111{bottom:348.015000px;}
.yc5{bottom:351.435000px;}
.y148{bottom:351.703050px;}
.y96{bottom:355.755000px;}
.y210{bottom:357.680881px;}
.y6d{bottom:362.955000px;}
.yfb{bottom:363.495000px;}
.y175{bottom:364.384050px;}
.ydb{bottom:367.635000px;}
.y123{bottom:367.815000px;}
.y199{bottom:369.097050px;}
.yc4{bottom:371.235000px;}
.y248{bottom:373.082641px;}
.y1eb{bottom:373.538596px;}
.y15a{bottom:373.977300px;}
.y22e{bottom:375.336794px;}
.y95{bottom:375.555000px;}
.y20f{bottom:378.564931px;}
.y17{bottom:378.615000px;}
.y110{bottom:379.695000px;}
.y6c{bottom:382.755000px;}
.y147{bottom:382.953418px;}
.yfa{bottom:383.295000px;}
.y45{bottom:385.095000px;}
.y174{bottom:385.984050px;}
.yda{bottom:387.255000px;}
.y122{bottom:387.435000px;}
.yc3{bottom:391.035000px;}
.y247{bottom:394.090693px;}
.y94{bottom:395.175000px;}
.y159{bottom:395.577300px;}
.y22d{bottom:396.344673px;}
.y10f{bottom:399.495000px;}
.y1ce{bottom:399.950492px;}
.yf9{bottom:402.915000px;}
.y20e{bottom:403.575769px;}
.yd9{bottom:407.055000px;}
.y121{bottom:407.235000px;}
.y173{bottom:407.584050px;}
.y16{bottom:409.035000px;}
.y198{bottom:412.297050px;}
.y1ea{bottom:414.053790px;}
.y6b{bottom:414.435000px;}
.y93{bottom:414.975000px;}
.y246{bottom:415.098745px;}
.y22c{bottom:417.352551px;}
.y1b3{bottom:420.087450px;}
.yc2{bottom:422.715000px;}
.y20d{bottom:424.459819px;}
.yd8{bottom:426.855000px;}
.y120{bottom:427.035000px;}
.y146{bottom:428.784808px;}
.y10e{bottom:431.175000px;}
.y197{bottom:433.897050px;}
.y6a{bottom:434.235000px;}
.y92{bottom:434.595000px;}
.y1e9{bottom:435.061669px;}
.y22b{bottom:438.360430px;}
.y158{bottom:438.777300px;}
.y15{bottom:439.455000px;}
.y245{bottom:440.233378px;}
.y1b2{bottom:441.687450px;}
.yf8{bottom:442.335000px;}
.y20c{bottom:445.343869px;}
.yd7{bottom:446.475000px;}
.y11f{bottom:446.655000px;}
.y172{bottom:448.984050px;}
.y43{bottom:451.335000px;}
.y1cd{bottom:452.845422px;}
.y69{bottom:453.855000px;}
.y91{bottom:454.395000px;}
.y1e8{bottom:456.069548px;}
.y157{bottom:460.377300px;}
.y244{bottom:461.241430px;}
.yf7{bottom:462.135000px;}
.y10d{bottom:463.035000px;}
.y22a{bottom:463.369809px;}
.y145{bottom:465.533250px;}
.yd6{bottom:466.275000px;}
.y11e{bottom:466.455000px;}
.y14{bottom:469.875000px;}
.y171{bottom:470.584050px;}
.y68{bottom:473.655000px;}
.ya8{bottom:474.195000px;}
.y20b{bottom:474.981713px;}
.y196{bottom:474.991050px;}
.y1e7{bottom:477.077426px;}
.yf6{bottom:481.935000px;}
.y156{bottom:481.977300px;}
.y243{bottom:482.249482px;}
.y10c{bottom:482.655000px;}
.y229{bottom:484.377688px;}
.y1b1{bottom:484.887450px;}
.y90{bottom:486.075000px;}
.y195{bottom:496.591050px;}
.yd5{bottom:497.955000px;}
.y20a{bottom:497.991684px;}
.y11d{bottom:498.135000px;}
.y1c2{bottom:499.280499px;}
.y1e6{bottom:502.086806px;}
.y10b{bottom:502.455000px;}
.y242{bottom:503.257534px;}
.y155{bottom:503.577300px;}
.y67{bottom:505.335000px;}
.y228{bottom:505.385566px;}
.y1cc{bottom:505.740351px;}
.y8f{bottom:505.875000px;}
.y13{bottom:506.235000px;}
.y1b0{bottom:506.487450px;}
.y170{bottom:511.984050px;}
.yf5{bottom:513.615000px;}
.y11c{bottom:517.935000px;}
.y209{bottom:521.001655px;}
.y10a{bottom:522.075000px;}
.y1e5{bottom:523.094684px;}
.y154{bottom:525.177300px;}
.ya7{bottom:525.675000px;}
.y227{bottom:526.393445px;}
.y1af{bottom:528.087450px;}
.y241{bottom:530.893126px;}
.yd4{bottom:531.795000px;}
.yf4{bottom:533.415000px;}
.y16f{bottom:533.584050px;}
.y8e{bottom:537.555000px;}
.y194{bottom:537.991050px;}
.y41{bottom:538.095000px;}
.y66{bottom:539.175000px;}
.y109{bottom:541.875000px;}
.y144{bottom:542.613000px;}
.y12{bottom:542.775000px;}
.y1e4{bottom:544.102563px;}
.yc1{bottom:545.295000px;}
.y153{bottom:546.777300px;}
.y18a{bottom:549.035400px;}
.y11b{bottom:549.615000px;}
.y208{bottom:551.014661px;}
.y240{bottom:553.901945px;}
.y226{bottom:554.153856px;}
.y16e{bottom:555.184050px;}
.ya6{bottom:557.355000px;}
.y193{bottom:559.591050px;}
.y108{bottom:561.675000px;}
.yc0{bottom:565.095000px;}
.y65{bottom:566.895000px;}
.y189{bottom:568.835400px;}
.y8d{bottom:569.415000px;}
.y1cb{bottom:570.773680px;}
.y1ae{bottom:571.287450px;}
.y1e3{bottom:571.862974px;}
.y16d{bottom:576.784050px;}
.y23f{bottom:576.910764px;}
.y12f{bottom:577.155000px;}
.y225{bottom:577.162485px;}
.y143{bottom:577.333800px;}
.y11{bottom:579.135000px;}
.y152{bottom:580.383300px;}
.y107{bottom:581.295000px;}
.ybf{bottom:584.895000px;}
.y8c{bottom:589.035000px;}
.y1ca{bottom:589.655734px;}
.y1ad{bottom:592.887450px;}
.y207{bottom:593.658141px;}
.y1e2{bottom:594.871603px;}
.y1fc{bottom:596.143458px;}
.y12e{bottom:596.775000px;}
.y16c{bottom:598.384050px;}
.y23e{bottom:599.919583px;}
.y224{bottom:600.171114px;}
.y192{bottom:600.991050px;}
.yd3{bottom:601.095000px;}
.y151{bottom:601.983300px;}
.y40{bottom:604.365000px;}
.yf3{bottom:604.545000px;}
.y1c9{bottom:608.537788px;}
.y8b{bottom:608.865000px;}
.y188{bottom:612.035400px;}
.y142{bottom:612.076630px;}
.y1ac{bottom:614.487450px;}
.y206{bottom:614.542191px;}
.ybe{bottom:616.605000px;}
.y2e{bottom:617.505000px;}
.y1e1{bottom:617.880232px;}
.y16b{bottom:619.984050px;}
.y10{bottom:620.925000px;}
.y191{bottom:622.591050px;}
.y23d{bottom:622.928401px;}
.y223{bottom:623.179743px;}
.y150{bottom:623.583300px;}
.yf2{bottom:624.345000px;}
.y8a{bottom:628.485000px;}
.y1c8{bottom:629.795729px;}
.y187{bottom:633.635400px;}
.y1bb{bottom:635.024400px;}
.y205{bottom:635.426241px;}
.y1ab{bottom:636.087450px;}
.y64{bottom:636.225000px;}
.y1fb{bottom:638.970908px;}
.yd2{bottom:640.545000px;}
.y1e0{bottom:640.888861px;}
.y16a{bottom:641.584050px;}
.yf1{bottom:643.965000px;}
.y190{bottom:644.191050px;}
.y14f{bottom:645.183300px;}
.y89{bottom:648.285000px;}
.y3c{bottom:649.905000px;}
.y23c{bottom:652.939904px;}
.y222{bottom:652.940904px;}
.y186{bottom:655.235400px;}
.y63{bottom:655.845000px;}
.y12d{bottom:656.025000px;}
.y204{bottom:656.310291px;}
.y1ba{bottom:656.624400px;}
.yd1{bottom:660.345000px;}
.yf0{bottom:663.765000px;}
.y1df{bottom:663.897490px;}
.y18f{bottom:665.791050px;}
.y14e{bottom:666.783300px;}
.y1fa{bottom:667.522541px;}
.y88{bottom:668.085000px;}
.y2d{bottom:668.625000px;}
.y141{bottom:669.344250px;}
.y185{bottom:676.835400px;}
.y203{bottom:677.694558px;}
.y1b9{bottom:678.224400px;}
.y1aa{bottom:679.287450px;}
.yf{bottom:679.785000px;}
.yd0{bottom:679.965000px;}
.yef{bottom:683.565000px;}
.y169{bottom:684.190050px;}
.y18e{bottom:687.391050px;}
.y62{bottom:687.525000px;}
.y87{bottom:687.705000px;}
.y1de{bottom:693.658651px;}
.y184{bottom:698.435400px;}
.ybd{bottom:699.765000px;}
.y1b8{bottom:699.824400px;}
.y2c{bottom:700.485000px;}
.y1a9{bottom:700.887450px;}
.y168{bottom:702.190050px;}
.yee{bottom:703.185000px;}
.y61{bottom:707.325000px;}
.y86{bottom:707.505000px;}
.y18d{bottom:708.991050px;}
.y14d{bottom:709.983300px;}
.y11a{bottom:711.825000px;}
.y23b{bottom:717.964827px;}
.y202{bottom:718.212116px;}
.ybc{bottom:719.565000px;}
.y1b7{bottom:721.424400px;}
.y132{bottom:721.545000px;}
.y1dd{bottom:725.170469px;}
.y1d3{bottom:725.247711px;}
.y140{bottom:726.633600px;}
.y60{bottom:727.125000px;}
.ya5{bottom:727.305000px;}
.y18c{bottom:730.591050px;}
.y106{bottom:731.445000px;}
.y14c{bottom:731.583300px;}
.y2b{bottom:732.165000px;}
.yed{bottom:735.045000px;}
.ye{bottom:738.645000px;}
.y85{bottom:739.185000px;}
.y183{bottom:741.635400px;}
.y1b6{bottom:743.024400px;}
.y1a8{bottom:744.087450px;}
.y167{bottom:744.796050px;}
.ya4{bottom:746.925000px;}
.y1d2{bottom:748.256392px;}
.y23a{bottom:749.476904px;}
.y201{bottom:749.600718px;}
.y105{bottom:751.245000px;}
.yec{bottom:754.665000px;}
.y5f{bottom:758.805000px;}
.y84{bottom:758.985000px;}
.y182{bottom:761.435400px;}
.y119{bottom:763.305000px;}
.y2a{bottom:763.845000px;}
.y1b5{bottom:764.624400px;}
.y1a7{bottom:765.687450px;}
.y166{bottom:766.396050px;}
.y1d1{bottom:771.265072px;}
.y5e{bottom:778.605000px;}
.ya3{bottom:778.785000px;}
.y18b{bottom:779.191050px;}
.y14b{bottom:780.183300px;}
.y104{bottom:782.925000px;}
.y181{bottom:783.035400px;}
.y1b4{bottom:786.224400px;}
.yeb{bottom:786.345000px;}
.y1a6{bottom:787.287450px;}
.y165{bottom:787.996050px;}
.y83{bottom:790.665000px;}
.y1d0{bottom:794.273752px;}
.y29{bottom:795.525000px;}
.yd{bottom:797.505000px;}
.y5d{bottom:798.225000px;}
.y3a{bottom:798.405000px;}
.y200{bottom:800.291327px;}
.y221{bottom:800.291491px;}
.y103{bottom:802.725000px;}
.yea{bottom:806.145000px;}
.ycf{bottom:810.465000px;}
.y5c{bottom:818.025000px;}
.ybb{bottom:818.205000px;}
.y1cf{bottom:818.657951px;}
.y1ff{bottom:822.299647px;}
.y220{bottom:822.299770px;}
.y82{bottom:822.345000px;}
.ye9{bottom:825.945000px;}
.y28{bottom:827.385000px;}
.ya2{bottom:830.085000px;}
.y81{bottom:842.145000px;}
.y1fe{bottom:844.307967px;}
.y21f{bottom:844.308048px;}
.ye8{bottom:845.565000px;}
.y5b{bottom:849.705000px;}
.yba{bottom:849.885000px;}
.y27{bottom:859.065000px;}
.y80{bottom:861.945000px;}
.yc{bottom:863.025000px;}
.ye7{bottom:865.365000px;}
.yb9{bottom:869.685000px;}
.y1fd{bottom:869.817610px;}
.y21e{bottom:869.817643px;}
.y5a{bottom:881.430000px;}
.y7f{bottom:881.610000px;}
.y38{bottom:885.210000px;}
.y12c{bottom:889.350000px;}
.y26{bottom:890.790000px;}
.yce{bottom:893.670000px;}
.y59{bottom:901.230000px;}
.y7e{bottom:901.410000px;}
.yb{bottom:902.490000px;}
.ye6{bottom:904.830000px;}
.ycd{bottom:913.470000px;}
.y58{bottom:921.030000px;}
.y7d{bottom:921.210000px;}
.y25{bottom:922.650000px;}
.y51{bottom:925.350000px;}
.y33{bottom:930.930000px;}
.yb8{bottom:933.090000px;}
.ye5{bottom:936.690000px;}
.ya{bottom:938.310000px;}
.y57{bottom:940.650000px;}
.y7c{bottom:940.830000px;}
.yb7{bottom:952.890000px;}
.y24{bottom:954.330000px;}
.ye4{bottom:956.310000px;}
.y7b{bottom:960.630000px;}
.y50{bottom:964.950000px;}
.y56{bottom:972.510000px;}
.yb6{bottom:972.690000px;}
.y7a{bottom:980.250000px;}
.y102{bottom:984.570000px;}
.y23{bottom:987.990000px;}
.y55{bottom:992.130000px;}
.yb5{bottom:992.310000px;}
.y79{bottom:1000.050000px;}
.y101{bottom:1004.370000px;}
.y4f{bottom:1010.130000px;}
.y54{bottom:1011.930000px;}
.yb4{bottom:1012.110000px;}
.y22{bottom:1015.350000px;}
.y78{bottom:1019.850000px;}
.y100{bottom:1023.990000px;}
.y4e{bottom:1026.330000px;}
.y53{bottom:1031.550000px;}
.yb3{bottom:1031.730000px;}
.y30{bottom:1038.210000px;}
.ya1{bottom:1039.470000px;}
.yff{bottom:1043.790000px;}
.y77{bottom:1051.530000px;}
.y52{bottom:1063.410000px;}
.y9{bottom:1063.590000px;}
.y21{bottom:1066.650000px;}
.y76{bottom:1071.330000px;}
.y4d{bottom:1071.870000px;}
.yb2{bottom:1083.210000px;}
.y2f{bottom:1097.250000px;}
.y8{bottom:1103.010000px;}
.y4{bottom:1134.690000px;}
.y1{bottom:1149.300000px;}
.h1e{height:14.275830px;}
.h1f{height:22.987800px;}
.ha{height:23.580000px;}
.h1d{height:29.315602px;}
.h10{height:30.420000px;}
.h6{height:31.680000px;}
.h5{height:31.860000px;}
.h32{height:34.218385px;}
.h35{height:39.542772px;}
.h33{height:41.774943px;}
.hb{height:42.230160px;}
.h41{height:43.756410px;}
.h4c{height:43.935379px;}
.h4f{height:43.936478px;}
.h56{height:43.936840px;}
.h39{height:44.045585px;}
.h43{height:44.056523px;}
.h13{height:44.100000px;}
.h19{height:44.280000px;}
.hc{height:45.223920px;}
.h49{height:45.255841px;}
.h40{height:45.256973px;}
.h55{height:45.257346px;}
.h2d{height:47.373047px;}
.h11{height:48.095280px;}
.h4b{height:48.131214px;}
.h3f{height:48.132051px;}
.h54{height:48.132448px;}
.h4a{height:48.329285px;}
.h3d{height:48.330125px;}
.h38{height:48.330233px;}
.h52{height:48.330524px;}
.h2a{height:48.937500px;}
.h2b{height:49.218750px;}
.h3{height:49.394180px;}
.h48{height:49.781805px;}
.h3e{height:49.782670px;}
.h53{height:49.783081px;}
.h28{height:49.886719px;}
.h2c{height:51.679688px;}
.hd{height:53.838000px;}
.h7{height:55.636560px;}
.h2{height:59.580000px;}
.h4{height:59.580720px;}
.h1a{height:59.640480px;}
.h9{height:63.405360px;}
.h16{height:64.620000px;}
.h4d{height:64.835189px;}
.h42{height:64.836316px;}
.h57{height:64.836850px;}
.h34{height:65.040298px;}
.h31{height:65.040506px;}
.h37{height:65.040537px;}
.h44{height:70.488073px;}
.hf{height:71.613281px;}
.h4e{height:77.203012px;}
.h46{height:77.203158px;}
.he{height:78.427440px;}
.h29{height:80.280000px;}
.h3c{height:81.300490px;}
.h47{height:81.300721px;}
.h51{height:81.301161px;}
.h2e{height:83.698209px;}
.h17{height:85.140000px;}
.h18{height:85.176000px;}
.h14{height:85.356000px;}
.h26{height:86.605422px;}
.h45{height:88.110088px;}
.h50{height:88.413158px;}
.h3a{height:93.644687px;}
.h27{height:95.616211px;}
.h22{height:96.228155px;}
.h23{height:99.686672px;}
.h3b{height:104.053195px;}
.h12{height:105.840000px;}
.h20{height:108.398338px;}
.h25{height:119.623834px;}
.h15{height:147.060000px;}
.h24{height:148.660363px;}
.h8{height:156.184560px;}
.h36{height:162.560622px;}
.h21{height:201.311198px;}
.h1b{height:892.914000px;}
.h30{height:893.249963px;}
.h2f{height:893.249979px;}
.h1c{height:893.250000px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w5{width:5.400000px;}
.wb{width:8.460000px;}
.wa{width:8.640000px;}
.w12{width:8.820000px;}
.w11{width:9.180000px;}
.w13{width:9.720000px;}
.w10{width:9.900000px;}
.w15{width:10.980000px;}
.w17{width:13.860000px;}
.w16{width:14.040000px;}
.w14{width:15.480000px;}
.w6{width:79.560000px;}
.w7{width:124.056000px;}
.we{width:171.750000px;}
.wc{width:172.470000px;}
.w9{width:214.410000px;}
.w4{width:225.390000px;}
.w8{width:256.890000px;}
.wf{width:501.555000px;}
.wd{width:502.275000px;}
.w19{width:629.250000px;}
.w18{width:629.292000px;}
.w1c{width:631.417500px;}
.w1d{width:631.500000px;}
.w2{width:676.230000px;}
.w3{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.w1a{width:1262.835000px;}
.w1b{width:1263.000000px;}
.w20{width:1263.374947px;}
.w1e{width:1263.375000px;}
.w1f{width:1263.750000px;}
.xa{left:-1.440000px;}
.x0{left:0.000000px;}
.x2{left:6.696000px;}
.x28{left:39.815250px;}
.x29{left:72.992100px;}
.x1{left:86.760000px;}
.x26{left:94.419508px;}
.x3{left:106.595987px;}
.x4{left:108.036000px;}
.x14{left:109.476000px;}
.x6{left:112.680000px;}
.x19{left:116.675987px;}
.xe{left:119.195987px;}
.x1d{left:135.035987px;}
.x2a{left:143.503950px;}
.x2b{left:144.567000px;}
.x25{left:149.283000px;}
.xd{left:151.769987px;}
.xf{left:155.009987px;}
.x1e{left:162.029987px;}
.x1a{left:174.089987px;}
.x15{left:189.030000px;}
.x10{left:195.509987px;}
.x23{left:208.324200px;}
.x8{left:225.945000px;}
.x1b{left:281.955000px;}
.x24{left:285.654894px;}
.x16{left:313.095000px;}
.x5{left:333.435000px;}
.x12{left:339.914987px;}
.x3b{left:417.349414px;}
.x3c{left:419.178228px;}
.x3a{left:420.971873px;}
.x36{left:431.731961px;}
.x45{left:433.421788px;}
.x37{left:435.446253px;}
.x38{left:438.144537px;}
.xc{left:454.214987px;}
.x11{left:457.814987px;}
.x3d{left:467.378030px;}
.x35{left:475.015868px;}
.x39{left:489.462725px;}
.x22{left:507.973350px;}
.x31{left:519.981659px;}
.x27{left:537.132600px;}
.x30{left:545.594744px;}
.x2e{left:549.500934px;}
.x7{left:558.825000px;}
.x2c{left:563.480811px;}
.x17{left:569.985000px;}
.x2f{left:591.225071px;}
.x2d{left:627.897070px;}
.x13{left:636.224987px;}
.x1f{left:769.650000px;}
.x21{left:771.090000px;}
.x20{left:774.150000px;}
.x1c{left:775.230000px;}
.x18{left:776.490000px;}
.x9{left:779.730000px;}
.xb{left:786.569987px;}
.x3f{left:847.209823px;}
.x44{left:856.331316px;}
.x32{left:862.197871px;}
.x33{left:870.884738px;}
.x43{left:894.077952px;}
.x3e{left:898.381447px;}
.x41{left:909.614540px;}
.x42{left:927.856939px;}
.x34{left:960.742813px;}
.x40{left:975.889794px;}
@media print{
.v1{vertical-align:-3.776000pt;}
.v0{vertical-align:0.000000pt;}
.v2{vertical-align:16.976533pt;}
.ls29{letter-spacing:-0.630106pt;}
.ls2b{letter-spacing:-0.320000pt;}
.ls1c{letter-spacing:-0.169067pt;}
.ls24{letter-spacing:-0.122133pt;}
.lsd{letter-spacing:-0.092267pt;}
.ls1d{letter-spacing:-0.026240pt;}
.ls17{letter-spacing:-0.019200pt;}
.ls4{letter-spacing:0.000000pt;}
.ls19{letter-spacing:0.019200pt;}
.lsc{letter-spacing:0.023680pt;}
.ls28{letter-spacing:0.035219pt;}
.ls16{letter-spacing:0.086933pt;}
.lsf{letter-spacing:0.087467pt;}
.ls21{letter-spacing:0.106667pt;}
.lse{letter-spacing:0.120533pt;}
.ls0{letter-spacing:0.162560pt;}
.ls5{letter-spacing:0.164267pt;}
.ls25{letter-spacing:0.173333pt;}
.ls27{letter-spacing:0.247467pt;}
.ls8{letter-spacing:0.258667pt;}
.lsb{letter-spacing:0.265600pt;}
.ls1a{letter-spacing:0.269867pt;}
.ls2{letter-spacing:0.282667pt;}
.ls1{letter-spacing:0.320000pt;}
.ls15{letter-spacing:0.640000pt;}
.ls1e{letter-spacing:0.896000pt;}
.ls2c{letter-spacing:2.496000pt;}
.ls18{letter-spacing:2.722560pt;}
.ls26{letter-spacing:4.143360pt;}
.ls22{letter-spacing:9.122560pt;}
.ls1b{letter-spacing:11.183360pt;}
.ls14{letter-spacing:11.823360pt;}
.ls23{letter-spacing:13.602560pt;}
.ls3{letter-spacing:18.144000pt;}
.ls1f{letter-spacing:21.922560pt;}
.ls20{letter-spacing:23.842560pt;}
.ls11{letter-spacing:26.522027pt;}
.ls13{letter-spacing:39.611307pt;}
.ls12{letter-spacing:50.491307pt;}
.lsa{letter-spacing:61.056000pt;}
.ls9{letter-spacing:66.176000pt;}
.ls7{letter-spacing:77.056000pt;}
.ls6{letter-spacing:178.082560pt;}
.ls2d{letter-spacing:712.556267pt;}
.ls10{letter-spacing:754.858667pt;}
.ls2a{letter-spacing:3891.968000pt;}
.ws16{word-spacing:-61.787593pt;}
.ws22{word-spacing:-51.739894pt;}
.ws17{word-spacing:-45.627695pt;}
.ws20{word-spacing:-37.444750pt;}
.ws18{word-spacing:-27.722667pt;}
.ws15{word-spacing:-21.438507pt;}
.wsc{word-spacing:-21.277973pt;}
.ws4{word-spacing:-21.191040pt;}
.wsf{word-spacing:-21.171840pt;}
.ws12{word-spacing:-21.021973pt;}
.ws26{word-spacing:-18.727023pt;}
.ws1d{word-spacing:-18.080000pt;}
.ws11{word-spacing:-15.302827pt;}
.ws10{word-spacing:-15.052160pt;}
.wse{word-spacing:-15.032960pt;}
.ws1e{word-spacing:-14.981597pt;}
.ws19{word-spacing:-14.464000pt;}
.ws6{word-spacing:-14.176107pt;}
.ws14{word-spacing:-14.090773pt;}
.ws8{word-spacing:-14.037973pt;}
.ws9{word-spacing:-14.004907pt;}
.ws5{word-spacing:-13.941120pt;}
.wsd{word-spacing:-13.917440pt;}
.ws13{word-spacing:-13.891200pt;}
.ws7{word-spacing:-13.825173pt;}
.ws1b{word-spacing:-13.258667pt;}
.ws27{word-spacing:-13.087683pt;}
.ws25{word-spacing:-13.087575pt;}
.ws2{word-spacing:-12.576000pt;}
.wsa{word-spacing:-12.135040pt;}
.ws28{word-spacing:-11.897894pt;}
.ws23{word-spacing:-11.897795pt;}
.ws24{word-spacing:-11.897498pt;}
.ws21{word-spacing:-11.894842pt;}
.ws0{word-spacing:-11.410560pt;}
.ws1{word-spacing:-10.728107pt;}
.ws1f{word-spacing:-10.708000pt;}
.wsb{word-spacing:-10.563840pt;}
.ws1c{word-spacing:-2.496000pt;}
.ws3{word-spacing:0.000000pt;}
.ws1a{word-spacing:0.320000pt;}
._8{margin-left:-177.655893pt;}
._7{margin-left:-161.549653pt;}
._25{margin-left:-22.779733pt;}
._23{margin-left:-21.777920pt;}
._28{margin-left:-16.149030pt;}
._27{margin-left:-13.942330pt;}
._d{margin-left:-12.785707pt;}
._e{margin-left:-11.204693pt;}
._b{margin-left:-10.033920pt;}
._9{margin-left:-8.797440pt;}
._c{margin-left:-6.097280pt;}
._29{margin-left:-4.633600pt;}
._16{margin-left:-2.876160pt;}
._12{margin-left:-1.927680pt;}
._1{margin-left:-0.925440pt;}
._0{width:1.195307pt;}
._f{width:2.298240pt;}
._2{width:3.624960pt;}
._14{width:5.291520pt;}
._18{width:6.548053pt;}
._17{width:7.862400pt;}
._15{width:9.641173pt;}
._1b{width:10.571093pt;}
._10{width:12.257280pt;}
._13{width:13.861760pt;}
._19{width:15.216640pt;}
._1a{width:16.369920pt;}
._3{width:17.952000pt;}
._4{width:18.914773pt;}
._11{width:20.198400pt;}
._1d{width:21.270187pt;}
._1c{width:22.310400pt;}
._22{width:23.479040pt;}
._21{width:24.541440pt;}
._24{width:25.749333pt;}
._26{width:26.660480pt;}
._5{width:27.888000pt;}
._6{width:29.242667pt;}
._1f{width:31.765760pt;}
._1e{width:32.721920pt;}
._20{width:34.952960pt;}
._a{width:178.061227pt;}
.fs8{font-size:17.502933pt;}
.fs9{font-size:29.491200pt;}
.fs7{font-size:38.338667pt;}
.fs14{font-size:38.648465pt;}
.fs3{font-size:40.320000pt;}
.fs0{font-size:42.880000pt;}
.fs15{font-size:47.183333pt;}
.fs4{font-size:48.000000pt;}
.fs17{font-size:48.017938pt;}
.fs1{font-size:53.120000pt;}
.fs1b{font-size:53.340097pt;}
.fs25{font-size:53.352008pt;}
.fs1f{font-size:53.353343pt;}
.fs29{font-size:53.353783pt;}
.fs12{font-size:58.666667pt;}
.fs24{font-size:58.687657pt;}
.fs1e{font-size:58.688677pt;}
.fs1a{font-size:58.688808pt;}
.fs28{font-size:58.689161pt;}
.fs6{font-size:64.000000pt;}
.fs16{font-size:64.023918pt;}
.fs13{font-size:64.024123pt;}
.fs19{font-size:64.024154pt;}
.fs26{font-size:64.175248pt;}
.fs22{font-size:64.175370pt;}
.fse{font-size:74.070933pt;}
.fs5{font-size:74.880000pt;}
.fs11{font-size:80.000000pt;}
.fs1d{font-size:80.030014pt;}
.fs23{font-size:80.030241pt;}
.fs27{font-size:80.030674pt;}
.fs20{font-size:85.362486pt;}
.fs1c{font-size:106.680195pt;}
.fs21{font-size:106.703103pt;}
.fsa{font-size:108.020267pt;}
.fsf{font-size:111.106667pt;}
.fs10{font-size:122.666667pt;}
.fsc{font-size:123.451733pt;}
.fsd{font-size:148.141867pt;}
.fs2{font-size:149.120000pt;}
.fs18{font-size:160.020300pt;}
.fsb{font-size:200.609067pt;}
.y0{bottom:0.000000pt;}
.y1c1{bottom:0.000014pt;}
.y19{bottom:8.480000pt;}
.y39{bottom:8.640000pt;}
.y1f9{bottom:11.025030pt;}
.y31{bottom:11.360000pt;}
.y32{bottom:13.920000pt;}
.y7{bottom:15.200000pt;}
.y3{bottom:15.360000pt;}
.y21d{bottom:20.365163pt;}
.y37{bottom:26.720000pt;}
.y3b{bottom:26.880000pt;}
.y135{bottom:42.673817pt;}
.y2{bottom:42.880000pt;}
.y42{bottom:44.960000pt;}
.y48{bottom:45.000000pt;}
.y36{bottom:45.120000pt;}
.y138{bottom:46.801338pt;}
.y1d9{bottom:48.179020pt;}
.y14a{bottom:48.787333pt;}
.y239{bottom:51.304601pt;}
.y137{bottom:51.584014pt;}
.y134{bottom:51.894267pt;}
.y13e{bottom:52.011081pt;}
.y13c{bottom:52.011275pt;}
.y13a{bottom:52.094414pt;}
.y21c{bottom:56.158452pt;}
.y136{bottom:56.371067pt;}
.y13d{bottom:56.798133pt;}
.y13b{bottom:56.798328pt;}
.y139{bottom:56.881467pt;}
.y6{bottom:63.072000pt;}
.y44{bottom:63.200000pt;}
.y47{bottom:63.240000pt;}
.y35{bottom:63.360000pt;}
.y133{bottom:63.395867pt;}
.y1d8{bottom:66.185805pt;}
.y1f8{bottom:67.935262pt;}
.y253{bottom:68.305866pt;}
.y21b{bottom:74.722052pt;}
.y5{bottom:76.032000pt;}
.y34{bottom:81.600000pt;}
.y3f{bottom:81.760000pt;}
.y1a5{bottom:82.214267pt;}
.y1d7{bottom:84.192589pt;}
.y1c0{bottom:84.466133pt;}
.y1f7{bottom:86.608932pt;}
.y21a{bottom:93.285652pt;}
.y180{bottom:95.624933pt;}
.y3e{bottom:100.000000pt;}
.y1a4{bottom:101.414267pt;}
.y1dc{bottom:101.747336pt;}
.y1bf{bottom:102.066133pt;}
.y1d6{bottom:102.199374pt;}
.y252{bottom:104.208516pt;}
.y13f{bottom:104.847600pt;}
.y1f6{bottom:105.282602pt;}
.y164{bottom:105.752267pt;}
.y238{bottom:108.214834pt;}
.yfe{bottom:108.832000pt;}
.y219{bottom:111.849252pt;}
.y17f{bottom:113.224933pt;}
.yb1{bottom:115.712000pt;}
.y3d{bottom:118.240000pt;}
.y1be{bottom:119.666133pt;}
.y1d5{bottom:120.206158pt;}
.y4c{bottom:121.152000pt;}
.y251{bottom:122.882340pt;}
.ya0{bottom:123.232000pt;}
.y1f5{bottom:123.956272pt;}
.y163{bottom:124.952267pt;}
.y1a3{bottom:125.414267pt;}
.yfd{bottom:126.272000pt;}
.y237{bottom:126.888503pt;}
.y20{bottom:130.112000pt;}
.y17e{bottom:132.424933pt;}
.ycc{bottom:133.152000pt;}
.y218{bottom:134.081109pt;}
.y12b{bottom:136.986667pt;}
.y1bd{bottom:137.266133pt;}
.y1d4{bottom:138.212943pt;}
.y9f{bottom:140.826667pt;}
.y4b{bottom:143.386667pt;}
.yb0{bottom:143.866667pt;}
.y1a2{bottom:144.614267pt;}
.y250{bottom:145.224236pt;}
.y236{bottom:145.562173pt;}
.y1f4{bottom:146.186831pt;}
.ye3{bottom:147.546667pt;}
.y162{bottom:148.952267pt;}
.y217{bottom:152.644709pt;}
.y131{bottom:154.586667pt;}
.y1bc{bottom:154.866133pt;}
.y17d{bottom:156.424933pt;}
.y9e{bottom:158.266667pt;}
.yaf{bottom:161.466667pt;}
.y1a1{bottom:163.814267pt;}
.y1f{bottom:163.866667pt;}
.y24f{bottom:163.898060pt;}
.y149{bottom:164.483067pt;}
.y1f3{bottom:164.860501pt;}
.ye2{bottom:164.986667pt;}
.y12a{bottom:165.146667pt;}
.y4a{bottom:165.626667pt;}
.y235{bottom:167.792733pt;}
.y161{bottom:168.152267pt;}
.y216{bottom:171.208309pt;}
.y75{bottom:171.706667pt;}
.y130{bottom:172.026667pt;}
.y17c{bottom:175.624933pt;}
.y9d{bottom:175.866667pt;}
.yae{bottom:178.906667pt;}
.y24e{bottom:182.571884pt;}
.ye1{bottom:182.586667pt;}
.y129{bottom:182.746667pt;}
.y1f2{bottom:183.534171pt;}
.y1e{bottom:185.786667pt;}
.y234{bottom:186.466403pt;}
.y118{bottom:186.586667pt;}
.y160{bottom:187.352267pt;}
.y74{bottom:189.146667pt;}
.ycb{bottom:189.626667pt;}
.y215{bottom:193.440165pt;}
.y9c{bottom:193.466667pt;}
.y1a0{bottom:193.686267pt;}
.y17b{bottom:194.824933pt;}
.yad{bottom:196.506667pt;}
.ye0{bottom:200.186667pt;}
.y128{bottom:200.346667pt;}
.y24d{bottom:201.245708pt;}
.y1f1{bottom:202.207841pt;}
.y117{bottom:204.026667pt;}
.y233{bottom:205.140072pt;}
.y49{bottom:206.266667pt;}
.y73{bottom:206.746667pt;}
.yca{bottom:207.226667pt;}
.y1d{bottom:207.866667pt;}
.y9b{bottom:210.906667pt;}
.y214{bottom:212.003765pt;}
.y17a{bottom:212.424933pt;}
.y19f{bottom:212.886267pt;}
.yac{bottom:213.946667pt;}
.y1c6{bottom:215.766926pt;}
.y15f{bottom:217.224267pt;}
.ydf{bottom:217.626667pt;}
.y127{bottom:217.786667pt;}
.y24c{bottom:219.919532pt;}
.y116{bottom:221.626667pt;}
.y72{bottom:224.186667pt;}
.y1f0{bottom:224.438400pt;}
.yc9{bottom:224.666667pt;}
.y232{bottom:227.370632pt;}
.y9a{bottom:228.506667pt;}
.y1c5{bottom:229.454924pt;}
.y1c{bottom:229.786667pt;}
.y213{bottom:230.567365pt;}
.yab{bottom:231.546667pt;}
.y19e{bottom:232.086267pt;}
.y126{bottom:235.386667pt;}
.y15e{bottom:236.424267pt;}
.y179{bottom:236.424933pt;}
.y115{bottom:239.226667pt;}
.y71{bottom:241.786667pt;}
.y24b{bottom:242.261428pt;}
.yc8{bottom:242.266667pt;}
.y1ef{bottom:243.112070pt;}
.y1c4{bottom:243.142922pt;}
.y99{bottom:245.946667pt;}
.y231{bottom:246.044302pt;}
.y19d{bottom:251.286267pt;}
.y125{bottom:252.826667pt;}
.y15d{bottom:255.624267pt;}
.y178{bottom:255.624933pt;}
.y114{bottom:256.666667pt;}
.y1c3{bottom:256.830920pt;}
.y70{bottom:259.386667pt;}
.yaa{bottom:259.706667pt;}
.y24a{bottom:260.935252pt;}
.y1ee{bottom:261.785740pt;}
.yde{bottom:263.386667pt;}
.y1b{bottom:263.546667pt;}
.y212{bottom:263.581672pt;}
.y230{bottom:264.717972pt;}
.y46{bottom:265.146667pt;}
.y124{bottom:270.426667pt;}
.y19c{bottom:270.486267pt;}
.y1db{bottom:273.058973pt;}
.y113{bottom:274.266667pt;}
.y15c{bottom:274.824267pt;}
.y177{bottom:274.824933pt;}
.yc7{bottom:277.306667pt;}
.y1a{bottom:277.786667pt;}
.y1ed{bottom:280.459410pt;}
.ydd{bottom:280.986667pt;}
.y98{bottom:281.146667pt;}
.y6f{bottom:287.546667pt;}
.ya9{bottom:288.026667pt;}
.y19b{bottom:289.686267pt;}
.y112{bottom:291.706667pt;}
.y249{bottom:293.947905pt;}
.y15b{bottom:294.024267pt;}
.y1c7{bottom:294.831691pt;}
.yc6{bottom:294.906667pt;}
.y22f{bottom:297.619200pt;}
.ydc{bottom:298.426667pt;}
.y97{bottom:298.586667pt;}
.y1ec{bottom:299.133080pt;}
.y211{bottom:299.374960pt;}
.y18{bottom:300.066667pt;}
.y176{bottom:304.696933pt;}
.y6e{bottom:305.186667pt;}
.yfc{bottom:305.506667pt;}
.y19a{bottom:308.886267pt;}
.y1da{bottom:309.072542pt;}
.y111{bottom:309.346667pt;}
.yc5{bottom:312.386667pt;}
.y148{bottom:312.624933pt;}
.y96{bottom:316.226667pt;}
.y210{bottom:317.938561pt;}
.y6d{bottom:322.626667pt;}
.yfb{bottom:323.106667pt;}
.y175{bottom:323.896933pt;}
.ydb{bottom:326.786667pt;}
.y123{bottom:326.946667pt;}
.y199{bottom:328.086267pt;}
.yc4{bottom:329.986667pt;}
.y248{bottom:331.629014pt;}
.y1eb{bottom:332.034308pt;}
.y15a{bottom:332.424267pt;}
.y22e{bottom:333.632706pt;}
.y95{bottom:333.826667pt;}
.y20f{bottom:336.502161pt;}
.y17{bottom:336.546667pt;}
.y110{bottom:337.506667pt;}
.y6c{bottom:340.226667pt;}
.y147{bottom:340.403038pt;}
.yfa{bottom:340.706667pt;}
.y45{bottom:342.306667pt;}
.y174{bottom:343.096933pt;}
.yda{bottom:344.226667pt;}
.y122{bottom:344.386667pt;}
.yc3{bottom:347.586667pt;}
.y247{bottom:350.302838pt;}
.y94{bottom:351.266667pt;}
.y159{bottom:351.624267pt;}
.y22d{bottom:352.306376pt;}
.y10f{bottom:355.106667pt;}
.y1ce{bottom:355.511549pt;}
.yf9{bottom:358.146667pt;}
.y20e{bottom:358.734017pt;}
.yd9{bottom:361.826667pt;}
.y121{bottom:361.986667pt;}
.y173{bottom:362.296933pt;}
.y16{bottom:363.586667pt;}
.y198{bottom:366.486267pt;}
.y1ea{bottom:368.047814pt;}
.y6b{bottom:368.386667pt;}
.y93{bottom:368.866667pt;}
.y246{bottom:368.976662pt;}
.y22c{bottom:370.980046pt;}
.y1b3{bottom:373.411067pt;}
.yc2{bottom:375.746667pt;}
.y20d{bottom:377.297617pt;}
.yd8{bottom:379.426667pt;}
.y120{bottom:379.586667pt;}
.y146{bottom:381.142052pt;}
.y10e{bottom:383.266667pt;}
.y197{bottom:385.686267pt;}
.y6a{bottom:385.986667pt;}
.y92{bottom:386.306667pt;}
.y1e9{bottom:386.721484pt;}
.y22b{bottom:389.653715pt;}
.y158{bottom:390.024267pt;}
.y15{bottom:390.626667pt;}
.y245{bottom:391.318559pt;}
.y1b2{bottom:392.611067pt;}
.yf8{bottom:393.186667pt;}
.y20c{bottom:395.861217pt;}
.yd7{bottom:396.866667pt;}
.y11f{bottom:397.026667pt;}
.y172{bottom:399.096933pt;}
.y43{bottom:401.186667pt;}
.y1cd{bottom:402.529264pt;}
.y69{bottom:403.426667pt;}
.y91{bottom:403.906667pt;}
.y1e8{bottom:405.395154pt;}
.y157{bottom:409.224267pt;}
.y244{bottom:409.992383pt;}
.yf7{bottom:410.786667pt;}
.y10d{bottom:411.586667pt;}
.y22a{bottom:411.884275pt;}
.y145{bottom:413.807333pt;}
.yd6{bottom:414.466667pt;}
.y11e{bottom:414.626667pt;}
.y14{bottom:417.666667pt;}
.y171{bottom:418.296933pt;}
.y68{bottom:421.026667pt;}
.ya8{bottom:421.506667pt;}
.y20b{bottom:422.205967pt;}
.y196{bottom:422.214267pt;}
.y1e7{bottom:424.068823pt;}
.yf6{bottom:428.386667pt;}
.y156{bottom:428.424267pt;}
.y243{bottom:428.666206pt;}
.y10c{bottom:429.026667pt;}
.y229{bottom:430.557945pt;}
.y1b1{bottom:431.011067pt;}
.y90{bottom:432.066667pt;}
.y195{bottom:441.414267pt;}
.yd5{bottom:442.626667pt;}
.y20a{bottom:442.659275pt;}
.y11d{bottom:442.786667pt;}
.y1c2{bottom:443.804888pt;}
.y1e6{bottom:446.299383pt;}
.y10b{bottom:446.626667pt;}
.y242{bottom:447.340030pt;}
.y155{bottom:447.624267pt;}
.y67{bottom:449.186667pt;}
.y228{bottom:449.231615pt;}
.y1cc{bottom:449.546979pt;}
.y8f{bottom:449.666667pt;}
.y13{bottom:449.986667pt;}
.y1b0{bottom:450.211067pt;}
.y170{bottom:455.096933pt;}
.yf5{bottom:456.546667pt;}
.y11c{bottom:460.386667pt;}
.y209{bottom:463.112583pt;}
.y10a{bottom:464.066667pt;}
.y1e5{bottom:464.973053pt;}
.y154{bottom:466.824267pt;}
.ya7{bottom:467.266667pt;}
.y227{bottom:467.905285pt;}
.y1af{bottom:469.411067pt;}
.y241{bottom:471.905001pt;}
.yd4{bottom:472.706667pt;}
.yf4{bottom:474.146667pt;}
.y16f{bottom:474.296933pt;}
.y8e{bottom:477.826667pt;}
.y194{bottom:478.214267pt;}
.y41{bottom:478.306667pt;}
.y66{bottom:479.266667pt;}
.y109{bottom:481.666667pt;}
.y144{bottom:482.322667pt;}
.y12{bottom:482.466667pt;}
.y1e4{bottom:483.646723pt;}
.yc1{bottom:484.706667pt;}
.y153{bottom:486.024267pt;}
.y18a{bottom:488.031467pt;}
.y11b{bottom:488.546667pt;}
.y208{bottom:489.790810pt;}
.y240{bottom:492.357284pt;}
.y226{bottom:492.581205pt;}
.y16e{bottom:493.496933pt;}
.ya6{bottom:495.426667pt;}
.y193{bottom:497.414267pt;}
.y108{bottom:499.266667pt;}
.yc0{bottom:502.306667pt;}
.y65{bottom:503.906667pt;}
.y189{bottom:505.631467pt;}
.y8d{bottom:506.146667pt;}
.y1cb{bottom:507.354382pt;}
.y1ae{bottom:507.811067pt;}
.y1e3{bottom:508.322644pt;}
.y16d{bottom:512.696933pt;}
.y23f{bottom:512.809568pt;}
.y12f{bottom:513.026667pt;}
.y225{bottom:513.033320pt;}
.y143{bottom:513.185600pt;}
.y11{bottom:514.786667pt;}
.y152{bottom:515.896267pt;}
.y107{bottom:516.706667pt;}
.ybf{bottom:519.906667pt;}
.y8c{bottom:523.586667pt;}
.y1ca{bottom:524.138430pt;}
.y1ad{bottom:527.011067pt;}
.y207{bottom:527.696125pt;}
.y1e2{bottom:528.774758pt;}
.y1fc{bottom:529.905296pt;}
.y12e{bottom:530.466667pt;}
.y16c{bottom:531.896933pt;}
.y23e{bottom:533.261851pt;}
.y224{bottom:533.485435pt;}
.y192{bottom:534.214267pt;}
.yd3{bottom:534.306667pt;}
.y151{bottom:535.096267pt;}
.y40{bottom:537.213333pt;}
.yf3{bottom:537.373333pt;}
.y1c9{bottom:540.922478pt;}
.y8b{bottom:541.213333pt;}
.y188{bottom:544.031467pt;}
.y142{bottom:544.068116pt;}
.y1ac{bottom:546.211067pt;}
.y206{bottom:546.259725pt;}
.ybe{bottom:548.093333pt;}
.y2e{bottom:548.893333pt;}
.y1e1{bottom:549.226873pt;}
.y16b{bottom:551.096933pt;}
.y10{bottom:551.933333pt;}
.y191{bottom:553.414267pt;}
.y23d{bottom:553.714134pt;}
.y223{bottom:553.937549pt;}
.y150{bottom:554.296267pt;}
.yf2{bottom:554.973333pt;}
.y8a{bottom:558.653333pt;}
.y1c8{bottom:559.818426pt;}
.y187{bottom:563.231467pt;}
.y1bb{bottom:564.466133pt;}
.y205{bottom:564.823325pt;}
.y1ab{bottom:565.411067pt;}
.y64{bottom:565.533333pt;}
.y1fb{bottom:567.974140pt;}
.yd2{bottom:569.373333pt;}
.y1e0{bottom:569.678987pt;}
.y16a{bottom:570.296933pt;}
.yf1{bottom:572.413333pt;}
.y190{bottom:572.614267pt;}
.y14f{bottom:573.496267pt;}
.y89{bottom:576.253333pt;}
.y3c{bottom:577.693333pt;}
.y23c{bottom:580.391026pt;}
.y222{bottom:580.391915pt;}
.y186{bottom:582.431467pt;}
.y63{bottom:582.973333pt;}
.y12d{bottom:583.133333pt;}
.y204{bottom:583.386925pt;}
.y1ba{bottom:583.666133pt;}
.yd1{bottom:586.973333pt;}
.yf0{bottom:590.013333pt;}
.y1df{bottom:590.131102pt;}
.y18f{bottom:591.814267pt;}
.y14e{bottom:592.696267pt;}
.y1fa{bottom:593.353370pt;}
.y88{bottom:593.853333pt;}
.y2d{bottom:594.333333pt;}
.y141{bottom:594.972667pt;}
.y185{bottom:601.631467pt;}
.y203{bottom:602.395163pt;}
.y1b9{bottom:602.866133pt;}
.y1aa{bottom:603.811067pt;}
.yf{bottom:604.253333pt;}
.yd0{bottom:604.413333pt;}
.yef{bottom:607.613333pt;}
.y169{bottom:608.168933pt;}
.y18e{bottom:611.014267pt;}
.y62{bottom:611.133333pt;}
.y87{bottom:611.293333pt;}
.y1de{bottom:616.585468pt;}
.y184{bottom:620.831467pt;}
.ybd{bottom:622.013333pt;}
.y1b8{bottom:622.066133pt;}
.y2c{bottom:622.653333pt;}
.y1a9{bottom:623.011067pt;}
.y168{bottom:624.168933pt;}
.yee{bottom:625.053333pt;}
.y61{bottom:628.733333pt;}
.y86{bottom:628.893333pt;}
.y18d{bottom:630.214267pt;}
.y14d{bottom:631.096267pt;}
.y11a{bottom:632.733333pt;}
.y23b{bottom:638.190957pt;}
.y202{bottom:638.410770pt;}
.ybc{bottom:639.613333pt;}
.y1b7{bottom:641.266133pt;}
.y132{bottom:641.373333pt;}
.y1dd{bottom:644.595973pt;}
.y1d3{bottom:644.664632pt;}
.y140{bottom:645.896533pt;}
.y60{bottom:646.333333pt;}
.ya5{bottom:646.493333pt;}
.y18c{bottom:649.414267pt;}
.y106{bottom:650.173333pt;}
.y14c{bottom:650.296267pt;}
.y2b{bottom:650.813333pt;}
.yed{bottom:653.373333pt;}
.ye{bottom:656.573333pt;}
.y85{bottom:657.053333pt;}
.y183{bottom:659.231467pt;}
.y1b6{bottom:660.466133pt;}
.y1a8{bottom:661.411067pt;}
.y167{bottom:662.040933pt;}
.ya4{bottom:663.933333pt;}
.y1d2{bottom:665.116792pt;}
.y23a{bottom:666.201693pt;}
.y201{bottom:666.311750pt;}
.y105{bottom:667.773333pt;}
.yec{bottom:670.813333pt;}
.y5f{bottom:674.493333pt;}
.y84{bottom:674.653333pt;}
.y182{bottom:676.831467pt;}
.y119{bottom:678.493333pt;}
.y2a{bottom:678.973333pt;}
.y1b5{bottom:679.666133pt;}
.y1a7{bottom:680.611067pt;}
.y166{bottom:681.240933pt;}
.y1d1{bottom:685.568953pt;}
.y5e{bottom:692.093333pt;}
.ya3{bottom:692.253333pt;}
.y18b{bottom:692.614267pt;}
.y14b{bottom:693.496267pt;}
.y104{bottom:695.933333pt;}
.y181{bottom:696.031467pt;}
.y1b4{bottom:698.866133pt;}
.yeb{bottom:698.973333pt;}
.y1a6{bottom:699.811067pt;}
.y165{bottom:700.440933pt;}
.y83{bottom:702.813333pt;}
.y1d0{bottom:706.021113pt;}
.y29{bottom:707.133333pt;}
.yd{bottom:708.893333pt;}
.y5d{bottom:709.533333pt;}
.y3a{bottom:709.693333pt;}
.y200{bottom:711.370068pt;}
.y221{bottom:711.370215pt;}
.y103{bottom:713.533333pt;}
.yea{bottom:716.573333pt;}
.ycf{bottom:720.413333pt;}
.y5c{bottom:727.133333pt;}
.ybb{bottom:727.293333pt;}
.y1cf{bottom:727.695957pt;}
.y1ff{bottom:730.933019pt;}
.y220{bottom:730.933129pt;}
.y82{bottom:730.973333pt;}
.ye9{bottom:734.173333pt;}
.y28{bottom:735.453333pt;}
.ya2{bottom:737.853333pt;}
.y81{bottom:748.573333pt;}
.y1fe{bottom:750.495970pt;}
.y21f{bottom:750.496043pt;}
.ye8{bottom:751.613333pt;}
.y5b{bottom:755.293333pt;}
.yba{bottom:755.453333pt;}
.y27{bottom:763.613333pt;}
.y80{bottom:766.173333pt;}
.yc{bottom:767.133333pt;}
.ye7{bottom:769.213333pt;}
.yb9{bottom:773.053333pt;}
.y1fd{bottom:773.171209pt;}
.y21e{bottom:773.171238pt;}
.y5a{bottom:783.493333pt;}
.y7f{bottom:783.653333pt;}
.y38{bottom:786.853333pt;}
.y12c{bottom:790.533333pt;}
.y26{bottom:791.813333pt;}
.yce{bottom:794.373333pt;}
.y59{bottom:801.093333pt;}
.y7e{bottom:801.253333pt;}
.yb{bottom:802.213333pt;}
.ye6{bottom:804.293333pt;}
.ycd{bottom:811.973333pt;}
.y58{bottom:818.693333pt;}
.y7d{bottom:818.853333pt;}
.y25{bottom:820.133333pt;}
.y51{bottom:822.533333pt;}
.y33{bottom:827.493333pt;}
.yb8{bottom:829.413333pt;}
.ye5{bottom:832.613333pt;}
.ya{bottom:834.053333pt;}
.y57{bottom:836.133333pt;}
.y7c{bottom:836.293333pt;}
.yb7{bottom:847.013333pt;}
.y24{bottom:848.293333pt;}
.ye4{bottom:850.053333pt;}
.y7b{bottom:853.893333pt;}
.y50{bottom:857.733333pt;}
.y56{bottom:864.453333pt;}
.yb6{bottom:864.613333pt;}
.y7a{bottom:871.333333pt;}
.y102{bottom:875.173333pt;}
.y23{bottom:878.213333pt;}
.y55{bottom:881.893333pt;}
.yb5{bottom:882.053333pt;}
.y79{bottom:888.933333pt;}
.y101{bottom:892.773333pt;}
.y4f{bottom:897.893333pt;}
.y54{bottom:899.493333pt;}
.yb4{bottom:899.653333pt;}
.y22{bottom:902.533333pt;}
.y78{bottom:906.533333pt;}
.y100{bottom:910.213333pt;}
.y4e{bottom:912.293333pt;}
.y53{bottom:916.933333pt;}
.yb3{bottom:917.093333pt;}
.y30{bottom:922.853333pt;}
.ya1{bottom:923.973333pt;}
.yff{bottom:927.813333pt;}
.y77{bottom:934.693333pt;}
.y52{bottom:945.253333pt;}
.y9{bottom:945.413333pt;}
.y21{bottom:948.133333pt;}
.y76{bottom:952.293333pt;}
.y4d{bottom:952.773333pt;}
.yb2{bottom:962.853333pt;}
.y2f{bottom:975.333333pt;}
.y8{bottom:980.453333pt;}
.y4{bottom:1008.613333pt;}
.y1{bottom:1021.600000pt;}
.h1e{height:12.689627pt;}
.h1f{height:20.433600pt;}
.ha{height:20.960000pt;}
.h1d{height:26.058312pt;}
.h10{height:27.040000pt;}
.h6{height:28.160000pt;}
.h5{height:28.320000pt;}
.h32{height:30.416342pt;}
.h35{height:35.149131pt;}
.h33{height:37.133283pt;}
.hb{height:37.537920pt;}
.h41{height:38.894587pt;}
.h4c{height:39.053670pt;}
.h4f{height:39.054647pt;}
.h56{height:39.054969pt;}
.h39{height:39.151631pt;}
.h43{height:39.161353pt;}
.h13{height:39.200000pt;}
.h19{height:39.360000pt;}
.hc{height:40.199040pt;}
.h49{height:40.227414pt;}
.h40{height:40.228420pt;}
.h55{height:40.228752pt;}
.h2d{height:42.109375pt;}
.h11{height:42.751360pt;}
.h4b{height:42.783302pt;}
.h3f{height:42.784045pt;}
.h54{height:42.784398pt;}
.h4a{height:42.959365pt;}
.h3d{height:42.960111pt;}
.h38{height:42.960207pt;}
.h52{height:42.960466pt;}
.h2a{height:43.500000pt;}
.h2b{height:43.750000pt;}
.h3{height:43.905937pt;}
.h48{height:44.250493pt;}
.h3e{height:44.251262pt;}
.h53{height:44.251627pt;}
.h28{height:44.343750pt;}
.h2c{height:45.937500pt;}
.hd{height:47.856000pt;}
.h7{height:49.454720pt;}
.h2{height:52.960000pt;}
.h4{height:52.960640pt;}
.h1a{height:53.013760pt;}
.h9{height:56.360320pt;}
.h16{height:57.440000pt;}
.h4d{height:57.631279pt;}
.h42{height:57.632281pt;}
.h57{height:57.632756pt;}
.h34{height:57.813598pt;}
.h31{height:57.813783pt;}
.h37{height:57.813811pt;}
.h44{height:62.656065pt;}
.hf{height:63.656250pt;}
.h4e{height:68.624899pt;}
.h46{height:68.625030pt;}
.he{height:69.713280pt;}
.h29{height:71.360000pt;}
.h3c{height:72.267102pt;}
.h47{height:72.267308pt;}
.h51{height:72.267699pt;}
.h2e{height:74.398408pt;}
.h17{height:75.680000pt;}
.h18{height:75.712000pt;}
.h14{height:75.872000pt;}
.h26{height:76.982598pt;}
.h45{height:78.320078pt;}
.h50{height:78.589474pt;}
.h3a{height:83.239722pt;}
.h27{height:84.992188pt;}
.h22{height:85.536138pt;}
.h23{height:88.610375pt;}
.h3b{height:92.491729pt;}
.h12{height:94.080000pt;}
.h20{height:96.354078pt;}
.h25{height:106.332297pt;}
.h15{height:130.720000pt;}
.h24{height:132.142545pt;}
.h8{height:138.830720pt;}
.h36{height:144.498331pt;}
.h21{height:178.943287pt;}
.h1b{height:793.701333pt;}
.h30{height:793.999967pt;}
.h2f{height:793.999981pt;}
.h1c{height:794.000000pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w5{width:4.800000pt;}
.wb{width:7.520000pt;}
.wa{width:7.680000pt;}
.w12{width:7.840000pt;}
.w11{width:8.160000pt;}
.w13{width:8.640000pt;}
.w10{width:8.800000pt;}
.w15{width:9.760000pt;}
.w17{width:12.320000pt;}
.w16{width:12.480000pt;}
.w14{width:13.760000pt;}
.w6{width:70.720000pt;}
.w7{width:110.272000pt;}
.we{width:152.666667pt;}
.wc{width:153.306667pt;}
.w9{width:190.586667pt;}
.w4{width:200.346667pt;}
.w8{width:228.346667pt;}
.wf{width:445.826667pt;}
.wd{width:446.466667pt;}
.w19{width:559.333333pt;}
.w18{width:559.370667pt;}
.w1c{width:561.260000pt;}
.w1d{width:561.333333pt;}
.w2{width:601.093333pt;}
.w3{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.w1a{width:1122.520000pt;}
.w1b{width:1122.666667pt;}
.w20{width:1122.999953pt;}
.w1e{width:1123.000000pt;}
.w1f{width:1123.333333pt;}
.xa{left:-1.280000pt;}
.x0{left:0.000000pt;}
.x2{left:5.952000pt;}
.x28{left:35.391333pt;}
.x29{left:64.881867pt;}
.x1{left:77.120000pt;}
.x26{left:83.928452pt;}
.x3{left:94.751988pt;}
.x4{left:96.032000pt;}
.x14{left:97.312000pt;}
.x6{left:100.160000pt;}
.x19{left:103.711988pt;}
.xe{left:105.951988pt;}
.x1d{left:120.031988pt;}
.x2a{left:127.559067pt;}
.x2b{left:128.504000pt;}
.x25{left:132.696000pt;}
.xd{left:134.906655pt;}
.xf{left:137.786655pt;}
.x1e{left:144.026655pt;}
.x1a{left:154.746655pt;}
.x15{left:168.026667pt;}
.x10{left:173.786655pt;}
.x23{left:185.177067pt;}
.x8{left:200.840000pt;}
.x1b{left:250.626667pt;}
.x24{left:253.915462pt;}
.x16{left:278.306667pt;}
.x5{left:296.386667pt;}
.x12{left:302.146655pt;}
.x3b{left:370.977257pt;}
.x3c{left:372.602870pt;}
.x3a{left:374.197220pt;}
.x36{left:383.761743pt;}
.x45{left:385.263811pt;}
.x37{left:387.063336pt;}
.x38{left:389.461811pt;}
.xc{left:403.746655pt;}
.x11{left:406.946655pt;}
.x3d{left:415.447137pt;}
.x35{left:422.236327pt;}
.x39{left:435.077978pt;}
.x22{left:451.531867pt;}
.x31{left:462.205919pt;}
.x27{left:477.451200pt;}
.x30{left:484.973106pt;}
.x2e{left:488.445275pt;}
.x7{left:496.733333pt;}
.x2c{left:500.871832pt;}
.x17{left:506.653333pt;}
.x2f{left:525.533397pt;}
.x2d{left:558.130729pt;}
.x13{left:565.533322pt;}
.x1f{left:684.133333pt;}
.x21{left:685.413333pt;}
.x20{left:688.133333pt;}
.x1c{left:689.093333pt;}
.x18{left:690.213333pt;}
.x9{left:693.093333pt;}
.xb{left:699.173322pt;}
.x3f{left:753.075398pt;}
.x44{left:761.183392pt;}
.x32{left:766.398107pt;}
.x33{left:774.119767pt;}
.x43{left:794.735957pt;}
.x3e{left:798.561286pt;}
.x41{left:808.546258pt;}
.x42{left:824.761723pt;}
.x34{left:853.993611pt;}
.x40{left:867.457595pt;}
}




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