
    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_baaf6d45550e11a530b58ade.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_265d272dcfa7c55e25286521.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.728000;font-style:normal;font-weight: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_14f6a11b247d7be0eb510e58.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_2f37f45d4cd80f3c7dfbadff.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_5f066e419045e97fd9c01149.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_d4dc3bbc23c06e8e91431699.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.752000;font-style:normal;font-weight: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_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.906000;font-style:normal;font-weight: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_ff5fed542cbbc482f7ead71f.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.844000;font-style:normal;font-weight: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_aa5525c77d8f8c427cc53320.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.817000;font-style:normal;font-weight: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_262b8b135e466a115e2e1df7.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.890000;font-style:normal;font-weight: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_a92dd2a2a89ac1db6dfcd68e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.839000;font-style:normal;font-weight: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_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.897000;font-style:normal;font-weight: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_7523ca576ab11ba9dc4e465e.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_5823c3a96616fbe01ac3bea9.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.908203;font-style:normal;font-weight: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_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.fff{font-family:fff;line-height:0.906000;font-style:normal;font-weight: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_262b8b135e466a115e2e1df7.woff2')format("woff");}.ff10{font-family:ff10;line-height:0.890000;font-style:normal;font-weight: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_ff5fed542cbbc482f7ead71f.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.844000;font-style:normal;font-weight: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_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.897000;font-style:normal;font-weight: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_5a65bb42dc39a214ca2e69fe.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.649000;font-style:normal;font-weight: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_262b8b135e466a115e2e1df7.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.890000;font-style:normal;font-weight: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_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.906000;font-style:normal;font-weight: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_ff5fed542cbbc482f7ead71f.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.844000;font-style:normal;font-weight: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_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.897000;font-style:normal;font-weight: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_5a65bb42dc39a214ca2e69fe.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.649000;font-style:normal;font-weight: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_2052f14c28fa3c3db2a38474.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_e8bead4306dc790053967a73.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.839000;font-style:normal;font-weight: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_53778881328e28f33e075713.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1c;src:url('chunks/assets/font_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.897000;font-style:normal;font-weight: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_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:0.906000;font-style:normal;font-weight: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_2052f14c28fa3c3db2a38474.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_262b8b135e466a115e2e1df7.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:0.890000;font-style:normal;font-weight: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_7b7e0287b2a365878e73d6fc.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.844000;font-style:normal;font-weight: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_53778881328e28f33e075713.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_5a65bb42dc39a214ca2e69fe.woff2')format("woff");}.ff22{font-family:ff22;line-height:0.649000;font-style:normal;font-weight: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_8a5baf9cf13333dc5491faf6.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.890000;font-style:normal;font-weight: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_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff24{font-family:ff24;line-height:0.906000;font-style:normal;font-weight: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_2052f14c28fa3c3db2a38474.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.897000;font-style:normal;font-weight: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_5a65bb42dc39a214ca2e69fe.woff2')format("woff");}.ff27{font-family:ff27;line-height:0.649000;font-style:normal;font-weight: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_53778881328e28f33e075713.woff2')format("woff");}.ff28{font-family:ff28;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_7b7e0287b2a365878e73d6fc.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.844000;font-style:normal;font-weight: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_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:0.906000;font-style:normal;font-weight: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_2052f14c28fa3c3db2a38474.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.906000;font-style:normal;font-weight: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_2052f14c28fa3c3db2a38474.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_ff5fed542cbbc482f7ead71f.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:0.844000;font-style:normal;font-weight: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_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:0.897000;font-style:normal;font-weight: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_53778881328e28f33e075713.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.855000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_262b8b135e466a115e2e1df7.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.890000;font-style:normal;font-weight: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_5a65bb42dc39a214ca2e69fe.woff2')format("woff");}.ff32{font-family:ff32;line-height:0.649000;font-style:normal;font-weight: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_262b8b135e466a115e2e1df7.woff2')format("woff");}.ff33{font-family:ff33;line-height:0.890000;font-style:normal;font-weight: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_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff34{font-family:ff34;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_2052f14c28fa3c3db2a38474.woff2')format("woff");}.ff35{font-family:ff35;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:ff36;src:url('chunks/assets/font_03ca340598a95558f0828efc.woff2')format("woff");}.ff36{font-family:ff36;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_5a65bb42dc39a214ca2e69fe.woff2')format("woff");}.ff37{font-family:ff37;line-height:0.649000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_0d6731104eef3ab994ed2d2a.woff2')format("woff");}.ff39{font-family:ff39;line-height:0.897000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_85fd3f0c44b8c54e0b52ad93.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.906000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_ff5fed542cbbc482f7ead71f.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:0.844000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_d50c81c4ff8bd3fad7bbc89d.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:0.922000;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m0{transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-ms-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);-webkit-transform:matrix(0.250000,0.000000,0.000000,0.250000,0,0);}
.m1{transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-ms-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);-webkit-transform:matrix(1.500000,0.000000,0.000000,1.500000,0,0);}
.v3{vertical-align:-17.358000px;}
.v6{vertical-align:-8.992835px;}
.v1{vertical-align:-1.701000px;}
.v0{vertical-align:0.000000px;}
.v4{vertical-align:1.482420px;}
.v7{vertical-align:8.970000px;}
.va{vertical-align:16.064887px;}
.v5{vertical-align:18.258000px;}
.v8{vertical-align:21.698160px;}
.v9{vertical-align:24.677192px;}
.v2{vertical-align:28.212600px;}
.lsc{letter-spacing:0.000000px;}
.ls17{letter-spacing:0.000131px;}
.ls13{letter-spacing:0.000583px;}
.ls43{letter-spacing:0.002383px;}
.ls34{letter-spacing:0.002725px;}
.ls11{letter-spacing:0.006235px;}
.ls33{letter-spacing:0.006931px;}
.ls31{letter-spacing:0.015702px;}
.ls39{letter-spacing:0.017020px;}
.ls38{letter-spacing:0.017620px;}
.ls1d{letter-spacing:0.179327px;}
.ls0{letter-spacing:0.540000px;}
.ls8{letter-spacing:1.095078px;}
.ls7{letter-spacing:1.099860px;}
.ls6{letter-spacing:1.104642px;}
.ls1{letter-spacing:1.649790px;}
.ls2{letter-spacing:1.656963px;}
.ls4{letter-spacing:1.787238px;}
.ls3{letter-spacing:2.337168px;}
.ls27{letter-spacing:2.983702px;}
.ls29{letter-spacing:2.984302px;}
.ls5{letter-spacing:2.988000px;}
.ls14{letter-spacing:2.988281px;}
.ls20{letter-spacing:2.988600px;}
.ls1c{letter-spacing:2.988780px;}
.ls12{letter-spacing:2.989702px;}
.ls16{letter-spacing:2.994281px;}
.ls10{letter-spacing:9.982525px;}
.lsb{letter-spacing:11.955000px;}
.ls1f{letter-spacing:13.270183px;}
.ls9{letter-spacing:13.449000px;}
.ls21{letter-spacing:14.525471px;}
.lsd{letter-spacing:14.943900px;}
.ls45{letter-spacing:15.111310px;}
.ls1b{letter-spacing:16.258963px;}
.ls1a{letter-spacing:16.273702px;}
.ls19{letter-spacing:16.617617px;}
.ls28{letter-spacing:16.796944px;}
.ls3c{letter-spacing:16.916495px;}
.ls3f{letter-spacing:17.808000px;}
.ls40{letter-spacing:17.808600px;}
.ls42{letter-spacing:17.928600px;}
.ls41{letter-spacing:17.934600px;}
.ls15{letter-spacing:17.935702px;}
.ls25{letter-spacing:19.591702px;}
.ls18{letter-spacing:19.596281px;}
.ls1e{letter-spacing:19.606397px;}
.ls3e{letter-spacing:19.884600px;}
.ls3d{letter-spacing:19.890600px;}
.ls22{letter-spacing:20.923200px;}
.lsa{letter-spacing:20.924172px;}
.ls32{letter-spacing:21.648600px;}
.ls30{letter-spacing:22.236523px;}
.ls2e{letter-spacing:29.886600px;}
.ls2a{letter-spacing:29.892600px;}
.ls2f{letter-spacing:32.874600px;}
.ls23{letter-spacing:34.370970px;}
.ls2b{letter-spacing:121.944600px;}
.ls2c{letter-spacing:124.932600px;}
.ls36{letter-spacing:128.358600px;}
.ls3b{letter-spacing:128.359200px;}
.ls37{letter-spacing:128.364600px;}
.ls3a{letter-spacing:128.365200px;}
.ls2d{letter-spacing:213.996600px;}
.ls35{letter-spacing:267.462600px;}
.ls44{letter-spacing:370.674600px;}
.lsf{letter-spacing:442.698094px;}
.lse{letter-spacing:510.842278px;}
.ls24{letter-spacing:1841.034000px;}
.ls26{letter-spacing:2023.773614px;}
.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;}
}
.ws31{word-spacing:-510.902053px;}
.ws37{word-spacing:-442.757869px;}
.ws77{word-spacing:-16.677392px;}
.ws6f{word-spacing:-16.617617px;}
.ws2{word-spacing:-15.984000px;}
.ws1{word-spacing:-15.012000px;}
.ws3a{word-spacing:-14.943900px;}
.ws4{word-spacing:-13.500000px;}
.ws67{word-spacing:-13.329959px;}
.ws7b{word-spacing:-13.270183px;}
.wsa{word-spacing:-12.347892px;}
.ws20{word-spacing:-12.000000px;}
.ws1f{word-spacing:-0.540000px;}
.ws0{word-spacing:-0.099000px;}
.ws9{word-spacing:-0.077706px;}
.ws8{word-spacing:-0.071730px;}
.ws41{word-spacing:-0.059776px;}
.wsb{word-spacing:-0.054396px;}
.ws11{word-spacing:-0.053796px;}
.ws7{word-spacing:-0.047820px;}
.ws39{word-spacing:-0.041843px;}
.ws1e{word-spacing:0.000000px;}
.ws79{word-spacing:8.667462px;}
.ws98{word-spacing:9.229376px;}
.ws43{word-spacing:9.384769px;}
.ws65{word-spacing:9.390747px;}
.ws9b{word-spacing:9.755402px;}
.ws66{word-spacing:9.862974px;}
.ws97{word-spacing:9.898864px;}
.ws61{word-spacing:9.922750px;}
.ws96{word-spacing:10.137967px;}
.ws94{word-spacing:10.568353px;}
.ws90{word-spacing:11.429123px;}
.ws85{word-spacing:11.536691px;}
.ws63{word-spacing:11.775793px;}
.ws6{word-spacing:11.907180px;}
.ws2e{word-spacing:11.907329px;}
.ws18{word-spacing:11.955600px;}
.ws75{word-spacing:12.074671px;}
.wsf{word-spacing:12.265488px;}
.ws19{word-spacing:12.314268px;}
.ws3f{word-spacing:12.493100px;}
.ws86{word-spacing:12.552876px;}
.ws48{word-spacing:12.612652px;}
.ws8e{word-spacing:12.720280px;}
.ws8f{word-spacing:12.815921px;}
.ws8d{word-spacing:12.959383px;}
.ws4e{word-spacing:13.204430px;}
.ws4b{word-spacing:13.210408px;}
.ws1b{word-spacing:13.210938px;}
.ws24{word-spacing:13.270183px;}
.ws89{word-spacing:13.329959px;}
.ws8c{word-spacing:13.341947px;}
.ws10{word-spacing:13.395204px;}
.ws60{word-spacing:13.449510px;}
.ws74{word-spacing:13.688612px;}
.ws5c{word-spacing:13.748388px;}
.ws9a{word-spacing:13.772333px;}
.ws42{word-spacing:13.927715px;}
.ws17{word-spacing:13.928274px;}
.ws5{word-spacing:14.156916px;}
.ws95{word-spacing:14.250539px;}
.ws3b{word-spacing:14.286368px;}
.wsd{word-spacing:14.363532px;}
.ws4d{word-spacing:14.465695px;}
.ws35{word-spacing:14.645022px;}
.ws7f{word-spacing:14.764573px;}
.ws4c{word-spacing:14.824349px;}
.ws22{word-spacing:14.884124px;}
.ws15{word-spacing:14.884722px;}
.wse{word-spacing:14.901492px;}
.wsc{word-spacing:14.955288px;}
.ws23{word-spacing:15.003676px;}
.ws91{word-spacing:15.015668px;}
.ws73{word-spacing:15.063451px;}
.ws5d{word-spacing:15.183002px;}
.ws1a{word-spacing:15.183612px;}
.ws8a{word-spacing:15.350413px;}
.ws52{word-spacing:15.362329px;}
.ws87{word-spacing:15.422105px;}
.ws2b{word-spacing:15.780758px;}
.ws40{word-spacing:15.900310px;}
.ws81{word-spacing:15.960085px;}
.ws5e{word-spacing:16.019861px;}
.ws16{word-spacing:16.020504px;}
.ws69{word-spacing:16.079636px;}
.ws80{word-spacing:16.258963px;}
.ws3c{word-spacing:16.378514px;}
.ws27{word-spacing:16.498066px;}
.ws53{word-spacing:16.557841px;}
.ws6a{word-spacing:16.617617px;}
.ws29{word-spacing:16.796944px;}
.ws7e{word-spacing:16.856719px;}
.ws28{word-spacing:16.916495px;}
.ws2d{word-spacing:17.095822px;}
.ws92{word-spacing:17.263237px;}
.ws71{word-spacing:17.334924px;}
.ws84{word-spacing:17.514251px;}
.ws44{word-spacing:17.633802px;}
.ws76{word-spacing:17.872904px;}
.ws21{word-spacing:17.992456px;}
.ws72{word-spacing:18.052231px;}
.ws8b{word-spacing:18.076187px;}
.ws3d{word-spacing:18.112007px;}
.ws3e{word-spacing:18.171782px;}
.ws6b{word-spacing:18.231558px;}
.ws70{word-spacing:18.351109px;}
.ws88{word-spacing:18.530436px;}
.ws7c{word-spacing:18.590212px;}
.ws64{word-spacing:19.128192px;}
.ws49{word-spacing:19.187968px;}
.ws5b{word-spacing:19.367294px;}
.ws4a{word-spacing:19.427070px;}
.ws6e{word-spacing:19.785724px;}
.ws93{word-spacing:19.989011px;}
.ws7d{word-spacing:20.084602px;}
.ws51{word-spacing:20.443255px;}
.ws2a{word-spacing:20.562806px;}
.ws25{word-spacing:20.801909px;}
.ws5f{word-spacing:21.041011px;}
.ws1c{word-spacing:21.901560px;}
.ws14{word-spacing:21.938526px;}
.ws26{word-spacing:22.296299px;}
.ws50{word-spacing:23.432035px;}
.ws1d{word-spacing:25.360692px;}
.ws12{word-spacing:25.361328px;}
.ws2c{word-spacing:29.828024px;}
.ws13{word-spacing:29.829222px;}
.ws6d{word-spacing:29.845357px;}
.ws68{word-spacing:29.851357px;}
.ws47{word-spacing:31.322414px;}
.ws99{word-spacing:33.283138px;}
.ws78{word-spacing:38.815357px;}
.ws46{word-spacing:62.704604px;}
.ws62{word-spacing:64.916302px;}
.ws6c{word-spacing:121.903357px;}
.ws7a{word-spacing:124.891357px;}
.ws34{word-spacing:158.937605px;}
.ws82{word-spacing:204.974375px;}
.ws83{word-spacing:204.980375px;}
.ws59{word-spacing:241.254322px;}
.ws55{word-spacing:247.949189px;}
.ws56{word-spacing:251.177071px;}
.ws36{word-spacing:326.374776px;}
.ws5a{word-spacing:347.654890px;}
.ws2f{word-spacing:394.518960px;}
.ws38{word-spacing:412.750518px;}
.ws57{word-spacing:418.847629px;}
.ws32{word-spacing:480.894702px;}
.ws30{word-spacing:487.410242px;}
.ws58{word-spacing:492.132515px;}
.ws33{word-spacing:510.782502px;}
.ws4f{word-spacing:519.330413px;}
.ws3{word-spacing:1361.384400px;}
.ws45{word-spacing:1392.771480px;}
.ws54{word-spacing:1944.799146px;}
._b{margin-left:-510.122234px;}
._10{margin-left:-441.978050px;}
._22{margin-left:-13.554546px;}
._3{margin-left:-7.462200px;}
._2{margin-left:-6.211200px;}
._5{margin-left:-4.572660px;}
._1{margin-left:-3.510600px;}
._0{margin-left:-1.791900px;}
._4{width:1.251900px;}
._15{width:2.988780px;}
._16{width:4.292716px;}
._9{width:5.795497px;}
._24{width:8.046388px;}
._18{width:9.862974px;}
._2a{width:10.979529px;}
._21{width:13.475738px;}
._6{width:15.002838px;}
._14{width:17.215373px;}
._23{width:18.291334px;}
._1b{width:19.486846px;}
._1f{width:20.903932px;}
._20{width:24.029791px;}
._8{width:29.887800px;}
._19{width:31.382190px;}
._1a{width:34.808117px;}
._25{width:125.646943px;}
._27{width:267.675137px;}
._29{width:284.292754px;}
._1e{width:347.714665px;}
._1d{width:377.602465px;}
._13{width:405.802200px;}
._e{width:412.600906px;}
._f{width:419.325834px;}
._11{width:434.479122px;}
._26{width:439.888640px;}
._28{width:456.506257px;}
._c{width:487.470018px;}
._a{width:510.842278px;}
._d{width:517.357818px;}
._1c{width:533.557006px;}
._7{width:712.045800px;}
._12{width:808.045200px;}
._17{width:2127.951584px;}
.fc3{color:transparent;}
.fc2{color:rgb(0,158,227);}
.fc1{color:rgb(0,150,189);}
.fc0{color:rgb(0,0,0);}
.fsf{font-size:35.865600px;}
.fs9{font-size:35.868000px;}
.fse{font-size:41.842800px;}
.fs4{font-size:47.820000px;}
.fsd{font-size:47.820600px;}
.fs2{font-size:48.000000px;}
.fs3{font-size:51.108000px;}
.fsa{font-size:53.796000px;}
.fs1{font-size:54.000000px;}
.fs8{font-size:54.396000px;}
.fsc{font-size:59.775600px;}
.fsb{font-size:59.778000px;}
.fs5{font-size:71.730000px;}
.fs7{font-size:77.706000px;}
.fs0{font-size:99.000000px;}
.fs6{font-size:101.616000px;}
.y55{bottom:-521.812620px;}
.y54{bottom:-506.868870px;}
.y53{bottom:-491.925120px;}
.y52{bottom:-428.707080px;}
.y51{bottom:-409.949850px;}
.y50{bottom:-364.868640px;}
.y4f{bottom:-346.935240px;}
.y4e{bottom:-329.001840px;}
.y4d{bottom:-311.068440px;}
.y4c{bottom:-293.135040px;}
.y4b{bottom:-275.201640px;}
.y4a{bottom:-257.268240px;}
.y49{bottom:-239.334840px;}
.y48{bottom:-221.401440px;}
.y47{bottom:-203.468040px;}
.y46{bottom:-167.302350px;}
.y45{bottom:-83.024706px;}
.y30{bottom:-71.105850px;}
.y2f{bottom:-56.162100px;}
.y44{bottom:-55.951869px;}
.y2e{bottom:-41.218350px;}
.y43{bottom:-39.813069px;}
.y8{bottom:-31.889700px;}
.y42{bottom:-23.674269px;}
.y41{bottom:-23.257350px;}
.y0{bottom:0.000000px;}
.ya0{bottom:4.833300px;}
.y9e{bottom:36.448800px;}
.y93{bottom:44.733900px;}
.y92{bottom:62.666580px;}
.y7{bottom:67.431450px;}
.y14b{bottom:79.926762px;}
.y10c{bottom:79.926900px;}
.y91{bottom:80.599260px;}
.y6{bottom:80.931450px;}
.ybd{bottom:84.265800px;}
.y9c{bottom:84.712800px;}
.y12c{bottom:86.505160px;}
.y9f{bottom:93.163800px;}
.y5{bottom:94.431450px;}
.y14a{bottom:97.859442px;}
.y10b{bottom:97.859580px;}
.y90{bottom:98.531940px;}
.ye4{bottom:98.838186px;}
.y12b{bottom:104.434800px;}
.y9d{bottom:107.257800px;}
.y4{bottom:107.931450px;}
.y149{bottom:115.792122px;}
.y10a{bottom:115.792260px;}
.y8f{bottom:116.464620px;}
.y12a{bottom:122.367300px;}
.ye3{bottom:132.611400px;}
.y148{bottom:133.724802px;}
.y109{bottom:133.724940px;}
.y8e{bottom:134.397300px;}
.ybc{bottom:138.234172px;}
.y9b{bottom:139.623300px;}
.y95{bottom:140.688300px;}
.y129{bottom:141.793620px;}
.ye2{bottom:150.544080px;}
.y147{bottom:151.657482px;}
.y108{bottom:151.657620px;}
.y99{bottom:156.000300px;}
.y128{bottom:159.726300px;}
.y9a{bottom:163.552800px;}
.y97{bottom:164.469300px;}
.ybb{bottom:164.819370px;}
.ye1{bottom:168.476760px;}
.y8d{bottom:169.335300px;}
.y146{bottom:169.590162px;}
.y107{bottom:169.590300px;}
.yc{bottom:170.424000px;}
.y94{bottom:173.892300px;}
.y127{bottom:177.660300px;}
.yba{bottom:182.752050px;}
.ye0{bottom:186.409440px;}
.y145{bottom:187.522842px;}
.y2d{bottom:192.426420px;}
.y106{bottom:195.330300px;}
.y126{bottom:195.592800px;}
.yb9{bottom:200.684730px;}
.y98{bottom:201.126300px;}
.y8c{bottom:203.139300px;}
.ydf{bottom:204.342120px;}
.y144{bottom:205.455522px;}
.y96{bottom:208.734300px;}
.y2c{bottom:211.183650px;}
.y105{bottom:213.264300px;}
.y125{bottom:213.525300px;}
.yb8{bottom:218.617410px;}
.yde{bottom:222.266412px;}
.y143{bottom:223.388202px;}
.y124{bottom:231.457800px;}
.y104{bottom:232.690800px;}
.yb7{bottom:236.550090px;}
.ydd{bottom:240.199092px;}
.y142{bottom:241.320882px;}
.y8b{bottom:241.635120px;}
.y123{bottom:249.390300px;}
.y103{bottom:252.117300px;}
.yb6{bottom:254.482770px;}
.y2b{bottom:256.264860px;}
.y141{bottom:259.253562px;}
.y8a{bottom:259.567800px;}
.y122{bottom:267.322800px;}
.y102{bottom:270.051300px;}
.yb5{bottom:272.414910px;}
.y2a{bottom:274.198260px;}
.ydc{bottom:276.064452px;}
.y121{bottom:285.259660px;}
.y101{bottom:287.983800px;}
.yb4{bottom:290.347590px;}
.y29{bottom:292.131660px;}
.y140{bottom:295.417800px;}
.y120{bottom:303.189300px;}
.y100{bottom:305.916300px;}
.y28{bottom:310.065060px;}
.ydb{bottom:313.723080px;}
.y75{bottom:319.687680px;}
.y11f{bottom:321.121800px;}
.yff{bottom:323.848800px;}
.yb3{bottom:326.212950px;}
.y27{bottom:327.998460px;}
.yda{bottom:331.655760px;}
.y74{bottom:337.620360px;}
.y11e{bottom:339.054300px;}
.y34{bottom:340.159020px;}
.yfe{bottom:341.781300px;}
.y89{bottom:344.766300px;}
.y26{bottom:345.931860px;}
.y16e{bottom:348.918862px;}
.y13f{bottom:349.180800px;}
.yd9{bottom:349.588440px;}
.y33{bottom:354.337650px;}
.y73{bottom:355.553040px;}
.y11d{bottom:356.986800px;}
.yfd{bottom:359.713800px;}
.yb2{bottom:362.161950px;}
.y16d{bottom:363.862800px;}
.y25{bottom:363.865260px;}
.yd8{bottom:367.521120px;}
.y72{bottom:373.485720px;}
.y80{bottom:374.151300px;}
.y7e{bottom:374.247300px;}
.y11c{bottom:374.923660px;}
.yfc{bottom:377.647800px;}
.y16c{bottom:378.806737px;}
.y82{bottom:380.736300px;}
.y13e{bottom:381.576300px;}
.y24{bottom:381.798660px;}
.yd7{bottom:385.453800px;}
.y84{bottom:387.294300px;}
.y139{bottom:390.270600px;}
.y71{bottom:391.418400px;}
.y11b{bottom:392.853300px;}
.y16b{bottom:393.750675px;}
.y1f{bottom:394.749840px;}
.yfb{bottom:395.580300px;}
.y7c{bottom:396.490800px;}
.y23{bottom:399.732060px;}
.y16a{bottom:408.694612px;}
.y70{bottom:409.351080px;}
.y86{bottom:410.157300px;}
.y11a{bottom:410.785800px;}
.y1e{bottom:410.888640px;}
.y7f{bottom:417.261300px;}
.y22{bottom:417.665460px;}
.yb1{bottom:419.404710px;}
.y81{bottom:419.413800px;}
.yfa{bottom:420.237120px;}
.y83{bottom:420.921300px;}
.y169{bottom:423.638550px;}
.y85{bottom:425.317800px;}
.y1d{bottom:427.027440px;}
.y6f{bottom:427.283760px;}
.y1c{bottom:427.444359px;}
.y119{bottom:428.718300px;}
.y32{bottom:435.291150px;}
.y7d{bottom:436.228800px;}
.yb0{bottom:437.337390px;}
.yf9{bottom:438.169800px;}
.y168{bottom:438.582487px;}
.y87{bottom:440.731800px;}
.yd6{bottom:443.091120px;}
.y6e{bottom:445.216440px;}
.y13d{bottom:445.550100px;}
.y118{bottom:446.650800px;}
.y167{bottom:453.526425px;}
.y21{bottom:453.831150px;}
.yaf{bottom:455.270070px;}
.yf8{bottom:458.793300px;}
.y88{bottom:460.119300px;}
.yd5{bottom:461.023800px;}
.y1b{bottom:461.107206px;}
.y6d{bottom:463.149120px;}
.y117{bottom:464.583300px;}
.y166{bottom:468.470362px;}
.yae{bottom:473.202750px;}
.y1a{bottom:477.246006px;}
.yf7{bottom:479.363400px;}
.y6c{bottom:481.081800px;}
.y116{bottom:482.515800px;}
.y165{bottom:483.414300px;}
.y77{bottom:487.117800px;}
.y7b{bottom:489.483300px;}
.yad{bottom:491.135430px;}
.y19{bottom:493.384806px;}
.yd4{bottom:495.963120px;}
.yf6{bottom:497.296080px;}
.y164{bottom:498.358237px;}
.y115{bottom:507.173940px;}
.yac{bottom:509.068110px;}
.y18{bottom:509.523606px;}
.y79{bottom:511.995300px;}
.y76{bottom:513.045300px;}
.y163{bottom:513.302175px;}
.yd3{bottom:513.895800px;}
.yf5{bottom:515.228760px;}
.y6b{bottom:516.021300px;}
.y114{bottom:525.106620px;}
.y17{bottom:525.662406px;}
.y162{bottom:528.246112px;}
.y13c{bottom:530.589450px;}
.yf4{bottom:533.161440px;}
.y7a{bottom:533.367300px;}
.y20{bottom:538.113150px;}
.y113{bottom:543.039300px;}
.y161{bottom:543.190050px;}
.ycf{bottom:548.834826px;}
.y6a{bottom:549.823650px;}
.y16{bottom:551.968650px;}
.yab{bottom:551.986990px;}
.y78{bottom:555.418800px;}
.yd2{bottom:557.801166px;}
.y160{bottom:558.133987px;}
.y112{bottom:563.662800px;}
.yb{bottom:563.947800px;}
.yce{bottom:566.767506px;}
.yf3{bottom:569.026800px;}
.y15f{bottom:573.077925px;}
.y13b{bottom:573.108300px;}
.ycb{bottom:575.479800px;}
.yd1{bottom:575.733846px;}
.yaa{bottom:578.572189px;}
.ya{bottom:578.947800px;}
.ycd{bottom:584.700186px;}
.y15e{bottom:588.021862px;}
.y69{bottom:588.320622px;}
.yd0{bottom:593.666526px;}
.y9{bottom:593.947800px;}
.y111{bottom:602.008260px;}
.ycc{bottom:602.632866px;}
.y15d{bottom:602.965800px;}
.y13a{bottom:604.221150px;}
.y68{bottom:606.253302px;}
.y31{bottom:609.733500px;}
.ya9{bottom:614.437549px;}
.y15{bottom:617.499300px;}
.y15c{bottom:617.909737px;}
.y110{bottom:619.940940px;}
.y40{bottom:620.131206px;}
.y14{bottom:632.653800px;}
.y15b{bottom:632.853675px;}
.y3f{bottom:636.270006px;}
.yca{bottom:636.435300px;}
.yf2{bottom:637.836300px;}
.y10f{bottom:637.873620px;}
.y67{bottom:642.118662px;}
.y138{bottom:644.188620px;}
.ya8{bottom:646.522102px;}
.y15a{bottom:647.797612px;}
.y13{bottom:650.946150px;}
.y3e{bottom:652.408806px;}
.yf1{bottom:655.768800px;}
.y10e{bottom:655.806300px;}
.y137{bottom:662.122620px;}
.y159{bottom:662.741550px;}
.y3d{bottom:668.547606px;}
.ya7{bottom:673.106602px;}
.yf0{bottom:675.196800px;}
.y158{bottom:677.685487px;}
.y66{bottom:677.984022px;}
.y136{bottom:680.055120px;}
.y3c{bottom:684.686406px;}
.y12{bottom:688.551150px;}
.yc9{bottom:691.448586px;}
.y157{bottom:692.629425px;}
.yef{bottom:693.129300px;}
.y65{bottom:695.916702px;}
.y135{bottom:697.987800px;}
.ya6{bottom:699.697509px;}
.y156{bottom:707.573362px;}
.y3b{bottom:710.992650px;}
.yee{bottom:711.061800px;}
.y64{bottom:713.849382px;}
.ya5{bottom:717.630189px;}
.yc8{bottom:721.205578px;}
.y155{bottom:722.517300px;}
.yc7{bottom:725.218086px;}
.y11{bottom:725.466450px;}
.yed{bottom:728.994300px;}
.ya4{bottom:735.562869px;}
.y154{bottom:737.461237px;}
.y10{bottom:742.681650px;}
.yec{bottom:746.926800px;}
.y10d{bottom:747.876300px;}
.y63{bottom:750.013620px;}
.y153{bottom:752.405175px;}
.ya3{bottom:753.495549px;}
.y134{bottom:756.895620px;}
.yc6{bottom:758.994502px;}
.yeb{bottom:764.860800px;}
.y152{bottom:767.349112px;}
.ya2{bottom:771.428229px;}
.y133{bottom:774.829620px;}
.y3a{bottom:776.523450px;}
.y151{bottom:782.293050px;}
.yea{bottom:782.793300px;}
.yf{bottom:790.868520px;}
.y39{bottom:791.677800px;}
.y132{bottom:792.762120px;}
.yc5{bottom:792.767716px;}
.y62{bottom:794.845320px;}
.y150{bottom:797.236987px;}
.ye9{bottom:800.725620px;}
.ye{bottom:805.047150px;}
.ya1{bottom:807.592467px;}
.y38{bottom:809.970300px;}
.y131{bottom:810.694620px;}
.yc4{bottom:810.700396px;}
.y14f{bottom:812.180925px;}
.y61{bottom:812.778000px;}
.ye8{bottom:818.658300px;}
.y14e{bottom:827.124862px;}
.y130{bottom:828.627300px;}
.yc3{bottom:828.633076px;}
.y60{bottom:830.710680px;}
.y14d{bottom:842.068800px;}
.ye7{bottom:843.316620px;}
.yc2{bottom:846.565756px;}
.y37{bottom:847.575300px;}
.y5f{bottom:848.643360px;}
.ye6{bottom:861.249300px;}
.y12f{bottom:863.566800px;}
.y5e{bottom:866.576040px;}
.y14c{bottom:875.243502px;}
.ye5{bottom:881.871300px;}
.yc1{bottom:882.431116px;}
.y36{bottom:884.490450px;}
.y5d{bottom:884.508720px;}
.yd{bottom:886.000650px;}
.y12e{bottom:897.369300px;}
.y35{bottom:901.705650px;}
.y5c{bottom:902.441400px;}
.yc0{bottom:920.075202px;}
.y5b{bottom:920.374080px;}
.ybf{bottom:938.007882px;}
.y5a{bottom:938.306760px;}
.y12d{bottom:938.307120px;}
.ybe{bottom:955.940562px;}
.y59{bottom:956.239440px;}
.y3{bottom:961.130850px;}
.y58{bottom:974.172120px;}
.y1{bottom:988.999500px;}
.y57{bottom:992.104800px;}
.y2{bottom:1033.378950px;}
.y56{bottom:1035.561750px;}
.he{height:24.497844px;}
.h25{height:24.675533px;}
.h15{height:24.713052px;}
.h1e{height:28.787846px;}
.h2e{height:28.913375px;}
.h9{height:32.900160px;}
.h1d{height:32.900573px;}
.h17{height:32.947980px;}
.h37{height:33.187496px;}
.h4{height:33.328125px;}
.h16{height:34.382580px;}
.h5{height:36.000000px;}
.h12{height:36.742668px;}
.h10{height:37.011648px;}
.h11{height:37.065444px;}
.hf{height:37.173036px;}
.h8{height:37.257732px;}
.h6{height:37.494141px;}
.h3{height:38.664000px;}
.h1c{height:40.826735px;}
.h1a{height:41.125613px;}
.h36{height:41.126333px;}
.h32{height:41.127053px;}
.h14{height:41.127264px;}
.h22{height:41.128405px;}
.h29{height:41.140469px;}
.h2a{height:41.159165px;}
.h23{height:41.185388px;}
.h2b{height:41.197844px;}
.h31{height:41.287499px;}
.h1b{height:41.304940px;}
.h13{height:41.306598px;}
.h2f{height:41.466826px;}
.h30{height:41.472826px;}
.h21{height:41.484266px;}
.h2c{height:41.484986px;}
.h1f{height:47.045846px;}
.hb{height:49.350240px;}
.ha{height:50.211000px;}
.h33{height:50.483846px;}
.h34{height:50.484566px;}
.h24{height:50.486006px;}
.h35{height:50.490566px;}
.h26{height:53.465039px;}
.h27{height:53.492702px;}
.h28{height:57.190500px;}
.h19{height:66.289200px;}
.hd{height:66.289800px;}
.hc{height:71.131200px;}
.h2{height:74.646000px;}
.h18{height:312.589500px;}
.h7{height:384.378000px;}
.h2d{height:1012.701000px;}
.h20{height:1014.402000px;}
.h1{height:1113.750000px;}
.h0{height:1114.015500px;}
.w2{width:813.378000px;}
.w3{width:814.878000px;}
.w0{width:816.378000px;}
.w1{width:816.750000px;}
.x0{left:0.000000px;}
.x6{left:3.000000px;}
.x52{left:53.768730px;}
.x5{left:56.125950px;}
.x49{left:57.148500px;}
.x4{left:58.251900px;}
.x1a{left:60.209876px;}
.x1b{left:61.884000px;}
.xa{left:63.282000px;}
.x45{left:65.742000px;}
.x11{left:66.754500px;}
.x48{left:69.192000px;}
.x18{left:73.208400px;}
.x44{left:74.707680px;}
.x10{left:76.208400px;}
.x19{left:78.157500px;}
.x51{left:81.146024px;}
.x46{left:82.195894px;}
.x1c{left:85.121537px;}
.x3b{left:94.140563px;}
.x3e{left:96.089138px;}
.x12{left:110.064765px;}
.x30{left:119.193629px;}
.x3c{left:121.058013px;}
.xf{left:151.996500px;}
.x17{left:154.996500px;}
.xe{left:161.548500px;}
.x16{left:164.548500px;}
.x4c{left:172.429500px;}
.xc{left:174.174000px;}
.x14{left:177.174000px;}
.xd{left:186.900000px;}
.x15{left:189.900000px;}
.x4f{left:192.574500px;}
.x4b{left:200.794500px;}
.x3f{left:233.325872px;}
.x2{left:236.123100px;}
.x3{left:248.268900px;}
.x7{left:262.899000px;}
.x8{left:268.602000px;}
.x4d{left:274.483500px;}
.x1{left:284.738700px;}
.x40{left:287.163122px;}
.x47{left:303.943500px;}
.x3d{left:311.001000px;}
.x50{left:333.831000px;}
.xb{left:375.074377px;}
.x13{left:378.074377px;}
.x41{left:425.513748px;}
.x3a{left:448.941000px;}
.x2f{left:471.171000px;}
.x4e{left:478.590000px;}
.x37{left:493.755000px;}
.x35{left:497.409000px;}
.x21{left:500.391000px;}
.x23{left:506.578500px;}
.x36{left:528.619500px;}
.x24{left:533.161500px;}
.x38{left:535.815000px;}
.x22{left:538.270500px;}
.x25{left:546.823500px;}
.x34{left:549.355500px;}
.x26{left:557.541000px;}
.x42{left:563.864374px;}
.x28{left:573.823500px;}
.x33{left:581.794500px;}
.x9{left:585.038895px;}
.x20{left:586.243500px;}
.x29{left:587.653500px;}
.x2b{left:594.700500px;}
.x27{left:595.818000px;}
.x32{left:603.108000px;}
.x1e{left:604.167000px;}
.x2d{left:605.736000px;}
.x4a{left:611.133000px;}
.x2e{left:615.600000px;}
.x1f{left:618.481500px;}
.x39{left:624.402000px;}
.x2a{left:630.055500px;}
.x2c{left:653.259000px;}
.x31{left:658.261500px;}
.x1d{left:660.663000px;}
.x43{left:691.888765px;}
@media print{
.v3{vertical-align:-15.429333pt;}
.v6{vertical-align:-7.993631pt;}
.v1{vertical-align:-1.512000pt;}
.v0{vertical-align:0.000000pt;}
.v4{vertical-align:1.317707pt;}
.v7{vertical-align:7.973333pt;}
.va{vertical-align:14.279900pt;}
.v5{vertical-align:16.229333pt;}
.v8{vertical-align:19.287253pt;}
.v9{vertical-align:21.935282pt;}
.v2{vertical-align:25.077867pt;}
.lsc{letter-spacing:0.000000pt;}
.ls17{letter-spacing:0.000116pt;}
.ls13{letter-spacing:0.000518pt;}
.ls43{letter-spacing:0.002118pt;}
.ls34{letter-spacing:0.002422pt;}
.ls11{letter-spacing:0.005542pt;}
.ls33{letter-spacing:0.006161pt;}
.ls31{letter-spacing:0.013957pt;}
.ls39{letter-spacing:0.015129pt;}
.ls38{letter-spacing:0.015662pt;}
.ls1d{letter-spacing:0.159402pt;}
.ls0{letter-spacing:0.480000pt;}
.ls8{letter-spacing:0.973403pt;}
.ls7{letter-spacing:0.977653pt;}
.ls6{letter-spacing:0.981904pt;}
.ls1{letter-spacing:1.466480pt;}
.ls2{letter-spacing:1.472856pt;}
.ls4{letter-spacing:1.588656pt;}
.ls3{letter-spacing:2.077483pt;}
.ls27{letter-spacing:2.652179pt;}
.ls29{letter-spacing:2.652713pt;}
.ls5{letter-spacing:2.656000pt;}
.ls14{letter-spacing:2.656250pt;}
.ls20{letter-spacing:2.656533pt;}
.ls1c{letter-spacing:2.656693pt;}
.ls12{letter-spacing:2.657513pt;}
.ls16{letter-spacing:2.661583pt;}
.ls10{letter-spacing:8.873356pt;}
.lsb{letter-spacing:10.626667pt;}
.ls1f{letter-spacing:11.795718pt;}
.ls9{letter-spacing:11.954667pt;}
.ls21{letter-spacing:12.911530pt;}
.lsd{letter-spacing:13.283467pt;}
.ls45{letter-spacing:13.432275pt;}
.ls1b{letter-spacing:14.452412pt;}
.ls1a{letter-spacing:14.465513pt;}
.ls19{letter-spacing:14.771215pt;}
.ls28{letter-spacing:14.930617pt;}
.ls3c{letter-spacing:15.036884pt;}
.ls3f{letter-spacing:15.829333pt;}
.ls40{letter-spacing:15.829867pt;}
.ls42{letter-spacing:15.936533pt;}
.ls41{letter-spacing:15.941867pt;}
.ls15{letter-spacing:15.942846pt;}
.ls25{letter-spacing:17.414846pt;}
.ls18{letter-spacing:17.418916pt;}
.ls1e{letter-spacing:17.427908pt;}
.ls3e{letter-spacing:17.675200pt;}
.ls3d{letter-spacing:17.680533pt;}
.ls22{letter-spacing:18.598400pt;}
.lsa{letter-spacing:18.599264pt;}
.ls32{letter-spacing:19.243200pt;}
.ls30{letter-spacing:19.765798pt;}
.ls2e{letter-spacing:26.565867pt;}
.ls2a{letter-spacing:26.571200pt;}
.ls2f{letter-spacing:29.221867pt;}
.ls23{letter-spacing:30.551973pt;}
.ls2b{letter-spacing:108.395200pt;}
.ls2c{letter-spacing:111.051200pt;}
.ls36{letter-spacing:114.096533pt;}
.ls3b{letter-spacing:114.097067pt;}
.ls37{letter-spacing:114.101867pt;}
.ls3a{letter-spacing:114.102400pt;}
.ls2d{letter-spacing:190.219200pt;}
.ls35{letter-spacing:237.744533pt;}
.ls44{letter-spacing:329.488533pt;}
.lsf{letter-spacing:393.509417pt;}
.lse{letter-spacing:454.082025pt;}
.ls24{letter-spacing:1636.474667pt;}
.ls26{letter-spacing:1798.909879pt;}
.ws31{word-spacing:-454.135158pt;}
.ws37{word-spacing:-393.562550pt;}
.ws77{word-spacing:-14.824349pt;}
.ws6f{word-spacing:-14.771215pt;}
.ws2{word-spacing:-14.208000pt;}
.ws1{word-spacing:-13.344000pt;}
.ws3a{word-spacing:-13.283467pt;}
.ws4{word-spacing:-12.000000pt;}
.ws67{word-spacing:-11.848852pt;}
.ws7b{word-spacing:-11.795718pt;}
.wsa{word-spacing:-10.975904pt;}
.ws20{word-spacing:-10.666667pt;}
.ws1f{word-spacing:-0.480000pt;}
.ws0{word-spacing:-0.088000pt;}
.ws9{word-spacing:-0.069072pt;}
.ws8{word-spacing:-0.063760pt;}
.ws41{word-spacing:-0.053134pt;}
.wsb{word-spacing:-0.048352pt;}
.ws11{word-spacing:-0.047819pt;}
.ws7{word-spacing:-0.042507pt;}
.ws39{word-spacing:-0.037194pt;}
.ws1e{word-spacing:0.000000pt;}
.ws79{word-spacing:7.704411pt;}
.ws98{word-spacing:8.203890pt;}
.ws43{word-spacing:8.342017pt;}
.ws65{word-spacing:8.347330pt;}
.ws9b{word-spacing:8.671469pt;}
.ws66{word-spacing:8.767088pt;}
.ws97{word-spacing:8.798990pt;}
.ws61{word-spacing:8.820222pt;}
.ws96{word-spacing:9.011526pt;}
.ws94{word-spacing:9.394091pt;}
.ws90{word-spacing:10.159221pt;}
.ws85{word-spacing:10.254836pt;}
.ws63{word-spacing:10.467372pt;}
.ws6{word-spacing:10.584160pt;}
.ws2e{word-spacing:10.584293pt;}
.ws18{word-spacing:10.627200pt;}
.ws75{word-spacing:10.733041pt;}
.wsf{word-spacing:10.902656pt;}
.ws19{word-spacing:10.946016pt;}
.ws3f{word-spacing:11.104978pt;}
.ws86{word-spacing:11.158112pt;}
.ws48{word-spacing:11.211246pt;}
.ws8e{word-spacing:11.306915pt;}
.ws8f{word-spacing:11.391930pt;}
.ws8d{word-spacing:11.519451pt;}
.ws4e{word-spacing:11.737271pt;}
.ws4b{word-spacing:11.742585pt;}
.ws1b{word-spacing:11.743056pt;}
.ws24{word-spacing:11.795718pt;}
.ws89{word-spacing:11.848852pt;}
.ws8c{word-spacing:11.859509pt;}
.ws10{word-spacing:11.906848pt;}
.ws60{word-spacing:11.955120pt;}
.ws74{word-spacing:12.167655pt;}
.ws5c{word-spacing:12.220789pt;}
.ws9a{word-spacing:12.242074pt;}
.ws42{word-spacing:12.380191pt;}
.ws17{word-spacing:12.380688pt;}
.ws5{word-spacing:12.583925pt;}
.ws95{word-spacing:12.667146pt;}
.ws3b{word-spacing:12.698994pt;}
.wsd{word-spacing:12.767584pt;}
.ws4d{word-spacing:12.858396pt;}
.ws35{word-spacing:13.017797pt;}
.ws7f{word-spacing:13.124065pt;}
.ws4c{word-spacing:13.177199pt;}
.ws22{word-spacing:13.230333pt;}
.ws15{word-spacing:13.230864pt;}
.wse{word-spacing:13.245771pt;}
.wsc{word-spacing:13.293589pt;}
.ws23{word-spacing:13.336601pt;}
.ws91{word-spacing:13.347261pt;}
.ws73{word-spacing:13.389734pt;}
.ws5d{word-spacing:13.496002pt;}
.ws1a{word-spacing:13.496544pt;}
.ws8a{word-spacing:13.644811pt;}
.ws52{word-spacing:13.655404pt;}
.ws87{word-spacing:13.708538pt;}
.ws2b{word-spacing:14.027341pt;}
.ws40{word-spacing:14.133609pt;}
.ws81{word-spacing:14.186742pt;}
.ws5e{word-spacing:14.239876pt;}
.ws16{word-spacing:14.240448pt;}
.ws69{word-spacing:14.293010pt;}
.ws80{word-spacing:14.452412pt;}
.ws3c{word-spacing:14.558679pt;}
.ws27{word-spacing:14.664947pt;}
.ws53{word-spacing:14.718081pt;}
.ws6a{word-spacing:14.771215pt;}
.ws29{word-spacing:14.930617pt;}
.ws7e{word-spacing:14.983750pt;}
.ws28{word-spacing:15.036884pt;}
.ws2d{word-spacing:15.196286pt;}
.ws92{word-spacing:15.345099pt;}
.ws71{word-spacing:15.408821pt;}
.ws84{word-spacing:15.568223pt;}
.ws44{word-spacing:15.674491pt;}
.ws76{word-spacing:15.887026pt;}
.ws21{word-spacing:15.993294pt;}
.ws72{word-spacing:16.046428pt;}
.ws8b{word-spacing:16.067722pt;}
.ws3d{word-spacing:16.099562pt;}
.ws3e{word-spacing:16.152695pt;}
.ws6b{word-spacing:16.205829pt;}
.ws70{word-spacing:16.312097pt;}
.ws88{word-spacing:16.471499pt;}
.ws7c{word-spacing:16.524633pt;}
.ws64{word-spacing:17.002837pt;}
.ws49{word-spacing:17.055971pt;}
.ws5b{word-spacing:17.215373pt;}
.ws4a{word-spacing:17.268507pt;}
.ws6e{word-spacing:17.587310pt;}
.ws93{word-spacing:17.768010pt;}
.ws7d{word-spacing:17.852979pt;}
.ws51{word-spacing:18.171782pt;}
.ws2a{word-spacing:18.278050pt;}
.ws25{word-spacing:18.490586pt;}
.ws5f{word-spacing:18.703121pt;}
.ws1c{word-spacing:19.468053pt;}
.ws14{word-spacing:19.500912pt;}
.ws26{word-spacing:19.818932pt;}
.ws50{word-spacing:20.828476pt;}
.ws1d{word-spacing:22.542837pt;}
.ws12{word-spacing:22.543403pt;}
.ws2c{word-spacing:26.513799pt;}
.ws13{word-spacing:26.514864pt;}
.ws6d{word-spacing:26.529206pt;}
.ws68{word-spacing:26.534540pt;}
.ws47{word-spacing:27.842146pt;}
.ws99{word-spacing:29.585011pt;}
.ws78{word-spacing:34.502540pt;}
.ws46{word-spacing:55.737426pt;}
.ws62{word-spacing:57.703379pt;}
.ws6c{word-spacing:108.358540pt;}
.ws7a{word-spacing:111.014540pt;}
.ws34{word-spacing:141.277871pt;}
.ws82{word-spacing:182.199444pt;}
.ws83{word-spacing:182.204778pt;}
.ws59{word-spacing:214.448286pt;}
.ws55{word-spacing:220.399279pt;}
.ws56{word-spacing:223.268508pt;}
.ws36{word-spacing:290.110912pt;}
.ws5a{word-spacing:309.026569pt;}
.ws2f{word-spacing:350.683520pt;}
.ws38{word-spacing:366.889349pt;}
.ws57{word-spacing:372.309004pt;}
.ws32{word-spacing:427.461957pt;}
.ws30{word-spacing:433.253549pt;}
.ws58{word-spacing:437.451124pt;}
.ws33{word-spacing:454.028891pt;}
.ws4f{word-spacing:461.627034pt;}
.ws3{word-spacing:1210.119467pt;}
.ws45{word-spacing:1238.019093pt;}
.ws54{word-spacing:1728.710352pt;}
._b{margin-left:-453.441986pt;}
._10{margin-left:-392.869378pt;}
._22{margin-left:-12.048485pt;}
._3{margin-left:-6.633067pt;}
._2{margin-left:-5.521067pt;}
._5{margin-left:-4.064587pt;}
._1{margin-left:-3.120533pt;}
._0{margin-left:-1.592800pt;}
._4{width:1.112800pt;}
._15{width:2.656693pt;}
._16{width:3.815747pt;}
._9{width:5.151553pt;}
._24{width:7.152345pt;}
._18{width:8.767088pt;}
._2a{width:9.759581pt;}
._21{width:11.978434pt;}
._6{width:13.335856pt;}
._14{width:15.302554pt;}
._23{width:16.258963pt;}
._1b{width:17.321641pt;}
._1f{width:18.581273pt;}
._20{width:21.359814pt;}
._8{width:26.566933pt;}
._19{width:27.895280pt;}
._1a{width:30.940548pt;}
._25{width:111.686172pt;}
._27{width:237.933455pt;}
._29{width:252.704670pt;}
._1e{width:309.079702pt;}
._1d{width:335.646636pt;}
._13{width:360.713067pt;}
._e{width:366.756361pt;}
._f{width:372.734075pt;}
._11{width:386.203664pt;}
._26{width:391.012125pt;}
._28{width:405.783340pt;}
._c{width:433.306683pt;}
._a{width:454.082025pt;}
._d{width:459.873616pt;}
._1c{width:474.272894pt;}
._7{width:632.929600pt;}
._12{width:718.262400pt;}
._17{width:1891.512519pt;}
.fsf{font-size:31.880533pt;}
.fs9{font-size:31.882667pt;}
.fse{font-size:37.193600pt;}
.fs4{font-size:42.506667pt;}
.fsd{font-size:42.507200pt;}
.fs2{font-size:42.666667pt;}
.fs3{font-size:45.429333pt;}
.fsa{font-size:47.818667pt;}
.fs1{font-size:48.000000pt;}
.fs8{font-size:48.352000pt;}
.fsc{font-size:53.133867pt;}
.fsb{font-size:53.136000pt;}
.fs5{font-size:63.760000pt;}
.fs7{font-size:69.072000pt;}
.fs0{font-size:88.000000pt;}
.fs6{font-size:90.325333pt;}
.y55{bottom:-463.833440pt;}
.y54{bottom:-450.550107pt;}
.y53{bottom:-437.266773pt;}
.y52{bottom:-381.072960pt;}
.y51{bottom:-364.399867pt;}
.y50{bottom:-324.327680pt;}
.y4f{bottom:-308.386880pt;}
.y4e{bottom:-292.446080pt;}
.y4d{bottom:-276.505280pt;}
.y4c{bottom:-260.564480pt;}
.y4b{bottom:-244.623680pt;}
.y4a{bottom:-228.682880pt;}
.y49{bottom:-212.742080pt;}
.y48{bottom:-196.801280pt;}
.y47{bottom:-180.860480pt;}
.y46{bottom:-148.713200pt;}
.y45{bottom:-73.799739pt;}
.y30{bottom:-63.205200pt;}
.y2f{bottom:-49.921867pt;}
.y44{bottom:-49.734995pt;}
.y2e{bottom:-36.638533pt;}
.y43{bottom:-35.389395pt;}
.y8{bottom:-28.346400pt;}
.y42{bottom:-21.043795pt;}
.y41{bottom:-20.673200pt;}
.y0{bottom:0.000000pt;}
.ya0{bottom:4.296267pt;}
.y9e{bottom:32.398933pt;}
.y93{bottom:39.763467pt;}
.y92{bottom:55.703627pt;}
.y7{bottom:59.939067pt;}
.y14b{bottom:71.046011pt;}
.y10c{bottom:71.046133pt;}
.y91{bottom:71.643787pt;}
.y6{bottom:71.939067pt;}
.ybd{bottom:74.902933pt;}
.y9c{bottom:75.300267pt;}
.y12c{bottom:76.893476pt;}
.y9f{bottom:82.812267pt;}
.y5{bottom:83.939067pt;}
.y14a{bottom:86.986171pt;}
.y10b{bottom:86.986293pt;}
.y90{bottom:87.583947pt;}
.ye4{bottom:87.856165pt;}
.y12b{bottom:92.830933pt;}
.y9d{bottom:95.340267pt;}
.y4{bottom:95.939067pt;}
.y149{bottom:102.926331pt;}
.y10a{bottom:102.926453pt;}
.y8f{bottom:103.524107pt;}
.y12a{bottom:108.770933pt;}
.ye3{bottom:117.876800pt;}
.y148{bottom:118.866491pt;}
.y109{bottom:118.866613pt;}
.y8e{bottom:119.464267pt;}
.ybc{bottom:122.874819pt;}
.y9b{bottom:124.109600pt;}
.y95{bottom:125.056267pt;}
.y129{bottom:126.038773pt;}
.ye2{bottom:133.816960pt;}
.y147{bottom:134.806651pt;}
.y108{bottom:134.806773pt;}
.y99{bottom:138.666933pt;}
.y128{bottom:141.978933pt;}
.y9a{bottom:145.380267pt;}
.y97{bottom:146.194933pt;}
.ybb{bottom:146.506107pt;}
.ye1{bottom:149.757120pt;}
.y8d{bottom:150.520267pt;}
.y146{bottom:150.746811pt;}
.y107{bottom:150.746933pt;}
.yc{bottom:151.488000pt;}
.y94{bottom:154.570933pt;}
.y127{bottom:157.920267pt;}
.yba{bottom:162.446267pt;}
.ye0{bottom:165.697280pt;}
.y145{bottom:166.686971pt;}
.y2d{bottom:171.045707pt;}
.y106{bottom:173.626933pt;}
.y126{bottom:173.860267pt;}
.yb9{bottom:178.386427pt;}
.y98{bottom:178.778933pt;}
.y8c{bottom:180.568267pt;}
.ydf{bottom:181.637440pt;}
.y144{bottom:182.627131pt;}
.y96{bottom:185.541600pt;}
.y2c{bottom:187.718800pt;}
.y105{bottom:189.568267pt;}
.y125{bottom:189.800267pt;}
.yb8{bottom:194.326587pt;}
.yde{bottom:197.570144pt;}
.y143{bottom:198.567291pt;}
.y124{bottom:205.740267pt;}
.y104{bottom:206.836267pt;}
.yb7{bottom:210.266747pt;}
.ydd{bottom:213.510304pt;}
.y142{bottom:214.507451pt;}
.y8b{bottom:214.786773pt;}
.y123{bottom:221.680267pt;}
.y103{bottom:224.104267pt;}
.yb6{bottom:226.206907pt;}
.y2b{bottom:227.790987pt;}
.y141{bottom:230.447611pt;}
.y8a{bottom:230.726933pt;}
.y122{bottom:237.620267pt;}
.y102{bottom:240.045600pt;}
.yb5{bottom:242.146587pt;}
.y2a{bottom:243.731787pt;}
.ydc{bottom:245.390624pt;}
.y121{bottom:253.564142pt;}
.y101{bottom:255.985600pt;}
.yb4{bottom:258.086747pt;}
.y29{bottom:259.672587pt;}
.y140{bottom:262.593600pt;}
.y120{bottom:269.501600pt;}
.y100{bottom:271.925600pt;}
.y28{bottom:275.613387pt;}
.ydb{bottom:278.864960pt;}
.y75{bottom:284.166827pt;}
.y11f{bottom:285.441600pt;}
.yff{bottom:287.865600pt;}
.yb3{bottom:289.967067pt;}
.y27{bottom:291.554187pt;}
.yda{bottom:294.805120pt;}
.y74{bottom:300.106987pt;}
.y11e{bottom:301.381600pt;}
.y34{bottom:302.363573pt;}
.yfe{bottom:303.805600pt;}
.y89{bottom:306.458933pt;}
.y26{bottom:307.494987pt;}
.y16e{bottom:310.150100pt;}
.y13f{bottom:310.382933pt;}
.yd9{bottom:310.745280pt;}
.y33{bottom:314.966800pt;}
.y73{bottom:316.047147pt;}
.y11d{bottom:317.321600pt;}
.yfd{bottom:319.745600pt;}
.yb2{bottom:321.921733pt;}
.y16d{bottom:323.433600pt;}
.y25{bottom:323.435787pt;}
.yd8{bottom:326.685440pt;}
.y72{bottom:331.987307pt;}
.y80{bottom:332.578933pt;}
.y7e{bottom:332.664267pt;}
.y11c{bottom:333.265476pt;}
.yfc{bottom:335.686933pt;}
.y16c{bottom:336.717100pt;}
.y82{bottom:338.432267pt;}
.y13e{bottom:339.178933pt;}
.y24{bottom:339.376587pt;}
.yd7{bottom:342.625600pt;}
.y84{bottom:344.261600pt;}
.y139{bottom:346.907200pt;}
.y71{bottom:347.927467pt;}
.y11b{bottom:349.202933pt;}
.y16b{bottom:350.000600pt;}
.y1f{bottom:350.888747pt;}
.yfb{bottom:351.626933pt;}
.y7c{bottom:352.436267pt;}
.y23{bottom:355.317387pt;}
.y16a{bottom:363.284100pt;}
.y70{bottom:363.867627pt;}
.y86{bottom:364.584267pt;}
.y11a{bottom:365.142933pt;}
.y1e{bottom:365.234347pt;}
.y7f{bottom:370.898933pt;}
.y22{bottom:371.258187pt;}
.yb1{bottom:372.804186pt;}
.y81{bottom:372.812267pt;}
.yfa{bottom:373.544107pt;}
.y83{bottom:374.152267pt;}
.y169{bottom:376.567600pt;}
.y85{bottom:378.060267pt;}
.y1d{bottom:379.579947pt;}
.y6f{bottom:379.807787pt;}
.y1c{bottom:379.950541pt;}
.y119{bottom:381.082933pt;}
.y32{bottom:386.925467pt;}
.y7d{bottom:387.758933pt;}
.yb0{bottom:388.744346pt;}
.yf9{bottom:389.484267pt;}
.y168{bottom:389.851100pt;}
.y87{bottom:391.761600pt;}
.yd6{bottom:393.858773pt;}
.y6e{bottom:395.747947pt;}
.y13d{bottom:396.044533pt;}
.y118{bottom:397.022933pt;}
.y167{bottom:403.134600pt;}
.y21{bottom:403.405467pt;}
.yaf{bottom:404.684506pt;}
.yf8{bottom:407.816267pt;}
.y88{bottom:408.994933pt;}
.yd5{bottom:409.798933pt;}
.y1b{bottom:409.873072pt;}
.y6d{bottom:411.688107pt;}
.y117{bottom:412.962933pt;}
.y166{bottom:416.418100pt;}
.yae{bottom:420.624666pt;}
.y1a{bottom:424.218672pt;}
.yf7{bottom:426.100800pt;}
.y6c{bottom:427.628267pt;}
.y116{bottom:428.902933pt;}
.y165{bottom:429.701600pt;}
.y77{bottom:432.993600pt;}
.y7b{bottom:435.096267pt;}
.yad{bottom:436.564826pt;}
.y19{bottom:438.564272pt;}
.yd4{bottom:440.856107pt;}
.yf6{bottom:442.040960pt;}
.y164{bottom:442.985100pt;}
.y115{bottom:450.821280pt;}
.yac{bottom:452.504986pt;}
.y18{bottom:452.909872pt;}
.y79{bottom:455.106933pt;}
.y76{bottom:456.040267pt;}
.y163{bottom:456.268600pt;}
.yd3{bottom:456.796267pt;}
.yf5{bottom:457.981120pt;}
.y6b{bottom:458.685600pt;}
.y114{bottom:466.761440pt;}
.y17{bottom:467.255472pt;}
.y162{bottom:469.552100pt;}
.y13c{bottom:471.635067pt;}
.yf4{bottom:473.921280pt;}
.y7a{bottom:474.104267pt;}
.y20{bottom:478.322800pt;}
.y113{bottom:482.701600pt;}
.y161{bottom:482.835600pt;}
.ycf{bottom:487.853179pt;}
.y6a{bottom:488.732133pt;}
.y16{bottom:490.638800pt;}
.yab{bottom:490.655103pt;}
.y78{bottom:493.705600pt;}
.yd2{bottom:495.823259pt;}
.y160{bottom:496.119100pt;}
.y112{bottom:501.033600pt;}
.yb{bottom:501.286933pt;}
.yce{bottom:503.793339pt;}
.yf3{bottom:505.801600pt;}
.y15f{bottom:509.402600pt;}
.y13b{bottom:509.429600pt;}
.ycb{bottom:511.537600pt;}
.yd1{bottom:511.763419pt;}
.yaa{bottom:514.286390pt;}
.ya{bottom:514.620267pt;}
.ycd{bottom:519.733499pt;}
.y15e{bottom:522.686100pt;}
.y69{bottom:522.951664pt;}
.yd0{bottom:527.703579pt;}
.y9{bottom:527.953600pt;}
.y111{bottom:535.118453pt;}
.ycc{bottom:535.673659pt;}
.y15d{bottom:535.969600pt;}
.y13a{bottom:537.085467pt;}
.y68{bottom:538.891824pt;}
.y31{bottom:541.985333pt;}
.ya9{bottom:546.166710pt;}
.y15{bottom:548.888267pt;}
.y15c{bottom:549.253100pt;}
.y110{bottom:551.058613pt;}
.y40{bottom:551.227739pt;}
.y14{bottom:562.358933pt;}
.y15b{bottom:562.536600pt;}
.y3f{bottom:565.573339pt;}
.yca{bottom:565.720267pt;}
.yf2{bottom:566.965600pt;}
.y10f{bottom:566.998773pt;}
.y67{bottom:570.772144pt;}
.y138{bottom:572.612107pt;}
.ya8{bottom:574.686313pt;}
.y15a{bottom:575.820100pt;}
.y13{bottom:578.618800pt;}
.y3e{bottom:579.918939pt;}
.yf1{bottom:582.905600pt;}
.y10e{bottom:582.938933pt;}
.y137{bottom:588.553440pt;}
.y159{bottom:589.103600pt;}
.y3d{bottom:594.264539pt;}
.ya7{bottom:598.316979pt;}
.yf0{bottom:600.174933pt;}
.y158{bottom:602.387100pt;}
.y66{bottom:602.652464pt;}
.y136{bottom:604.493440pt;}
.y3c{bottom:608.610139pt;}
.y12{bottom:612.045467pt;}
.yc9{bottom:614.620965pt;}
.y157{bottom:615.670600pt;}
.yef{bottom:616.114933pt;}
.y65{bottom:618.592624pt;}
.y135{bottom:620.433600pt;}
.ya6{bottom:621.953341pt;}
.y156{bottom:628.954100pt;}
.y3b{bottom:631.993467pt;}
.yee{bottom:632.054933pt;}
.y64{bottom:634.532784pt;}
.ya5{bottom:637.893501pt;}
.yc8{bottom:641.071625pt;}
.y155{bottom:642.237600pt;}
.yc7{bottom:644.638299pt;}
.y11{bottom:644.859067pt;}
.yed{bottom:647.994933pt;}
.ya4{bottom:653.833661pt;}
.y154{bottom:655.521100pt;}
.y10{bottom:660.161467pt;}
.yec{bottom:663.934933pt;}
.y10d{bottom:664.778933pt;}
.y63{bottom:666.678773pt;}
.y153{bottom:668.804600pt;}
.ya3{bottom:669.773821pt;}
.y134{bottom:672.796107pt;}
.yc6{bottom:674.661779pt;}
.yeb{bottom:679.876267pt;}
.y152{bottom:682.088100pt;}
.ya2{bottom:685.713981pt;}
.y133{bottom:688.737440pt;}
.y3a{bottom:690.243067pt;}
.y151{bottom:695.371600pt;}
.yea{bottom:695.816267pt;}
.yf{bottom:702.994240pt;}
.y39{bottom:703.713600pt;}
.y132{bottom:704.677440pt;}
.yc5{bottom:704.682414pt;}
.y62{bottom:706.529173pt;}
.y150{bottom:708.655100pt;}
.ye9{bottom:711.756107pt;}
.ye{bottom:715.597467pt;}
.ya1{bottom:717.859970pt;}
.y38{bottom:719.973600pt;}
.y131{bottom:720.617440pt;}
.yc4{bottom:720.622574pt;}
.y14f{bottom:721.938600pt;}
.y61{bottom:722.469333pt;}
.ye8{bottom:727.696267pt;}
.y14e{bottom:735.222100pt;}
.y130{bottom:736.557600pt;}
.yc3{bottom:736.562734pt;}
.y60{bottom:738.409493pt;}
.y14d{bottom:748.505600pt;}
.ye7{bottom:749.614773pt;}
.yc2{bottom:752.502894pt;}
.y37{bottom:753.400267pt;}
.y5f{bottom:754.349653pt;}
.ye6{bottom:765.554933pt;}
.y12f{bottom:767.614933pt;}
.y5e{bottom:770.289813pt;}
.y14c{bottom:777.994224pt;}
.ye5{bottom:783.885600pt;}
.yc1{bottom:784.383214pt;}
.y36{bottom:786.213733pt;}
.y5d{bottom:786.229973pt;}
.yd{bottom:787.556133pt;}
.y12e{bottom:797.661600pt;}
.y35{bottom:801.516133pt;}
.y5c{bottom:802.170133pt;}
.yc0{bottom:817.844624pt;}
.y5b{bottom:818.110293pt;}
.ybf{bottom:833.784784pt;}
.y5a{bottom:834.050453pt;}
.y12d{bottom:834.050773pt;}
.ybe{bottom:849.724944pt;}
.y59{bottom:849.990613pt;}
.y3{bottom:854.338533pt;}
.y58{bottom:865.930773pt;}
.y1{bottom:879.110667pt;}
.y57{bottom:881.870933pt;}
.y2{bottom:918.559067pt;}
.y56{bottom:920.499333pt;}
.he{height:21.775861pt;}
.h25{height:21.933807pt;}
.h15{height:21.967157pt;}
.h1e{height:25.589197pt;}
.h2e{height:25.700778pt;}
.h9{height:29.244587pt;}
.h1d{height:29.244954pt;}
.h17{height:29.287093pt;}
.h37{height:29.499997pt;}
.h4{height:29.625000pt;}
.h16{height:30.562293pt;}
.h5{height:32.000000pt;}
.h12{height:32.660149pt;}
.h10{height:32.899243pt;}
.h11{height:32.947061pt;}
.hf{height:33.042699pt;}
.h8{height:33.117984pt;}
.h6{height:33.328125pt;}
.h3{height:34.368000pt;}
.h1c{height:36.290431pt;}
.h1a{height:36.556100pt;}
.h36{height:36.556740pt;}
.h32{height:36.557380pt;}
.h14{height:36.557568pt;}
.h22{height:36.558582pt;}
.h29{height:36.569306pt;}
.h2a{height:36.585924pt;}
.h23{height:36.609234pt;}
.h2b{height:36.620306pt;}
.h31{height:36.699999pt;}
.h1b{height:36.715502pt;}
.h13{height:36.716976pt;}
.h2f{height:36.859401pt;}
.h30{height:36.864734pt;}
.h21{height:36.874903pt;}
.h2c{height:36.875543pt;}
.h1f{height:41.818530pt;}
.hb{height:43.866880pt;}
.ha{height:44.632000pt;}
.h33{height:44.874530pt;}
.h34{height:44.875170pt;}
.h24{height:44.876450pt;}
.h35{height:44.880503pt;}
.h26{height:47.524479pt;}
.h27{height:47.549069pt;}
.h28{height:50.836000pt;}
.h19{height:58.923733pt;}
.hd{height:58.924267pt;}
.hc{height:63.227733pt;}
.h2{height:66.352000pt;}
.h18{height:277.857333pt;}
.h7{height:341.669333pt;}
.h2d{height:900.178667pt;}
.h20{height:901.690667pt;}
.h1{height:990.000000pt;}
.h0{height:990.236000pt;}
.w2{width:723.002667pt;}
.w3{width:724.336000pt;}
.w0{width:725.669333pt;}
.w1{width:726.000000pt;}
.x0{left:0.000000pt;}
.x6{left:2.666667pt;}
.x52{left:47.794427pt;}
.x5{left:49.889733pt;}
.x49{left:50.798667pt;}
.x4{left:51.779467pt;}
.x1a{left:53.519890pt;}
.x1b{left:55.008000pt;}
.xa{left:56.250667pt;}
.x45{left:58.437333pt;}
.x11{left:59.337333pt;}
.x48{left:61.504000pt;}
.x18{left:65.074133pt;}
.x44{left:66.406827pt;}
.x10{left:67.740800pt;}
.x19{left:69.473333pt;}
.x51{left:72.129799pt;}
.x46{left:73.063017pt;}
.x1c{left:75.663589pt;}
.x3b{left:83.680501pt;}
.x3e{left:85.412567pt;}
.x12{left:97.835347pt;}
.x30{left:105.949893pt;}
.x3c{left:107.607123pt;}
.xf{left:135.108000pt;}
.x17{left:137.774667pt;}
.xe{left:143.598667pt;}
.x16{left:146.265333pt;}
.x4c{left:153.270667pt;}
.xc{left:154.821333pt;}
.x14{left:157.488000pt;}
.xd{left:166.133333pt;}
.x15{left:168.800000pt;}
.x4f{left:171.177333pt;}
.x4b{left:178.484000pt;}
.x3f{left:207.400775pt;}
.x2{left:209.887200pt;}
.x3{left:220.683467pt;}
.x7{left:233.688000pt;}
.x8{left:238.757333pt;}
.x4d{left:243.985333pt;}
.x1{left:253.101067pt;}
.x40{left:255.256108pt;}
.x47{left:270.172000pt;}
.x3d{left:276.445333pt;}
.x50{left:296.738667pt;}
.xb{left:333.399447pt;}
.x13{left:336.066113pt;}
.x41{left:378.234442pt;}
.x3a{left:399.058667pt;}
.x2f{left:418.818667pt;}
.x4e{left:425.413333pt;}
.x37{left:438.893333pt;}
.x35{left:442.141333pt;}
.x21{left:444.792000pt;}
.x23{left:450.292000pt;}
.x36{left:469.884000pt;}
.x24{left:473.921333pt;}
.x38{left:476.280000pt;}
.x22{left:478.462667pt;}
.x25{left:486.065333pt;}
.x34{left:488.316000pt;}
.x26{left:495.592000pt;}
.x42{left:501.212777pt;}
.x28{left:510.065333pt;}
.x33{left:517.150667pt;}
.x9{left:520.034573pt;}
.x20{left:521.105333pt;}
.x29{left:522.358667pt;}
.x2b{left:528.622667pt;}
.x27{left:529.616000pt;}
.x32{left:536.096000pt;}
.x1e{left:537.037333pt;}
.x2d{left:538.432000pt;}
.x4a{left:543.229333pt;}
.x2e{left:547.200000pt;}
.x1f{left:549.761333pt;}
.x39{left:555.024000pt;}
.x2a{left:560.049333pt;}
.x2c{left:580.674667pt;}
.x31{left:585.121333pt;}
.x1d{left:587.256000pt;}
.x43{left:615.012236pt;}
}




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