
    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_ed164760e362036e2a62ed74.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.284668;font-style:normal;font-weight: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_330ee10c1c7c51d56fa0e1a7.woff2')format("woff");}.ff2{font-family:ff2;line-height:1.311035;font-style:normal;font-weight: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_9c7cc1f3e4bc034959092dc6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.939941;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.767578;font-style:normal;font-weight: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_9c16a588b157dcb458d26639.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_5cfa97eeae4bc404d3b86694.woff2')format("woff");}.ff6{font-family:ff6;line-height:1.311035;font-style:normal;font-weight: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_0fb20e4f93b006fea8a81795.woff2')format("woff");}.ff7{font-family:ff7;line-height:1.284668;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.767578;font-style:normal;font-weight: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_26b1e28be00683954f6028bc.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.112305;font-style:normal;font-weight: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_a88245a55890b6ead4c7a040.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.284668;font-style:normal;font-weight: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_37f168c2f2cecb217ab5158c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.311035;font-style:normal;font-weight: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_9c7cc1f3e4bc034959092dc6.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.939941;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.767578;font-style:normal;font-weight: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_dab6e9ed33234cc93a9a189e.woff2')format("woff");}.ffe{font-family:ffe;line-height:1.112305;font-style:normal;font-weight: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_0eaf857c517ca2a5bf1748f2.woff2')format("woff");}.fff{font-family:fff;line-height:1.311035;font-style:normal;font-weight: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_7b9cf44363a3d864d99b3e4d.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.284668;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.767578;font-style:normal;font-weight: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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.432129;font-style:normal;font-weight: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_4df380033783fca914ee37f5.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.112305;font-style:normal;font-weight: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_1cd1898c97104b1be23f8916.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight: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_37f168c2f2cecb217ab5158c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.311035;font-style:normal;font-weight: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_9c7cc1f3e4bc034959092dc6.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.939941;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.767578;font-style:normal;font-weight: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_b942e34cf9906a1cfe6bb806.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.432129;font-style:normal;font-weight: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_0eaf857c517ca2a5bf1748f2.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.311035;font-style:normal;font-weight: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_18ce6cefa0da60d426a74413.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.767578;font-style:normal;font-weight: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_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight: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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_4d623d3aa4559b8685578df9.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.284668;font-style:normal;font-weight: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_37f168c2f2cecb217ab5158c.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.311035;font-style:normal;font-weight: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_9c7cc1f3e4bc034959092dc6.woff2')format("woff");}.ff20{font-family:ff20;line-height:0.939941;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.767578;font-style:normal;font-weight: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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight: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_0eaf857c517ca2a5bf1748f2.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.311035;font-style:normal;font-weight: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_489b933e4e11a7641e81f5ad.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.284668;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.767578;font-style:normal;font-weight: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_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_ab5738f08496b04e0e1916c2.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.432129;font-style:normal;font-weight: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_8e05c855a993a05f71145992.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.284668;font-style:normal;font-weight: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_37f168c2f2cecb217ab5158c.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.311035;font-style:normal;font-weight: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_9c7cc1f3e4bc034959092dc6.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:0.939941;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:0.767578;font-style:normal;font-weight: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_4cd209e4030ece20b1071ec3.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.112305;font-style:normal;font-weight: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_47bdb5cbe8dea8da7eee1171.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.311035;font-style:normal;font-weight: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_3b540105f72eb7499b7dbabb.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.284668;font-style:normal;font-weight: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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff30{font-family:ff30;line-height:0.767578;font-style:normal;font-weight: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_837721bcb302fd9fc86fcd63.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.284180;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_9cba970fcaa0ce30e503c837.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.112305;font-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);}
.v9{vertical-align:-79.920000px;}
.v4{vertical-align:-78.480000px;}
.v6{vertical-align:-77.040000px;}
.v8{vertical-align:-74.280000px;}
.v2{vertical-align:-72.900000px;}
.v1{vertical-align:-71.280000px;}
.v7{vertical-align:-69.840000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v5{vertical-align:87.840000px;}
.ls7{letter-spacing:-1.290000px;}
.lsb{letter-spacing:-0.936000px;}
.ls6{letter-spacing:-0.828000px;}
.lsa{letter-spacing:-0.109200px;}
.ls10{letter-spacing:-0.072000px;}
.ls4{letter-spacing:0.000000px;}
.ls13{letter-spacing:0.072000px;}
.ls5{letter-spacing:0.109200px;}
.ls8{letter-spacing:0.152400px;}
.ls9{letter-spacing:0.305400px;}
.lsf{letter-spacing:0.720000px;}
.ls12{letter-spacing:10.944000px;}
.ls3{letter-spacing:14.400000px;}
.ls0{letter-spacing:18.900000px;}
.ls15{letter-spacing:25.344000px;}
.lse{letter-spacing:27.504000px;}
.ls14{letter-spacing:48.384000px;}
.lsd{letter-spacing:48.600000px;}
.ls11{letter-spacing:70.920000px;}
.lsc{letter-spacing:244.956000px;}
.ls1{letter-spacing:519.300000px;}
.ls2{letter-spacing:860.520000px;}
.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;}
}
.ws5{word-spacing:-66.240000px;}
.ws0{word-spacing:-18.000000px;}
.wsa{word-spacing:-17.928000px;}
.ws7{word-spacing:-17.064000px;}
.ws1{word-spacing:-16.669200px;}
.ws2{word-spacing:-16.560000px;}
.ws6{word-spacing:-16.450800px;}
.ws3{word-spacing:-15.732000px;}
.ws4{word-spacing:-15.270000px;}
.ws9{word-spacing:-14.940000px;}
.ws8{word-spacing:0.000000px;}
._32{margin-left:-9.663360px;}
._3{margin-left:-2.822400px;}
._0{margin-left:-1.354560px;}
._1{width:1.671360px;}
._29{width:2.675040px;}
._16{width:3.683520px;}
._8{width:5.317440px;}
._9{width:6.776640px;}
._10{width:8.615040px;}
._11{width:9.962880px;}
._27{width:10.995840px;}
._28{width:12.600000px;}
._2a{width:14.096640px;}
._2d{width:15.104640px;}
._2c{width:16.400640px;}
._14{width:17.789760px;}
._15{width:18.901440px;}
._1a{width:20.417760px;}
._e{width:22.131840px;}
._f{width:23.213760px;}
._2{width:24.538560px;}
._20{width:25.803840px;}
._34{width:27.047040px;}
._13{width:28.049280px;}
._12{width:29.944320px;}
._26{width:31.056000px;}
._1f{width:32.686080px;}
._a{width:34.272960px;}
._5{width:35.773920px;}
._4{width:37.481760px;}
._31{width:39.751200px;}
._2e{width:40.968000px;}
._33{width:42.418560px;}
._23{width:44.115840px;}
._24{width:45.440640px;}
._25{width:46.699200px;}
._30{width:50.112000px;}
._2f{width:51.536640px;}
._22{width:53.058240px;}
._21{width:54.214080px;}
._6{width:58.328640px;}
._7{width:59.878080px;}
._19{width:61.883520px;}
._18{width:63.627840px;}
._b{width:64.809600px;}
._1b{width:65.829120px;}
._1c{width:66.866880px;}
._d{width:68.050560px;}
._c{width:69.920640px;}
._1e{width:76.434240px;}
._1d{width:78.096960px;}
._17{width:91.098240px;}
._2b{width:204.605760px;}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,128);}
.fs6{font-size:30.240000px;}
.fs7{font-size:36.000000px;}
.fs4{font-size:54.000000px;}
.fs2{font-size:59.760000px;}
.fs1{font-size:66.240000px;}
.fs0{font-size:72.000000px;}
.fs5{font-size:77.760000px;}
.fs3{font-size:144.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:5.220000px;}
.y5d{bottom:5.392500px;}
.y2{bottom:5.400000px;}
.y9{bottom:10.260000px;}
.y8{bottom:32.400000px;}
.y8f{bottom:57.636000px;}
.y5c{bottom:69.883500px;}
.y1{bottom:70.056000px;}
.y5f{bottom:70.956000px;}
.y6{bottom:92.016000px;}
.ye4{bottom:121.716000px;}
.y1a7{bottom:126.396000px;}
.y8c{bottom:129.276000px;}
.y15c{bottom:130.536000px;}
.yb7{bottom:132.336000px;}
.y189{bottom:137.016000px;}
.y13d{bottom:137.376000px;}
.ye3{bottom:142.596000px;}
.y1a6{bottom:150.330000px;}
.y15b{bottom:151.230000px;}
.y8b{bottom:153.030000px;}
.yb6{bottom:156.270000px;}
.y10e{bottom:157.890000px;}
.y188{bottom:160.770000px;}
.y13c{bottom:161.130000px;}
.ye2{bottom:163.290000px;}
.y15a{bottom:171.750000px;}
.y1a5{bottom:174.090000px;}
.y8a{bottom:176.970000px;}
.y10d{bottom:178.590000px;}
.yb5{bottom:180.030000px;}
.y187{bottom:184.530000px;}
.y13b{bottom:184.890000px;}
.y1c5{bottom:191.910000px;}
.y159{bottom:193.890000px;}
.y1a4{bottom:196.590000px;}
.y10c{bottom:199.290000px;}
.y89{bottom:199.470000px;}
.yb4{bottom:203.790000px;}
.ye1{bottom:204.330000px;}
.y186{bottom:208.470000px;}
.y13a{bottom:208.830000px;}
.y158{bottom:214.410000px;}
.y1c4{bottom:215.670000px;}
.y1a3{bottom:217.650000px;}
.ye0{bottom:219.810000px;}
.y10b{bottom:219.990000px;}
.y88{bottom:220.530000px;}
.yb3{bottom:227.550000px;}
.y139{bottom:231.330000px;}
.y185{bottom:232.230000px;}
.y157{bottom:235.830000px;}
.y1c3{bottom:239.610000px;}
.y10a{bottom:240.690000px;}
.y1a2{bottom:241.590000px;}
.ydf{bottom:243.570000px;}
.y87{bottom:244.290000px;}
.yb2{bottom:251.490000px;}
.y138{bottom:252.390000px;}
.y184{bottom:255.990000px;}
.y109{bottom:261.390000px;}
.y1c2{bottom:263.370000px;}
.y1a1{bottom:265.350000px;}
.yde{bottom:266.070000px;}
.y86{bottom:268.230000px;}
.yb1{bottom:274.035000px;}
.y137{bottom:276.195000px;}
.y183{bottom:279.795000px;}
.y108{bottom:282.135000px;}
.ydd{bottom:284.295000px;}
.y1c1{bottom:287.175000px;}
.y1a0{bottom:289.155000px;}
.y85{bottom:292.035000px;}
.yb0{bottom:295.095000px;}
.y136{bottom:299.955000px;}
.y182{bottom:302.475000px;}
.y107{bottom:302.835000px;}
.ydc{bottom:304.995000px;}
.y1c0{bottom:309.675000px;}
.y43{bottom:309.990000px;}
.y19f{bottom:312.915000px;}
.y84{bottom:315.795000px;}
.yaf{bottom:318.855000px;}
.y106{bottom:323.535000px;}
.y135{bottom:323.895000px;}
.ydb{bottom:325.695000px;}
.y42{bottom:329.115000px;}
.y1bf{bottom:330.735000px;}
.y19e{bottom:336.855000px;}
.y83{bottom:339.555000px;}
.yae{bottom:342.795000px;}
.y105{bottom:344.235000px;}
.yda{bottom:346.395000px;}
.y181{bottom:347.295000px;}
.y134{bottom:347.655000px;}
.y41{bottom:348.015000px;}
.y1be{bottom:354.675000px;}
.y19d{bottom:360.615000px;}
.y82{bottom:363.495000px;}
.y104{bottom:364.935000px;}
.y5a{bottom:365.655000px;}
.yad{bottom:366.555000px;}
.y40{bottom:366.915000px;}
.yd9{bottom:367.095000px;}
.y180{bottom:371.055000px;}
.y133{bottom:371.415000px;}
.y1bd{bottom:378.435000px;}
.y19c{bottom:384.375000px;}
.y103{bottom:385.635000px;}
.y3f{bottom:385.995000px;}
.y81{bottom:387.255000px;}
.yd8{bottom:387.795000px;}
.y59{bottom:388.335000px;}
.yac{bottom:390.315000px;}
.y17f{bottom:394.995000px;}
.y132{bottom:395.175000px;}
.y1bc{bottom:402.195000px;}
.y3e{bottom:404.895000px;}
.y102{bottom:406.335000px;}
.y58{bottom:407.235000px;}
.y19b{bottom:408.135000px;}
.yd7{bottom:408.495000px;}
.y80{bottom:411.015000px;}
.yab{bottom:414.075000px;}
.y17e{bottom:417.495000px;}
.y131{bottom:419.115000px;}
.y3d{bottom:423.975000px;}
.y1bb{bottom:425.955000px;}
.y57{bottom:426.135000px;}
.y101{bottom:427.035000px;}
.yd6{bottom:429.195000px;}
.y19a{bottom:431.895000px;}
.y7f{bottom:433.515000px;}
.yaa{bottom:436.575000px;}
.y156{bottom:438.015000px;}
.y17d{bottom:438.555000px;}
.y130{bottom:441.615000px;}
.y3c{bottom:442.875000px;}
.y56{bottom:445.215000px;}
.y100{bottom:447.735000px;}
.yd5{bottom:449.895000px;}
.y7e{bottom:454.755000px;}
.y199{bottom:455.835000px;}
.ya9{bottom:457.815000px;}
.y12f{bottom:459.795000px;}
.y3b{bottom:461.775000px;}
.y17c{bottom:462.315000px;}
.y55{bottom:464.115000px;}
.yff{bottom:468.435000px;}
.yd4{bottom:470.595000px;}
.y1ba{bottom:473.115000px;}
.y7d{bottom:478.515000px;}
.y198{bottom:479.055000px;}
.y12e{bottom:480.495000px;}
.y3a{bottom:480.855000px;}
.ya8{bottom:481.575000px;}
.y54{bottom:483.195000px;}
.y155{bottom:485.535000px;}
.y17b{bottom:486.075000px;}
.yfe{bottom:489.135000px;}
.yd3{bottom:491.295000px;}
.y1b9{bottom:495.075000px;}
.y39{bottom:499.755000px;}
.y12d{bottom:501.195000px;}
.y197{bottom:501.375000px;}
.y53{bottom:502.095000px;}
.y7c{bottom:502.275000px;}
.ya7{bottom:505.335000px;}
.y154{bottom:509.295000px;}
.yfd{bottom:509.835000px;}
.y17a{bottom:510.015000px;}
.yd2{bottom:511.995000px;}
.y1b8{bottom:517.935000px;}
.y38{bottom:518.835000px;}
.y52{bottom:521.175000px;}
.y12c{bottom:521.895000px;}
.y196{bottom:525.135000px;}
.y7b{bottom:526.035000px;}
.ya6{bottom:529.095000px;}
.yfc{bottom:530.535000px;}
.yd1{bottom:532.695000px;}
.y153{bottom:533.055000px;}
.y179{bottom:533.775000px;}
.y37{bottom:537.735000px;}
.y1b7{bottom:539.175000px;}
.y51{bottom:540.075000px;}
.y12b{bottom:542.415000px;}
.y29{bottom:546.015000px;}
.y7a{bottom:548.535000px;}
.y195{bottom:549.075000px;}
.yfb{bottom:551.235000px;}
.ya5{bottom:553.035000px;}
.yd0{bottom:553.395000px;}
.y36{bottom:556.635000px;}
.y152{bottom:557.025000px;}
.y178{bottom:557.565000px;}
.y50{bottom:558.975000px;}
.y1b6{bottom:562.965000px;}
.y12a{bottom:564.585000px;}
.y28{bottom:565.635000px;}
.y79{bottom:568.545000px;}
.yfa{bottom:571.965000px;}
.y194{bottom:572.865000px;}
.ycf{bottom:574.125000px;}
.y35{bottom:575.715000px;}
.ya4{bottom:576.825000px;}
.y4f{bottom:578.055000px;}
.y151{bottom:580.785000px;}
.y177{bottom:581.325000px;}
.y129{bottom:585.285000px;}
.y1b5{bottom:586.725000px;}
.y78{bottom:588.345000px;}
.yf9{bottom:592.665000px;}
.y34{bottom:594.615000px;}
.yce{bottom:594.825000px;}
.y193{bottom:596.625000px;}
.y4e{bottom:596.985000px;}
.ya3{bottom:600.585000px;}
.y27{bottom:603.645000px;}
.y150{bottom:604.545000px;}
.y176{bottom:605.265000px;}
.y128{bottom:605.805000px;}
.y77{bottom:608.145000px;}
.y1b4{bottom:609.945000px;}
.yf8{bottom:613.365000px;}
.y33{bottom:613.725000px;}
.ycd{bottom:615.525000px;}
.y4d{bottom:616.065000px;}
.y26{bottom:617.685000px;}
.y192{bottom:620.385000px;}
.ya2{bottom:624.345000px;}
.y14f{bottom:627.045000px;}
.y127{bottom:627.225000px;}
.y76{bottom:627.945000px;}
.y175{bottom:629.025000px;}
.y1b3{bottom:631.905000px;}
.y32{bottom:632.625000px;}
.y4c{bottom:634.965000px;}
.ycc{bottom:636.225000px;}
.y126{bottom:642.705000px;}
.y191{bottom:644.325000px;}
.y25{bottom:647.205000px;}
.y75{bottom:647.745000px;}
.ya1{bottom:648.285000px;}
.y31{bottom:651.525000px;}
.y174{bottom:652.785000px;}
.y4b{bottom:653.865000px;}
.yf7{bottom:654.045000px;}
.y1b2{bottom:654.945000px;}
.ycb{bottom:656.925000px;}
.y24{bottom:661.965000px;}
.y74{bottom:665.385000px;}
.y125{bottom:666.645000px;}
.y190{bottom:668.085000px;}
.yf6{bottom:669.525000px;}
.y30{bottom:670.605000px;}
.ya0{bottom:672.045000px;}
.y4a{bottom:672.945000px;}
.y1b1{bottom:676.005000px;}
.y173{bottom:676.545000px;}
.y23{bottom:676.725000px;}
.yca{bottom:677.625000px;}
.y73{bottom:680.865000px;}
.y124{bottom:689.145000px;}
.y2f{bottom:689.505000px;}
.y49{bottom:691.845000px;}
.yf5{bottom:693.285000px;}
.y22{bottom:694.725000px;}
.y9f{bottom:695.805000px;}
.y172{bottom:699.225000px;}
.y1b0{bottom:699.765000px;}
.y72{bottom:704.625000px;}
.y123{bottom:707.145000px;}
.y2e{bottom:708.585000px;}
.y48{bottom:710.925000px;}
.y18f{bottom:715.605000px;}
.yf4{bottom:717.225000px;}
.y171{bottom:717.405000px;}
.y9e{bottom:718.305000px;}
.y14e{bottom:719.565000px;}
.y1af{bottom:723.525000px;}
.y2d{bottom:727.485000px;}
.y71{bottom:728.385000px;}
.y122{bottom:729.285000px;}
.y47{bottom:729.825000px;}
.y21{bottom:730.185000px;}
.yc9{bottom:733.965000px;}
.y170{bottom:738.105000px;}
.y9d{bottom:739.545000px;}
.yf3{bottom:739.725000px;}
.y14d{bottom:743.505000px;}
.y20{bottom:743.685000px;}
.y2c{bottom:746.385000px;}
.y1ae{bottom:747.465000px;}
.y46{bottom:748.725000px;}
.y121{bottom:749.985000px;}
.y70{bottom:752.325000px;}
.yc8{bottom:757.725000px;}
.y16f{bottom:758.805000px;}
.yf2{bottom:760.785000px;}
.y9c{bottom:763.305000px;}
.y2b{bottom:765.465000px;}
.y14c{bottom:767.265000px;}
.y45{bottom:767.805000px;}
.y120{bottom:770.505000px;}
.y1ad{bottom:771.225000px;}
.y1f{bottom:773.025000px;}
.y6f{bottom:776.085000px;}
.y16e{bottom:779.325000px;}
.yc7{bottom:781.485000px;}
.y2a{bottom:784.365000px;}
.yf1{bottom:784.545000px;}
.y44{bottom:786.705000px;}
.y9b{bottom:787.065000px;}
.y14b{bottom:791.025000px;}
.y1e{bottom:791.745000px;}
.y11f{bottom:792.465000px;}
.y1ac{bottom:794.985000px;}
.y6e{bottom:798.585000px;}
.y16d{bottom:801.465000px;}
.yc6{bottom:805.245000px;}
.y1d{bottom:807.585000px;}
.yf0{bottom:808.485000px;}
.y18e{bottom:809.565000px;}
.y9a{bottom:810.825000px;}
.y11e{bottom:814.065000px;}
.y14a{bottom:814.785000px;}
.y1ab{bottom:817.485000px;}
.y6d{bottom:819.645000px;}
.y16c{bottom:822.165000px;}
.y1c{bottom:827.565000px;}
.yc5{bottom:829.185000px;}
.y11d{bottom:829.545000px;}
.y18d{bottom:830.625000px;}
.yef{bottom:832.245000px;}
.y99{bottom:834.765000px;}
.y149{bottom:838.770000px;}
.y16b{bottom:842.910000px;}
.y6c{bottom:843.450000px;}
.yc4{bottom:852.990000px;}
.y11c{bottom:853.350000px;}
.y18c{bottom:854.610000px;}
.yee{bottom:856.050000px;}
.y98{bottom:858.570000px;}
.y148{bottom:862.530000px;}
.y16a{bottom:863.430000px;}
.y14{bottom:866.310000px;}
.y6b{bottom:867.390000px;}
.yc3{bottom:876.750000px;}
.y11b{bottom:877.110000px;}
.y18b{bottom:878.370000px;}
.yed{bottom:879.810000px;}
.y97{bottom:882.330000px;}
.y169{bottom:885.570000px;}
.y147{bottom:886.290000px;}
.y6a{bottom:891.150000px;}
.y13{bottom:892.950000px;}
.yc2{bottom:900.510000px;}
.y11a{bottom:900.870000px;}
.y18a{bottom:902.130000px;}
.yec{bottom:903.750000px;}
.y96{bottom:904.830000px;}
.y1b{bottom:905.190000px;}
.y168{bottom:906.090000px;}
.y146{bottom:910.050000px;}
.y69{bottom:913.650000px;}
.y12{bottom:921.390000px;}
.yc1{bottom:924.450000px;}
.y119{bottom:924.810000px;}
.y95{bottom:925.890000px;}
.yeb{bottom:927.510000px;}
.y167{bottom:928.230000px;}
.y145{bottom:933.990000px;}
.y68{bottom:934.710000px;}
.y1a{bottom:947.850000px;}
.yc0{bottom:948.210000px;}
.y118{bottom:948.570000px;}
.y166{bottom:948.750000px;}
.y94{bottom:949.830000px;}
.y11{bottom:950.010000px;}
.yea{bottom:951.270000px;}
.y144{bottom:956.490000px;}
.y67{bottom:958.650000px;}
.y165{bottom:970.890000px;}
.ybf{bottom:971.970000px;}
.y117{bottom:972.330000px;}
.y93{bottom:973.590000px;}
.y19{bottom:974.490000px;}
.ye9{bottom:975.030000px;}
.y143{bottom:977.550000px;}
.y66{bottom:982.410000px;}
.y164{bottom:991.590000px;}
.ybe{bottom:995.730000px;}
.y116{bottom:996.090000px;}
.y10{bottom:996.270000px;}
.y92{bottom:997.350000px;}
.ye8{bottom:997.530000px;}
.y142{bottom:1001.310000px;}
.y65{bottom:1006.170000px;}
.yf{bottom:1011.930000px;}
.y163{bottom:1012.110000px;}
.ye7{bottom:1015.710000px;}
.ybd{bottom:1018.230000px;}
.y115{bottom:1018.770000px;}
.y7{bottom:1019.310000px;}
.y91{bottom:1021.110000px;}
.y18{bottom:1022.010000px;}
.y141{bottom:1025.070000px;}
.ye{bottom:1027.050000px;}
.y162{bottom:1034.250000px;}
.ybc{bottom:1036.410000px;}
.y114{bottom:1036.950000px;}
.yd{bottom:1041.990000px;}
.y90{bottom:1045.050000px;}
.y140{bottom:1049.010000px;}
.y64{bottom:1049.370000px;}
.y161{bottom:1054.770000px;}
.yc{bottom:1056.930000px;}
.ybb{bottom:1057.110000px;}
.y113{bottom:1057.650000px;}
.y63{bottom:1068.810000px;}
.yb{bottom:1069.170000px;}
.y17{bottom:1069.350000px;}
.y13f{bottom:1072.770000px;}
.y160{bottom:1076.910000px;}
.yba{bottom:1077.810000px;}
.ye6{bottom:1077.990000px;}
.y112{bottom:1078.350000px;}
.y62{bottom:1092.570000px;}
.y13e{bottom:1095.270000px;}
.y1aa{bottom:1096.530000px;}
.y15f{bottom:1097.610000px;}
.yb9{bottom:1098.690000px;}
.ye5{bottom:1098.870000px;}
.y111{bottom:1099.050000px;}
.y16{bottom:1110.930000px;}
.y61{bottom:1116.330000px;}
.y15e{bottom:1118.310000px;}
.yb8{bottom:1119.390000px;}
.y110{bottom:1119.750000px;}
.y1a9{bottom:1120.290000px;}
.y15{bottom:1135.440000px;}
.y15d{bottom:1139.040000px;}
.y60{bottom:1140.300000px;}
.y10f{bottom:1140.480000px;}
.y1a8{bottom:1143.000000px;}
.ya{bottom:1155.240000px;}
.y5b{bottom:1190.160000px;}
.y8d{bottom:1191.780000px;}
.y3{bottom:1191.960000px;}
.y8e{bottom:1194.300000px;}
.y5e{bottom:1197.720000px;}
.y5{bottom:1204.020000px;}
.h4{height:19.620000px;}
.h12{height:21.052500px;}
.h2{height:21.060000px;}
.he{height:29.678906px;}
.h10{height:35.332031px;}
.h7{height:47.685000px;}
.h6{height:50.229844px;}
.hf{height:52.998047px;}
.h8{height:58.651172px;}
.h13{height:60.226875px;}
.h14{height:64.546875px;}
.h9{height:65.010937px;}
.h5{height:66.757500px;}
.h3{height:70.664062px;}
.hb{height:72.562500px;}
.h15{height:75.093750px;}
.hd{height:76.317188px;}
.ha{height:145.125000px;}
.hc{height:160.402500px;}
.h11{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w9{width:51.465000px;}
.w2{width:51.510000px;}
.w8{width:75.765000px;}
.w4{width:163.288500px;}
.w7{width:663.030000px;}
.wa{width:684.810000px;}
.w3{width:696.375000px;}
.w5{width:892.980000px;}
.w6{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x4{left:1.429500px;}
.x2{left:3.060000px;}
.x8{left:23.940000px;}
.x5{left:32.040000px;}
.x6{left:35.101500px;}
.x12{left:104.806500px;}
.x3{left:122.446500px;}
.x13{left:127.656000px;}
.x1a{left:138.276000px;}
.x14{left:139.536000px;}
.x7{left:192.630000px;}
.x16{left:202.170000px;}
.x18{left:207.030000px;}
.x19{left:212.610000px;}
.x17{left:223.410000px;}
.xf{left:234.210000px;}
.x15{left:255.270000px;}
.xd{left:276.375000px;}
.xb{left:277.995000px;}
.x10{left:305.175000px;}
.xa{left:357.915000px;}
.xc{left:399.135000px;}
.xe{left:442.515000px;}
.x9{left:521.565000px;}
.x11{left:524.805000px;}
.x1{left:765.690000px;}
@media print{
.v9{vertical-align:-71.040000pt;}
.v4{vertical-align:-69.760000pt;}
.v6{vertical-align:-68.480000pt;}
.v8{vertical-align:-66.026667pt;}
.v2{vertical-align:-64.800000pt;}
.v1{vertical-align:-63.360000pt;}
.v7{vertical-align:-62.080000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v5{vertical-align:78.080000pt;}
.ls7{letter-spacing:-1.146667pt;}
.lsb{letter-spacing:-0.832000pt;}
.ls6{letter-spacing:-0.736000pt;}
.lsa{letter-spacing:-0.097067pt;}
.ls10{letter-spacing:-0.064000pt;}
.ls4{letter-spacing:0.000000pt;}
.ls13{letter-spacing:0.064000pt;}
.ls5{letter-spacing:0.097067pt;}
.ls8{letter-spacing:0.135467pt;}
.ls9{letter-spacing:0.271467pt;}
.lsf{letter-spacing:0.640000pt;}
.ls12{letter-spacing:9.728000pt;}
.ls3{letter-spacing:12.800000pt;}
.ls0{letter-spacing:16.800000pt;}
.ls15{letter-spacing:22.528000pt;}
.lse{letter-spacing:24.448000pt;}
.ls14{letter-spacing:43.008000pt;}
.lsd{letter-spacing:43.200000pt;}
.ls11{letter-spacing:63.040000pt;}
.lsc{letter-spacing:217.738667pt;}
.ls1{letter-spacing:461.600000pt;}
.ls2{letter-spacing:764.906667pt;}
.ws5{word-spacing:-58.880000pt;}
.ws0{word-spacing:-16.000000pt;}
.wsa{word-spacing:-15.936000pt;}
.ws7{word-spacing:-15.168000pt;}
.ws1{word-spacing:-14.817067pt;}
.ws2{word-spacing:-14.720000pt;}
.ws6{word-spacing:-14.622933pt;}
.ws3{word-spacing:-13.984000pt;}
.ws4{word-spacing:-13.573333pt;}
.ws9{word-spacing:-13.280000pt;}
.ws8{word-spacing:0.000000pt;}
._32{margin-left:-8.589653pt;}
._3{margin-left:-2.508800pt;}
._0{margin-left:-1.204053pt;}
._1{width:1.485653pt;}
._29{width:2.377813pt;}
._16{width:3.274240pt;}
._8{width:4.726613pt;}
._9{width:6.023680pt;}
._10{width:7.657813pt;}
._11{width:8.855893pt;}
._27{width:9.774080pt;}
._28{width:11.200000pt;}
._2a{width:12.530347pt;}
._2d{width:13.426347pt;}
._2c{width:14.578347pt;}
._14{width:15.813120pt;}
._15{width:16.801280pt;}
._1a{width:18.149120pt;}
._e{width:19.672747pt;}
._f{width:20.634453pt;}
._2{width:21.812053pt;}
._20{width:22.936747pt;}
._34{width:24.041813pt;}
._13{width:24.932693pt;}
._12{width:26.617173pt;}
._26{width:27.605333pt;}
._1f{width:29.054293pt;}
._a{width:30.464853pt;}
._5{width:31.799040pt;}
._4{width:33.317120pt;}
._31{width:35.334400pt;}
._2e{width:36.416000pt;}
._33{width:37.705387pt;}
._23{width:39.214080pt;}
._24{width:40.391680pt;}
._25{width:41.510400pt;}
._30{width:44.544000pt;}
._2f{width:45.810347pt;}
._22{width:47.162880pt;}
._21{width:48.190293pt;}
._6{width:51.847680pt;}
._7{width:53.224960pt;}
._19{width:55.007573pt;}
._18{width:56.558080pt;}
._b{width:57.608533pt;}
._1b{width:58.514773pt;}
._1c{width:59.437227pt;}
._d{width:60.489387pt;}
._c{width:62.151680pt;}
._1e{width:67.941547pt;}
._1d{width:69.419520pt;}
._17{width:80.976213pt;}
._2b{width:181.871787pt;}
.fs6{font-size:26.880000pt;}
.fs7{font-size:32.000000pt;}
.fs4{font-size:48.000000pt;}
.fs2{font-size:53.120000pt;}
.fs1{font-size:58.880000pt;}
.fs0{font-size:64.000000pt;}
.fs5{font-size:69.120000pt;}
.fs3{font-size:128.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:4.640000pt;}
.y5d{bottom:4.793333pt;}
.y2{bottom:4.800000pt;}
.y9{bottom:9.120000pt;}
.y8{bottom:28.800000pt;}
.y8f{bottom:51.232000pt;}
.y5c{bottom:62.118667pt;}
.y1{bottom:62.272000pt;}
.y5f{bottom:63.072000pt;}
.y6{bottom:81.792000pt;}
.ye4{bottom:108.192000pt;}
.y1a7{bottom:112.352000pt;}
.y8c{bottom:114.912000pt;}
.y15c{bottom:116.032000pt;}
.yb7{bottom:117.632000pt;}
.y189{bottom:121.792000pt;}
.y13d{bottom:122.112000pt;}
.ye3{bottom:126.752000pt;}
.y1a6{bottom:133.626667pt;}
.y15b{bottom:134.426667pt;}
.y8b{bottom:136.026667pt;}
.yb6{bottom:138.906667pt;}
.y10e{bottom:140.346667pt;}
.y188{bottom:142.906667pt;}
.y13c{bottom:143.226667pt;}
.ye2{bottom:145.146667pt;}
.y15a{bottom:152.666667pt;}
.y1a5{bottom:154.746667pt;}
.y8a{bottom:157.306667pt;}
.y10d{bottom:158.746667pt;}
.yb5{bottom:160.026667pt;}
.y187{bottom:164.026667pt;}
.y13b{bottom:164.346667pt;}
.y1c5{bottom:170.586667pt;}
.y159{bottom:172.346667pt;}
.y1a4{bottom:174.746667pt;}
.y10c{bottom:177.146667pt;}
.y89{bottom:177.306667pt;}
.yb4{bottom:181.146667pt;}
.ye1{bottom:181.626667pt;}
.y186{bottom:185.306667pt;}
.y13a{bottom:185.626667pt;}
.y158{bottom:190.586667pt;}
.y1c4{bottom:191.706667pt;}
.y1a3{bottom:193.466667pt;}
.ye0{bottom:195.386667pt;}
.y10b{bottom:195.546667pt;}
.y88{bottom:196.026667pt;}
.yb3{bottom:202.266667pt;}
.y139{bottom:205.626667pt;}
.y185{bottom:206.426667pt;}
.y157{bottom:209.626667pt;}
.y1c3{bottom:212.986667pt;}
.y10a{bottom:213.946667pt;}
.y1a2{bottom:214.746667pt;}
.ydf{bottom:216.506667pt;}
.y87{bottom:217.146667pt;}
.yb2{bottom:223.546667pt;}
.y138{bottom:224.346667pt;}
.y184{bottom:227.546667pt;}
.y109{bottom:232.346667pt;}
.y1c2{bottom:234.106667pt;}
.y1a1{bottom:235.866667pt;}
.yde{bottom:236.506667pt;}
.y86{bottom:238.426667pt;}
.yb1{bottom:243.586667pt;}
.y137{bottom:245.506667pt;}
.y183{bottom:248.706667pt;}
.y108{bottom:250.786667pt;}
.ydd{bottom:252.706667pt;}
.y1c1{bottom:255.266667pt;}
.y1a0{bottom:257.026667pt;}
.y85{bottom:259.586667pt;}
.yb0{bottom:262.306667pt;}
.y136{bottom:266.626667pt;}
.y182{bottom:268.866667pt;}
.y107{bottom:269.186667pt;}
.ydc{bottom:271.106667pt;}
.y1c0{bottom:275.266667pt;}
.y43{bottom:275.546667pt;}
.y19f{bottom:278.146667pt;}
.y84{bottom:280.706667pt;}
.yaf{bottom:283.426667pt;}
.y106{bottom:287.586667pt;}
.y135{bottom:287.906667pt;}
.ydb{bottom:289.506667pt;}
.y42{bottom:292.546667pt;}
.y1bf{bottom:293.986667pt;}
.y19e{bottom:299.426667pt;}
.y83{bottom:301.826667pt;}
.yae{bottom:304.706667pt;}
.y105{bottom:305.986667pt;}
.yda{bottom:307.906667pt;}
.y181{bottom:308.706667pt;}
.y134{bottom:309.026667pt;}
.y41{bottom:309.346667pt;}
.y1be{bottom:315.266667pt;}
.y19d{bottom:320.546667pt;}
.y82{bottom:323.106667pt;}
.y104{bottom:324.386667pt;}
.y5a{bottom:325.026667pt;}
.yad{bottom:325.826667pt;}
.y40{bottom:326.146667pt;}
.yd9{bottom:326.306667pt;}
.y180{bottom:329.826667pt;}
.y133{bottom:330.146667pt;}
.y1bd{bottom:336.386667pt;}
.y19c{bottom:341.666667pt;}
.y103{bottom:342.786667pt;}
.y3f{bottom:343.106667pt;}
.y81{bottom:344.226667pt;}
.yd8{bottom:344.706667pt;}
.y59{bottom:345.186667pt;}
.yac{bottom:346.946667pt;}
.y17f{bottom:351.106667pt;}
.y132{bottom:351.266667pt;}
.y1bc{bottom:357.506667pt;}
.y3e{bottom:359.906667pt;}
.y102{bottom:361.186667pt;}
.y58{bottom:361.986667pt;}
.y19b{bottom:362.786667pt;}
.yd7{bottom:363.106667pt;}
.y80{bottom:365.346667pt;}
.yab{bottom:368.066667pt;}
.y17e{bottom:371.106667pt;}
.y131{bottom:372.546667pt;}
.y3d{bottom:376.866667pt;}
.y1bb{bottom:378.626667pt;}
.y57{bottom:378.786667pt;}
.y101{bottom:379.586667pt;}
.yd6{bottom:381.506667pt;}
.y19a{bottom:383.906667pt;}
.y7f{bottom:385.346667pt;}
.yaa{bottom:388.066667pt;}
.y156{bottom:389.346667pt;}
.y17d{bottom:389.826667pt;}
.y130{bottom:392.546667pt;}
.y3c{bottom:393.666667pt;}
.y56{bottom:395.746667pt;}
.y100{bottom:397.986667pt;}
.yd5{bottom:399.906667pt;}
.y7e{bottom:404.226667pt;}
.y199{bottom:405.186667pt;}
.ya9{bottom:406.946667pt;}
.y12f{bottom:408.706667pt;}
.y3b{bottom:410.466667pt;}
.y17c{bottom:410.946667pt;}
.y55{bottom:412.546667pt;}
.yff{bottom:416.386667pt;}
.yd4{bottom:418.306667pt;}
.y1ba{bottom:420.546667pt;}
.y7d{bottom:425.346667pt;}
.y198{bottom:425.826667pt;}
.y12e{bottom:427.106667pt;}
.y3a{bottom:427.426667pt;}
.ya8{bottom:428.066667pt;}
.y54{bottom:429.506667pt;}
.y155{bottom:431.586667pt;}
.y17b{bottom:432.066667pt;}
.yfe{bottom:434.786667pt;}
.yd3{bottom:436.706667pt;}
.y1b9{bottom:440.066667pt;}
.y39{bottom:444.226667pt;}
.y12d{bottom:445.506667pt;}
.y197{bottom:445.666667pt;}
.y53{bottom:446.306667pt;}
.y7c{bottom:446.466667pt;}
.ya7{bottom:449.186667pt;}
.y154{bottom:452.706667pt;}
.yfd{bottom:453.186667pt;}
.y17a{bottom:453.346667pt;}
.yd2{bottom:455.106667pt;}
.y1b8{bottom:460.386667pt;}
.y38{bottom:461.186667pt;}
.y52{bottom:463.266667pt;}
.y12c{bottom:463.906667pt;}
.y196{bottom:466.786667pt;}
.y7b{bottom:467.586667pt;}
.ya6{bottom:470.306667pt;}
.yfc{bottom:471.586667pt;}
.yd1{bottom:473.506667pt;}
.y153{bottom:473.826667pt;}
.y179{bottom:474.466667pt;}
.y37{bottom:477.986667pt;}
.y1b7{bottom:479.266667pt;}
.y51{bottom:480.066667pt;}
.y12b{bottom:482.146667pt;}
.y29{bottom:485.346667pt;}
.y7a{bottom:487.586667pt;}
.y195{bottom:488.066667pt;}
.yfb{bottom:489.986667pt;}
.ya5{bottom:491.586667pt;}
.yd0{bottom:491.906667pt;}
.y36{bottom:494.786667pt;}
.y152{bottom:495.133333pt;}
.y178{bottom:495.613333pt;}
.y50{bottom:496.866667pt;}
.y1b6{bottom:500.413333pt;}
.y12a{bottom:501.853333pt;}
.y28{bottom:502.786667pt;}
.y79{bottom:505.373333pt;}
.yfa{bottom:508.413333pt;}
.y194{bottom:509.213333pt;}
.ycf{bottom:510.333333pt;}
.y35{bottom:511.746667pt;}
.ya4{bottom:512.733333pt;}
.y4f{bottom:513.826667pt;}
.y151{bottom:516.253333pt;}
.y177{bottom:516.733333pt;}
.y129{bottom:520.253333pt;}
.y1b5{bottom:521.533333pt;}
.y78{bottom:522.973333pt;}
.yf9{bottom:526.813333pt;}
.y34{bottom:528.546667pt;}
.yce{bottom:528.733333pt;}
.y193{bottom:530.333333pt;}
.y4e{bottom:530.653333pt;}
.ya3{bottom:533.853333pt;}
.y27{bottom:536.573333pt;}
.y150{bottom:537.373333pt;}
.y176{bottom:538.013333pt;}
.y128{bottom:538.493333pt;}
.y77{bottom:540.573333pt;}
.y1b4{bottom:542.173333pt;}
.yf8{bottom:545.213333pt;}
.y33{bottom:545.533333pt;}
.ycd{bottom:547.133333pt;}
.y4d{bottom:547.613333pt;}
.y26{bottom:549.053333pt;}
.y192{bottom:551.453333pt;}
.ya2{bottom:554.973333pt;}
.y14f{bottom:557.373333pt;}
.y127{bottom:557.533333pt;}
.y76{bottom:558.173333pt;}
.y175{bottom:559.133333pt;}
.y1b3{bottom:561.693333pt;}
.y32{bottom:562.333333pt;}
.y4c{bottom:564.413333pt;}
.ycc{bottom:565.533333pt;}
.y126{bottom:571.293333pt;}
.y191{bottom:572.733333pt;}
.y25{bottom:575.293333pt;}
.y75{bottom:575.773333pt;}
.ya1{bottom:576.253333pt;}
.y31{bottom:579.133333pt;}
.y174{bottom:580.253333pt;}
.y4b{bottom:581.213333pt;}
.yf7{bottom:581.373333pt;}
.y1b2{bottom:582.173333pt;}
.ycb{bottom:583.933333pt;}
.y24{bottom:588.413333pt;}
.y74{bottom:591.453333pt;}
.y125{bottom:592.573333pt;}
.y190{bottom:593.853333pt;}
.yf6{bottom:595.133333pt;}
.y30{bottom:596.093333pt;}
.ya0{bottom:597.373333pt;}
.y4a{bottom:598.173333pt;}
.y1b1{bottom:600.893333pt;}
.y173{bottom:601.373333pt;}
.y23{bottom:601.533333pt;}
.yca{bottom:602.333333pt;}
.y73{bottom:605.213333pt;}
.y124{bottom:612.573333pt;}
.y2f{bottom:612.893333pt;}
.y49{bottom:614.973333pt;}
.yf5{bottom:616.253333pt;}
.y22{bottom:617.533333pt;}
.y9f{bottom:618.493333pt;}
.y172{bottom:621.533333pt;}
.y1b0{bottom:622.013333pt;}
.y72{bottom:626.333333pt;}
.y123{bottom:628.573333pt;}
.y2e{bottom:629.853333pt;}
.y48{bottom:631.933333pt;}
.y18f{bottom:636.093333pt;}
.yf4{bottom:637.533333pt;}
.y171{bottom:637.693333pt;}
.y9e{bottom:638.493333pt;}
.y14e{bottom:639.613333pt;}
.y1af{bottom:643.133333pt;}
.y2d{bottom:646.653333pt;}
.y71{bottom:647.453333pt;}
.y122{bottom:648.253333pt;}
.y47{bottom:648.733333pt;}
.y21{bottom:649.053333pt;}
.yc9{bottom:652.413333pt;}
.y170{bottom:656.093333pt;}
.y9d{bottom:657.373333pt;}
.yf3{bottom:657.533333pt;}
.y14d{bottom:660.893333pt;}
.y20{bottom:661.053333pt;}
.y2c{bottom:663.453333pt;}
.y1ae{bottom:664.413333pt;}
.y46{bottom:665.533333pt;}
.y121{bottom:666.653333pt;}
.y70{bottom:668.733333pt;}
.yc8{bottom:673.533333pt;}
.y16f{bottom:674.493333pt;}
.yf2{bottom:676.253333pt;}
.y9c{bottom:678.493333pt;}
.y2b{bottom:680.413333pt;}
.y14c{bottom:682.013333pt;}
.y45{bottom:682.493333pt;}
.y120{bottom:684.893333pt;}
.y1ad{bottom:685.533333pt;}
.y1f{bottom:687.133333pt;}
.y6f{bottom:689.853333pt;}
.y16e{bottom:692.733333pt;}
.yc7{bottom:694.653333pt;}
.y2a{bottom:697.213333pt;}
.yf1{bottom:697.373333pt;}
.y44{bottom:699.293333pt;}
.y9b{bottom:699.613333pt;}
.y14b{bottom:703.133333pt;}
.y1e{bottom:703.773333pt;}
.y11f{bottom:704.413333pt;}
.y1ac{bottom:706.653333pt;}
.y6e{bottom:709.853333pt;}
.y16d{bottom:712.413333pt;}
.yc6{bottom:715.773333pt;}
.y1d{bottom:717.853333pt;}
.yf0{bottom:718.653333pt;}
.y18e{bottom:719.613333pt;}
.y9a{bottom:720.733333pt;}
.y11e{bottom:723.613333pt;}
.y14a{bottom:724.253333pt;}
.y1ab{bottom:726.653333pt;}
.y6d{bottom:728.573333pt;}
.y16c{bottom:730.813333pt;}
.y1c{bottom:735.613333pt;}
.yc5{bottom:737.053333pt;}
.y11d{bottom:737.373333pt;}
.y18d{bottom:738.333333pt;}
.yef{bottom:739.773333pt;}
.y99{bottom:742.013333pt;}
.y149{bottom:745.573333pt;}
.y16b{bottom:749.253333pt;}
.y6c{bottom:749.733333pt;}
.yc4{bottom:758.213333pt;}
.y11c{bottom:758.533333pt;}
.y18c{bottom:759.653333pt;}
.yee{bottom:760.933333pt;}
.y98{bottom:763.173333pt;}
.y148{bottom:766.693333pt;}
.y16a{bottom:767.493333pt;}
.y14{bottom:770.053333pt;}
.y6b{bottom:771.013333pt;}
.yc3{bottom:779.333333pt;}
.y11b{bottom:779.653333pt;}
.y18b{bottom:780.773333pt;}
.yed{bottom:782.053333pt;}
.y97{bottom:784.293333pt;}
.y169{bottom:787.173333pt;}
.y147{bottom:787.813333pt;}
.y6a{bottom:792.133333pt;}
.y13{bottom:793.733333pt;}
.yc2{bottom:800.453333pt;}
.y11a{bottom:800.773333pt;}
.y18a{bottom:801.893333pt;}
.yec{bottom:803.333333pt;}
.y96{bottom:804.293333pt;}
.y1b{bottom:804.613333pt;}
.y168{bottom:805.413333pt;}
.y146{bottom:808.933333pt;}
.y69{bottom:812.133333pt;}
.y12{bottom:819.013333pt;}
.yc1{bottom:821.733333pt;}
.y119{bottom:822.053333pt;}
.y95{bottom:823.013333pt;}
.yeb{bottom:824.453333pt;}
.y167{bottom:825.093333pt;}
.y145{bottom:830.213333pt;}
.y68{bottom:830.853333pt;}
.y1a{bottom:842.533333pt;}
.yc0{bottom:842.853333pt;}
.y118{bottom:843.173333pt;}
.y166{bottom:843.333333pt;}
.y94{bottom:844.293333pt;}
.y11{bottom:844.453333pt;}
.yea{bottom:845.573333pt;}
.y144{bottom:850.213333pt;}
.y67{bottom:852.133333pt;}
.y165{bottom:863.013333pt;}
.ybf{bottom:863.973333pt;}
.y117{bottom:864.293333pt;}
.y93{bottom:865.413333pt;}
.y19{bottom:866.213333pt;}
.ye9{bottom:866.693333pt;}
.y143{bottom:868.933333pt;}
.y66{bottom:873.253333pt;}
.y164{bottom:881.413333pt;}
.ybe{bottom:885.093333pt;}
.y116{bottom:885.413333pt;}
.y10{bottom:885.573333pt;}
.y92{bottom:886.533333pt;}
.ye8{bottom:886.693333pt;}
.y142{bottom:890.053333pt;}
.y65{bottom:894.373333pt;}
.yf{bottom:899.493333pt;}
.y163{bottom:899.653333pt;}
.ye7{bottom:902.853333pt;}
.ybd{bottom:905.093333pt;}
.y115{bottom:905.573333pt;}
.y7{bottom:906.053333pt;}
.y91{bottom:907.653333pt;}
.y18{bottom:908.453333pt;}
.y141{bottom:911.173333pt;}
.ye{bottom:912.933333pt;}
.y162{bottom:919.333333pt;}
.ybc{bottom:921.253333pt;}
.y114{bottom:921.733333pt;}
.yd{bottom:926.213333pt;}
.y90{bottom:928.933333pt;}
.y140{bottom:932.453333pt;}
.y64{bottom:932.773333pt;}
.y161{bottom:937.573333pt;}
.yc{bottom:939.493333pt;}
.ybb{bottom:939.653333pt;}
.y113{bottom:940.133333pt;}
.y63{bottom:950.053333pt;}
.yb{bottom:950.373333pt;}
.y17{bottom:950.533333pt;}
.y13f{bottom:953.573333pt;}
.y160{bottom:957.253333pt;}
.yba{bottom:958.053333pt;}
.ye6{bottom:958.213333pt;}
.y112{bottom:958.533333pt;}
.y62{bottom:971.173333pt;}
.y13e{bottom:973.573333pt;}
.y1aa{bottom:974.693333pt;}
.y15f{bottom:975.653333pt;}
.yb9{bottom:976.613333pt;}
.ye5{bottom:976.773333pt;}
.y111{bottom:976.933333pt;}
.y16{bottom:987.493333pt;}
.y61{bottom:992.293333pt;}
.y15e{bottom:994.053333pt;}
.yb8{bottom:995.013333pt;}
.y110{bottom:995.333333pt;}
.y1a9{bottom:995.813333pt;}
.y15{bottom:1009.280000pt;}
.y15d{bottom:1012.480000pt;}
.y60{bottom:1013.600000pt;}
.y10f{bottom:1013.760000pt;}
.y1a8{bottom:1016.000000pt;}
.ya{bottom:1026.880000pt;}
.y5b{bottom:1057.920000pt;}
.y8d{bottom:1059.360000pt;}
.y3{bottom:1059.520000pt;}
.y8e{bottom:1061.600000pt;}
.y5e{bottom:1064.640000pt;}
.y5{bottom:1070.240000pt;}
.h4{height:17.440000pt;}
.h12{height:18.713333pt;}
.h2{height:18.720000pt;}
.he{height:26.381250pt;}
.h10{height:31.406250pt;}
.h7{height:42.386667pt;}
.h6{height:44.648750pt;}
.hf{height:47.109375pt;}
.h8{height:52.134375pt;}
.h13{height:53.535000pt;}
.h14{height:57.375000pt;}
.h9{height:57.787500pt;}
.h5{height:59.340000pt;}
.h3{height:62.812500pt;}
.hb{height:64.500000pt;}
.h15{height:66.750000pt;}
.hd{height:67.837500pt;}
.ha{height:129.000000pt;}
.hc{height:142.580000pt;}
.h11{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w9{width:45.746667pt;}
.w2{width:45.786667pt;}
.w8{width:67.346667pt;}
.w4{width:145.145333pt;}
.w7{width:589.360000pt;}
.wa{width:608.720000pt;}
.w3{width:619.000000pt;}
.w5{width:793.760000pt;}
.w6{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x4{left:1.270667pt;}
.x2{left:2.720000pt;}
.x8{left:21.280000pt;}
.x5{left:28.480000pt;}
.x6{left:31.201333pt;}
.x12{left:93.161333pt;}
.x3{left:108.841333pt;}
.x13{left:113.472000pt;}
.x1a{left:122.912000pt;}
.x14{left:124.032000pt;}
.x7{left:171.226667pt;}
.x16{left:179.706667pt;}
.x18{left:184.026667pt;}
.x19{left:188.986667pt;}
.x17{left:198.586667pt;}
.xf{left:208.186667pt;}
.x15{left:226.906667pt;}
.xd{left:245.666667pt;}
.xb{left:247.106667pt;}
.x10{left:271.266667pt;}
.xa{left:318.146667pt;}
.xc{left:354.786667pt;}
.xe{left:393.346667pt;}
.x9{left:463.613333pt;}
.x11{left:466.493333pt;}
.x1{left:680.613333pt;}
}




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