
    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_42463d05432f7568f687f3e3.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.005000;font-style:normal;font-weight: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_cd12523ce31d36ea146f1aec.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.005000;font-style:normal;font-weight: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_e7c2194ca8b26d34bf1654a7.woff2')format("woff");}.ff3{font-family:ff3;line-height:1.005000;font-style:normal;font-weight: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_a8aaeb057bb0a6c4659d7955.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.919000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_3e3c4797f6053a869d8a52b7.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.005371;font-style:normal;font-weight: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_78c6574a1bb4cd8904c8376f.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.916000;font-style:normal;font-weight: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_906e48c9f79955d9811a7f03.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.759500;font-style:normal;font-weight: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_0809c06b1f3a63df3926aa14.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_3f6689c7aee0f1cb162f8300.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.108000;font-style:normal;font-weight: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_b48cbdbecd74acc2c8328328.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.431000;font-style:normal;font-weight: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_2d772e41fbd5fcaec85dcf50.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_aa10be14078ca79adffafa7f.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.898000;font-style:normal;font-weight: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_1ea499d5b35d5f32a9c7b521.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.000000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_9735693b3d5a8fd344085b7c.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.027000;font-style:normal;font-weight: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_d11c0ae9b1cee92329d594b6.woff2')format("woff");}.fff{font-family:fff;line-height:0.938477;font-style:normal;font-weight: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_a61727c573be66da2252830b.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.826660;font-style:normal;font-weight: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_c86d05f2db5a3654bf7b27ba.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.009766;font-style:normal;font-weight: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_29ca351d6310e67155e46d40.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.715820;font-style:normal;font-weight: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_1b9e2af4b8345928f850a9f9.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.938477;font-style:normal;font-weight: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_429c203fd372b41c7526257f.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.826660;font-style:normal;font-weight: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_c86d05f2db5a3654bf7b27ba.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.009766;font-style:normal;font-weight: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_70237c468712baeac9fb4e27.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.715820;font-style:normal;font-weight: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_bb2506bd4811c787a8b09876.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.938477;font-style:normal;font-weight: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_dd8da04f71e66075c77b32d0.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.009766;font-style:normal;font-weight: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_c86d05f2db5a3654bf7b27ba.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.009766;font-style:normal;font-weight: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_08d124a201bfde44f56ed8e0.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.740234;font-style:normal;font-weight: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_ec1c3129bbb5e78c6b5c60e8.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.938477;font-style:normal;font-weight: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_dd8da04f71e66075c77b32d0.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.009766;font-style:normal;font-weight: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_c86d05f2db5a3654bf7b27ba.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.009766;font-style:normal;font-weight: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_6aed7f95431589fe32654286.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.715820;font-style:normal;font-weight: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_3ecf1de3412f23a2f3e906a4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.938477;font-style:normal;font-weight: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_a61727c573be66da2252830b.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.826660;font-style:normal;font-weight: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_c86d05f2db5a3654bf7b27ba.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.009766;font-style:normal;font-weight: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_29fcc045f4ce171474d1a903.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.715820;font-style:normal;font-weight: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_33cc7cc0df21133b0aeb7133.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.926758;font-style:normal;font-weight: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_186ffec9b86510ceca02651b.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.009766;font-style:normal;font-weight: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_c86d05f2db5a3654bf7b27ba.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.009766;font-style:normal;font-weight: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_cbf467c99fb24374a56266c4.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.715820;font-style:normal;font-weight: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_db7624df081773735623b2e6.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.442000;font-style:normal;font-weight: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_80bcad58164f5e63bf7870b4.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.923000;font-style:normal;font-weight: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_ce8f8576c24ea0f1955ffc71.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.924000;font-style:normal;font-weight: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_52bf1ce0e9f955585ca10529.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.910000;font-style:normal;font-weight: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_75a6801f6e9855634f008756.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.908000;font-style:normal;font-weight: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_05ad0ab7b927313127877da9.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.744500;font-style:normal;font-weight: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_66445381ace2298f8d244b16.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.744500;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m4{transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245000,0.000000,0.000000,0.250000,0,0);}
.m1d{transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245250,0.000000,0.000000,0.250000,0,0);}
.m25{transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245500,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.245750,0.000000,0.000000,0.250000,0,0);}
.m1f{transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246000,0.000000,0.000000,0.250000,0,0);}
.m27{transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246250,0.000000,0.000000,0.250000,0,0);}
.m20{transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246500,0.000000,0.000000,0.250000,0,0);}
.md{transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.246750,0.000000,0.000000,0.250000,0,0);}
.m23{transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247000,0.000000,0.000000,0.250000,0,0);}
.m11{transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247250,0.000000,0.000000,0.250000,0,0);}
.mc{transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247500,0.000000,0.000000,0.250000,0,0);}
.m26{transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.247750,0.000000,0.000000,0.250000,0,0);}
.m1a{transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248000,0.000000,0.000000,0.250000,0,0);}
.m17{transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248250,0.000000,0.000000,0.250000,0,0);}
.m7{transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248500,0.000000,0.000000,0.250000,0,0);}
.m14{transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.248750,0.000000,0.000000,0.250000,0,0);}
.m10{transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249000,0.000000,0.000000,0.250000,0,0);}
.m15{transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249250,0.000000,0.000000,0.250000,0,0);}
.m3{transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.249500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.249500,0.000000,0.000000,0.250000,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(0.250250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250250,0.000000,0.000000,0.250000,0,0);}
.m1b{transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250500,0.000000,0.000000,0.250000,0,0);}
.m16{transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250750,0.000000,0.000000,0.250000,0,0);}
.m18{transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251000,0.000000,0.000000,0.250000,0,0);}
.ma{transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251250,0.000000,0.000000,0.250000,0,0);}
.m1c{transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251500,0.000000,0.000000,0.250000,0,0);}
.m24{transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.251750,0.000000,0.000000,0.250000,0,0);}
.mf{transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252000,0.000000,0.000000,0.250000,0,0);}
.me{transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252250,0.000000,0.000000,0.250000,0,0);}
.m9{transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252500,0.000000,0.000000,0.250000,0,0);}
.m1e{transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252750,0.000000,0.000000,0.250000,0,0);}
.m28{transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253000,0.000000,0.000000,0.250000,0,0);}
.m12{transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253250,0.000000,0.000000,0.250000,0,0);}
.m19{transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253500,0.000000,0.000000,0.250000,0,0);}
.m6{transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.253750,0.000000,0.000000,0.250000,0,0);}
.m8{transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254000,0.000000,0.000000,0.250000,0,0);}
.m21{transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254250,0.000000,0.000000,0.250000,0,0);}
.m13{transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254500,0.000000,0.000000,0.250000,0,0);}
.m22{transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.254750,0.000000,0.000000,0.250000,0,0);}
.mb{transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.255000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.255000,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);}
.v3{vertical-align:-22.854000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:21.696000px;}
.v2{vertical-align:26.028000px;}
.v1{vertical-align:37.488000px;}
.v5{vertical-align:65.454000px;}
.ls2c{letter-spacing:-0.324000px;}
.ls0{letter-spacing:0.000000px;}
.ls12{letter-spacing:0.000383px;}
.ls1a{letter-spacing:0.000386px;}
.ls13{letter-spacing:0.008639px;}
.ls16{letter-spacing:0.008642px;}
.ls1b{letter-spacing:0.043205px;}
.ls18{letter-spacing:0.051042px;}
.ls11{letter-spacing:1.321200px;}
.lsc{letter-spacing:2.449834px;}
.lsd{letter-spacing:2.964877px;}
.lsa{letter-spacing:2.983559px;}
.lsb{letter-spacing:2.987468px;}
.ls1d{letter-spacing:2.988600px;}
.ls6{letter-spacing:3.512344px;}
.ls9{letter-spacing:3.557845px;}
.ls8{letter-spacing:3.584074px;}
.ls2{letter-spacing:5.123296px;}
.ls5{letter-spacing:5.161426px;}
.ls4{letter-spacing:5.161969px;}
.ls7{letter-spacing:5.162887px;}
.ls1{letter-spacing:5.167969px;}
.ls3{letter-spacing:5.168887px;}
.ls17{letter-spacing:9.471163px;}
.ls14{letter-spacing:9.471166px;}
.ls19{letter-spacing:10.363860px;}
.ls15{letter-spacing:10.401274px;}
.ls22{letter-spacing:13.339300px;}
.ls23{letter-spacing:13.345246px;}
.ls21{letter-spacing:13.556424px;}
.ls28{letter-spacing:13.726871px;}
.ls27{letter-spacing:13.732753px;}
.ls1c{letter-spacing:14.301752px;}
.lsf{letter-spacing:14.764573px;}
.ls1f{letter-spacing:14.824349px;}
.ls2b{letter-spacing:14.942383px;}
.ls1e{letter-spacing:14.943900px;}
.ls29{letter-spacing:14.948383px;}
.lse{letter-spacing:15.183002px;}
.ls26{letter-spacing:15.302554px;}
.ls10{letter-spacing:15.900310px;}
.ls25{letter-spacing:15.960085px;}
.ls2a{letter-spacing:16.436100px;}
.ls20{letter-spacing:17.872904px;}
.ls24{letter-spacing:21.522600px;}
.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;}
}
.ws6{word-spacing:-20.658450px;}
.wsb2{word-spacing:-15.066000px;}
.ws19{word-spacing:-14.943900px;}
.wsa3{word-spacing:-14.920027px;}
.ws1{word-spacing:-13.824000px;}
.ws15{word-spacing:-13.449600px;}
.ws1a{word-spacing:-11.955150px;}
.wsc{word-spacing:-3.615230px;}
.wsb{word-spacing:-2.567141px;}
.ws8e{word-spacing:-2.271473px;}
.ws1c{word-spacing:-1.673717px;}
.ws2{word-spacing:-1.638000px;}
.ws6f{word-spacing:-1.613941px;}
.ws6e{word-spacing:-1.554166px;}
.ws96{word-spacing:-1.315063px;}
.ws65{word-spacing:-1.255288px;}
.ws6c{word-spacing:-1.195512px;}
.ws7d{word-spacing:-1.135736px;}
.ws97{word-spacing:-1.119139px;}
.ws98{word-spacing:-1.101568px;}
.ws99{word-spacing:-1.075961px;}
.ws7a{word-spacing:-1.016185px;}
.ws3f{word-spacing:-0.836858px;}
.ws3d{word-spacing:-0.808786px;}
.ws8a{word-spacing:-0.806976px;}
.ws60{word-spacing:-0.777083px;}
.ws91{word-spacing:-0.765570px;}
.wsf{word-spacing:-0.753178px;}
.ws92{word-spacing:-0.717307px;}
.ws4d{word-spacing:-0.657532px;}
.ws8f{word-spacing:-0.597756px;}
.ws86{word-spacing:-0.537980px;}
.ws78{word-spacing:-0.418429px;}
.ws36{word-spacing:-0.358654px;}
.wsa2{word-spacing:-0.301671px;}
.ws31{word-spacing:-0.298878px;}
.ws2b{word-spacing:-0.239102px;}
.wsb1{word-spacing:-0.228498px;}
.ws14{word-spacing:-0.215194px;}
.wsa9{word-spacing:-0.211236px;}
.ws2a{word-spacing:-0.195463px;}
.ws29{word-spacing:-0.194390px;}
.ws27{word-spacing:-0.193731px;}
.ws28{word-spacing:-0.189956px;}
.ws1f{word-spacing:-0.179327px;}
.ws11{word-spacing:-0.161395px;}
.wsa7{word-spacing:-0.131165px;}
.ws24{word-spacing:-0.119551px;}
.ws94{word-spacing:-0.108832px;}
.ws16{word-spacing:-0.107597px;}
.ws1b{word-spacing:-0.071731px;}
.ws20{word-spacing:-0.059776px;}
.ws73{word-spacing:-0.057325px;}
.ws64{word-spacing:-0.053798px;}
.ws41{word-spacing:-0.042187px;}
.ws7c{word-spacing:-0.005100px;}
.ws7b{word-spacing:-0.004175px;}
.ws95{word-spacing:-0.003250px;}
.ws9b{word-spacing:-0.003052px;}
.ws8b{word-spacing:-0.002314px;}
.ws74{word-spacing:-0.002092px;}
.ws62{word-spacing:-0.001690px;}
.ws9a{word-spacing:-0.001441px;}
.ws9e{word-spacing:-0.001282px;}
.ws90{word-spacing:-0.000646px;}
.ws5d{word-spacing:-0.000134px;}
.ws0{word-spacing:0.000000px;}
.ws18{word-spacing:0.010037px;}
.ws3{word-spacing:0.014110px;}
.ws5{word-spacing:0.014878px;}
.wsd{word-spacing:0.053798px;}
.ws2c{word-spacing:0.059776px;}
.ws5a{word-spacing:0.097114px;}
.ws61{word-spacing:0.107597px;}
.ws1e{word-spacing:0.119551px;}
.ws59{word-spacing:0.130182px;}
.ws13{word-spacing:0.161395px;}
.ws25{word-spacing:0.179327px;}
.wsac{word-spacing:0.203219px;}
.wsad{word-spacing:0.208280px;}
.ws6a{word-spacing:0.214617px;}
.wse{word-spacing:0.215194px;}
.wsae{word-spacing:0.221091px;}
.wsaf{word-spacing:0.224300px;}
.ws1d{word-spacing:0.239102px;}
.ws10{word-spacing:0.268992px;}
.ws84{word-spacing:0.277082px;}
.ws48{word-spacing:0.298878px;}
.ws3e{word-spacing:0.301710px;}
.ws40{word-spacing:0.308538px;}
.wsb3{word-spacing:0.324000px;}
.ws2e{word-spacing:0.358654px;}
.ws70{word-spacing:0.418429px;}
.ws6d{word-spacing:0.478205px;}
.ws42{word-spacing:0.537980px;}
.wsa1{word-spacing:0.597756px;}
.ws32{word-spacing:0.717307px;}
.ws5c{word-spacing:0.777083px;}
.ws49{word-spacing:0.836858px;}
.ws3c{word-spacing:0.896634px;}
.ws58{word-spacing:0.956410px;}
.ws21{word-spacing:1.016185px;}
.ws4a{word-spacing:1.075961px;}
.ws2d{word-spacing:1.135736px;}
.ws34{word-spacing:1.195512px;}
.ws26{word-spacing:1.255288px;}
.wsaa{word-spacing:1.260195px;}
.ws37{word-spacing:1.315063px;}
.wsa8{word-spacing:1.344186px;}
.ws57{word-spacing:1.374839px;}
.ws2f{word-spacing:1.434614px;}
.ws3a{word-spacing:1.438683px;}
.ws6b{word-spacing:1.494390px;}
.ws4c{word-spacing:1.613941px;}
.ws39{word-spacing:1.685679px;}
.ws38{word-spacing:1.733492px;}
.ws23{word-spacing:1.793268px;}
.ws22{word-spacing:1.853044px;}
.ws66{word-spacing:1.972595px;}
.ws45{word-spacing:2.092146px;}
.ws89{word-spacing:2.151922px;}
.ws8c{word-spacing:2.211697px;}
.ws5e{word-spacing:2.271473px;}
.ws8d{word-spacing:2.294127px;}
.wsb0{word-spacing:2.331248px;}
.ws35{word-spacing:2.450800px;}
.wsa5{word-spacing:2.570351px;}
.wsa4{word-spacing:2.583021px;}
.ws69{word-spacing:2.630126px;}
.ws5f{word-spacing:2.749678px;}
.ws63{word-spacing:2.905114px;}
.ws83{word-spacing:2.929004px;}
.ws5b{word-spacing:2.988780px;}
.ws87{word-spacing:3.048556px;}
.ws72{word-spacing:3.526760px;}
.ws30{word-spacing:3.646312px;}
.ws33{word-spacing:3.825638px;}
.ws4e{word-spacing:3.873485px;}
.wsa6{word-spacing:4.062823px;}
.ws88{word-spacing:4.124516px;}
.ws93{word-spacing:4.163263px;}
.ws55{word-spacing:4.184292px;}
.ws68{word-spacing:4.363619px;}
.ws9d{word-spacing:4.399153px;}
.ws9c{word-spacing:4.423394px;}
.ws71{word-spacing:4.483170px;}
.ws75{word-spacing:4.542946px;}
.ws44{word-spacing:4.841824px;}
.ws7f{word-spacing:5.678682px;}
.ws67{word-spacing:5.917784px;}
.ws77{word-spacing:6.336214px;}
.ws85{word-spacing:6.993745px;}
.ws17{word-spacing:7.101389px;}
.ws79{word-spacing:7.950155px;}
.wsab{word-spacing:8.428360px;}
.ws9{word-spacing:10.219098px;}
.ws4{word-spacing:10.230733px;}
.wsa{word-spacing:10.244011px;}
.ws8{word-spacing:10.260632px;}
.ws52{word-spacing:10.326445px;}
.ws4f{word-spacing:10.363860px;}
.ws7{word-spacing:11.362164px;}
.wsa0{word-spacing:12.911530px;}
.ws9f{word-spacing:12.971305px;}
.ws51{word-spacing:14.250307px;}
.ws43{word-spacing:14.764573px;}
.ws3b{word-spacing:14.884124px;}
.ws56{word-spacing:14.943900px;}
.ws54{word-spacing:16.050887px;}
.ws4b{word-spacing:16.498066px;}
.ws82{word-spacing:25.165528px;}
.ws12{word-spacing:29.824696px;}
.ws7e{word-spacing:34.610072px;}
.ws81{word-spacing:40.228979px;}
.ws46{word-spacing:59.354158px;}
.ws47{word-spacing:59.417396px;}
.ws50{word-spacing:98.115304px;}
.ws53{word-spacing:130.159080px;}
.ws76{word-spacing:1461.812298px;}
.ws80{word-spacing:1536.227053px;}
._4{margin-left:-19.845000px;}
._22{margin-left:-7.711052px;}
._3{margin-left:-6.129000px;}
._b{margin-left:-4.896269px;}
._1{margin-left:-3.357000px;}
._0{margin-left:-1.944000px;}
._15{width:1.120878px;}
._2{width:2.538000px;}
._d{width:3.751757px;}
._5{width:4.958028px;}
._7{width:6.032267px;}
._9{width:12.610325px;}
._11{width:13.748388px;}
._a{width:15.619335px;}
._8{width:16.946496px;}
._10{width:18.351109px;}
._e{width:20.024826px;}
._14{width:21.261085px;}
._c{width:22.401634px;}
._f{width:24.567772px;}
._17{width:25.640375px;}
._16{width:27.078347px;}
._21{width:28.333634px;}
._23{width:29.887800px;}
._6{width:31.896647px;}
._13{width:33.926532px;}
._12{width:59.681176px;}
._1c{width:348.503900px;}
._20{width:429.542132px;}
._19{width:654.425855px;}
._1b{width:657.364426px;}
._1d{width:711.449191px;}
._18{width:901.208126px;}
._1e{width:1204.657667px;}
._1a{width:1307.645159px;}
._1f{width:1332.577451px;}
.fc5{color:transparent;}
.fc4{color:rgb(0,76,147);}
.fc3{color:rgb(0,75,147);}
.fc2{color:rgb(255,255,255);}
.fc1{color:rgb(162,188,227);}
.fc0{color:rgb(0,0,0);}
.fs10{font-size:35.865600px;}
.fs16{font-size:36.338400px;}
.fs12{font-size:37.414656px;}
.fs13{font-size:39.753072px;}
.fs11{font-size:41.842800px;}
.fs4{font-size:42.000000px;}
.fsc{font-size:47.820600px;}
.fs14{font-size:49.106736px;}
.fs15{font-size:51.445152px;}
.fsf{font-size:53.798400px;}
.fs5{font-size:54.000000px;}
.fse{font-size:57.384600px;}
.fsd{font-size:59.775600px;}
.fs3{font-size:60.000000px;}
.fs1{font-size:63.000000px;}
.fsb{font-size:71.731200px;}
.fs0{font-size:72.000000px;}
.fsa{font-size:82.633800px;}
.fs2{font-size:102.000000px;}
.fs9{font-size:103.292400px;}
.fs7{font-size:126.000000px;}
.fs6{font-size:132.000000px;}
.fs8{font-size:180.000000px;}
.y0{bottom:0.000000px;}
.yd3{bottom:0.135958px;}
.yb4{bottom:0.821615px;}
.yb2{bottom:2.445515px;}
.yd1{bottom:2.571808px;}
.yb5{bottom:9.750781px;}
.yd4{bottom:13.676992px;}
.yc4{bottom:20.536485px;}
.yc0{bottom:20.587232px;}
.yb1{bottom:20.646859px;}
.yd0{bottom:21.062696px;}
.yc9{bottom:21.116522px;}
.ycd{bottom:21.518437px;}
.ybf{bottom:33.697687px;}
.yb0{bottom:33.757314px;}
.yc3{bottom:33.986944px;}
.ycf{bottom:34.513155px;}
.yc8{bottom:34.571548px;}
.ycc{bottom:34.973463px;}
.y24{bottom:45.273450px;}
.yb6{bottom:46.648081px;}
.ybe{bottom:46.808142px;}
.yaf{bottom:46.867769px;}
.yc2{bottom:47.441971px;}
.yc7{bottom:48.022007px;}
.ycb{bottom:48.428490px;}
.y211{bottom:50.709660px;}
.y208{bottom:50.871150px;}
.yd5{bottom:59.223039px;}
.ybd{bottom:59.918597px;}
.yae{bottom:60.322796px;}
.yc6{bottom:61.477034px;}
.y210{bottom:61.611180px;}
.y6{bottom:66.525004px;}
.y207{bottom:67.071150px;}
.y20f{bottom:72.512700px;}
.ybc{bottom:73.373624px;}
.yb7{bottom:83.545381px;}
.y7f{bottom:84.003000px;}
.y5{bottom:97.125005px;}
.y206{bottom:99.471150px;}
.yd6{bottom:104.769086px;}
.y205{bottom:115.671150px;}
.y23{bottom:117.754650px;}
.yb8{bottom:120.442680px;}
.y1be{bottom:128.895000px;}
.y108{bottom:130.201500px;}
.y204{bottom:131.871150px;}
.y1a7{bottom:134.497500px;}
.y4c{bottom:134.568000px;}
.y131{bottom:138.820500px;}
.y22{bottom:139.264499px;}
.y1bd{bottom:143.839500px;}
.y107{bottom:145.146000px;}
.y17a{bottom:146.064000px;}
.y4b{bottom:146.896500px;}
.yac{bottom:147.174000px;}
.y1a6{bottom:149.442000px;}
.yd7{bottom:150.315133px;}
.y1a5{bottom:155.155500px;}
.yb9{bottom:157.339980px;}
.y14d{bottom:158.590500px;}
.y1bc{bottom:158.782500px;}
.y106{bottom:160.089000px;}
.y1e4{bottom:160.222500px;}
.y130{bottom:161.343000px;}
.yab{bottom:162.118500px;}
.y203{bottom:164.271150px;}
.y1bb{bottom:164.496000px;}
.y4a{bottom:165.577500px;}
.y1a4{bottom:165.717000px;}
.y179{bottom:166.519500px;}
.y7e{bottom:166.651500px;}
.yaa{bottom:167.832000px;}
.y49{bottom:171.291000px;}
.y105{bottom:175.033500px;}
.y1ba{bottom:175.059000px;}
.y14c{bottom:179.046000px;}
.y202{bottom:180.471150px;}
.y1a3{bottom:180.661500px;}
.y1e3{bottom:180.676500px;}
.y104{bottom:180.747000px;}
.y7d{bottom:181.596000px;}
.y12f{bottom:181.797000px;}
.y178{bottom:186.973500px;}
.y48{bottom:188.835000px;}
.y1b9{bottom:190.002000px;}
.ya9{bottom:190.596000px;}
.y103{bottom:191.308500px;}
.yba{bottom:194.237280px;}
.y1a2{bottom:195.606000px;}
.y1b8{bottom:195.715500px;}
.yd8{bottom:195.861180px;}
.y7c{bottom:196.539000px;}
.y19{bottom:196.933500px;}
.y14b{bottom:199.500000px;}
.y47{bottom:200.665500px;}
.y1e2{bottom:201.130500px;}
.y12e{bottom:202.251000px;}
.y7b{bottom:202.252500px;}
.ybb{bottom:205.959618px;}
.y102{bottom:206.253000px;}
.y177{bottom:207.429000px;}
.yd9{bottom:207.583518px;}
.y21{bottom:209.518500px;}
.y18{bottom:209.533503px;}
.y1a1{bottom:210.549000px;}
.ya8{bottom:211.050000px;}
.y7a{bottom:218.529000px;}
.y46{bottom:219.345000px;}
.y101{bottom:221.197500px;}
.y1e1{bottom:221.586000px;}
.y20{bottom:222.118502px;}
.y17{bottom:222.133505px;}
.y12d{bottom:222.706500px;}
.y1a0{bottom:223.999500px;}
.y45{bottom:225.058500px;}
.y19f{bottom:225.493500px;}
.y100{bottom:226.911000px;}
.y176{bottom:227.883000px;}
.y14a{bottom:228.174000px;}
.y19e{bottom:231.207000px;}
.ya7{bottom:231.504000px;}
.y1f{bottom:234.718504px;}
.y16{bottom:234.733496px;}
.yff{bottom:237.472500px;}
.y79{bottom:241.293000px;}
.y19d{bottom:241.768500px;}
.y1e0{bottom:242.040000px;}
.y44{bottom:242.602500px;}
.y12c{bottom:243.160500px;}
.y149{bottom:248.628000px;}
.ya6{bottom:251.959500px;}
.yfe{bottom:252.417000px;}
.y43{bottom:254.434500px;}
.y175{bottom:256.557000px;}
.y19c{bottom:256.713000px;}
.yfd{bottom:258.130500px;}
.y1e{bottom:259.918497px;}
.y15{bottom:259.933500px;}
.y78{bottom:261.747000px;}
.y19b{bottom:262.426500px;}
.y1df{bottom:262.494000px;}
.y12b{bottom:263.614500px;}
.ydc{bottom:263.710500px;}
.y148{bottom:269.083500px;}
.ya5{bottom:272.413500px;}
.y1d{bottom:272.518500px;}
.y14{bottom:272.533503px;}
.y42{bottom:273.114000px;}
.y174{bottom:277.011000px;}
.ydb{bottom:280.074000px;}
.yfc{bottom:280.894500px;}
.y77{bottom:282.202500px;}
.y1de{bottom:282.949500px;}
.y12a{bottom:284.070000px;}
.y1c{bottom:285.118502px;}
.y13{bottom:285.133499px;}
.y19a{bottom:285.190500px;}
.y147{bottom:289.537500px;}
.y41{bottom:291.793500px;}
.yda{bottom:296.437500px;}
.y173{bottom:297.465000px;}
.yfb{bottom:301.348500px;}
.y76{bottom:302.656500px;}
.y1dd{bottom:303.403500px;}
.y129{bottom:304.524000px;}
.y199{bottom:305.644500px;}
.ya4{bottom:306.466500px;}
.y146{bottom:309.991500px;}
.y1b{bottom:310.318501px;}
.y12{bottom:310.333501px;}
.y40{bottom:310.473000px;}
.y3f{bottom:316.186500px;}
.y172{bottom:317.920500px;}
.yf9{bottom:321.802500px;}
.y1a{bottom:322.918500px;}
.y11{bottom:322.933500px;}
.y75{bottom:323.110500px;}
.y1dc{bottom:323.857500px;}
.y198{bottom:326.100000px;}
.yfa{bottom:327.226500px;}
.y145{bottom:330.447000px;}
.y128{bottom:333.198000px;}
.yca{bottom:334.716000px;}
.yce{bottom:336.339900px;}
.yd2{bottom:337.151850px;}
.y171{bottom:338.374500px;}
.yf8{bottom:342.258000px;}
.y74{bottom:343.566000px;}
.y1db{bottom:344.313000px;}
.y197{bottom:346.554000px;}
.ya3{bottom:347.245500px;}
.y10{bottom:348.133500px;}
.y144{bottom:350.901000px;}
.y127{bottom:353.652000px;}
.y170{bottom:358.828500px;}
.yf7{bottom:362.712000px;}
.y73{bottom:364.020000px;}
.y1da{bottom:364.767000px;}
.y196{bottom:367.008000px;}
.ya2{bottom:367.699500px;}
.y126{bottom:374.107500px;}
.y143{bottom:379.575000px;}
.yf6{bottom:383.167500px;}
.y72{bottom:384.474000px;}
.y1d9{bottom:385.221000px;}
.yf{bottom:386.785499px;}
.y195{bottom:387.463500px;}
.ya1{bottom:388.155000px;}
.y16f{bottom:392.883000px;}
.y125{bottom:394.561500px;}
.y142{bottom:400.029000px;}
.y70{bottom:404.929500px;}
.y1d8{bottom:405.676500px;}
.y194{bottom:407.917500px;}
.ye{bottom:408.044999px;}
.ya0{bottom:408.609000px;}
.y71{bottom:410.352000px;}
.yf5{bottom:411.840000px;}
.y124{bottom:415.015500px;}
.y141{bottom:420.483000px;}
.y6f{bottom:425.383500px;}
.y1d7{bottom:426.130500px;}
.y9f{bottom:429.063000px;}
.yf4{bottom:432.295500px;}
.y123{bottom:435.471000px;}
.y140{bottom:440.938500px;}
.y193{bottom:441.970500px;}
.y6e{bottom:443.596500px;}
.y6d{bottom:445.837500px;}
.y16e{bottom:446.509500px;}
.y1d6{bottom:446.584500px;}
.y9e{bottom:449.518500px;}
.yf3{bottom:452.749500px;}
.y122{bottom:455.925000px;}
.y13f{bottom:461.392500px;}
.y16d{bottom:462.873000px;}
.y201{bottom:464.892000px;}
.y6c{bottom:466.293000px;}
.y1d5{bottom:467.040000px;}
.y9d{bottom:469.972500px;}
.yf2{bottom:473.203500px;}
.y16c{bottom:479.236500px;}
.y13e{bottom:481.848000px;}
.y192{bottom:482.749500px;}
.y121{bottom:484.599000px;}
.y200{bottom:485.346000px;}
.y6b{bottom:486.747000px;}
.y1d4{bottom:487.494000px;}
.yf1{bottom:493.659000px;}
.yd{bottom:502.864502px;}
.y16b{bottom:503.109000px;}
.y191{bottom:503.203500px;}
.y120{bottom:505.053000px;}
.y1ff{bottom:505.800000px;}
.y1d3{bottom:507.948000px;}
.y9c{bottom:508.734000px;}
.yf0{bottom:514.113000px;}
.y13d{bottom:515.901000px;}
.yc{bottom:520.864502px;}
.y190{bottom:523.659000px;}
.y6a{bottom:525.508500px;}
.y1fe{bottom:526.255500px;}
.y16a{bottom:526.981500px;}
.y1d2{bottom:528.403500px;}
.y9b{bottom:529.188000px;}
.yb{bottom:538.864499px;}
.y3e{bottom:540.873000px;}
.yef{bottom:542.787000px;}
.y169{bottom:543.345000px;}
.y18f{bottom:544.113000px;}
.y11f{bottom:545.962500px;}
.y1fd{bottom:546.709500px;}
.y1d1{bottom:548.857500px;}
.y9a{bottom:549.642000px;}
.y13c{bottom:556.678500px;}
.ya{bottom:556.864499px;}
.yee{bottom:563.241000px;}
.y18e{bottom:564.567000px;}
.y11e{bottom:566.416500px;}
.y1fc{bottom:567.163500px;}
.y168{bottom:567.517500px;}
.y1d0{bottom:569.313000px;}
.y99{bottom:570.097500px;}
.yc1{bottom:571.801500px;}
.y69{bottom:573.328500px;}
.yc5{bottom:573.425400px;}
.y13b{bottom:577.134000px;}
.yed{bottom:583.696500px;}
.y18d{bottom:585.022500px;}
.y11d{bottom:586.872000px;}
.y1fb{bottom:587.619000px;}
.y1cf{bottom:589.767000px;}
.y68{bottom:593.782500px;}
.y167{bottom:595.425000px;}
.y13a{bottom:597.588000px;}
.y3d{bottom:603.918000px;}
.yec{bottom:604.150500px;}
.y18c{bottom:605.476500px;}
.y11c{bottom:607.326000px;}
.y1fa{bottom:608.073000px;}
.y98{bottom:608.857500px;}
.y1ce{bottom:610.221000px;}
.y67{bottom:614.238000px;}
.y139{bottom:618.042000px;}
.y166{bottom:619.297500px;}
.y3c{bottom:622.597500px;}
.yeb{bottom:624.604500px;}
.y18b{bottom:625.930500px;}
.y11b{bottom:627.780000px;}
.y1f9{bottom:628.527000px;}
.y97{bottom:629.311500px;}
.y1cd{bottom:630.676500px;}
.y66{bottom:634.692000px;}
.y138{bottom:638.497500px;}
.y3b{bottom:641.278500px;}
.y165{bottom:643.470000px;}
.yea{bottom:645.060000px;}
.y9{bottom:645.510000px;}
.y18a{bottom:646.386000px;}
.y1f8{bottom:648.982500px;}
.y96{bottom:649.767000px;}
.y1cc{bottom:651.130500px;}
.y65{bottom:655.146000px;}
.y11a{bottom:656.454000px;}
.y137{bottom:658.951500px;}
.y3a{bottom:659.958000px;}
.ye9{bottom:665.514000px;}
.y8{bottom:666.771000px;}
.y1f7{bottom:669.436500px;}
.y95{bottom:670.221000px;}
.y164{bottom:671.377500px;}
.y1cb{bottom:671.584500px;}
.y2d{bottom:674.491950px;}
.y189{bottom:675.060000px;}
.y64{bottom:675.601500px;}
.y119{bottom:676.908000px;}
.y39{bottom:678.637500px;}
.ye8{bottom:685.968000px;}
.y163{bottom:687.741000px;}
.y1f6{bottom:689.890500px;}
.y94{bottom:690.676500px;}
.y1ca{bottom:692.040000px;}
.y188{bottom:695.514000px;}
.y63{bottom:696.055500px;}
.y38{bottom:697.317000px;}
.y118{bottom:697.363500px;}
.y136{bottom:697.713000px;}
.y162{bottom:704.104500px;}
.y1f5{bottom:710.346000px;}
.y93{bottom:711.130500px;}
.y1c9{bottom:712.494000px;}
.y187{bottom:715.968000px;}
.y37{bottom:715.998000px;}
.y62{bottom:716.509500px;}
.y117{bottom:717.817500px;}
.ye7{bottom:724.729500px;}
.y7{bottom:726.298500px;}
.y161{bottom:727.977000px;}
.y2c{bottom:728.491950px;}
.y1f4{bottom:730.800000px;}
.y92{bottom:731.584500px;}
.y1c8{bottom:732.948000px;}
.y186{bottom:736.423500px;}
.y61{bottom:736.965000px;}
.y116{bottom:738.271500px;}
.y160{bottom:744.340500px;}
.ye6{bottom:745.183500px;}
.y135{bottom:745.533000px;}
.y36{bottom:750.369000px;}
.y1f3{bottom:751.255500px;}
.y91{bottom:752.040000px;}
.y4{bottom:752.599495px;}
.y1c7{bottom:753.403500px;}
.y185{bottom:756.877500px;}
.y60{bottom:757.419000px;}
.y115{bottom:758.727000px;}
.ye5{bottom:765.639000px;}
.y134{bottom:765.987000px;}
.y15f{bottom:768.214500px;}
.y1f2{bottom:771.709500px;}
.y90{bottom:772.494000px;}
.y1c6{bottom:773.857500px;}
.y184{bottom:777.331500px;}
.y5f{bottom:777.873000px;}
.y114{bottom:779.181000px;}
.y1b7{bottom:779.742000px;}
.y2b{bottom:782.491950px;}
.ye4{bottom:786.093000px;}
.y15e{bottom:792.087000px;}
.y1f1{bottom:792.163500px;}
.y1c5{bottom:794.311500px;}
.y35{bottom:794.581500px;}
.y183{bottom:797.787000px;}
.y5e{bottom:798.328500px;}
.y8f{bottom:801.168000px;}
.ye3{bottom:806.547000px;}
.yad{bottom:807.264000px;}
.y113{bottom:807.855000px;}
.y1b6{bottom:808.416000px;}
.yb3{bottom:808.887900px;}
.y1f0{bottom:812.619000px;}
.y1c4{bottom:814.767000px;}
.y133{bottom:815.728500px;}
.y15d{bottom:815.959500px;}
.y5d{bottom:818.782500px;}
.y8e{bottom:821.622000px;}
.ye2{bottom:827.002500px;}
.y112{bottom:828.309000px;}
.y1b5{bottom:828.870000px;}
.y182{bottom:831.840000px;}
.y132{bottom:832.092000px;}
.y1ef{bottom:833.073000px;}
.y1c3{bottom:835.221000px;}
.y2a{bottom:836.491950px;}
.y15c{bottom:839.832000px;}
.y8d{bottom:842.076000px;}
.y5c{bottom:847.456500px;}
.y111{bottom:848.764500px;}
.y1b4{bottom:849.324000px;}
.y1ee{bottom:853.527000px;}
.y1c2{bottom:855.675000px;}
.y15b{bottom:856.195500px;}
.y8c{bottom:862.531500px;}
.y34{bottom:865.708500px;}
.y5b{bottom:867.910500px;}
.y110{bottom:869.218500px;}
.y181{bottom:872.619000px;}
.y1ed{bottom:873.982500px;}
.y1c1{bottom:876.130500px;}
.y1b3{bottom:877.998000px;}
.y3{bottom:879.369000px;}
.y15a{bottom:880.068000px;}
.y8b{bottom:882.985500px;}
.y5a{bottom:888.366000px;}
.y10f{bottom:889.672500px;}
.y180{bottom:893.073000px;}
.y1ec{bottom:894.436500px;}
.y159{bottom:896.433000px;}
.y1c0{bottom:896.584500px;}
.y29{bottom:897.096300px;}
.y1b1{bottom:898.452000px;}
.y33{bottom:900.079500px;}
.y1b2{bottom:903.876000px;}
.y58{bottom:908.820000px;}
.y10e{bottom:910.128000px;}
.y17e{bottom:913.527000px;}
.y59{bottom:914.242500px;}
.y1eb{bottom:914.890500px;}
.y1bf{bottom:917.038500px;}
.y1b0{bottom:918.907500px;}
.y17f{bottom:918.951000px;}
.y158{bottom:920.305500px;}
.y8a{bottom:921.747000px;}
.ye1{bottom:929.274000px;}
.y10d{bottom:930.582000px;}
.y17d{bottom:933.982500px;}
.y32{bottom:934.450500px;}
.y28{bottom:934.896300px;}
.y1ea{bottom:935.346000px;}
.y57{bottom:937.494000px;}
.y1af{bottom:939.361500px;}
.y89{bottom:942.201000px;}
.y157{bottom:944.178000px;}
.y2{bottom:945.126001px;}
.y10c{bottom:951.036000px;}
.y17c{bottom:954.436500px;}
.y1e9{bottom:955.800000px;}
.y56{bottom:957.948000px;}
.y1ae{bottom:959.815500px;}
.y156{bottom:960.541500px;}
.y88{bottom:962.655000px;}
.y20e{bottom:965.341950px;}
.y1{bottom:966.726000px;}
.y31{bottom:968.821500px;}
.y10b{bottom:971.491500px;}
.y27{bottom:972.696300px;}
.y1e8{bottom:976.254000px;}
.y55{bottom:978.402000px;}
.y1ad{bottom:980.271000px;}
.y87{bottom:983.110500px;}
.y155{bottom:984.414000px;}
.y1e7{bottom:996.709500px;}
.y20d{bottom:997.741950px;}
.y54{bottom:998.857500px;}
.y1ac{bottom:1000.725000px;}
.y30{bottom:1003.192500px;}
.y86{bottom:1003.564500px;}
.y154{bottom:1008.286500px;}
.y10a{bottom:1010.251500px;}
.y26{bottom:1010.496300px;}
.y1e6{bottom:1017.163500px;}
.y53{bottom:1019.311500px;}
.y85{bottom:1024.018500px;}
.y1ab{bottom:1029.399000px;}
.y20c{bottom:1030.141950px;}
.y153{bottom:1032.160500px;}
.y1e5{bottom:1037.617500px;}
.y52{bottom:1039.767000px;}
.y83{bottom:1044.474000px;}
.y20b{bottom:1046.341950px;}
.y25{bottom:1048.296300px;}
.y152{bottom:1048.524000px;}
.y1aa{bottom:1049.853000px;}
.y84{bottom:1049.896500px;}
.y109{bottom:1058.073000px;}
.y51{bottom:1060.221000px;}
.y20a{bottom:1062.541950px;}
.y151{bottom:1064.887500px;}
.y82{bottom:1064.928000px;}
.y1a9{bottom:1070.308500px;}
.y17b{bottom:1070.350500px;}
.ye0{bottom:1078.527000px;}
.y50{bottom:1080.675000px;}
.y2f{bottom:1081.075500px;}
.y81{bottom:1085.382000px;}
.y150{bottom:1089.058500px;}
.y1a8{bottom:1090.762500px;}
.ydf{bottom:1098.981000px;}
.y4f{bottom:1101.130500px;}
.y209{bottom:1101.522150px;}
.y80{bottom:1105.837500px;}
.y14f{bottom:1110.988500px;}
.y2e{bottom:1118.436000px;}
.yde{bottom:1119.436500px;}
.y14e{bottom:1132.920000px;}
.y4e{bottom:1139.890500px;}
.ydd{bottom:1145.313000px;}
.y4d{bottom:1197.574500px;}
.h1f{height:7.307550px;}
.h1b{height:8.119500px;}
.h24{height:25.763284px;}
.h28{height:26.763232px;}
.h13{height:26.899200px;}
.h18{height:27.238893px;}
.h1a{height:28.941323px;}
.h19{height:29.924417px;}
.h1c{height:31.794693px;}
.h15{height:31.920384px;}
.h7{height:32.130000px;}
.h14{height:37.240092px;}
.h27{height:39.042000px;}
.h1d{height:39.275798px;}
.h9{height:39.771000px;}
.h26{height:40.149000px;}
.h20{height:41.146074px;}
.h16{height:41.364715px;}
.h25{height:41.544042px;}
.h6{height:45.900000px;}
.h12{height:47.880576px;}
.h3{height:48.195000px;}
.h11{height:49.637990px;}
.h10{height:53.200284px;}
.h2{height:55.080000px;}
.h22{height:58.930092px;}
.h21{height:58.936092px;}
.hf{height:63.840768px;}
.h5{height:78.030000px;}
.he{height:91.930236px;}
.hb{height:92.799000px;}
.hd{height:95.712891px;}
.ha{height:100.998047px;}
.h23{height:118.654284px;}
.h4{height:119.055004px;}
.hc{height:135.270000px;}
.h17{height:217.602600px;}
.h1e{height:219.226500px;}
.h0{height:1262.833500px;}
.h8{height:1262.835000px;}
.h1{height:1263.000000px;}
.w5{width:22.506442px;}
.w4{width:336.959250px;}
.w2{width:637.794021px;}
.w0{width:892.912500px;}
.w3{width:892.914000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x24{left:5.527191px;}
.x23{left:11.054382px;}
.x25{left:33.305220px;}
.x21{left:34.774304px;}
.x31{left:41.361057px;}
.x29{left:42.455071px;}
.x30{left:45.018394px;}
.x7{left:54.963300px;}
.x2f{left:57.508053px;}
.x32{left:86.494938px;}
.x2d{left:90.722580px;}
.x2b{left:94.088621px;}
.x12{left:95.457000px;}
.x1f{left:96.951000px;}
.x1{left:102.045000px;}
.x2{left:106.297500px;}
.x3f{left:109.953000px;}
.x15{left:112.027500px;}
.x13{left:113.190000px;}
.x1c{left:114.435000px;}
.x36{left:118.593000px;}
.x14{left:119.665500px;}
.x35{left:121.407000px;}
.x9{left:136.299000px;}
.x2e{left:137.892648px;}
.x11{left:148.837500px;}
.x2a{left:153.644478px;}
.x2c{left:159.328128px;}
.xa{left:165.232500px;}
.x19{left:172.167000px;}
.x1b{left:173.355000px;}
.x1a{left:178.144500px;}
.x27{left:182.874678px;}
.x6{left:185.359650px;}
.x47{left:192.301800px;}
.x48{left:194.427750px;}
.x4{left:203.484001px;}
.x3c{left:210.904500px;}
.x3d{left:219.960000px;}
.x20{left:222.660228px;}
.xb{left:374.950500px;}
.xd{left:384.939000px;}
.xe{left:386.445000px;}
.xc{left:392.344500px;}
.xf{left:394.909500px;}
.x10{left:403.401000px;}
.x22{left:409.681650px;}
.x42{left:438.424500px;}
.x1d{left:442.720500px;}
.x3{left:454.959000px;}
.x26{left:460.500000px;}
.x5{left:464.381100px;}
.x46{left:478.507500px;}
.x3a{left:529.825500px;}
.x3b{left:535.803000px;}
.x43{left:542.580000px;}
.x37{left:561.723000px;}
.x8{left:649.921350px;}
.x38{left:656.115000px;}
.x39{left:662.092500px;}
.x33{left:668.850000px;}
.x34{left:678.576000px;}
.x16{left:687.127500px;}
.x45{left:699.393000px;}
.x49{left:707.437050px;}
.x17{left:721.189500px;}
.x3e{left:722.259000px;}
.x18{left:727.167000px;}
.x44{left:740.923500px;}
.x40{left:742.554000px;}
.x41{left:753.762000px;}
.x28{left:774.724650px;}
.x1e{left:791.479500px;}
@media print{
.v3{vertical-align:-20.314667pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:19.285333pt;}
.v2{vertical-align:23.136000pt;}
.v1{vertical-align:33.322667pt;}
.v5{vertical-align:58.181333pt;}
.ls2c{letter-spacing:-0.288000pt;}
.ls0{letter-spacing:0.000000pt;}
.ls12{letter-spacing:0.000341pt;}
.ls1a{letter-spacing:0.000344pt;}
.ls13{letter-spacing:0.007679pt;}
.ls16{letter-spacing:0.007682pt;}
.ls1b{letter-spacing:0.038405pt;}
.ls18{letter-spacing:0.045371pt;}
.ls11{letter-spacing:1.174400pt;}
.lsc{letter-spacing:2.177630pt;}
.lsd{letter-spacing:2.635446pt;}
.lsa{letter-spacing:2.652052pt;}
.lsb{letter-spacing:2.655527pt;}
.ls1d{letter-spacing:2.656533pt;}
.ls6{letter-spacing:3.122083pt;}
.ls9{letter-spacing:3.162529pt;}
.ls8{letter-spacing:3.185843pt;}
.ls2{letter-spacing:4.554041pt;}
.ls5{letter-spacing:4.587934pt;}
.ls4{letter-spacing:4.588417pt;}
.ls7{letter-spacing:4.589233pt;}
.ls1{letter-spacing:4.593750pt;}
.ls3{letter-spacing:4.594566pt;}
.ls17{letter-spacing:8.418811pt;}
.ls14{letter-spacing:8.418814pt;}
.ls19{letter-spacing:9.212320pt;}
.ls15{letter-spacing:9.245577pt;}
.ls22{letter-spacing:11.857155pt;}
.ls23{letter-spacing:11.862441pt;}
.ls21{letter-spacing:12.050155pt;}
.ls28{letter-spacing:12.201663pt;}
.ls27{letter-spacing:12.206892pt;}
.ls1c{letter-spacing:12.712669pt;}
.lsf{letter-spacing:13.124065pt;}
.ls1f{letter-spacing:13.177199pt;}
.ls2b{letter-spacing:13.282118pt;}
.ls1e{letter-spacing:13.283467pt;}
.ls29{letter-spacing:13.287452pt;}
.lse{letter-spacing:13.496002pt;}
.ls26{letter-spacing:13.602270pt;}
.ls10{letter-spacing:14.133609pt;}
.ls25{letter-spacing:14.186742pt;}
.ls2a{letter-spacing:14.609867pt;}
.ls20{letter-spacing:15.887026pt;}
.ls24{letter-spacing:19.131200pt;}
.ws6{word-spacing:-18.363067pt;}
.wsb2{word-spacing:-13.392000pt;}
.ws19{word-spacing:-13.283467pt;}
.wsa3{word-spacing:-13.262246pt;}
.ws1{word-spacing:-12.288000pt;}
.ws15{word-spacing:-11.955200pt;}
.ws1a{word-spacing:-10.626800pt;}
.wsc{word-spacing:-3.213538pt;}
.wsb{word-spacing:-2.281903pt;}
.ws8e{word-spacing:-2.019087pt;}
.ws1c{word-spacing:-1.487748pt;}
.ws2{word-spacing:-1.456000pt;}
.ws6f{word-spacing:-1.434614pt;}
.ws6e{word-spacing:-1.381481pt;}
.ws96{word-spacing:-1.168945pt;}
.ws65{word-spacing:-1.115811pt;}
.ws6c{word-spacing:-1.062677pt;}
.ws7d{word-spacing:-1.009543pt;}
.ws97{word-spacing:-0.994790pt;}
.ws98{word-spacing:-0.979172pt;}
.ws99{word-spacing:-0.956410pt;}
.ws7a{word-spacing:-0.903276pt;}
.ws3f{word-spacing:-0.743874pt;}
.ws3d{word-spacing:-0.718921pt;}
.ws8a{word-spacing:-0.717312pt;}
.ws60{word-spacing:-0.690740pt;}
.ws91{word-spacing:-0.680507pt;}
.wsf{word-spacing:-0.669491pt;}
.ws92{word-spacing:-0.637606pt;}
.ws4d{word-spacing:-0.584473pt;}
.ws8f{word-spacing:-0.531339pt;}
.ws86{word-spacing:-0.478205pt;}
.ws78{word-spacing:-0.371937pt;}
.ws36{word-spacing:-0.318803pt;}
.wsa2{word-spacing:-0.268152pt;}
.ws31{word-spacing:-0.265669pt;}
.ws2b{word-spacing:-0.212535pt;}
.wsb1{word-spacing:-0.203110pt;}
.ws14{word-spacing:-0.191283pt;}
.wsa9{word-spacing:-0.187765pt;}
.ws2a{word-spacing:-0.173745pt;}
.ws29{word-spacing:-0.172791pt;}
.ws27{word-spacing:-0.172206pt;}
.ws28{word-spacing:-0.168849pt;}
.ws1f{word-spacing:-0.159402pt;}
.ws11{word-spacing:-0.143462pt;}
.wsa7{word-spacing:-0.116591pt;}
.ws24{word-spacing:-0.106268pt;}
.ws94{word-spacing:-0.096740pt;}
.ws16{word-spacing:-0.095642pt;}
.ws1b{word-spacing:-0.063761pt;}
.ws20{word-spacing:-0.053134pt;}
.ws73{word-spacing:-0.050956pt;}
.ws64{word-spacing:-0.047821pt;}
.ws41{word-spacing:-0.037499pt;}
.ws7c{word-spacing:-0.004533pt;}
.ws7b{word-spacing:-0.003711pt;}
.ws95{word-spacing:-0.002889pt;}
.ws9b{word-spacing:-0.002713pt;}
.ws8b{word-spacing:-0.002057pt;}
.ws74{word-spacing:-0.001859pt;}
.ws62{word-spacing:-0.001502pt;}
.ws9a{word-spacing:-0.001281pt;}
.ws9e{word-spacing:-0.001139pt;}
.ws90{word-spacing:-0.000574pt;}
.ws5d{word-spacing:-0.000119pt;}
.ws0{word-spacing:0.000000pt;}
.ws18{word-spacing:0.008922pt;}
.ws3{word-spacing:0.012542pt;}
.ws5{word-spacing:0.013225pt;}
.wsd{word-spacing:0.047821pt;}
.ws2c{word-spacing:0.053134pt;}
.ws5a{word-spacing:0.086323pt;}
.ws61{word-spacing:0.095642pt;}
.ws1e{word-spacing:0.106268pt;}
.ws59{word-spacing:0.115717pt;}
.ws13{word-spacing:0.143462pt;}
.ws25{word-spacing:0.159402pt;}
.wsac{word-spacing:0.180639pt;}
.wsad{word-spacing:0.185138pt;}
.ws6a{word-spacing:0.190770pt;}
.wse{word-spacing:0.191283pt;}
.wsae{word-spacing:0.196525pt;}
.wsaf{word-spacing:0.199377pt;}
.ws1d{word-spacing:0.212535pt;}
.ws10{word-spacing:0.239104pt;}
.ws84{word-spacing:0.246295pt;}
.ws48{word-spacing:0.265669pt;}
.ws3e{word-spacing:0.268187pt;}
.ws40{word-spacing:0.274256pt;}
.wsb3{word-spacing:0.288000pt;}
.ws2e{word-spacing:0.318803pt;}
.ws70{word-spacing:0.371937pt;}
.ws6d{word-spacing:0.425071pt;}
.ws42{word-spacing:0.478205pt;}
.wsa1{word-spacing:0.531339pt;}
.ws32{word-spacing:0.637606pt;}
.ws5c{word-spacing:0.690740pt;}
.ws49{word-spacing:0.743874pt;}
.ws3c{word-spacing:0.797008pt;}
.ws58{word-spacing:0.850142pt;}
.ws21{word-spacing:0.903276pt;}
.ws4a{word-spacing:0.956410pt;}
.ws2d{word-spacing:1.009543pt;}
.ws34{word-spacing:1.062677pt;}
.ws26{word-spacing:1.115811pt;}
.wsaa{word-spacing:1.120174pt;}
.ws37{word-spacing:1.168945pt;}
.wsa8{word-spacing:1.194832pt;}
.ws57{word-spacing:1.222079pt;}
.ws2f{word-spacing:1.275213pt;}
.ws3a{word-spacing:1.278829pt;}
.ws6b{word-spacing:1.328347pt;}
.ws4c{word-spacing:1.434614pt;}
.ws39{word-spacing:1.498381pt;}
.ws38{word-spacing:1.540882pt;}
.ws23{word-spacing:1.594016pt;}
.ws22{word-spacing:1.647150pt;}
.ws66{word-spacing:1.753418pt;}
.ws45{word-spacing:1.859685pt;}
.ws89{word-spacing:1.912819pt;}
.ws8c{word-spacing:1.965953pt;}
.ws5e{word-spacing:2.019087pt;}
.ws8d{word-spacing:2.039224pt;}
.wsb0{word-spacing:2.072221pt;}
.ws35{word-spacing:2.178489pt;}
.wsa5{word-spacing:2.284756pt;}
.wsa4{word-spacing:2.296019pt;}
.ws69{word-spacing:2.337890pt;}
.ws5f{word-spacing:2.444158pt;}
.ws63{word-spacing:2.582323pt;}
.ws83{word-spacing:2.603559pt;}
.ws5b{word-spacing:2.656693pt;}
.ws87{word-spacing:2.709827pt;}
.ws72{word-spacing:3.134898pt;}
.ws30{word-spacing:3.241166pt;}
.ws33{word-spacing:3.400567pt;}
.ws4e{word-spacing:3.443098pt;}
.wsa6{word-spacing:3.611398pt;}
.ws88{word-spacing:3.666237pt;}
.ws93{word-spacing:3.700678pt;}
.ws55{word-spacing:3.719371pt;}
.ws68{word-spacing:3.878772pt;}
.ws9d{word-spacing:3.910358pt;}
.ws9c{word-spacing:3.931906pt;}
.ws71{word-spacing:3.985040pt;}
.ws75{word-spacing:4.038174pt;}
.ws44{word-spacing:4.303843pt;}
.ws7f{word-spacing:5.047717pt;}
.ws67{word-spacing:5.260253pt;}
.ws77{word-spacing:5.632190pt;}
.ws85{word-spacing:6.216662pt;}
.ws17{word-spacing:6.312346pt;}
.ws79{word-spacing:7.066804pt;}
.wsab{word-spacing:7.491875pt;}
.ws9{word-spacing:9.083643pt;}
.ws4{word-spacing:9.093985pt;}
.wsa{word-spacing:9.105788pt;}
.ws8{word-spacing:9.120562pt;}
.ws52{word-spacing:9.179062pt;}
.ws4f{word-spacing:9.212320pt;}
.ws7{word-spacing:10.099701pt;}
.wsa0{word-spacing:11.476915pt;}
.ws9f{word-spacing:11.530049pt;}
.ws51{word-spacing:12.666940pt;}
.ws43{word-spacing:13.124065pt;}
.ws3b{word-spacing:13.230333pt;}
.ws56{word-spacing:13.283467pt;}
.ws54{word-spacing:14.267455pt;}
.ws4b{word-spacing:14.664947pt;}
.ws82{word-spacing:22.369358pt;}
.ws12{word-spacing:26.510841pt;}
.ws7e{word-spacing:30.764509pt;}
.ws81{word-spacing:35.759092pt;}
.ws46{word-spacing:52.759251pt;}
.ws47{word-spacing:52.815463pt;}
.ws50{word-spacing:87.213604pt;}
.ws53{word-spacing:115.696960pt;}
.ws76{word-spacing:1299.388709pt;}
.ws80{word-spacing:1365.535158pt;}
._4{margin-left:-17.640000pt;}
._22{margin-left:-6.854269pt;}
._3{margin-left:-5.448000pt;}
._b{margin-left:-4.352239pt;}
._1{margin-left:-2.984000pt;}
._0{margin-left:-1.728000pt;}
._15{width:0.996336pt;}
._2{width:2.256000pt;}
._d{width:3.334895pt;}
._5{width:4.407136pt;}
._7{width:5.362015pt;}
._9{width:11.209178pt;}
._11{width:12.220789pt;}
._a{width:13.883853pt;}
._8{width:15.063552pt;}
._10{width:16.312097pt;}
._e{width:17.799845pt;}
._14{width:18.898742pt;}
._c{width:19.912563pt;}
._f{width:21.838019pt;}
._17{width:22.791445pt;}
._16{width:24.069642pt;}
._21{width:25.185453pt;}
._23{width:26.566933pt;}
._6{width:28.352575pt;}
._13{width:30.156917pt;}
._12{width:53.049935pt;}
._1c{width:309.781245pt;}
._20{width:381.815228pt;}
._19{width:581.711871pt;}
._1b{width:584.323934pt;}
._1d{width:632.399281pt;}
._18{width:801.073890pt;}
._1e{width:1070.806815pt;}
._1a{width:1162.351252pt;}
._1f{width:1184.513290pt;}
.fs10{font-size:31.880533pt;}
.fs16{font-size:32.300800pt;}
.fs12{font-size:33.257472pt;}
.fs13{font-size:35.336064pt;}
.fs11{font-size:37.193600pt;}
.fs4{font-size:37.333333pt;}
.fsc{font-size:42.507200pt;}
.fs14{font-size:43.650432pt;}
.fs15{font-size:45.729024pt;}
.fsf{font-size:47.820800pt;}
.fs5{font-size:48.000000pt;}
.fse{font-size:51.008533pt;}
.fsd{font-size:53.133867pt;}
.fs3{font-size:53.333333pt;}
.fs1{font-size:56.000000pt;}
.fsb{font-size:63.761067pt;}
.fs0{font-size:64.000000pt;}
.fsa{font-size:73.452267pt;}
.fs2{font-size:90.666667pt;}
.fs9{font-size:91.815467pt;}
.fs7{font-size:112.000000pt;}
.fs6{font-size:117.333333pt;}
.fs8{font-size:160.000000pt;}
.y0{bottom:0.000000pt;}
.yd3{bottom:0.120851pt;}
.yb4{bottom:0.730324pt;}
.yb2{bottom:2.173791pt;}
.yd1{bottom:2.286051pt;}
.yb5{bottom:8.667361pt;}
.yd4{bottom:12.157327pt;}
.yc4{bottom:18.254653pt;}
.yc0{bottom:18.299762pt;}
.yb1{bottom:18.352764pt;}
.yd0{bottom:18.722396pt;}
.yc9{bottom:18.770241pt;}
.ycd{bottom:19.127499pt;}
.ybf{bottom:29.953499pt;}
.yb0{bottom:30.006501pt;}
.yc3{bottom:30.210617pt;}
.ycf{bottom:30.678360pt;}
.yc8{bottom:30.730265pt;}
.ycc{bottom:31.087523pt;}
.y24{bottom:40.243067pt;}
.yb6{bottom:41.464961pt;}
.ybe{bottom:41.607237pt;}
.yaf{bottom:41.660239pt;}
.yc2{bottom:42.170640pt;}
.yc7{bottom:42.686229pt;}
.ycb{bottom:43.047546pt;}
.y211{bottom:45.075253pt;}
.y208{bottom:45.218800pt;}
.yd5{bottom:52.642701pt;}
.ybd{bottom:53.260975pt;}
.yae{bottom:53.620263pt;}
.yc6{bottom:54.646252pt;}
.y210{bottom:54.765493pt;}
.y6{bottom:59.133337pt;}
.y207{bottom:59.618800pt;}
.y20f{bottom:64.455733pt;}
.ybc{bottom:65.220999pt;}
.yb7{bottom:74.262561pt;}
.y7f{bottom:74.669333pt;}
.y5{bottom:86.333337pt;}
.y206{bottom:88.418800pt;}
.yd6{bottom:93.128076pt;}
.y205{bottom:102.818800pt;}
.y23{bottom:104.670800pt;}
.yb8{bottom:107.060160pt;}
.y1be{bottom:114.573333pt;}
.y108{bottom:115.734667pt;}
.y204{bottom:117.218800pt;}
.y1a7{bottom:119.553333pt;}
.y4c{bottom:119.616000pt;}
.y131{bottom:123.396000pt;}
.y22{bottom:123.790666pt;}
.y1bd{bottom:127.857333pt;}
.y107{bottom:129.018667pt;}
.y17a{bottom:129.834667pt;}
.y4b{bottom:130.574667pt;}
.yac{bottom:130.821333pt;}
.y1a6{bottom:132.837333pt;}
.yd7{bottom:133.613451pt;}
.y1a5{bottom:137.916000pt;}
.yb9{bottom:139.857760pt;}
.y14d{bottom:140.969333pt;}
.y1bc{bottom:141.140000pt;}
.y106{bottom:142.301333pt;}
.y1e4{bottom:142.420000pt;}
.y130{bottom:143.416000pt;}
.yab{bottom:144.105333pt;}
.y203{bottom:146.018800pt;}
.y1bb{bottom:146.218667pt;}
.y4a{bottom:147.180000pt;}
.y1a4{bottom:147.304000pt;}
.y179{bottom:148.017333pt;}
.y7e{bottom:148.134667pt;}
.yaa{bottom:149.184000pt;}
.y49{bottom:152.258667pt;}
.y105{bottom:155.585333pt;}
.y1ba{bottom:155.608000pt;}
.y14c{bottom:159.152000pt;}
.y202{bottom:160.418800pt;}
.y1a3{bottom:160.588000pt;}
.y1e3{bottom:160.601333pt;}
.y104{bottom:160.664000pt;}
.y7d{bottom:161.418667pt;}
.y12f{bottom:161.597333pt;}
.y178{bottom:166.198667pt;}
.y48{bottom:167.853333pt;}
.y1b9{bottom:168.890667pt;}
.ya9{bottom:169.418667pt;}
.y103{bottom:170.052000pt;}
.yba{bottom:172.655360pt;}
.y1a2{bottom:173.872000pt;}
.y1b8{bottom:173.969333pt;}
.yd8{bottom:174.098826pt;}
.y7c{bottom:174.701333pt;}
.y19{bottom:175.052000pt;}
.y14b{bottom:177.333333pt;}
.y47{bottom:178.369333pt;}
.y1e2{bottom:178.782667pt;}
.y12e{bottom:179.778667pt;}
.y7b{bottom:179.780000pt;}
.ybb{bottom:183.075216pt;}
.y102{bottom:183.336000pt;}
.y177{bottom:184.381333pt;}
.yd9{bottom:184.518682pt;}
.y21{bottom:186.238666pt;}
.y18{bottom:186.252002pt;}
.y1a1{bottom:187.154667pt;}
.ya8{bottom:187.600000pt;}
.y7a{bottom:194.248000pt;}
.y46{bottom:194.973333pt;}
.y101{bottom:196.620000pt;}
.y1e1{bottom:196.965333pt;}
.y20{bottom:197.438668pt;}
.y17{bottom:197.452004pt;}
.y12d{bottom:197.961333pt;}
.y1a0{bottom:199.110667pt;}
.y45{bottom:200.052000pt;}
.y19f{bottom:200.438667pt;}
.y100{bottom:201.698667pt;}
.y176{bottom:202.562667pt;}
.y14a{bottom:202.821333pt;}
.y19e{bottom:205.517333pt;}
.ya7{bottom:205.781333pt;}
.y1f{bottom:208.638670pt;}
.y16{bottom:208.651996pt;}
.yff{bottom:211.086667pt;}
.y79{bottom:214.482667pt;}
.y19d{bottom:214.905333pt;}
.y1e0{bottom:215.146667pt;}
.y44{bottom:215.646667pt;}
.y12c{bottom:216.142667pt;}
.y149{bottom:221.002667pt;}
.ya6{bottom:223.964000pt;}
.yfe{bottom:224.370667pt;}
.y43{bottom:226.164000pt;}
.y175{bottom:228.050667pt;}
.y19c{bottom:228.189333pt;}
.yfd{bottom:229.449333pt;}
.y1e{bottom:231.038664pt;}
.y15{bottom:231.052000pt;}
.y78{bottom:232.664000pt;}
.y19b{bottom:233.268000pt;}
.y1df{bottom:233.328000pt;}
.y12b{bottom:234.324000pt;}
.ydc{bottom:234.409333pt;}
.y148{bottom:239.185333pt;}
.ya5{bottom:242.145333pt;}
.y1d{bottom:242.238666pt;}
.y14{bottom:242.252002pt;}
.y42{bottom:242.768000pt;}
.y174{bottom:246.232000pt;}
.ydb{bottom:248.954667pt;}
.yfc{bottom:249.684000pt;}
.y77{bottom:250.846667pt;}
.y1de{bottom:251.510667pt;}
.y12a{bottom:252.506667pt;}
.y1c{bottom:253.438668pt;}
.y13{bottom:253.451999pt;}
.y19a{bottom:253.502667pt;}
.y147{bottom:257.366667pt;}
.y41{bottom:259.372000pt;}
.yda{bottom:263.500000pt;}
.y173{bottom:264.413333pt;}
.yfb{bottom:267.865333pt;}
.y76{bottom:269.028000pt;}
.y1dd{bottom:269.692000pt;}
.y129{bottom:270.688000pt;}
.y199{bottom:271.684000pt;}
.ya4{bottom:272.414667pt;}
.y146{bottom:275.548000pt;}
.y1b{bottom:275.838667pt;}
.y12{bottom:275.852001pt;}
.y40{bottom:275.976000pt;}
.y3f{bottom:281.054667pt;}
.y172{bottom:282.596000pt;}
.yf9{bottom:286.046667pt;}
.y1a{bottom:287.038667pt;}
.y11{bottom:287.052000pt;}
.y75{bottom:287.209333pt;}
.y1dc{bottom:287.873333pt;}
.y198{bottom:289.866667pt;}
.yfa{bottom:290.868000pt;}
.y145{bottom:293.730667pt;}
.y128{bottom:296.176000pt;}
.yca{bottom:297.525333pt;}
.yce{bottom:298.968800pt;}
.yd2{bottom:299.690533pt;}
.y171{bottom:300.777333pt;}
.yf8{bottom:304.229333pt;}
.y74{bottom:305.392000pt;}
.y1db{bottom:306.056000pt;}
.y197{bottom:308.048000pt;}
.ya3{bottom:308.662667pt;}
.y10{bottom:309.452000pt;}
.y144{bottom:311.912000pt;}
.y127{bottom:314.357333pt;}
.y170{bottom:318.958667pt;}
.yf7{bottom:322.410667pt;}
.y73{bottom:323.573333pt;}
.y1da{bottom:324.237333pt;}
.y196{bottom:326.229333pt;}
.ya2{bottom:326.844000pt;}
.y126{bottom:332.540000pt;}
.y143{bottom:337.400000pt;}
.yf6{bottom:340.593333pt;}
.y72{bottom:341.754667pt;}
.y1d9{bottom:342.418667pt;}
.yf{bottom:343.809333pt;}
.y195{bottom:344.412000pt;}
.ya1{bottom:345.026667pt;}
.y16f{bottom:349.229333pt;}
.y125{bottom:350.721333pt;}
.y142{bottom:355.581333pt;}
.y70{bottom:359.937333pt;}
.y1d8{bottom:360.601333pt;}
.y194{bottom:362.593333pt;}
.ye{bottom:362.706666pt;}
.ya0{bottom:363.208000pt;}
.y71{bottom:364.757333pt;}
.yf5{bottom:366.080000pt;}
.y124{bottom:368.902667pt;}
.y141{bottom:373.762667pt;}
.y6f{bottom:378.118667pt;}
.y1d7{bottom:378.782667pt;}
.y9f{bottom:381.389333pt;}
.yf4{bottom:384.262667pt;}
.y123{bottom:387.085333pt;}
.y140{bottom:391.945333pt;}
.y193{bottom:392.862667pt;}
.y6e{bottom:394.308000pt;}
.y6d{bottom:396.300000pt;}
.y16e{bottom:396.897333pt;}
.y1d6{bottom:396.964000pt;}
.y9e{bottom:399.572000pt;}
.yf3{bottom:402.444000pt;}
.y122{bottom:405.266667pt;}
.y13f{bottom:410.126667pt;}
.y16d{bottom:411.442667pt;}
.y201{bottom:413.237333pt;}
.y6c{bottom:414.482667pt;}
.y1d5{bottom:415.146667pt;}
.y9d{bottom:417.753333pt;}
.yf2{bottom:420.625333pt;}
.y16c{bottom:425.988000pt;}
.y13e{bottom:428.309333pt;}
.y192{bottom:429.110667pt;}
.y121{bottom:430.754667pt;}
.y200{bottom:431.418667pt;}
.y6b{bottom:432.664000pt;}
.y1d4{bottom:433.328000pt;}
.yf1{bottom:438.808000pt;}
.yd{bottom:446.990669pt;}
.y16b{bottom:447.208000pt;}
.y191{bottom:447.292000pt;}
.y120{bottom:448.936000pt;}
.y1ff{bottom:449.600000pt;}
.y1d3{bottom:451.509333pt;}
.y9c{bottom:452.208000pt;}
.yf0{bottom:456.989333pt;}
.y13d{bottom:458.578667pt;}
.yc{bottom:462.990669pt;}
.y190{bottom:465.474667pt;}
.y6a{bottom:467.118667pt;}
.y1fe{bottom:467.782667pt;}
.y16a{bottom:468.428000pt;}
.y1d2{bottom:469.692000pt;}
.y9b{bottom:470.389333pt;}
.yb{bottom:478.990666pt;}
.y3e{bottom:480.776000pt;}
.yef{bottom:482.477333pt;}
.y169{bottom:482.973333pt;}
.y18f{bottom:483.656000pt;}
.y11f{bottom:485.300000pt;}
.y1fd{bottom:485.964000pt;}
.y1d1{bottom:487.873333pt;}
.y9a{bottom:488.570667pt;}
.y13c{bottom:494.825333pt;}
.ya{bottom:494.990666pt;}
.yee{bottom:500.658667pt;}
.y18e{bottom:501.837333pt;}
.y11e{bottom:503.481333pt;}
.y1fc{bottom:504.145333pt;}
.y168{bottom:504.460000pt;}
.y1d0{bottom:506.056000pt;}
.y99{bottom:506.753333pt;}
.yc1{bottom:508.268000pt;}
.y69{bottom:509.625333pt;}
.yc5{bottom:509.711467pt;}
.y13b{bottom:513.008000pt;}
.yed{bottom:518.841333pt;}
.y18d{bottom:520.020000pt;}
.y11d{bottom:521.664000pt;}
.y1fb{bottom:522.328000pt;}
.y1cf{bottom:524.237333pt;}
.y68{bottom:527.806667pt;}
.y167{bottom:529.266667pt;}
.y13a{bottom:531.189333pt;}
.y3d{bottom:536.816000pt;}
.yec{bottom:537.022667pt;}
.y18c{bottom:538.201333pt;}
.y11c{bottom:539.845333pt;}
.y1fa{bottom:540.509333pt;}
.y98{bottom:541.206667pt;}
.y1ce{bottom:542.418667pt;}
.y67{bottom:545.989333pt;}
.y139{bottom:549.370667pt;}
.y166{bottom:550.486667pt;}
.y3c{bottom:553.420000pt;}
.yeb{bottom:555.204000pt;}
.y18b{bottom:556.382667pt;}
.y11b{bottom:558.026667pt;}
.y1f9{bottom:558.690667pt;}
.y97{bottom:559.388000pt;}
.y1cd{bottom:560.601333pt;}
.y66{bottom:564.170667pt;}
.y138{bottom:567.553333pt;}
.y3b{bottom:570.025333pt;}
.y165{bottom:571.973333pt;}
.yea{bottom:573.386667pt;}
.y9{bottom:573.786667pt;}
.y18a{bottom:574.565333pt;}
.y1f8{bottom:576.873333pt;}
.y96{bottom:577.570667pt;}
.y1cc{bottom:578.782667pt;}
.y65{bottom:582.352000pt;}
.y11a{bottom:583.514667pt;}
.y137{bottom:585.734667pt;}
.y3a{bottom:586.629333pt;}
.ye9{bottom:591.568000pt;}
.y8{bottom:592.685334pt;}
.y1f7{bottom:595.054667pt;}
.y95{bottom:595.752000pt;}
.y164{bottom:596.780000pt;}
.y1cb{bottom:596.964000pt;}
.y2d{bottom:599.548400pt;}
.y189{bottom:600.053333pt;}
.y64{bottom:600.534667pt;}
.y119{bottom:601.696000pt;}
.y39{bottom:603.233333pt;}
.ye8{bottom:609.749333pt;}
.y163{bottom:611.325333pt;}
.y1f6{bottom:613.236000pt;}
.y94{bottom:613.934667pt;}
.y1ca{bottom:615.146667pt;}
.y188{bottom:618.234667pt;}
.y63{bottom:618.716000pt;}
.y38{bottom:619.837333pt;}
.y118{bottom:619.878667pt;}
.y136{bottom:620.189333pt;}
.y162{bottom:625.870667pt;}
.y1f5{bottom:631.418667pt;}
.y93{bottom:632.116000pt;}
.y1c9{bottom:633.328000pt;}
.y187{bottom:636.416000pt;}
.y37{bottom:636.442667pt;}
.y62{bottom:636.897333pt;}
.y117{bottom:638.060000pt;}
.ye7{bottom:644.204000pt;}
.y7{bottom:645.598667pt;}
.y161{bottom:647.090667pt;}
.y2c{bottom:647.548400pt;}
.y1f4{bottom:649.600000pt;}
.y92{bottom:650.297333pt;}
.y1c8{bottom:651.509333pt;}
.y186{bottom:654.598667pt;}
.y61{bottom:655.080000pt;}
.y116{bottom:656.241333pt;}
.y160{bottom:661.636000pt;}
.ye6{bottom:662.385333pt;}
.y135{bottom:662.696000pt;}
.y36{bottom:666.994667pt;}
.y1f3{bottom:667.782667pt;}
.y91{bottom:668.480000pt;}
.y4{bottom:668.977329pt;}
.y1c7{bottom:669.692000pt;}
.y185{bottom:672.780000pt;}
.y60{bottom:673.261333pt;}
.y115{bottom:674.424000pt;}
.ye5{bottom:680.568000pt;}
.y134{bottom:680.877333pt;}
.y15f{bottom:682.857333pt;}
.y1f2{bottom:685.964000pt;}
.y90{bottom:686.661333pt;}
.y1c6{bottom:687.873333pt;}
.y184{bottom:690.961333pt;}
.y5f{bottom:691.442667pt;}
.y114{bottom:692.605333pt;}
.y1b7{bottom:693.104000pt;}
.y2b{bottom:695.548400pt;}
.ye4{bottom:698.749333pt;}
.y15e{bottom:704.077333pt;}
.y1f1{bottom:704.145333pt;}
.y1c5{bottom:706.054667pt;}
.y35{bottom:706.294667pt;}
.y183{bottom:709.144000pt;}
.y5e{bottom:709.625333pt;}
.y8f{bottom:712.149333pt;}
.ye3{bottom:716.930667pt;}
.yad{bottom:717.568000pt;}
.y113{bottom:718.093333pt;}
.y1b6{bottom:718.592000pt;}
.yb3{bottom:719.011467pt;}
.y1f0{bottom:722.328000pt;}
.y1c4{bottom:724.237333pt;}
.y133{bottom:725.092000pt;}
.y15d{bottom:725.297333pt;}
.y5d{bottom:727.806667pt;}
.y8e{bottom:730.330667pt;}
.ye2{bottom:735.113333pt;}
.y112{bottom:736.274667pt;}
.y1b5{bottom:736.773333pt;}
.y182{bottom:739.413333pt;}
.y132{bottom:739.637333pt;}
.y1ef{bottom:740.509333pt;}
.y1c3{bottom:742.418667pt;}
.y2a{bottom:743.548400pt;}
.y15c{bottom:746.517333pt;}
.y8d{bottom:748.512000pt;}
.y5c{bottom:753.294667pt;}
.y111{bottom:754.457333pt;}
.y1b4{bottom:754.954667pt;}
.y1ee{bottom:758.690667pt;}
.y1c2{bottom:760.600000pt;}
.y15b{bottom:761.062667pt;}
.y8c{bottom:766.694667pt;}
.y34{bottom:769.518667pt;}
.y5b{bottom:771.476000pt;}
.y110{bottom:772.638667pt;}
.y181{bottom:775.661333pt;}
.y1ed{bottom:776.873333pt;}
.y1c1{bottom:778.782667pt;}
.y1b3{bottom:780.442667pt;}
.y3{bottom:781.661334pt;}
.y15a{bottom:782.282667pt;}
.y8b{bottom:784.876000pt;}
.y5a{bottom:789.658667pt;}
.y10f{bottom:790.820000pt;}
.y180{bottom:793.842667pt;}
.y1ec{bottom:795.054667pt;}
.y159{bottom:796.829333pt;}
.y1c0{bottom:796.964000pt;}
.y29{bottom:797.418933pt;}
.y1b1{bottom:798.624000pt;}
.y33{bottom:800.070667pt;}
.y1b2{bottom:803.445333pt;}
.y58{bottom:807.840000pt;}
.y10e{bottom:809.002667pt;}
.y17e{bottom:812.024000pt;}
.y59{bottom:812.660000pt;}
.y1eb{bottom:813.236000pt;}
.y1bf{bottom:815.145333pt;}
.y1b0{bottom:816.806667pt;}
.y17f{bottom:816.845333pt;}
.y158{bottom:818.049333pt;}
.y8a{bottom:819.330667pt;}
.ye1{bottom:826.021333pt;}
.y10d{bottom:827.184000pt;}
.y17d{bottom:830.206667pt;}
.y32{bottom:830.622667pt;}
.y28{bottom:831.018933pt;}
.y1ea{bottom:831.418667pt;}
.y57{bottom:833.328000pt;}
.y1af{bottom:834.988000pt;}
.y89{bottom:837.512000pt;}
.y157{bottom:839.269333pt;}
.y2{bottom:840.112001pt;}
.y10c{bottom:845.365333pt;}
.y17c{bottom:848.388000pt;}
.y1e9{bottom:849.600000pt;}
.y56{bottom:851.509333pt;}
.y1ae{bottom:853.169333pt;}
.y156{bottom:853.814667pt;}
.y88{bottom:855.693333pt;}
.y20e{bottom:858.081733pt;}
.y1{bottom:859.312000pt;}
.y31{bottom:861.174667pt;}
.y10b{bottom:863.548000pt;}
.y27{bottom:864.618933pt;}
.y1e8{bottom:867.781333pt;}
.y55{bottom:869.690667pt;}
.y1ad{bottom:871.352000pt;}
.y87{bottom:873.876000pt;}
.y155{bottom:875.034667pt;}
.y1e7{bottom:885.964000pt;}
.y20d{bottom:886.881733pt;}
.y54{bottom:887.873333pt;}
.y1ac{bottom:889.533333pt;}
.y30{bottom:891.726667pt;}
.y86{bottom:892.057333pt;}
.y154{bottom:896.254667pt;}
.y10a{bottom:898.001333pt;}
.y26{bottom:898.218933pt;}
.y1e6{bottom:904.145333pt;}
.y53{bottom:906.054667pt;}
.y85{bottom:910.238667pt;}
.y1ab{bottom:915.021333pt;}
.y20c{bottom:915.681733pt;}
.y153{bottom:917.476000pt;}
.y1e5{bottom:922.326667pt;}
.y52{bottom:924.237333pt;}
.y83{bottom:928.421333pt;}
.y20b{bottom:930.081733pt;}
.y25{bottom:931.818933pt;}
.y152{bottom:932.021333pt;}
.y1aa{bottom:933.202667pt;}
.y84{bottom:933.241333pt;}
.y109{bottom:940.509333pt;}
.y51{bottom:942.418667pt;}
.y20a{bottom:944.481733pt;}
.y151{bottom:946.566667pt;}
.y82{bottom:946.602667pt;}
.y1a9{bottom:951.385333pt;}
.y17b{bottom:951.422667pt;}
.ye0{bottom:958.690667pt;}
.y50{bottom:960.600000pt;}
.y2f{bottom:960.956000pt;}
.y81{bottom:964.784000pt;}
.y150{bottom:968.052000pt;}
.y1a8{bottom:969.566667pt;}
.ydf{bottom:976.872000pt;}
.y4f{bottom:978.782667pt;}
.y209{bottom:979.130800pt;}
.y80{bottom:982.966667pt;}
.y14f{bottom:987.545333pt;}
.y2e{bottom:994.165333pt;}
.yde{bottom:995.054667pt;}
.y14e{bottom:1007.040000pt;}
.y4e{bottom:1013.236000pt;}
.ydd{bottom:1018.056000pt;}
.y4d{bottom:1064.510667pt;}
.h1f{height:6.495600pt;}
.h1b{height:7.217333pt;}
.h24{height:22.900697pt;}
.h28{height:23.789539pt;}
.h13{height:23.910400pt;}
.h18{height:24.212349pt;}
.h1a{height:25.725621pt;}
.h19{height:26.599482pt;}
.h1c{height:28.261950pt;}
.h15{height:28.373675pt;}
.h7{height:28.560000pt;}
.h14{height:33.102304pt;}
.h27{height:34.704000pt;}
.h1d{height:34.911820pt;}
.h9{height:35.352000pt;}
.h26{height:35.688000pt;}
.h20{height:36.574288pt;}
.h16{height:36.768636pt;}
.h25{height:36.928037pt;}
.h6{height:40.800000pt;}
.h12{height:42.560512pt;}
.h3{height:42.840000pt;}
.h11{height:44.122658pt;}
.h10{height:47.289141pt;}
.h2{height:48.960000pt;}
.h22{height:52.382304pt;}
.h21{height:52.387637pt;}
.hf{height:56.747349pt;}
.h5{height:69.360000pt;}
.he{height:81.715765pt;}
.hb{height:82.488000pt;}
.hd{height:85.078125pt;}
.ha{height:89.776042pt;}
.h23{height:105.470475pt;}
.h4{height:105.826671pt;}
.hc{height:120.240000pt;}
.h17{height:193.424533pt;}
.h1e{height:194.868000pt;}
.h0{height:1122.518667pt;}
.h8{height:1122.520000pt;}
.h1{height:1122.666667pt;}
.w5{width:20.005726pt;}
.w4{width:299.519333pt;}
.w2{width:566.928019pt;}
.w0{width:793.700000pt;}
.w3{width:793.701333pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x24{left:4.913059pt;}
.x23{left:9.826117pt;}
.x25{left:29.604640pt;}
.x21{left:30.910493pt;}
.x31{left:36.765384pt;}
.x29{left:37.737841pt;}
.x30{left:40.016350pt;}
.x7{left:48.856267pt;}
.x2f{left:51.118270pt;}
.x32{left:76.884389pt;}
.x2d{left:80.642294pt;}
.x2b{left:83.634329pt;}
.x12{left:84.850667pt;}
.x1f{left:86.178667pt;}
.x1{left:90.706667pt;}
.x2{left:94.486667pt;}
.x3f{left:97.736000pt;}
.x15{left:99.580000pt;}
.x13{left:100.613333pt;}
.x1c{left:101.720000pt;}
.x36{left:105.416000pt;}
.x14{left:106.369333pt;}
.x35{left:107.917333pt;}
.x9{left:121.154667pt;}
.x2e{left:122.571242pt;}
.x11{left:132.300000pt;}
.x2a{left:136.572869pt;}
.x2c{left:141.625002pt;}
.xa{left:146.873333pt;}
.x19{left:153.037333pt;}
.x1b{left:154.093333pt;}
.x1a{left:158.350667pt;}
.x27{left:162.555269pt;}
.x6{left:164.764133pt;}
.x47{left:170.934933pt;}
.x48{left:172.824667pt;}
.x4{left:180.874667pt;}
.x3c{left:187.470667pt;}
.x3d{left:195.520000pt;}
.x20{left:197.920202pt;}
.xb{left:333.289333pt;}
.xd{left:342.168000pt;}
.xe{left:343.506667pt;}
.xc{left:348.750667pt;}
.xf{left:351.030667pt;}
.x10{left:358.578667pt;}
.x22{left:364.161467pt;}
.x42{left:389.710667pt;}
.x1d{left:393.529333pt;}
.x3{left:404.408000pt;}
.x26{left:409.333333pt;}
.x5{left:412.783200pt;}
.x46{left:425.340000pt;}
.x3a{left:470.956000pt;}
.x3b{left:476.269333pt;}
.x43{left:482.293333pt;}
.x37{left:499.309333pt;}
.x8{left:577.707867pt;}
.x38{left:583.213333pt;}
.x39{left:588.526667pt;}
.x33{left:594.533333pt;}
.x34{left:603.178667pt;}
.x16{left:610.780000pt;}
.x45{left:621.682667pt;}
.x49{left:628.832933pt;}
.x17{left:641.057333pt;}
.x3e{left:642.008000pt;}
.x18{left:646.370667pt;}
.x44{left:658.598667pt;}
.x40{left:660.048000pt;}
.x41{left:670.010667pt;}
.x28{left:688.644133pt;}
.x1e{left:703.537333pt;}
}




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