
    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_6d1291973d0c57366cb6f58e.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.910645;font-style:normal;font-weight: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_41e5ebe1612ba40d098e8edc.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.762000;font-style:normal;font-weight: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_92404d8c1d758ebfc6de4568.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.744000;font-style:normal;font-weight: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_53f035f5e6361ba2c123b870.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.931000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff5;src:url('chunks/assets/font_0f36e5c0f39a138190b66587.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.700000;font-style:normal;font-weight: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_422f18033e43b02bb623e634.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.951000;font-style:normal;font-weight: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_c7bd377a133668c4dacd9eed.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.938000;font-style:normal;font-weight: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_a432be3023828518a46d7127.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.893555;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff9;src:url('chunks/assets/font_9d0b96b1ebecfe4767d764ef.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight: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_b39b410f6dae44aa35a1ecca.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.692383;font-style:normal;font-weight: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_7f4f0410b5869755fc10d55d.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.910156;font-style:normal;font-weight: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_deb4c69871aa4e0eaa1e9345.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.890137;font-style:normal;font-weight: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_715b47685440d613ae51fb41.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.863770;font-style:normal;font-weight: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_4b2b1d285491a83e3cdce018.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight: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_6878a8db605d18abbfca8847.woff2')format("woff");}.fff{font-family:fff;line-height:0.920898;font-style:normal;font-weight: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_ab31ac57ce7fab4a24aff2aa.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.890137;font-style:normal;font-weight: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_4b2a6d5604879a70eb52b2b4.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.863770;font-style:normal;font-weight: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_f816e82bcf8deb8ec320c40b.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.890137;font-style:normal;font-weight: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_1e20094bbf2d227d1faa90b1.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.920898;font-style:normal;font-weight: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_492604333fdfb5b0f5709ff5.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.863770;font-style:normal;font-weight: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_aa645cc982dfce7d5afff013.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.890137;font-style:normal;font-weight: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_715b47685440d613ae51fb41.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.863770;font-style:normal;font-weight: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_6878a8db605d18abbfca8847.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.920898;font-style:normal;font-weight: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_8024149767345326865fdf7b.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.890137;font-style:normal;font-weight: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_3fbfe9fa4b78d3f742031e21.woff2')format("woff");}.ff19{font-family:ff19;line-height:0.863770;font-style:normal;font-weight: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_1e20094bbf2d227d1faa90b1.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.920898;font-style:normal;font-weight: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_1c8b971ab518c82959c9b41d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.890137;font-style:normal;font-weight: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_3fbfe9fa4b78d3f742031e21.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.863770;font-style:normal;font-weight: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_1e20094bbf2d227d1faa90b1.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.920898;font-style:normal;font-weight: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_bb845623a4b5ff6060b23c31.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.666504;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1f;src:url('chunks/assets/font_d371058269402f34e1ee58bd.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.890137;font-style:normal;font-weight: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_715b47685440d613ae51fb41.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.863770;font-style:normal;font-weight: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_6878a8db605d18abbfca8847.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.920898;font-style:normal;font-weight: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_cf873b2b496b31541cdf1989.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.890137;font-style:normal;font-weight: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_4d35ea6f585acbb7956f8afa.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.863770;font-style:normal;font-weight: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_1e20094bbf2d227d1faa90b1.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.920898;font-style:normal;font-weight: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_b7db9f9a954a614355e677b2.woff2')format("woff");}.ff25{font-family:ff25;line-height:0.890137;font-style:normal;font-weight: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_a6bf3fcf899d770afa5a5b53.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.920898;font-style:normal;font-weight: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_4bf41db05f233e5097bda857.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.890137;font-style:normal;font-weight: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_1e20094bbf2d227d1faa90b1.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.920898;font-style:normal;font-weight: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_6eecda438aca66f689bee978.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.863770;font-style:normal;font-weight: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_d8f0c7b2be9211b5c6d4b42a.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.890137;font-style:normal;font-weight: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_955bba2d45bf83ae4d1bbd3b.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.920898;font-style:normal;font-weight: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_bd6298ea48233496a95694fd.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.863770;font-style:normal;font-weight: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_099bf0874ded15c9a0bc1a70.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.890137;font-style:normal;font-weight: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_1e20094bbf2d227d1faa90b1.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.920898;font-style:normal;font-weight: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_bd6298ea48233496a95694fd.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.863770;font-style:normal;font-weight: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_614dc614dfdcc4383b108a67.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.890137;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_1e20094bbf2d227d1faa90b1.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.920898;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_bd6298ea48233496a95694fd.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.863770;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_ff6ac37ea98eba6d73290c81.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.073242;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_7956af594a87274f6597389d.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.030762;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m3{transform:matrix(0.107759,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.107759,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.107759,0.000000,0.000000,0.250000,0,0);}
.m5{transform:matrix(0.206612,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.206612,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.206612,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.237500,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.237500,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);}
.m4{transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.252525,0.000000,0.000000,0.250000,0,0);}
.m2{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v7{vertical-align:-45.608400px;}
.vc{vertical-align:-41.352600px;}
.ve{vertical-align:-35.973000px;}
.va{vertical-align:-32.691600px;}
.v2{vertical-align:-18.030000px;}
.v3{vertical-align:-14.400000px;}
.v5{vertical-align:-13.186200px;}
.v11{vertical-align:-11.982600px;}
.v4{vertical-align:-10.800000px;}
.v1{vertical-align:-8.394000px;}
.v0{vertical-align:0.000000px;}
.v6{vertical-align:13.125000px;}
.v8{vertical-align:18.018000px;}
.vd{vertical-align:20.979000px;}
.vf{vertical-align:34.125000px;}
.vb{vertical-align:35.970000px;}
.v10{vertical-align:47.996400px;}
.v9{vertical-align:59.994000px;}
.ls7f{letter-spacing:-0.600000px;}
.ls18{letter-spacing:-0.330000px;}
.ls1b{letter-spacing:-0.264000px;}
.lsd{letter-spacing:-0.210000px;}
.ls17{letter-spacing:-0.198000px;}
.lsb{letter-spacing:0.000000px;}
.ls7c{letter-spacing:0.000600px;}
.ls71{letter-spacing:0.001200px;}
.ls2a{letter-spacing:0.006450px;}
.ls97{letter-spacing:0.009000px;}
.lsa4{letter-spacing:0.009600px;}
.ls29{letter-spacing:0.010200px;}
.ls73{letter-spacing:0.016800px;}
.lsa6{letter-spacing:0.021600px;}
.ls2c{letter-spacing:0.030300px;}
.lsa{letter-spacing:0.054000px;}
.ls7d{letter-spacing:0.060000px;}
.ls2f{letter-spacing:0.066000px;}
.ls38{letter-spacing:0.091800px;}
.ls2d{letter-spacing:0.105000px;}
.lsf{letter-spacing:0.108000px;}
.ls14{letter-spacing:0.111000px;}
.ls93{letter-spacing:0.111600px;}
.ls94{letter-spacing:0.120000px;}
.ls1a{letter-spacing:0.132000px;}
.ls84{letter-spacing:0.137400px;}
.ls9{letter-spacing:0.162000px;}
.lsc{letter-spacing:0.168000px;}
.ls9d{letter-spacing:0.180000px;}
.ls37{letter-spacing:0.186000px;}
.ls5f{letter-spacing:0.189000px;}
.ls13{letter-spacing:0.198000px;}
.ls3{letter-spacing:0.210000px;}
.ls33{letter-spacing:0.228000px;}
.ls36{letter-spacing:0.228600px;}
.ls8e{letter-spacing:0.237600px;}
.ls85{letter-spacing:0.240000px;}
.ls11{letter-spacing:0.264000px;}
.ls3b{letter-spacing:0.267000px;}
.ls16{letter-spacing:0.289800px;}
.ls58{letter-spacing:0.315000px;}
.ls12{letter-spacing:0.330000px;}
.ls31{letter-spacing:0.363000px;}
.ls8{letter-spacing:0.367263px;}
.ls32{letter-spacing:0.371400px;}
.ls2{letter-spacing:0.378000px;}
.ls19{letter-spacing:0.396000px;}
.ls35{letter-spacing:0.397200px;}
.ls95{letter-spacing:0.398400px;}
.ls1{letter-spacing:0.420000px;}
.ls15{letter-spacing:0.462000px;}
.ls6c{letter-spacing:0.513000px;}
.ls9a{letter-spacing:0.540000px;}
.ls99{letter-spacing:0.562500px;}
.ls98{letter-spacing:0.565800px;}
.lse{letter-spacing:0.594000px;}
.ls83{letter-spacing:0.600000px;}
.ls20{letter-spacing:0.616800px;}
.ls5b{letter-spacing:0.630000px;}
.ls1e{letter-spacing:0.660000px;}
.ls9c{letter-spacing:0.720000px;}
.ls30{letter-spacing:0.726000px;}
.ls9b{letter-spacing:0.738600px;}
.ls8f{letter-spacing:0.746400px;}
.ls91{letter-spacing:0.756000px;}
.ls23{letter-spacing:0.757800px;}
.ls92{letter-spacing:0.763200px;}
.ls90{letter-spacing:0.765000px;}
.ls6f{letter-spacing:0.781200px;}
.ls2e{letter-spacing:0.792000px;}
.ls8b{letter-spacing:0.813000px;}
.ls87{letter-spacing:0.858000px;}
.ls96{letter-spacing:0.861600px;}
.ls75{letter-spacing:0.883800px;}
.ls9f{letter-spacing:0.900000px;}
.lsa1{letter-spacing:0.918000px;}
.ls9e{letter-spacing:0.920400px;}
.lsa0{letter-spacing:0.921000px;}
.ls1f{letter-spacing:0.924000px;}
.ls7e{letter-spacing:0.990000px;}
.lsa5{letter-spacing:1.020000px;}
.ls1c{letter-spacing:1.056000px;}
.ls5a{letter-spacing:1.071000px;}
.lsa3{letter-spacing:1.080000px;}
.ls78{letter-spacing:1.165800px;}
.ls1d{letter-spacing:1.188000px;}
.ls70{letter-spacing:1.197000px;}
.ls80{letter-spacing:1.200000px;}
.ls6e{letter-spacing:1.233600px;}
.ls72{letter-spacing:1.254000px;}
.ls8d{letter-spacing:1.291200px;}
.ls8a{letter-spacing:1.320000px;}
.ls82{letter-spacing:1.380000px;}
.ls86{letter-spacing:1.386000px;}
.lsa2{letter-spacing:1.440000px;}
.ls26{letter-spacing:1.456200px;}
.ls81{letter-spacing:1.500000px;}
.ls59{letter-spacing:1.575000px;}
.ls88{letter-spacing:1.650000px;}
.ls89{letter-spacing:1.716000px;}
.ls5{letter-spacing:1.744200px;}
.ls50{letter-spacing:1.782000px;}
.ls57{letter-spacing:1.827000px;}
.ls8c{letter-spacing:1.980000px;}
.ls4a{letter-spacing:2.046000px;}
.ls7a{letter-spacing:2.142000px;}
.ls51{letter-spacing:2.178000px;}
.ls6b{letter-spacing:2.223000px;}
.ls22{letter-spacing:2.376000px;}
.ls6{letter-spacing:2.478000px;}
.ls74{letter-spacing:2.574000px;}
.ls4{letter-spacing:2.688000px;}
.ls4b{letter-spacing:2.970000px;}
.ls3c{letter-spacing:3.000000px;}
.ls3d{letter-spacing:3.498000px;}
.ls3e{letter-spacing:3.814200px;}
.ls41{letter-spacing:3.937800px;}
.ls52{letter-spacing:4.356000px;}
.ls79{letter-spacing:4.534200px;}
.ls49{letter-spacing:4.539600px;}
.ls6d{letter-spacing:4.540200px;}
.ls7b{letter-spacing:4.540800px;}
.ls46{letter-spacing:4.549800px;}
.ls40{letter-spacing:4.564200px;}
.ls6a{letter-spacing:4.569000px;}
.ls2b{letter-spacing:4.725000px;}
.ls3a{letter-spacing:6.204000px;}
.ls3f{letter-spacing:6.562800px;}
.ls76{letter-spacing:7.854000px;}
.ls5e{letter-spacing:8.064000px;}
.ls21{letter-spacing:8.120250px;}
.ls39{letter-spacing:8.382000px;}
.ls63{letter-spacing:8.448000px;}
.ls34{letter-spacing:8.580000px;}
.ls24{letter-spacing:9.432450px;}
.ls55{letter-spacing:11.022000px;}
.ls5c{letter-spacing:11.023800px;}
.ls4c{letter-spacing:11.049000px;}
.ls4d{letter-spacing:11.953800px;}
.ls7{letter-spacing:12.510000px;}
.ls64{letter-spacing:12.540000px;}
.ls45{letter-spacing:13.134000px;}
.ls5d{letter-spacing:13.266000px;}
.ls43{letter-spacing:15.180000px;}
.ls62{letter-spacing:15.510000px;}
.ls44{letter-spacing:15.906000px;}
.ls47{letter-spacing:20.956200px;}
.ls4e{letter-spacing:24.606000px;}
.ls27{letter-spacing:25.168200px;}
.ls56{letter-spacing:48.995250px;}
.ls77{letter-spacing:49.662000px;}
.ls69{letter-spacing:51.415800px;}
.ls60{letter-spacing:63.750000px;}
.ls25{letter-spacing:64.647000px;}
.ls53{letter-spacing:79.373250px;}
.ls67{letter-spacing:101.046000px;}
.ls48{letter-spacing:123.891000px;}
.ls61{letter-spacing:638.682000px;}
.ls54{letter-spacing:661.188000px;}
.ls68{letter-spacing:664.158000px;}
.ls42{letter-spacing:670.494000px;}
.ls28{letter-spacing:709.170000px;}
.ls4f{letter-spacing:724.152000px;}
.ls66{letter-spacing:750.345000px;}
.ls65{letter-spacing:760.188000px;}
.ls10{letter-spacing:1422.729600px;}
.ls0{letter-spacing:1920.921600px;}
.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;}
}
.ws62{word-spacing:-42.750000px;}
.ws4a{word-spacing:-26.593380px;}
.ws60{word-spacing:-23.638560px;}
.ws8b{word-spacing:-17.754000px;}
.ws63{word-spacing:-16.500000px;}
.ws23{word-spacing:-16.302000px;}
.ws54{word-spacing:-15.750000px;}
.ws21{word-spacing:-15.000000px;}
.ws1{word-spacing:-14.625000px;}
.ws4{word-spacing:-13.500000px;}
.ws99{word-spacing:-12.168000px;}
.ws97{word-spacing:-12.015000px;}
.ws98{word-spacing:-11.812500px;}
.ws2{word-spacing:-11.700000px;}
.ws96{word-spacing:-11.250000px;}
.ws22{word-spacing:-10.725000px;}
.ws3a{word-spacing:-10.237500px;}
.ws86{word-spacing:-9.750000px;}
.ws0{word-spacing:-9.324000px;}
.ws3{word-spacing:-8.775000px;}
.wsc{word-spacing:-2.478000px;}
.ws51{word-spacing:-1.827000px;}
.ws84{word-spacing:-1.200000px;}
.wse{word-spacing:-0.594000px;}
.ws53{word-spacing:-0.315000px;}
.ws34{word-spacing:-0.198000px;}
.ws57{word-spacing:-0.189000px;}
.ws4d{word-spacing:-0.132000px;}
.ws46{word-spacing:-0.066000px;}
.ws61{word-spacing:-0.042750px;}
.ws39{word-spacing:-0.027562px;}
.ws5{word-spacing:0.000000px;}
.ws6f{word-spacing:0.132000px;}
.ws67{word-spacing:0.198000px;}
.wsd{word-spacing:0.210000px;}
.ws9c{word-spacing:0.300000px;}
.ws13{word-spacing:0.324000px;}
.ws7f{word-spacing:0.330000px;}
.ws15{word-spacing:0.378000px;}
.ws7b{word-spacing:0.396000px;}
.ws26{word-spacing:0.462000px;}
.ws1d{word-spacing:0.486000px;}
.ws20{word-spacing:0.594000px;}
.ws77{word-spacing:0.660000px;}
.ws25{word-spacing:0.726000px;}
.ws89{word-spacing:0.900000px;}
.ws3c{word-spacing:0.924000px;}
.ws69{word-spacing:1.056000px;}
.wsa1{word-spacing:1.140000px;}
.ws3d{word-spacing:1.188000px;}
.ws68{word-spacing:1.254000px;}
.ws2e{word-spacing:1.320000px;}
.ws9{word-spacing:1.386000px;}
.ws32{word-spacing:1.452000px;}
.ws1f{word-spacing:1.458000px;}
.ws44{word-spacing:1.518000px;}
.ws36{word-spacing:1.584000px;}
.ws78{word-spacing:1.650000px;}
.ws92{word-spacing:1.716000px;}
.ws12{word-spacing:1.728000px;}
.ws8a{word-spacing:1.740000px;}
.ws8{word-spacing:1.806000px;}
.ws4e{word-spacing:1.848000px;}
.ws81{word-spacing:2.112000px;}
.ws11{word-spacing:2.160000px;}
.ws7d{word-spacing:2.178000px;}
.ws19{word-spacing:2.214000px;}
.ws17{word-spacing:2.430000px;}
.ws2f{word-spacing:2.442000px;}
.ws6a{word-spacing:2.574000px;}
.ws30{word-spacing:2.640000px;}
.ws42{word-spacing:2.706000px;}
.wsa0{word-spacing:2.760000px;}
.ws91{word-spacing:2.838000px;}
.ws16{word-spacing:2.862000px;}
.ws1b{word-spacing:3.024000px;}
.ws37{word-spacing:3.036000px;}
.wsa2{word-spacing:3.180000px;}
.ws24{word-spacing:3.234000px;}
.ws72{word-spacing:3.240000px;}
.ws50{word-spacing:3.300000px;}
.ws33{word-spacing:3.366000px;}
.ws4f{word-spacing:3.402000px;}
.ws2a{word-spacing:3.432000px;}
.ws1e{word-spacing:3.564000px;}
.ws5d{word-spacing:3.630000px;}
.ws82{word-spacing:3.660000px;}
.ws56{word-spacing:3.717000px;}
.ws73{word-spacing:3.762000px;}
.ws10{word-spacing:3.780000px;}
.ws5b{word-spacing:3.894000px;}
.ws80{word-spacing:4.026000px;}
.ws83{word-spacing:4.080000px;}
.ws87{word-spacing:4.140000px;}
.ws6d{word-spacing:4.224000px;}
.ws9b{word-spacing:4.320000px;}
.ws7e{word-spacing:4.356000px;}
.ws8f{word-spacing:4.422000px;}
.ws31{word-spacing:4.554000px;}
.ws41{word-spacing:4.620000px;}
.wsa{word-spacing:4.662000px;}
.ws79{word-spacing:4.680000px;}
.ws8c{word-spacing:4.686000px;}
.ws43{word-spacing:4.725000px;}
.ws2c{word-spacing:4.818000px;}
.ws6e{word-spacing:4.884000px;}
.ws1a{word-spacing:4.914000px;}
.ws9e{word-spacing:4.920000px;}
.ws6c{word-spacing:4.950000px;}
.ws9d{word-spacing:4.980000px;}
.ws18{word-spacing:5.022000px;}
.ws27{word-spacing:5.082000px;}
.ws40{word-spacing:5.148000px;}
.ws88{word-spacing:5.280000px;}
.ws8d{word-spacing:5.346000px;}
.ws5c{word-spacing:5.478000px;}
.wsa4{word-spacing:5.520000px;}
.ws93{word-spacing:5.544000px;}
.ws45{word-spacing:5.610000px;}
.ws94{word-spacing:5.676000px;}
.ws35{word-spacing:5.808000px;}
.ws38{word-spacing:5.874000px;}
.ws29{word-spacing:5.940000px;}
.ws74{word-spacing:6.006000px;}
.ws75{word-spacing:6.072000px;}
.ws76{word-spacing:6.270000px;}
.wsa3{word-spacing:6.420000px;}
.ws28{word-spacing:6.468000px;}
.ws58{word-spacing:6.600000px;}
.ws14{word-spacing:6.642000px;}
.ws1c{word-spacing:6.696000px;}
.wsf{word-spacing:6.750000px;}
.ws9f{word-spacing:6.780000px;}
.ws5a{word-spacing:6.930000px;}
.ws3e{word-spacing:6.996000px;}
.ws7c{word-spacing:7.194000px;}
.ws7a{word-spacing:7.260000px;}
.ws55{word-spacing:7.308000px;}
.ws8e{word-spacing:7.326000px;}
.ws71{word-spacing:7.500000px;}
.ws85{word-spacing:7.524000px;}
.ws2d{word-spacing:7.590000px;}
.ws90{word-spacing:7.722000px;}
.ws66{word-spacing:7.854000px;}
.ws52{word-spacing:7.875000px;}
.ws3b{word-spacing:7.986000px;}
.ws6b{word-spacing:8.052000px;}
.ws95{word-spacing:8.118000px;}
.ws3f{word-spacing:8.184000px;}
.ws2b{word-spacing:8.250000px;}
.wsb{word-spacing:8.946000px;}
.ws47{word-spacing:10.230000px;}
.ws7{word-spacing:10.656000px;}
.ws6{word-spacing:13.344000px;}
.ws9a{word-spacing:15.000000px;}
.ws4b{word-spacing:28.233000px;}
.ws4c{word-spacing:36.885000px;}
.ws49{word-spacing:46.395360px;}
.ws65{word-spacing:54.340950px;}
.ws64{word-spacing:54.341550px;}
.ws5e{word-spacing:60.109800px;}
.ws5f{word-spacing:64.127580px;}
.ws48{word-spacing:136.882200px;}
.ws70{word-spacing:427.920000px;}
.ws59{word-spacing:561.858000px;}
._7{margin-left:-20.832000px;}
._9{margin-left:-16.500000px;}
._0{margin-left:-13.348800px;}
._6{margin-left:-2.478000px;}
._4{margin-left:-1.033200px;}
._2{width:1.390200px;}
._c{width:2.460000px;}
._d{width:3.717000px;}
._b{width:4.725000px;}
._14{width:5.775600px;}
._3{width:6.846000px;}
._5{width:8.073600px;}
._1{width:9.870000px;}
._8{width:11.676000px;}
._13{width:14.607000px;}
._15{width:29.568000px;}
._10{width:37.560000px;}
._11{width:40.320000px;}
._e{width:42.300000px;}
._12{width:44.100000px;}
._f{width:526.260000px;}
._a{width:1188.598800px;}
.fc0{color:rgb(0,0,0);}
.fs3{font-size:27.000000px;}
.fs6{font-size:27.300000px;}
.fs13{font-size:27.562200px;}
.fsd{font-size:35.100000px;}
.fs0{font-size:36.000000px;}
.fs19{font-size:39.000000px;}
.fs15{font-size:40.950000px;}
.fs5{font-size:42.000000px;}
.fs12{font-size:42.750000px;}
.fs11{font-size:42.900000px;}
.fs7{font-size:45.000000px;}
.fsb{font-size:46.800000px;}
.fs4{font-size:48.000000px;}
.fsf{font-size:51.000000px;}
.fsc{font-size:54.000000px;}
.fse{font-size:57.000000px;}
.fs9{font-size:58.500000px;}
.fs1{font-size:60.000000px;}
.fs14{font-size:63.000000px;}
.fs17{font-size:65.340000px;}
.fs10{font-size:66.000000px;}
.fsa{font-size:72.000000px;}
.fs18{font-size:79.860000px;}
.fs8{font-size:90.000000px;}
.fs2{font-size:139.800000px;}
.fs16{font-size:153.120000px;}
.y0{bottom:0.000000px;}
.yb4{bottom:0.892950px;}
.yd3{bottom:1.099800px;}
.y7d{bottom:1.276350px;}
.y125{bottom:1.329000px;}
.yc0{bottom:1.806750px;}
.y96{bottom:2.213550px;}
.ya1{bottom:3.438750px;}
.yf0{bottom:3.469800px;}
.y105{bottom:3.608700px;}
.y118{bottom:3.609450px;}
.ye9{bottom:3.703650px;}
.y8f{bottom:3.775350px;}
.y7c{bottom:4.557600px;}
.ycc{bottom:5.445450px;}
.yb2{bottom:9.424200px;}
.yd2{bottom:9.631050px;}
.y9a{bottom:15.901050px;}
.ya2{bottom:20.782500px;}
.yb5{bottom:20.814450px;}
.ycd{bottom:22.789200px;}
.yf1{bottom:23.391300px;}
.ye8{bottom:23.437650px;}
.y8e{bottom:23.509350px;}
.y7e{bottom:24.292050px;}
.y97{bottom:29.729250px;}
.ybb{bottom:41.697450px;}
.ybd{bottom:53.088150px;}
.y1{bottom:85.039350px;}
.y31{bottom:85.039500px;}
.y122{bottom:86.923050px;}
.y103{bottom:89.202600px;}
.y116{bottom:89.203350px;}
.y11{bottom:119.053650px;}
.y88{bottom:119.811150px;}
.y13f{bottom:119.987550px;}
.y5d{bottom:120.804900px;}
.y190{bottom:120.840000px;}
.y1b6{bottom:121.484550px;}
.yc4{bottom:121.767900px;}
.y152{bottom:122.116500px;}
.y176{bottom:122.742300px;}
.y115{bottom:123.451500px;}
.y11a{bottom:123.451650px;}
.y110{bottom:123.463350px;}
.ye5{bottom:125.132250px;}
.y10{bottom:131.055150px;}
.y165{bottom:134.358000px;}
.y13e{bottom:135.977550px;}
.y87{bottom:137.400150px;}
.y5c{bottom:138.387750px;}
.y18f{bottom:138.429000px;}
.y175{bottom:138.732300px;}
.y1b5{bottom:139.304550px;}
.yc3{bottom:139.360650px;}
.y151{bottom:139.705500px;}
.ye4{bottom:141.122250px;}
.y117{bottom:145.670400px;}
.yf{bottom:149.432400px;}
.y164{bottom:151.947000px;}
.y13d{bottom:151.967550px;}
.y174{bottom:154.722300px;}
.y86{bottom:154.989150px;}
.y18e{bottom:156.018000px;}
.y1b4{bottom:157.111050px;}
.y150{bottom:157.294500px;}
.y119{bottom:164.139150px;}
.y5b{bottom:164.817750px;}
.ye{bottom:167.807400px;}
.y13c{bottom:167.957550px;}
.y112{bottom:169.154850px;}
.y163{bottom:169.536000px;}
.y11b{bottom:169.948650px;}
.y111{bottom:169.951650px;}
.y173{bottom:170.712300px;}
.y85{bottom:172.579500px;}
.y18d{bottom:173.607000px;}
.yb8{bottom:174.542100px;}
.yba{bottom:174.552000px;}
.y14f{bottom:174.883500px;}
.y1b3{bottom:174.931050px;}
.y114{bottom:175.578975px;}
.y5a{bottom:182.406750px;}
.yd{bottom:184.061400px;}
.ybf{bottom:184.890000px;}
.yc1{bottom:186.811950px;}
.y162{bottom:187.125000px;}
.y84{bottom:190.168500px;}
.y13b{bottom:191.942550px;}
.y14e{bottom:192.472500px;}
.y1b2{bottom:192.751050px;}
.y113{bottom:194.190150px;}
.yc{bottom:195.242400px;}
.y59{bottom:199.995750px;}
.y18c{bottom:200.007000px;}
.yb9{bottom:202.093200px;}
.yc2{bottom:202.304850px;}
.y161{bottom:204.714000px;}
.yb{bottom:206.424900px;}
.ybc{bottom:207.718200px;}
.y13a{bottom:209.539050px;}
.y14d{bottom:210.061500px;}
.y1b1{bottom:210.562050px;}
.y83{bottom:216.568500px;}
.y58{bottom:217.584750px;}
.y18b{bottom:217.596000px;}
.ybe{bottom:218.171400px;}
.y160{bottom:222.303000px;}
.ya{bottom:223.980900px;}
.y14c{bottom:227.650500px;}
.y1b0{bottom:228.382050px;}
.y9{bottom:235.163400px;}
.y57{bottom:235.181250px;}
.y18a{bottom:235.185000px;}
.y15f{bottom:239.885850px;}
.y10f{bottom:244.853850px;}
.y14b{bottom:245.239500px;}
.y1af{bottom:246.188550px;}
.y8{bottom:246.345900px;}
.y56{bottom:252.800250px;}
.y189{bottom:252.812850px;}
.yb7{bottom:255.870600px;}
.yb1{bottom:255.871500px;}
.yb0{bottom:255.900450px;}
.y82{bottom:260.560650px;}
.y10e{bottom:262.457850px;}
.y14a{bottom:262.828500px;}
.y1ae{bottom:264.008550px;}
.yb3{bottom:265.295700px;}
.y15e{bottom:266.285850px;}
.yb6{bottom:267.217500px;}
.y55{bottom:270.389250px;}
.y188{bottom:270.401850px;}
.y30{bottom:270.675150px;}
.y81{bottom:278.153400px;}
.y10d{bottom:280.046850px;}
.y149{bottom:280.417500px;}
.y1ad{bottom:281.828550px;}
.y54{bottom:287.978250px;}
.y187{bottom:287.990850px;}
.y2f{bottom:293.665650px;}
.y10c{bottom:297.635850px;}
.y148{bottom:298.006500px;}
.yaf{bottom:298.816950px;}
.y1ac{bottom:299.635050px;}
.y7b{bottom:304.548000px;}
.y7a{bottom:304.629150px;}
.y53{bottom:305.567250px;}
.y2e{bottom:308.664150px;}
.y186{bottom:314.390850px;}
.y80{bottom:315.949350px;}
.yae{bottom:316.405950px;}
.y1ab{bottom:317.455050px;}
.y52{bottom:323.277600px;}
.y2d{bottom:323.662650px;}
.y10b{bottom:324.037200px;}
.y7f{bottom:326.730600px;}
.y185{bottom:331.979850px;}
.y1aa{bottom:335.275050px;}
.y15d{bottom:336.649950px;}
.y2c{bottom:338.662650px;}
.y51{bottom:340.866600px;}
.y10a{bottom:341.629950px;}
.yad{bottom:342.805950px;}
.y184{bottom:349.568850px;}
.y147{bottom:350.783250px;}
.y15c{bottom:352.639950px;}
.y1a9{bottom:353.077050px;}
.y2b{bottom:353.662650px;}
.y79{bottom:358.435650px;}
.y109{bottom:359.222700px;}
.y146{bottom:366.773250px;}
.y183{bottom:367.157850px;}
.y50{bottom:367.266600px;}
.y15b{bottom:368.629950px;}
.y2a{bottom:368.664150px;}
.y1a8{bottom:370.897050px;}
.y78{bottom:376.024650px;}
.y145{bottom:382.763250px;}
.y29{bottom:383.667150px;}
.y15a{bottom:384.619950px;}
.y182{bottom:384.776700px;}
.y4f{bottom:384.855600px;}
.y107{bottom:385.616550px;}
.y102{bottom:385.617000px;}
.yfd{bottom:385.663050px;}
.yac{bottom:386.794950px;}
.y1a7{bottom:388.717050px;}
.y77{bottom:393.613650px;}
.y28{bottom:398.665650px;}
.y144{bottom:398.753250px;}
.y159{bottom:400.609950px;}
.y181{bottom:402.365700px;}
.y4e{bottom:402.444600px;}
.yab{bottom:404.383950px;}
.y1a6{bottom:406.537050px;}
.y104{bottom:407.835150px;}
.y76{bottom:411.202650px;}
.y27{bottom:413.664150px;}
.y139{bottom:417.009300px;}
.y180{bottom:419.954700px;}
.y4d{bottom:420.033600px;}
.yaa{bottom:421.972950px;}
.y1a5{bottom:424.348050px;}
.y158{bottom:424.594950px;}
.y106{bottom:426.303900px;}
.y26{bottom:428.668950px;}
.y75{bottom:428.791650px;}
.yff{bottom:431.319600px;}
.y108{bottom:432.113550px;}
.yfe{bottom:432.116400px;}
.y138{bottom:434.598300px;}
.y17f{bottom:437.543700px;}
.y4c{bottom:437.622600px;}
.y101{bottom:437.743725px;}
.ya9{bottom:439.561950px;}
.y1a4{bottom:442.168050px;}
.y25{bottom:443.667450px;}
.y157{bottom:446.443350px;}
.ye3{bottom:451.138950px;}
.y137{bottom:452.187300px;}
.y74{bottom:455.191650px;}
.y4b{bottom:455.211600px;}
.y17e{bottom:455.277000px;}
.y100{bottom:456.354900px;}
.y1a3{bottom:459.983550px;}
.y172{bottom:461.370450px;}
.ya8{bottom:465.961950px;}
.ye2{bottom:468.727950px;}
.y136{bottom:469.776300px;}
.y73{bottom:472.780650px;}
.y4a{bottom:472.800600px;}
.y17d{bottom:472.866000px;}
.y24{bottom:474.649950px;}
.y1a2{bottom:477.794550px;}
.y171{bottom:478.959450px;}
.ya7{bottom:483.550950px;}
.ye1{bottom:486.316950px;}
.y135{bottom:487.365300px;}
.y23{bottom:489.657750px;}
.y72{bottom:490.369650px;}
.y49{bottom:490.389600px;}
.y1a1{bottom:495.614550px;}
.y170{bottom:496.548450px;}
.ya6{bottom:501.139950px;}
.ye0{bottom:503.905950px;}
.y134{bottom:504.954300px;}
.yfc{bottom:507.053550px;}
.y71{bottom:507.958650px;}
.y48{bottom:507.978600px;}
.y17c{bottom:508.060500px;}
.y22{bottom:512.648250px;}
.y1a0{bottom:513.425550px;}
.y16f{bottom:514.137450px;}
.ydf{bottom:521.494950px;}
.y133{bottom:522.543300px;}
.yfb{bottom:524.642550px;}
.y70{bottom:525.547650px;}
.y47{bottom:525.567600px;}
.ya5{bottom:527.537550px;}
.y21{bottom:527.646750px;}
.y19f{bottom:531.245550px;}
.y16e{bottom:531.726450px;}
.yde{bottom:539.083950px;}
.y132{bottom:540.132300px;}
.yfa{bottom:542.231550px;}
.y20{bottom:542.645250px;}
.y6f{bottom:543.136650px;}
.y46{bottom:543.156600px;}
.ya4{bottom:545.130300px;}
.y19e{bottom:549.052050px;}
.y16d{bottom:549.315450px;}
.ydd{bottom:556.672950px;}
.y1f{bottom:557.643750px;}
.y131{bottom:557.721300px;}
.yf9{bottom:559.820550px;}
.y45{bottom:560.745600px;}
.y19d{bottom:566.872050px;}
.y16c{bottom:566.904450px;}
.y17b{bottom:569.638500px;}
.ya0{bottom:571.524000px;}
.y9f{bottom:571.536150px;}
.y1e{bottom:572.643750px;}
.ydc{bottom:574.261950px;}
.y130{bottom:575.310300px;}
.yf8{bottom:577.409550px;}
.y6e{bottom:578.331150px;}
.y44{bottom:578.334600px;}
.ya3{bottom:579.697050px;}
.y19c{bottom:584.692050px;}
.y17a{bottom:587.227500px;}
.y1d{bottom:587.643750px;}
.yf7{bottom:594.998550px;}
.y43{bottom:595.923600px;}
.ydb{bottom:600.661950px;}
.y12f{bottom:601.710300px;}
.y19b{bottom:602.503050px;}
.y1c{bottom:602.645250px;}
.y179{bottom:604.816500px;}
.y42{bottom:613.512600px;}
.y9e{bottom:614.980650px;}
.y1b{bottom:617.643750px;}
.y16b{bottom:619.687200px;}
.y19a{bottom:620.323050px;}
.yf6{bottom:621.398550px;}
.y178{bottom:622.405500px;}
.y41{bottom:631.101600px;}
.y6d{bottom:631.114650px;}
.y9d{bottom:632.569650px;}
.y1a{bottom:632.643750px;}
.y16a{bottom:635.671200px;}
.y199{bottom:638.138550px;}
.y177{bottom:639.994500px;}
.yda{bottom:644.650950px;}
.y12e{bottom:645.699300px;}
.y19{bottom:647.645250px;}
.y6c{bottom:648.703650px;}
.y40{bottom:648.714450px;}
.y169{bottom:651.661200px;}
.y198{bottom:655.958550px;}
.y156{bottom:657.583500px;}
.y18{bottom:662.643750px;}
.y12d{bottom:663.288300px;}
.yf5{bottom:665.387550px;}
.y6b{bottom:666.292650px;}
.y168{bottom:667.646850px;}
.y95{bottom:667.764000px;}
.y9b{bottom:667.764150px;}
.y93{bottom:667.766400px;}
.yd9{bottom:670.753950px;}
.y197{bottom:673.774050px;}
.y3f{bottom:675.114450px;}
.y155{bottom:675.172500px;}
.y99{bottom:677.290050px;}
.y12c{bottom:680.891100px;}
.yf4{bottom:682.976550px;}
.y6a{bottom:683.883000px;}
.yd8{bottom:688.342950px;}
.y94{bottom:688.587000px;}
.y9c{bottom:688.768650px;}
.y196{bottom:691.576050px;}
.y167{bottom:691.631850px;}
.y3e{bottom:692.703450px;}
.y154{bottom:692.761500px;}
.y98{bottom:694.212000px;}
.y12b{bottom:698.480100px;}
.yf3{bottom:700.565550px;}
.y69{bottom:701.472000px;}
.yd7{bottom:705.931950px;}
.y195{bottom:709.396050px;}
.y3d{bottom:710.292450px;}
.y153{bottom:710.350500px;}
.y166{bottom:713.480250px;}
.y12a{bottom:716.069100px;}
.y194{bottom:727.216050px;}
.y3c{bottom:727.881450px;}
.y68{bottom:727.902000px;}
.y143{bottom:727.939500px;}
.y92{bottom:728.469900px;}
.yd1{bottom:732.327000px;}
.yef{bottom:735.759000px;}
.yf2{bottom:735.760050px;}
.yec{bottom:735.760950px;}
.yd0{bottom:741.322050px;}
.yd6{bottom:741.325800px;}
.yd5{bottom:741.958050px;}
.yd4{bottom:743.879850px;}
.y193{bottom:745.031550px;}
.y67{bottom:745.491000px;}
.y3b{bottom:745.492950px;}
.y142{bottom:745.528500px;}
.y91{bottom:746.058900px;}
.yed{bottom:746.916300px;}
.yee{bottom:747.760050px;}
.y17{bottom:749.927250px;}
.y129{bottom:751.263600px;}
.ycb{bottom:762.411000px;}
.ycf{bottom:762.411300px;}
.y192{bottom:762.851550px;}
.y66{bottom:763.080000px;}
.y3a{bottom:763.081950px;}
.y141{bottom:763.117500px;}
.yce{bottom:772.590750px;}
.y16{bottom:774.711600px;}
.y1bd{bottom:780.331650px;}
.y65{bottom:780.669000px;}
.y39{bottom:780.670950px;}
.y140{bottom:780.706500px;}
.y8d{bottom:781.252500px;}
.y90{bottom:781.253400px;}
.y8b{bottom:781.269150px;}
.yeb{bottom:791.151450px;}
.y8c{bottom:796.324350px;}
.yca{bottom:797.466150px;}
.y1bc{bottom:798.151650px;}
.y191{bottom:798.279000px;}
.y38{bottom:798.282450px;}
.y64{bottom:798.295500px;}
.y11c{bottom:804.047100px;}
.y121{bottom:804.048000px;}
.y15{bottom:809.315850px;}
.y37{bottom:815.871450px;}
.y63{bottom:815.884500px;}
.y1bb{bottom:815.962650px;}
.yc9{bottom:816.366150px;}
.y124{bottom:820.705200px;}
.y127{bottom:823.986450px;}
.ye6{bottom:826.345500px;}
.yea{bottom:826.345950px;}
.y14{bottom:830.915850px;}
.y8a{bottom:833.458650px;}
.y36{bottom:833.460450px;}
.y62{bottom:833.473500px;}
.y1ba{bottom:833.782650px;}
.yc8{bottom:833.958900px;}
.ye7{bottom:841.345650px;}
.y126{bottom:842.455200px;}
.y11e{bottom:847.471050px;}
.y128{bottom:847.541100px;}
.y11d{bottom:848.267700px;}
.y35{bottom:851.046000px;}
.y89{bottom:851.055000px;}
.y61{bottom:851.062500px;}
.yc7{bottom:851.551650px;}
.y1b9{bottom:851.593650px;}
.y120{bottom:853.895175px;}
.y13{bottom:856.775400px;}
.y60{bottom:868.651500px;}
.yc6{bottom:869.144400px;}
.y11f{bottom:869.221050px;}
.y1b8{bottom:869.413650px;}
.y123{bottom:872.502300px;}
.y12{bottom:882.267900px;}
.y34{bottom:886.240500px;}
.yc5{bottom:886.737150px;}
.y1b7{bottom:887.233650px;}
.y5{bottom:920.367150px;}
.y5f{bottom:931.885500px;}
.y33{bottom:931.885650px;}
.y4{bottom:939.024750px;}
.y3{bottom:945.477750px;}
.y5e{bottom:949.474500px;}
.y32{bottom:949.474650px;}
.y2{bottom:953.272050px;}
.y7{bottom:957.891150px;}
.y6{bottom:971.391150px;}
.h16{height:18.814431px;}
.h4{height:19.602000px;}
.h22{height:26.859000px;}
.h29{height:26.935500px;}
.h20{height:27.397500px;}
.h15{height:29.181885px;}
.h23{height:29.307129px;}
.h30{height:30.956177px;}
.h21{height:31.184798px;}
.h6{height:31.206000px;}
.h7{height:31.212000px;}
.h27{height:31.890000px;}
.h12{height:32.910000px;}
.h8{height:33.435000px;}
.h2e{height:34.500000px;}
.h5{height:35.328000px;}
.h1a{height:36.142500px;}
.hd{height:37.494141px;}
.hc{height:37.520508px;}
.h2b{height:39.000000px;}
.h33{height:40.664062px;}
.h2{height:41.689453px;}
.h34{height:41.706853px;}
.h35{height:41.713453px;}
.h17{height:43.773926px;}
.h1e{height:44.646000px;}
.h36{height:44.730469px;}
.h13{height:45.052734px;}
.h1c{height:45.244294px;}
.h1b{height:45.246094px;}
.he{height:45.826172px;}
.h18{height:45.828998px;}
.hf{height:45.858398px;}
.h10{height:45.872198px;}
.h11{height:45.882998px;}
.h24{height:47.314072px;}
.h19{height:47.791992px;}
.hb{height:49.992188px;}
.ha{height:50.027344px;}
.h3b{height:51.891469px;}
.h37{height:52.646484px;}
.h39{height:52.664484px;}
.h3a{height:52.682484px;}
.h38{height:52.700484px;}
.h3c{height:52.718484px;}
.h2d{height:57.828311px;}
.h14{height:58.371094px;}
.h26{height:60.423000px;}
.h9{height:60.996094px;}
.h28{height:64.752926px;}
.h2a{height:79.177734px;}
.h25{height:81.828398px;}
.h32{height:93.117000px;}
.h2f{height:93.840398px;}
.h2c{height:95.788392px;}
.h31{height:100.500000px;}
.h3{height:104.850000px;}
.h1d{height:105.852398px;}
.h1f{height:110.877422px;}
.h0{height:1020.472500px;}
.h1{height:1020.750000px;}
.wa{width:72.000000px;}
.w8{width:89.998500px;}
.w5{width:90.000000px;}
.w2{width:97.500000px;}
.wc{width:108.000000px;}
.w9{width:113.644500px;}
.w3{width:116.835000px;}
.wb{width:120.000000px;}
.w6{width:121.500000px;}
.w7{width:136.500000px;}
.wd{width:197.998500px;}
.w4{width:271.500000px;}
.w0{width:722.835000px;}
.w1{width:723.000000px;}
.x0{left:0.000000px;}
.xe{left:3.000000px;}
.xf{left:10.828050px;}
.x3b{left:21.722550px;}
.x16{left:29.309400px;}
.x41{left:32.478150px;}
.x40{left:44.671650px;}
.x44{left:50.390400px;}
.x45{left:51.940087px;}
.x28{left:56.109150px;}
.x29{left:58.545900px;}
.x31{left:60.702900px;}
.x15{left:62.787900px;}
.x27{left:65.384100px;}
.x2f{left:67.218450px;}
.x58{left:69.000000px;}
.x57{left:73.687500px;}
.x38{left:74.953200px;}
.x23{left:78.046650px;}
.x10{left:79.125000px;}
.x1a{left:89.437200px;}
.x2b{left:99.655950px;}
.x9{left:110.551200px;}
.x1{left:113.476500px;}
.x8{left:115.552050px;}
.xa{left:136.060200px;}
.x4{left:138.981000px;}
.x5d{left:146.698050px;}
.x5e{left:149.621100px;}
.x52{left:156.421500px;}
.x3a{left:160.273500px;}
.x37{left:170.851500px;}
.x5{left:173.632800px;}
.x6{left:179.257800px;}
.x7{left:188.167200px;}
.x39{left:203.524950px;}
.x19{left:224.179500px;}
.x18{left:226.851150px;}
.x20{left:235.546350px;}
.x1d{left:242.765100px;}
.x3c{left:248.097300px;}
.x51{left:260.929500px;}
.x4d{left:264.257100px;}
.x3d{left:273.917850px;}
.x4e{left:290.179050px;}
.x2e{left:291.679500px;}
.xb{left:292.912950px;}
.x2d{left:295.007250px;}
.x25{left:299.179500px;}
.x14{left:301.512000px;}
.x48{left:305.929500px;}
.xc{left:308.191950px;}
.xd{left:314.104500px;}
.x13{left:316.487250px;}
.x46{left:321.585450px;}
.x3f{left:323.929500px;}
.x3e{left:326.272950px;}
.x26{left:331.893750px;}
.x1b{left:347.366700px;}
.x30{left:349.944900px;}
.x5c{left:352.122900px;}
.x5b{left:355.118550px;}
.x55{left:356.667000px;}
.x43{left:358.054200px;}
.x33{left:360.116700px;}
.x47{left:361.285575px;}
.x34{left:370.007400px;}
.x4a{left:371.319900px;}
.x2a{left:376.476150px;}
.x32{left:380.694900px;}
.x35{left:381.913650px;}
.x49{left:384.913650px;}
.x12{left:390.088950px;}
.x24{left:392.835450px;}
.x56{left:393.932700px;}
.x42{left:395.929200px;}
.x11{left:399.838950px;}
.x4f{left:402.913500px;}
.x36{left:404.272950px;}
.x4b{left:413.929200px;}
.x17{left:418.346700px;}
.x2c{left:420.679200px;}
.x53{left:421.757250px;}
.x59{left:423.604500px;}
.x50{left:435.352500px;}
.x3{left:441.045750px;}
.x1c{left:445.429200px;}
.x54{left:458.929050px;}
.x1f{left:470.132100px;}
.x1e{left:479.085450px;}
.x21{left:495.679200px;}
.x2{left:521.280900px;}
.x4c{left:581.849700px;}
.x5a{left:584.776500px;}
.x22{left:590.092200px;}
@media print{
.v7{vertical-align:-40.540800pt;}
.vc{vertical-align:-36.757867pt;}
.ve{vertical-align:-31.976000pt;}
.va{vertical-align:-29.059200pt;}
.v2{vertical-align:-16.026667pt;}
.v3{vertical-align:-12.800000pt;}
.v5{vertical-align:-11.721067pt;}
.v11{vertical-align:-10.651200pt;}
.v4{vertical-align:-9.600000pt;}
.v1{vertical-align:-7.461333pt;}
.v0{vertical-align:0.000000pt;}
.v6{vertical-align:11.666667pt;}
.v8{vertical-align:16.016000pt;}
.vd{vertical-align:18.648000pt;}
.vf{vertical-align:30.333333pt;}
.vb{vertical-align:31.973333pt;}
.v10{vertical-align:42.663467pt;}
.v9{vertical-align:53.328000pt;}
.ls7f{letter-spacing:-0.533333pt;}
.ls18{letter-spacing:-0.293333pt;}
.ls1b{letter-spacing:-0.234667pt;}
.lsd{letter-spacing:-0.186667pt;}
.ls17{letter-spacing:-0.176000pt;}
.lsb{letter-spacing:0.000000pt;}
.ls7c{letter-spacing:0.000533pt;}
.ls71{letter-spacing:0.001067pt;}
.ls2a{letter-spacing:0.005733pt;}
.ls97{letter-spacing:0.008000pt;}
.lsa4{letter-spacing:0.008533pt;}
.ls29{letter-spacing:0.009067pt;}
.ls73{letter-spacing:0.014933pt;}
.lsa6{letter-spacing:0.019200pt;}
.ls2c{letter-spacing:0.026933pt;}
.lsa{letter-spacing:0.048000pt;}
.ls7d{letter-spacing:0.053333pt;}
.ls2f{letter-spacing:0.058667pt;}
.ls38{letter-spacing:0.081600pt;}
.ls2d{letter-spacing:0.093333pt;}
.lsf{letter-spacing:0.096000pt;}
.ls14{letter-spacing:0.098667pt;}
.ls93{letter-spacing:0.099200pt;}
.ls94{letter-spacing:0.106667pt;}
.ls1a{letter-spacing:0.117333pt;}
.ls84{letter-spacing:0.122133pt;}
.ls9{letter-spacing:0.144000pt;}
.lsc{letter-spacing:0.149333pt;}
.ls9d{letter-spacing:0.160000pt;}
.ls37{letter-spacing:0.165333pt;}
.ls5f{letter-spacing:0.168000pt;}
.ls13{letter-spacing:0.176000pt;}
.ls3{letter-spacing:0.186667pt;}
.ls33{letter-spacing:0.202667pt;}
.ls36{letter-spacing:0.203200pt;}
.ls8e{letter-spacing:0.211200pt;}
.ls85{letter-spacing:0.213333pt;}
.ls11{letter-spacing:0.234667pt;}
.ls3b{letter-spacing:0.237333pt;}
.ls16{letter-spacing:0.257600pt;}
.ls58{letter-spacing:0.280000pt;}
.ls12{letter-spacing:0.293333pt;}
.ls31{letter-spacing:0.322667pt;}
.ls8{letter-spacing:0.326456pt;}
.ls32{letter-spacing:0.330133pt;}
.ls2{letter-spacing:0.336000pt;}
.ls19{letter-spacing:0.352000pt;}
.ls35{letter-spacing:0.353067pt;}
.ls95{letter-spacing:0.354133pt;}
.ls1{letter-spacing:0.373333pt;}
.ls15{letter-spacing:0.410667pt;}
.ls6c{letter-spacing:0.456000pt;}
.ls9a{letter-spacing:0.480000pt;}
.ls99{letter-spacing:0.500000pt;}
.ls98{letter-spacing:0.502933pt;}
.lse{letter-spacing:0.528000pt;}
.ls83{letter-spacing:0.533333pt;}
.ls20{letter-spacing:0.548267pt;}
.ls5b{letter-spacing:0.560000pt;}
.ls1e{letter-spacing:0.586667pt;}
.ls9c{letter-spacing:0.640000pt;}
.ls30{letter-spacing:0.645333pt;}
.ls9b{letter-spacing:0.656533pt;}
.ls8f{letter-spacing:0.663467pt;}
.ls91{letter-spacing:0.672000pt;}
.ls23{letter-spacing:0.673600pt;}
.ls92{letter-spacing:0.678400pt;}
.ls90{letter-spacing:0.680000pt;}
.ls6f{letter-spacing:0.694400pt;}
.ls2e{letter-spacing:0.704000pt;}
.ls8b{letter-spacing:0.722667pt;}
.ls87{letter-spacing:0.762667pt;}
.ls96{letter-spacing:0.765867pt;}
.ls75{letter-spacing:0.785600pt;}
.ls9f{letter-spacing:0.800000pt;}
.lsa1{letter-spacing:0.816000pt;}
.ls9e{letter-spacing:0.818133pt;}
.lsa0{letter-spacing:0.818667pt;}
.ls1f{letter-spacing:0.821333pt;}
.ls7e{letter-spacing:0.880000pt;}
.lsa5{letter-spacing:0.906667pt;}
.ls1c{letter-spacing:0.938667pt;}
.ls5a{letter-spacing:0.952000pt;}
.lsa3{letter-spacing:0.960000pt;}
.ls78{letter-spacing:1.036267pt;}
.ls1d{letter-spacing:1.056000pt;}
.ls70{letter-spacing:1.064000pt;}
.ls80{letter-spacing:1.066667pt;}
.ls6e{letter-spacing:1.096533pt;}
.ls72{letter-spacing:1.114667pt;}
.ls8d{letter-spacing:1.147733pt;}
.ls8a{letter-spacing:1.173333pt;}
.ls82{letter-spacing:1.226667pt;}
.ls86{letter-spacing:1.232000pt;}
.lsa2{letter-spacing:1.280000pt;}
.ls26{letter-spacing:1.294400pt;}
.ls81{letter-spacing:1.333333pt;}
.ls59{letter-spacing:1.400000pt;}
.ls88{letter-spacing:1.466667pt;}
.ls89{letter-spacing:1.525333pt;}
.ls5{letter-spacing:1.550400pt;}
.ls50{letter-spacing:1.584000pt;}
.ls57{letter-spacing:1.624000pt;}
.ls8c{letter-spacing:1.760000pt;}
.ls4a{letter-spacing:1.818667pt;}
.ls7a{letter-spacing:1.904000pt;}
.ls51{letter-spacing:1.936000pt;}
.ls6b{letter-spacing:1.976000pt;}
.ls22{letter-spacing:2.112000pt;}
.ls6{letter-spacing:2.202667pt;}
.ls74{letter-spacing:2.288000pt;}
.ls4{letter-spacing:2.389333pt;}
.ls4b{letter-spacing:2.640000pt;}
.ls3c{letter-spacing:2.666667pt;}
.ls3d{letter-spacing:3.109333pt;}
.ls3e{letter-spacing:3.390400pt;}
.ls41{letter-spacing:3.500267pt;}
.ls52{letter-spacing:3.872000pt;}
.ls79{letter-spacing:4.030400pt;}
.ls49{letter-spacing:4.035200pt;}
.ls6d{letter-spacing:4.035733pt;}
.ls7b{letter-spacing:4.036267pt;}
.ls46{letter-spacing:4.044267pt;}
.ls40{letter-spacing:4.057067pt;}
.ls6a{letter-spacing:4.061333pt;}
.ls2b{letter-spacing:4.200000pt;}
.ls3a{letter-spacing:5.514667pt;}
.ls3f{letter-spacing:5.833600pt;}
.ls76{letter-spacing:6.981333pt;}
.ls5e{letter-spacing:7.168000pt;}
.ls21{letter-spacing:7.218000pt;}
.ls39{letter-spacing:7.450667pt;}
.ls63{letter-spacing:7.509333pt;}
.ls34{letter-spacing:7.626667pt;}
.ls24{letter-spacing:8.384400pt;}
.ls55{letter-spacing:9.797333pt;}
.ls5c{letter-spacing:9.798933pt;}
.ls4c{letter-spacing:9.821333pt;}
.ls4d{letter-spacing:10.625600pt;}
.ls7{letter-spacing:11.120000pt;}
.ls64{letter-spacing:11.146667pt;}
.ls45{letter-spacing:11.674667pt;}
.ls5d{letter-spacing:11.792000pt;}
.ls43{letter-spacing:13.493333pt;}
.ls62{letter-spacing:13.786667pt;}
.ls44{letter-spacing:14.138667pt;}
.ls47{letter-spacing:18.627733pt;}
.ls4e{letter-spacing:21.872000pt;}
.ls27{letter-spacing:22.371733pt;}
.ls56{letter-spacing:43.551333pt;}
.ls77{letter-spacing:44.144000pt;}
.ls69{letter-spacing:45.702933pt;}
.ls60{letter-spacing:56.666667pt;}
.ls25{letter-spacing:57.464000pt;}
.ls53{letter-spacing:70.554000pt;}
.ls67{letter-spacing:89.818667pt;}
.ls48{letter-spacing:110.125333pt;}
.ls61{letter-spacing:567.717333pt;}
.ls54{letter-spacing:587.722667pt;}
.ls68{letter-spacing:590.362667pt;}
.ls42{letter-spacing:595.994667pt;}
.ls28{letter-spacing:630.373333pt;}
.ls4f{letter-spacing:643.690667pt;}
.ls66{letter-spacing:666.973333pt;}
.ls65{letter-spacing:675.722667pt;}
.ls10{letter-spacing:1264.648533pt;}
.ls0{letter-spacing:1707.485867pt;}
.ws62{word-spacing:-38.000000pt;}
.ws4a{word-spacing:-23.638560pt;}
.ws60{word-spacing:-21.012053pt;}
.ws8b{word-spacing:-15.781333pt;}
.ws63{word-spacing:-14.666667pt;}
.ws23{word-spacing:-14.490667pt;}
.ws54{word-spacing:-14.000000pt;}
.ws21{word-spacing:-13.333333pt;}
.ws1{word-spacing:-13.000000pt;}
.ws4{word-spacing:-12.000000pt;}
.ws99{word-spacing:-10.816000pt;}
.ws97{word-spacing:-10.680000pt;}
.ws98{word-spacing:-10.500000pt;}
.ws2{word-spacing:-10.400000pt;}
.ws96{word-spacing:-10.000000pt;}
.ws22{word-spacing:-9.533333pt;}
.ws3a{word-spacing:-9.100000pt;}
.ws86{word-spacing:-8.666667pt;}
.ws0{word-spacing:-8.288000pt;}
.ws3{word-spacing:-7.800000pt;}
.wsc{word-spacing:-2.202667pt;}
.ws51{word-spacing:-1.624000pt;}
.ws84{word-spacing:-1.066667pt;}
.wse{word-spacing:-0.528000pt;}
.ws53{word-spacing:-0.280000pt;}
.ws34{word-spacing:-0.176000pt;}
.ws57{word-spacing:-0.168000pt;}
.ws4d{word-spacing:-0.117333pt;}
.ws46{word-spacing:-0.058667pt;}
.ws61{word-spacing:-0.038000pt;}
.ws39{word-spacing:-0.024500pt;}
.ws5{word-spacing:0.000000pt;}
.ws6f{word-spacing:0.117333pt;}
.ws67{word-spacing:0.176000pt;}
.wsd{word-spacing:0.186667pt;}
.ws9c{word-spacing:0.266667pt;}
.ws13{word-spacing:0.288000pt;}
.ws7f{word-spacing:0.293333pt;}
.ws15{word-spacing:0.336000pt;}
.ws7b{word-spacing:0.352000pt;}
.ws26{word-spacing:0.410667pt;}
.ws1d{word-spacing:0.432000pt;}
.ws20{word-spacing:0.528000pt;}
.ws77{word-spacing:0.586667pt;}
.ws25{word-spacing:0.645333pt;}
.ws89{word-spacing:0.800000pt;}
.ws3c{word-spacing:0.821333pt;}
.ws69{word-spacing:0.938667pt;}
.wsa1{word-spacing:1.013333pt;}
.ws3d{word-spacing:1.056000pt;}
.ws68{word-spacing:1.114667pt;}
.ws2e{word-spacing:1.173333pt;}
.ws9{word-spacing:1.232000pt;}
.ws32{word-spacing:1.290667pt;}
.ws1f{word-spacing:1.296000pt;}
.ws44{word-spacing:1.349333pt;}
.ws36{word-spacing:1.408000pt;}
.ws78{word-spacing:1.466667pt;}
.ws92{word-spacing:1.525333pt;}
.ws12{word-spacing:1.536000pt;}
.ws8a{word-spacing:1.546667pt;}
.ws8{word-spacing:1.605333pt;}
.ws4e{word-spacing:1.642667pt;}
.ws81{word-spacing:1.877333pt;}
.ws11{word-spacing:1.920000pt;}
.ws7d{word-spacing:1.936000pt;}
.ws19{word-spacing:1.968000pt;}
.ws17{word-spacing:2.160000pt;}
.ws2f{word-spacing:2.170667pt;}
.ws6a{word-spacing:2.288000pt;}
.ws30{word-spacing:2.346667pt;}
.ws42{word-spacing:2.405333pt;}
.wsa0{word-spacing:2.453333pt;}
.ws91{word-spacing:2.522667pt;}
.ws16{word-spacing:2.544000pt;}
.ws1b{word-spacing:2.688000pt;}
.ws37{word-spacing:2.698667pt;}
.wsa2{word-spacing:2.826667pt;}
.ws24{word-spacing:2.874667pt;}
.ws72{word-spacing:2.880000pt;}
.ws50{word-spacing:2.933333pt;}
.ws33{word-spacing:2.992000pt;}
.ws4f{word-spacing:3.024000pt;}
.ws2a{word-spacing:3.050667pt;}
.ws1e{word-spacing:3.168000pt;}
.ws5d{word-spacing:3.226667pt;}
.ws82{word-spacing:3.253333pt;}
.ws56{word-spacing:3.304000pt;}
.ws73{word-spacing:3.344000pt;}
.ws10{word-spacing:3.360000pt;}
.ws5b{word-spacing:3.461333pt;}
.ws80{word-spacing:3.578667pt;}
.ws83{word-spacing:3.626667pt;}
.ws87{word-spacing:3.680000pt;}
.ws6d{word-spacing:3.754667pt;}
.ws9b{word-spacing:3.840000pt;}
.ws7e{word-spacing:3.872000pt;}
.ws8f{word-spacing:3.930667pt;}
.ws31{word-spacing:4.048000pt;}
.ws41{word-spacing:4.106667pt;}
.wsa{word-spacing:4.144000pt;}
.ws79{word-spacing:4.160000pt;}
.ws8c{word-spacing:4.165333pt;}
.ws43{word-spacing:4.200000pt;}
.ws2c{word-spacing:4.282667pt;}
.ws6e{word-spacing:4.341333pt;}
.ws1a{word-spacing:4.368000pt;}
.ws9e{word-spacing:4.373333pt;}
.ws6c{word-spacing:4.400000pt;}
.ws9d{word-spacing:4.426667pt;}
.ws18{word-spacing:4.464000pt;}
.ws27{word-spacing:4.517333pt;}
.ws40{word-spacing:4.576000pt;}
.ws88{word-spacing:4.693333pt;}
.ws8d{word-spacing:4.752000pt;}
.ws5c{word-spacing:4.869333pt;}
.wsa4{word-spacing:4.906667pt;}
.ws93{word-spacing:4.928000pt;}
.ws45{word-spacing:4.986667pt;}
.ws94{word-spacing:5.045333pt;}
.ws35{word-spacing:5.162667pt;}
.ws38{word-spacing:5.221333pt;}
.ws29{word-spacing:5.280000pt;}
.ws74{word-spacing:5.338667pt;}
.ws75{word-spacing:5.397333pt;}
.ws76{word-spacing:5.573333pt;}
.wsa3{word-spacing:5.706667pt;}
.ws28{word-spacing:5.749333pt;}
.ws58{word-spacing:5.866667pt;}
.ws14{word-spacing:5.904000pt;}
.ws1c{word-spacing:5.952000pt;}
.wsf{word-spacing:6.000000pt;}
.ws9f{word-spacing:6.026667pt;}
.ws5a{word-spacing:6.160000pt;}
.ws3e{word-spacing:6.218667pt;}
.ws7c{word-spacing:6.394667pt;}
.ws7a{word-spacing:6.453333pt;}
.ws55{word-spacing:6.496000pt;}
.ws8e{word-spacing:6.512000pt;}
.ws71{word-spacing:6.666667pt;}
.ws85{word-spacing:6.688000pt;}
.ws2d{word-spacing:6.746667pt;}
.ws90{word-spacing:6.864000pt;}
.ws66{word-spacing:6.981333pt;}
.ws52{word-spacing:7.000000pt;}
.ws3b{word-spacing:7.098667pt;}
.ws6b{word-spacing:7.157333pt;}
.ws95{word-spacing:7.216000pt;}
.ws3f{word-spacing:7.274667pt;}
.ws2b{word-spacing:7.333333pt;}
.wsb{word-spacing:7.952000pt;}
.ws47{word-spacing:9.093333pt;}
.ws7{word-spacing:9.472000pt;}
.ws6{word-spacing:11.861333pt;}
.ws9a{word-spacing:13.333333pt;}
.ws4b{word-spacing:25.096000pt;}
.ws4c{word-spacing:32.786667pt;}
.ws49{word-spacing:41.240320pt;}
.ws65{word-spacing:48.303067pt;}
.ws64{word-spacing:48.303600pt;}
.ws5e{word-spacing:53.430933pt;}
.ws5f{word-spacing:57.002293pt;}
.ws48{word-spacing:121.673067pt;}
.ws70{word-spacing:380.373333pt;}
.ws59{word-spacing:499.429333pt;}
._7{margin-left:-18.517333pt;}
._9{margin-left:-14.666667pt;}
._0{margin-left:-11.865600pt;}
._6{margin-left:-2.202667pt;}
._4{margin-left:-0.918400pt;}
._2{width:1.235733pt;}
._c{width:2.186667pt;}
._d{width:3.304000pt;}
._b{width:4.200000pt;}
._14{width:5.133867pt;}
._3{width:6.085333pt;}
._5{width:7.176533pt;}
._1{width:8.773333pt;}
._8{width:10.378667pt;}
._13{width:12.984000pt;}
._15{width:26.282667pt;}
._10{width:33.386667pt;}
._11{width:35.840000pt;}
._e{width:37.600000pt;}
._12{width:39.200000pt;}
._f{width:467.786667pt;}
._a{width:1056.532267pt;}
.fs3{font-size:24.000000pt;}
.fs6{font-size:24.266667pt;}
.fs13{font-size:24.499733pt;}
.fsd{font-size:31.200000pt;}
.fs0{font-size:32.000000pt;}
.fs19{font-size:34.666667pt;}
.fs15{font-size:36.400000pt;}
.fs5{font-size:37.333333pt;}
.fs12{font-size:38.000000pt;}
.fs11{font-size:38.133333pt;}
.fs7{font-size:40.000000pt;}
.fsb{font-size:41.600000pt;}
.fs4{font-size:42.666667pt;}
.fsf{font-size:45.333333pt;}
.fsc{font-size:48.000000pt;}
.fse{font-size:50.666667pt;}
.fs9{font-size:52.000000pt;}
.fs1{font-size:53.333333pt;}
.fs14{font-size:56.000000pt;}
.fs17{font-size:58.080000pt;}
.fs10{font-size:58.666667pt;}
.fsa{font-size:64.000000pt;}
.fs18{font-size:70.986667pt;}
.fs8{font-size:80.000000pt;}
.fs2{font-size:124.266667pt;}
.fs16{font-size:136.106667pt;}
.y0{bottom:0.000000pt;}
.yb4{bottom:0.793733pt;}
.yd3{bottom:0.977600pt;}
.y7d{bottom:1.134533pt;}
.y125{bottom:1.181333pt;}
.yc0{bottom:1.606000pt;}
.y96{bottom:1.967600pt;}
.ya1{bottom:3.056667pt;}
.yf0{bottom:3.084267pt;}
.y105{bottom:3.207733pt;}
.y118{bottom:3.208400pt;}
.ye9{bottom:3.292133pt;}
.y8f{bottom:3.355867pt;}
.y7c{bottom:4.051200pt;}
.ycc{bottom:4.840400pt;}
.yb2{bottom:8.377067pt;}
.yd2{bottom:8.560933pt;}
.y9a{bottom:14.134267pt;}
.ya2{bottom:18.473333pt;}
.yb5{bottom:18.501733pt;}
.ycd{bottom:20.257067pt;}
.yf1{bottom:20.792267pt;}
.ye8{bottom:20.833467pt;}
.y8e{bottom:20.897200pt;}
.y7e{bottom:21.592933pt;}
.y97{bottom:26.426000pt;}
.ybb{bottom:37.064400pt;}
.ybd{bottom:47.189467pt;}
.y1{bottom:75.590533pt;}
.y31{bottom:75.590667pt;}
.y122{bottom:77.264933pt;}
.y103{bottom:79.291200pt;}
.y116{bottom:79.291867pt;}
.y11{bottom:105.825467pt;}
.y88{bottom:106.498800pt;}
.y13f{bottom:106.655600pt;}
.y5d{bottom:107.382133pt;}
.y190{bottom:107.413333pt;}
.y1b6{bottom:107.986267pt;}
.yc4{bottom:108.238133pt;}
.y152{bottom:108.548000pt;}
.y176{bottom:109.104267pt;}
.y115{bottom:109.734667pt;}
.y11a{bottom:109.734800pt;}
.y110{bottom:109.745200pt;}
.ye5{bottom:111.228667pt;}
.y10{bottom:116.493467pt;}
.y165{bottom:119.429333pt;}
.y13e{bottom:120.868933pt;}
.y87{bottom:122.133467pt;}
.y5c{bottom:123.011333pt;}
.y18f{bottom:123.048000pt;}
.y175{bottom:123.317600pt;}
.y1b5{bottom:123.826267pt;}
.yc3{bottom:123.876133pt;}
.y151{bottom:124.182667pt;}
.ye4{bottom:125.442000pt;}
.y117{bottom:129.484800pt;}
.yf{bottom:132.828800pt;}
.y164{bottom:135.064000pt;}
.y13d{bottom:135.082267pt;}
.y174{bottom:137.530933pt;}
.y86{bottom:137.768133pt;}
.y18e{bottom:138.682667pt;}
.y1b4{bottom:139.654267pt;}
.y150{bottom:139.817333pt;}
.y119{bottom:145.901467pt;}
.y5b{bottom:146.504667pt;}
.ye{bottom:149.162133pt;}
.y13c{bottom:149.295600pt;}
.y112{bottom:150.359867pt;}
.y163{bottom:150.698667pt;}
.y11b{bottom:151.065467pt;}
.y111{bottom:151.068133pt;}
.y173{bottom:151.744267pt;}
.y85{bottom:153.404000pt;}
.y18d{bottom:154.317333pt;}
.yb8{bottom:155.148533pt;}
.yba{bottom:155.157333pt;}
.y14f{bottom:155.452000pt;}
.y1b3{bottom:155.494267pt;}
.y114{bottom:156.070200pt;}
.y5a{bottom:162.139333pt;}
.yd{bottom:163.610133pt;}
.ybf{bottom:164.346667pt;}
.yc1{bottom:166.055067pt;}
.y162{bottom:166.333333pt;}
.y84{bottom:169.038667pt;}
.y13b{bottom:170.615600pt;}
.y14e{bottom:171.086667pt;}
.y1b2{bottom:171.334267pt;}
.y113{bottom:172.613467pt;}
.yc{bottom:173.548800pt;}
.y59{bottom:177.774000pt;}
.y18c{bottom:177.784000pt;}
.yb9{bottom:179.638400pt;}
.yc2{bottom:179.826533pt;}
.y161{bottom:181.968000pt;}
.yb{bottom:183.488800pt;}
.ybc{bottom:184.638400pt;}
.y13a{bottom:186.256933pt;}
.y14d{bottom:186.721333pt;}
.y1b1{bottom:187.166267pt;}
.y83{bottom:192.505333pt;}
.y58{bottom:193.408667pt;}
.y18b{bottom:193.418667pt;}
.ybe{bottom:193.930133pt;}
.y160{bottom:197.602667pt;}
.ya{bottom:199.094133pt;}
.y14c{bottom:202.356000pt;}
.y1b0{bottom:203.006267pt;}
.y9{bottom:209.034133pt;}
.y57{bottom:209.050000pt;}
.y18a{bottom:209.053333pt;}
.y15f{bottom:213.231867pt;}
.y10f{bottom:217.647867pt;}
.y14b{bottom:217.990667pt;}
.y1af{bottom:218.834267pt;}
.y8{bottom:218.974133pt;}
.y56{bottom:224.711333pt;}
.y189{bottom:224.722533pt;}
.yb7{bottom:227.440533pt;}
.yb1{bottom:227.441333pt;}
.yb0{bottom:227.467067pt;}
.y82{bottom:231.609467pt;}
.y10e{bottom:233.295867pt;}
.y14a{bottom:233.625333pt;}
.y1ae{bottom:234.674267pt;}
.yb3{bottom:235.818400pt;}
.y15e{bottom:236.698533pt;}
.yb6{bottom:237.526667pt;}
.y55{bottom:240.346000pt;}
.y188{bottom:240.357200pt;}
.y30{bottom:240.600133pt;}
.y81{bottom:247.247467pt;}
.y10d{bottom:248.930533pt;}
.y149{bottom:249.260000pt;}
.y1ad{bottom:250.514267pt;}
.y54{bottom:255.980667pt;}
.y187{bottom:255.991867pt;}
.y2f{bottom:261.036133pt;}
.y10c{bottom:264.565200pt;}
.y148{bottom:264.894667pt;}
.yaf{bottom:265.615067pt;}
.y1ac{bottom:266.342267pt;}
.y7b{bottom:270.709333pt;}
.y7a{bottom:270.781467pt;}
.y53{bottom:271.615333pt;}
.y2e{bottom:274.368133pt;}
.y186{bottom:279.458533pt;}
.y80{bottom:280.843867pt;}
.yae{bottom:281.249733pt;}
.y1ab{bottom:282.182267pt;}
.y52{bottom:287.357867pt;}
.y2d{bottom:287.700133pt;}
.y10b{bottom:288.033067pt;}
.y7f{bottom:290.427200pt;}
.y185{bottom:295.093200pt;}
.y1aa{bottom:298.022267pt;}
.y15d{bottom:299.244400pt;}
.y2c{bottom:301.033467pt;}
.y51{bottom:302.992533pt;}
.y10a{bottom:303.671067pt;}
.yad{bottom:304.716400pt;}
.y184{bottom:310.727867pt;}
.y147{bottom:311.807333pt;}
.y15c{bottom:313.457733pt;}
.y1a9{bottom:313.846267pt;}
.y2b{bottom:314.366800pt;}
.y79{bottom:318.609467pt;}
.y109{bottom:319.309067pt;}
.y146{bottom:326.020667pt;}
.y183{bottom:326.362533pt;}
.y50{bottom:326.459200pt;}
.y15b{bottom:327.671067pt;}
.y2a{bottom:327.701467pt;}
.y1a8{bottom:329.686267pt;}
.y78{bottom:334.244133pt;}
.y145{bottom:340.234000pt;}
.y29{bottom:341.037467pt;}
.y15a{bottom:341.884400pt;}
.y182{bottom:342.023733pt;}
.y4f{bottom:342.093867pt;}
.y107{bottom:342.770267pt;}
.y102{bottom:342.770667pt;}
.yfd{bottom:342.811600pt;}
.yac{bottom:343.817733pt;}
.y1a7{bottom:345.526267pt;}
.y77{bottom:349.878800pt;}
.y28{bottom:354.369467pt;}
.y144{bottom:354.447333pt;}
.y159{bottom:356.097733pt;}
.y181{bottom:357.658400pt;}
.y4e{bottom:357.728533pt;}
.yab{bottom:359.452400pt;}
.y1a6{bottom:361.366267pt;}
.y104{bottom:362.520133pt;}
.y76{bottom:365.513467pt;}
.y27{bottom:367.701467pt;}
.y139{bottom:370.674933pt;}
.y180{bottom:373.293067pt;}
.y4d{bottom:373.363200pt;}
.yaa{bottom:375.087067pt;}
.y1a5{bottom:377.198267pt;}
.y158{bottom:377.417733pt;}
.y106{bottom:378.936800pt;}
.y26{bottom:381.039067pt;}
.y75{bottom:381.148133pt;}
.yff{bottom:383.395200pt;}
.y108{bottom:384.100933pt;}
.yfe{bottom:384.103467pt;}
.y138{bottom:386.309600pt;}
.y17f{bottom:388.927733pt;}
.y4c{bottom:388.997867pt;}
.y101{bottom:389.105533pt;}
.ya9{bottom:390.721733pt;}
.y1a4{bottom:393.038267pt;}
.y25{bottom:394.371067pt;}
.y157{bottom:396.838533pt;}
.ye3{bottom:401.012400pt;}
.y137{bottom:401.944267pt;}
.y74{bottom:404.614800pt;}
.y4b{bottom:404.632533pt;}
.y17e{bottom:404.690667pt;}
.y100{bottom:405.648800pt;}
.y1a3{bottom:408.874267pt;}
.y172{bottom:410.107067pt;}
.ya8{bottom:414.188400pt;}
.ye2{bottom:416.647067pt;}
.y136{bottom:417.578933pt;}
.y73{bottom:420.249467pt;}
.y4a{bottom:420.267200pt;}
.y17d{bottom:420.325333pt;}
.y24{bottom:421.911067pt;}
.y1a2{bottom:424.706267pt;}
.y171{bottom:425.741733pt;}
.ya7{bottom:429.823067pt;}
.ye1{bottom:432.281733pt;}
.y135{bottom:433.213600pt;}
.y23{bottom:435.251333pt;}
.y72{bottom:435.884133pt;}
.y49{bottom:435.901867pt;}
.y1a1{bottom:440.546267pt;}
.y170{bottom:441.376400pt;}
.ya6{bottom:445.457733pt;}
.ye0{bottom:447.916400pt;}
.y134{bottom:448.848267pt;}
.yfc{bottom:450.714267pt;}
.y71{bottom:451.518800pt;}
.y48{bottom:451.536533pt;}
.y17c{bottom:451.609333pt;}
.y22{bottom:455.687333pt;}
.y1a0{bottom:456.378267pt;}
.y16f{bottom:457.011067pt;}
.ydf{bottom:463.551067pt;}
.y133{bottom:464.482933pt;}
.yfb{bottom:466.348933pt;}
.y70{bottom:467.153467pt;}
.y47{bottom:467.171200pt;}
.ya5{bottom:468.922267pt;}
.y21{bottom:469.019333pt;}
.y19f{bottom:472.218267pt;}
.y16e{bottom:472.645733pt;}
.yde{bottom:479.185733pt;}
.y132{bottom:480.117600pt;}
.yfa{bottom:481.983600pt;}
.y20{bottom:482.351333pt;}
.y6f{bottom:482.788133pt;}
.y46{bottom:482.805867pt;}
.ya4{bottom:484.560267pt;}
.y19e{bottom:488.046267pt;}
.y16d{bottom:488.280400pt;}
.ydd{bottom:494.820400pt;}
.y1f{bottom:495.683333pt;}
.y131{bottom:495.752267pt;}
.yf9{bottom:497.618267pt;}
.y45{bottom:498.440533pt;}
.y19d{bottom:503.886267pt;}
.y16c{bottom:503.915067pt;}
.y17b{bottom:506.345333pt;}
.ya0{bottom:508.021333pt;}
.y9f{bottom:508.032133pt;}
.y1e{bottom:509.016667pt;}
.ydc{bottom:510.455067pt;}
.y130{bottom:511.386933pt;}
.yf8{bottom:513.252933pt;}
.y6e{bottom:514.072133pt;}
.y44{bottom:514.075200pt;}
.ya3{bottom:515.286267pt;}
.y19c{bottom:519.726267pt;}
.y17a{bottom:521.980000pt;}
.y1d{bottom:522.350000pt;}
.yf7{bottom:528.887600pt;}
.y43{bottom:529.709867pt;}
.ydb{bottom:533.921733pt;}
.y12f{bottom:534.853600pt;}
.y19b{bottom:535.558267pt;}
.y1c{bottom:535.684667pt;}
.y179{bottom:537.614667pt;}
.y42{bottom:545.344533pt;}
.y9e{bottom:546.649467pt;}
.y1b{bottom:549.016667pt;}
.y16b{bottom:550.833067pt;}
.y19a{bottom:551.398267pt;}
.yf6{bottom:552.354267pt;}
.y178{bottom:553.249333pt;}
.y41{bottom:560.979200pt;}
.y6d{bottom:560.990800pt;}
.y9d{bottom:562.284133pt;}
.y1a{bottom:562.350000pt;}
.y16a{bottom:565.041067pt;}
.y199{bottom:567.234267pt;}
.y177{bottom:568.884000pt;}
.yda{bottom:573.023067pt;}
.y12e{bottom:573.954933pt;}
.y19{bottom:575.684667pt;}
.y6c{bottom:576.625467pt;}
.y40{bottom:576.635067pt;}
.y169{bottom:579.254400pt;}
.y198{bottom:583.074267pt;}
.y156{bottom:584.518667pt;}
.y18{bottom:589.016667pt;}
.y12d{bottom:589.589600pt;}
.yf5{bottom:591.455600pt;}
.y6b{bottom:592.260133pt;}
.y168{bottom:593.463867pt;}
.y95{bottom:593.568000pt;}
.y9b{bottom:593.568133pt;}
.y93{bottom:593.570133pt;}
.yd9{bottom:596.225733pt;}
.y197{bottom:598.910267pt;}
.y3f{bottom:600.101733pt;}
.y155{bottom:600.153333pt;}
.y99{bottom:602.035600pt;}
.y12c{bottom:605.236533pt;}
.yf4{bottom:607.090267pt;}
.y6a{bottom:607.896000pt;}
.yd8{bottom:611.860400pt;}
.y94{bottom:612.077333pt;}
.y9c{bottom:612.238800pt;}
.y196{bottom:614.734267pt;}
.y167{bottom:614.783867pt;}
.y3e{bottom:615.736400pt;}
.y154{bottom:615.788000pt;}
.y98{bottom:617.077333pt;}
.y12b{bottom:620.871200pt;}
.yf3{bottom:622.724933pt;}
.y69{bottom:623.530667pt;}
.yd7{bottom:627.495067pt;}
.y195{bottom:630.574267pt;}
.y3d{bottom:631.371067pt;}
.y153{bottom:631.422667pt;}
.y166{bottom:634.204667pt;}
.y12a{bottom:636.505867pt;}
.y194{bottom:646.414267pt;}
.y3c{bottom:647.005733pt;}
.y68{bottom:647.024000pt;}
.y143{bottom:647.057333pt;}
.y92{bottom:647.528800pt;}
.yd1{bottom:650.957333pt;}
.yef{bottom:654.008000pt;}
.yf2{bottom:654.008933pt;}
.yec{bottom:654.009733pt;}
.yd0{bottom:658.952933pt;}
.yd6{bottom:658.956267pt;}
.yd5{bottom:659.518267pt;}
.yd4{bottom:661.226533pt;}
.y193{bottom:662.250267pt;}
.y67{bottom:662.658667pt;}
.y3b{bottom:662.660400pt;}
.y142{bottom:662.692000pt;}
.y91{bottom:663.163467pt;}
.yed{bottom:663.925600pt;}
.yee{bottom:664.675600pt;}
.y17{bottom:666.602000pt;}
.y129{bottom:667.789867pt;}
.ycb{bottom:677.698667pt;}
.ycf{bottom:677.698933pt;}
.y192{bottom:678.090267pt;}
.y66{bottom:678.293333pt;}
.y3a{bottom:678.295067pt;}
.y141{bottom:678.326667pt;}
.yce{bottom:686.747333pt;}
.y16{bottom:688.632533pt;}
.y1bd{bottom:693.628133pt;}
.y65{bottom:693.928000pt;}
.y39{bottom:693.929733pt;}
.y140{bottom:693.961333pt;}
.y8d{bottom:694.446667pt;}
.y90{bottom:694.447467pt;}
.y8b{bottom:694.461467pt;}
.yeb{bottom:703.245733pt;}
.y8c{bottom:707.843867pt;}
.yca{bottom:708.858800pt;}
.y1bc{bottom:709.468133pt;}
.y191{bottom:709.581333pt;}
.y38{bottom:709.584400pt;}
.y64{bottom:709.596000pt;}
.y11c{bottom:714.708533pt;}
.y121{bottom:714.709333pt;}
.y15{bottom:719.391867pt;}
.y37{bottom:725.219067pt;}
.y63{bottom:725.230667pt;}
.y1bb{bottom:725.300133pt;}
.yc9{bottom:725.658800pt;}
.y124{bottom:729.515733pt;}
.y127{bottom:732.432400pt;}
.ye6{bottom:734.529333pt;}
.yea{bottom:734.529733pt;}
.y14{bottom:738.591867pt;}
.y8a{bottom:740.852133pt;}
.y36{bottom:740.853733pt;}
.y62{bottom:740.865333pt;}
.y1ba{bottom:741.140133pt;}
.yc8{bottom:741.296800pt;}
.ye7{bottom:747.862800pt;}
.y126{bottom:748.849067pt;}
.y11e{bottom:753.307600pt;}
.y128{bottom:753.369867pt;}
.y11d{bottom:754.015733pt;}
.y35{bottom:756.485333pt;}
.y89{bottom:756.493333pt;}
.y61{bottom:756.500000pt;}
.yc7{bottom:756.934800pt;}
.y1b9{bottom:756.972133pt;}
.y120{bottom:759.017933pt;}
.y13{bottom:761.578133pt;}
.y60{bottom:772.134667pt;}
.yc6{bottom:772.572800pt;}
.y11f{bottom:772.640933pt;}
.y1b8{bottom:772.812133pt;}
.y123{bottom:775.557600pt;}
.y12{bottom:784.238133pt;}
.y34{bottom:787.769333pt;}
.yc5{bottom:788.210800pt;}
.y1b7{bottom:788.652133pt;}
.y5{bottom:818.104133pt;}
.y5f{bottom:828.342667pt;}
.y33{bottom:828.342800pt;}
.y4{bottom:834.688667pt;}
.y3{bottom:840.424667pt;}
.y5e{bottom:843.977333pt;}
.y32{bottom:843.977467pt;}
.y2{bottom:847.352933pt;}
.y7{bottom:851.458800pt;}
.y6{bottom:863.458800pt;}
.h16{height:16.723939pt;}
.h4{height:17.424000pt;}
.h22{height:23.874667pt;}
.h29{height:23.942667pt;}
.h20{height:24.353333pt;}
.h15{height:25.939453pt;}
.h23{height:26.050781pt;}
.h30{height:27.516602pt;}
.h21{height:27.719821pt;}
.h6{height:27.738667pt;}
.h7{height:27.744000pt;}
.h27{height:28.346667pt;}
.h12{height:29.253333pt;}
.h8{height:29.720000pt;}
.h2e{height:30.666667pt;}
.h5{height:31.402667pt;}
.h1a{height:32.126667pt;}
.hd{height:33.328125pt;}
.hc{height:33.351562pt;}
.h2b{height:34.666667pt;}
.h33{height:36.145833pt;}
.h2{height:37.057292pt;}
.h34{height:37.072758pt;}
.h35{height:37.078625pt;}
.h17{height:38.910156pt;}
.h1e{height:39.685333pt;}
.h36{height:39.760417pt;}
.h13{height:40.046875pt;}
.h1c{height:40.217150pt;}
.h1b{height:40.218750pt;}
.he{height:40.734375pt;}
.h18{height:40.736887pt;}
.hf{height:40.763021pt;}
.h10{height:40.775287pt;}
.h11{height:40.784888pt;}
.h24{height:42.056953pt;}
.h19{height:42.481771pt;}
.hb{height:44.437500pt;}
.ha{height:44.468750pt;}
.h3b{height:46.125750pt;}
.h37{height:46.796875pt;}
.h39{height:46.812875pt;}
.h3a{height:46.828875pt;}
.h38{height:46.844875pt;}
.h3c{height:46.860875pt;}
.h2d{height:51.402943pt;}
.h14{height:51.885417pt;}
.h26{height:53.709333pt;}
.h9{height:54.218750pt;}
.h28{height:57.558156pt;}
.h2a{height:70.380208pt;}
.h25{height:72.736354pt;}
.h32{height:82.770667pt;}
.h2f{height:83.413687pt;}
.h2c{height:85.145238pt;}
.h31{height:89.333333pt;}
.h3{height:93.200000pt;}
.h1d{height:94.091021pt;}
.h1f{height:98.557708pt;}
.h0{height:907.086667pt;}
.h1{height:907.333333pt;}
.wa{width:64.000000pt;}
.w8{width:79.998667pt;}
.w5{width:80.000000pt;}
.w2{width:86.666667pt;}
.wc{width:96.000000pt;}
.w9{width:101.017333pt;}
.w3{width:103.853333pt;}
.wb{width:106.666667pt;}
.w6{width:108.000000pt;}
.w7{width:121.333333pt;}
.wd{width:175.998667pt;}
.w4{width:241.333333pt;}
.w0{width:642.520000pt;}
.w1{width:642.666667pt;}
.x0{left:0.000000pt;}
.xe{left:2.666667pt;}
.xf{left:9.624933pt;}
.x3b{left:19.308933pt;}
.x16{left:26.052800pt;}
.x41{left:28.869467pt;}
.x40{left:39.708133pt;}
.x44{left:44.791467pt;}
.x45{left:46.168967pt;}
.x28{left:49.874800pt;}
.x29{left:52.040800pt;}
.x31{left:53.958133pt;}
.x15{left:55.811467pt;}
.x27{left:58.119200pt;}
.x2f{left:59.749733pt;}
.x58{left:61.333333pt;}
.x57{left:65.500000pt;}
.x38{left:66.625067pt;}
.x23{left:69.374800pt;}
.x10{left:70.333333pt;}
.x1a{left:79.499733pt;}
.x2b{left:88.583067pt;}
.x9{left:98.267733pt;}
.x1{left:100.868000pt;}
.x8{left:102.712933pt;}
.xa{left:120.942400pt;}
.x4{left:123.538667pt;}
.x5d{left:130.398267pt;}
.x5e{left:132.996533pt;}
.x52{left:139.041333pt;}
.x3a{left:142.465333pt;}
.x37{left:151.868000pt;}
.x5{left:154.340267pt;}
.x6{left:159.340267pt;}
.x7{left:167.259733pt;}
.x39{left:180.911067pt;}
.x19{left:199.270667pt;}
.x18{left:201.645467pt;}
.x20{left:209.374533pt;}
.x1d{left:215.791200pt;}
.x3c{left:220.530933pt;}
.x51{left:231.937333pt;}
.x4d{left:234.895200pt;}
.x3d{left:243.482533pt;}
.x4e{left:257.936933pt;}
.x2e{left:259.270667pt;}
.xb{left:260.367067pt;}
.x2d{left:262.228667pt;}
.x25{left:265.937333pt;}
.x14{left:268.010667pt;}
.x48{left:271.937333pt;}
.xc{left:273.948400pt;}
.xd{left:279.204000pt;}
.x13{left:281.322000pt;}
.x46{left:285.853733pt;}
.x3f{left:287.937333pt;}
.x3e{left:290.020400pt;}
.x26{left:295.016667pt;}
.x1b{left:308.770400pt;}
.x30{left:311.062133pt;}
.x5c{left:312.998133pt;}
.x5b{left:315.660933pt;}
.x55{left:317.037333pt;}
.x43{left:318.270400pt;}
.x33{left:320.103733pt;}
.x47{left:321.142733pt;}
.x34{left:328.895467pt;}
.x4a{left:330.062133pt;}
.x2a{left:334.645467pt;}
.x32{left:338.395467pt;}
.x35{left:339.478800pt;}
.x49{left:342.145467pt;}
.x12{left:346.745733pt;}
.x24{left:349.187067pt;}
.x56{left:350.162400pt;}
.x42{left:351.937067pt;}
.x11{left:355.412400pt;}
.x4f{left:358.145333pt;}
.x36{left:359.353733pt;}
.x4b{left:367.937067pt;}
.x17{left:371.863733pt;}
.x2c{left:373.937067pt;}
.x53{left:374.895333pt;}
.x59{left:376.537333pt;}
.x50{left:386.980000pt;}
.x3{left:392.040667pt;}
.x1c{left:395.937067pt;}
.x54{left:407.936933pt;}
.x1f{left:417.895200pt;}
.x1e{left:425.853733pt;}
.x21{left:440.603733pt;}
.x2{left:463.360800pt;}
.x4c{left:517.199733pt;}
.x5a{left:519.801333pt;}
.x22{left:524.526400pt;}
}




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