
    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_a39a78577f0361bdbed1994d.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.104004;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_e24a2e95bb22a909f0b86220.woff2')format("woff");}.ff2{font-family:ff2;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:ff3;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff3{font-family:ff3;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:ff4;src:url('chunks/assets/font_607fa9b6b3afa4107a043d1f.woff2')format("woff");}.ff4{font-family:ff4;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: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_f05c47a890358d3cd2801c99.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_2ba52918e15188a5804d2f50.woff2')format("woff");}.ff7{font-family:ff7;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: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_a39a78577f0361bdbed1994d.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.104004;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_dcc3587ba86733be4d413963.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_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ffb{font-family:ffb;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:ffc;src:url('chunks/assets/font_84eea6be4a4a8f2db7057c29.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7f32fa5dd262d03b40692aba.woff2')format("woff");}.ffd{font-family:ffd;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:ffe;src:url('chunks/assets/font_3846fec9c2ddd289e0a51109.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_93404066a1d349c715f12b67.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.402354;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_a39a78577f0361bdbed1994d.woff2')format("woff");}.ff12{font-family:ff12;line-height:1.104004;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_2726ef989b2cde9a3cc44ec3.woff2')format("woff");}.ff13{font-family:ff13;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:ff14;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_93404066a1d349c715f12b67.woff2')format("woff");}.ff16{font-family:ff16;line-height:1.402354;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_20e1a765fc050d7a5254bc2c.woff2')format("woff");}.ff17{font-family:ff17;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:ff18;src:url('chunks/assets/font_c9381dfa3e67fd68e6c99ea8.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_09370ae749627606d198aa67.woff2')format("woff");}.ff1a{font-family:ff1a;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:ff1b;src:url('chunks/assets/font_a39a78577f0361bdbed1994d.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:1.104004;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_213cce985209b25c74d46c94.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff1e{font-family:ff1e;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:ff1f;src:url('chunks/assets/font_dcadaa2eeef7bf44e3ebf19f.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.402354;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_7504143d71234eef5c1272db.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_3c5351d64fcf26d53d7a85bb.woff2')format("woff");}.ff21{font-family:ff21;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:ff22;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff22{font-family:ff22;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:ff23;src:url('chunks/assets/font_36a97e59bf32a6bf5653bfdc.woff2')format("woff");}.ff23{font-family:ff23;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:ff24;src:url('chunks/assets/font_40a83c57bea4e2e3627913c9.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.402354;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_c6baff0e87b84df622308591.woff2')format("woff");}.ff25{font-family:ff25;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:ff26;src:url('chunks/assets/font_a39a78577f0361bdbed1994d.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.104004;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_864086dedd314552389b9f65.woff2')format("woff");}.ff27{font-family:ff27;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:ff28;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_52bc60905df6952c5789a66e.woff2')format("woff");}.ff29{font-family:ff29;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:ff2a;src:url('chunks/assets/font_1692c851abf53540316d391f.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_c72ec107902dd86ed65e923f.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_ac1641d817822e51b28137dd.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff2d{font-family:ff2d;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:ff2e;src:url('chunks/assets/font_50fd8dcb2fa3853dd385ec44.woff2')format("woff");}.ff2e{font-family:ff2e;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:ff2f;src:url('chunks/assets/font_a39a78577f0361bdbed1994d.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.104004;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_0aa301dfacab000bab784a95.woff2')format("woff");}.ff30{font-family:ff30;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:ff31;src:url('chunks/assets/font_1c4b0b55946e55d14b769fbe.woff2')format("woff");}.ff31{font-family:ff31;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:ff32;src:url('chunks/assets/font_83671326b4d46d10370ca3bb.woff2')format("woff");}.ff32{font-family:ff32;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;}
.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);}
.va{vertical-align:-80.640000px;}
.v4{vertical-align:-77.760000px;}
.v6{vertical-align:-76.320000px;}
.v7{vertical-align:-73.440000px;}
.v1{vertical-align:-72.000000px;}
.v5{vertical-align:-70.560000px;}
.v2{vertical-align:-67.680000px;}
.v8{vertical-align:-12.240000px;}
.v0{vertical-align:0.000000px;}
.v3{vertical-align:2.880000px;}
.v9{vertical-align:12.240000px;}
.lsa{letter-spacing:-0.936000px;}
.ls18{letter-spacing:-0.792000px;}
.ls1d{letter-spacing:-0.513600px;}
.ls1c{letter-spacing:-0.360000px;}
.ls11{letter-spacing:-0.288000px;}
.ls12{letter-spacing:-0.144000px;}
.ls8{letter-spacing:-0.109200px;}
.ls1a{letter-spacing:-0.053280px;}
.ls5{letter-spacing:0.000000px;}
.lsc{letter-spacing:0.072000px;}
.ls19{letter-spacing:0.106800px;}
.ls6{letter-spacing:0.109200px;}
.lse{letter-spacing:0.144000px;}
.ls9{letter-spacing:0.152400px;}
.ls13{letter-spacing:0.288000px;}
.ls7{letter-spacing:0.305400px;}
.ls1b{letter-spacing:0.360000px;}
.lsb{letter-spacing:0.513600px;}
.ls10{letter-spacing:0.720000px;}
.ls14{letter-spacing:5.760000px;}
.ls17{letter-spacing:7.380000px;}
.ls16{letter-spacing:7.500000px;}
.ls4{letter-spacing:14.220000px;}
.ls0{letter-spacing:20.340000px;}
.ls1{letter-spacing:26.280000px;}
.ls3{letter-spacing:38.520000px;}
.lsd{letter-spacing:48.384000px;}
.lsf{letter-spacing:48.960000px;}
.ls15{letter-spacing:240.636000px;}
.ls2{letter-spacing:450.180000px;}
.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;}
}
.wsd{word-spacing:-72.000000px;}
.ws7{word-spacing:-18.720000px;}
.wsa{word-spacing:-18.288000px;}
.ws6{word-spacing:-18.144000px;}
.wsb{word-spacing:-18.072000px;}
.ws0{word-spacing:-18.000000px;}
.ws9{word-spacing:-17.856000px;}
.ws8{word-spacing:-17.712000px;}
.wsc{word-spacing:-17.208000px;}
.ws4{word-spacing:-17.064000px;}
.ws2{word-spacing:-16.669200px;}
.ws1{word-spacing:-16.560000px;}
.ws3{word-spacing:-16.450800px;}
.ws10{word-spacing:-15.300000px;}
.wse{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.886720px;}
.ws11{word-spacing:-14.580000px;}
.ws12{word-spacing:-14.426400px;}
.ws5{word-spacing:0.000000px;}
._20{margin-left:-4.043520px;}
._3{margin-left:-2.712960px;}
._0{margin-left:-1.391040px;}
._1{width:1.054080px;}
._16{width:2.880000px;}
._1b{width:4.461120px;}
._6{width:5.921280px;}
._c{width:7.274880px;}
._b{width:8.375040px;}
._a{width:9.478080px;}
._d{width:10.866240px;}
._10{width:12.179520px;}
._22{width:13.775040px;}
._21{width:15.287040px;}
._1a{width:16.295040px;}
._11{width:19.609920px;}
._29{width:21.214080px;}
._1c{width:22.968000px;}
._f{width:24.336000px;}
._e{width:25.488000px;}
._13{width:27.146880px;}
._12{width:28.509120px;}
._17{width:30.024000px;}
._2{width:31.582080px;}
._4{width:33.024960px;}
._24{width:37.324800px;}
._23{width:38.327040px;}
._1d{width:39.476160px;}
._1e{width:40.489920px;}
._2c{width:42.387840px;}
._14{width:44.827200px;}
._15{width:46.437120px;}
._2b{width:48.996000px;}
._2d{width:52.966080px;}
._1f{width:54.385920px;}
._25{width:59.636160px;}
._7{width:71.856000px;}
._8{width:72.961920px;}
._9{width:73.964160px;}
._27{width:75.913920px;}
._28{width:77.256000px;}
._26{width:89.472960px;}
._2e{width:99.216000px;}
._18{width:101.180160px;}
._19{width:102.384000px;}
._5{width:103.919040px;}
._2a{width:863.928000px;}
.fc2{color:rgb(0,0,255);}
.fc1{color:rgb(0,0,0);}
.fc0{color:rgb(128,0,128);}
.fs6{font-size:33.120000px;}
.fs3{font-size:36.000000px;}
.fsa{font-size:38.880000px;}
.fs8{font-size:41.760000px;}
.fs9{font-size:54.000000px;}
.fs5{font-size:56.880000px;}
.fs2{font-size:59.760000px;}
.fs0{font-size:66.240000px;}
.fs1{font-size:72.000000px;}
.fs7{font-size:84.240000px;}
.fs4{font-size:131.760000px;}
.y0{bottom:0.000000px;}
.y64{bottom:5.212500px;}
.y2{bottom:5.220000px;}
.y8{bottom:10.260000px;}
.y7{bottom:32.400000px;}
.y63{bottom:52.243500px;}
.y3{bottom:52.380000px;}
.y67{bottom:57.636000px;}
.y5{bottom:92.376000px;}
.y13a{bottom:117.936000px;}
.yd6{bottom:120.456000px;}
.y103{bottom:131.436000px;}
.yb9{bottom:138.456000px;}
.y94{bottom:141.156000px;}
.y139{bottom:141.516000px;}
.y116{bottom:144.396000px;}
.y102{bottom:151.230000px;}
.y138{bottom:160.590000px;}
.yd5{bottom:161.850000px;}
.y93{bottom:162.210000px;}
.y115{bottom:168.150000px;}
.y101{bottom:171.030000px;}
.y160{bottom:175.170000px;}
.y137{bottom:181.290000px;}
.yd4{bottom:182.370000px;}
.y92{bottom:185.970000px;}
.y114{bottom:191.370000px;}
.y100{bottom:192.270000px;}
.y4a{bottom:194.790000px;}
.y19c{bottom:197.490000px;}
.y15f{bottom:198.930000px;}
.y136{bottom:201.990000px;}
.yd3{bottom:207.390000px;}
.y91{bottom:209.730000px;}
.y113{bottom:213.330000px;}
.yff{bottom:216.030000px;}
.y49{bottom:218.730000px;}
.y15e{bottom:222.690000px;}
.y135{bottom:225.570000px;}
.yd2{bottom:231.150000px;}
.yb8{bottom:232.230000px;}
.y90{bottom:233.490000px;}
.y112{bottom:237.270000px;}
.y19b{bottom:239.430000px;}
.yfe{bottom:239.790000px;}
.y62{bottom:240.690000px;}
.y48{bottom:242.490000px;}
.y134{bottom:244.650000px;}
.y15d{bottom:246.450000px;}
.yb7{bottom:253.470000px;}
.yd1{bottom:254.910000px;}
.y8f{bottom:257.430000px;}
.y111{bottom:260.130000px;}
.y19a{bottom:263.190000px;}
.yfd{bottom:263.550000px;}
.y61{bottom:264.450000px;}
.y133{bottom:265.350000px;}
.y47{bottom:266.250000px;}
.y15c{bottom:270.390000px;}
.yb6{bottom:277.275000px;}
.yd0{bottom:278.895000px;}
.y8e{bottom:281.235000px;}
.yfc{bottom:286.095000px;}
.y199{bottom:286.995000px;}
.y60{bottom:288.210000px;}
.y132{bottom:288.975000px;}
.y46{bottom:290.010000px;}
.y15b{bottom:294.195000px;}
.yb5{bottom:301.035000px;}
.ycf{bottom:301.395000px;}
.y8d{bottom:303.735000px;}
.y178{bottom:304.455000px;}
.y110{bottom:304.995000px;}
.yfb{bottom:307.335000px;}
.y5f{bottom:311.970000px;}
.y45{bottom:313.950000px;}
.y15a{bottom:316.695000px;}
.yce{bottom:322.455000px;}
.y131{bottom:322.815000px;}
.y8c{bottom:324.795000px;}
.y177{bottom:326.415000px;}
.y10f{bottom:328.755000px;}
.yfa{bottom:331.095000px;}
.y5e{bottom:335.775000px;}
.y44{bottom:337.755000px;}
.ycd{bottom:346.215000px;}
.y130{bottom:346.755000px;}
.y8b{bottom:348.735000px;}
.y176{bottom:349.455000px;}
.y10e{bottom:351.435000px;}
.y198{bottom:352.695000px;}
.yf9{bottom:354.855000px;}
.y5d{bottom:359.715000px;}
.y43{bottom:361.515000px;}
.y159{bottom:361.695000px;}
.y12f{bottom:369.255000px;}
.ycc{bottom:370.155000px;}
.y175{bottom:370.515000px;}
.y8a{bottom:372.495000px;}
.y197{bottom:376.455000px;}
.yf8{bottom:378.615000px;}
.y5c{bottom:383.475000px;}
.y30{bottom:384.375000px;}
.y42{bottom:385.275000px;}
.y158{bottom:385.455000px;}
.y12e{bottom:390.315000px;}
.ycb{bottom:393.915000px;}
.y174{bottom:394.275000px;}
.yb4{bottom:394.995000px;}
.y89{bottom:396.255000px;}
.y196{bottom:399.675000px;}
.yf7{bottom:402.555000px;}
.y2f{bottom:403.275000px;}
.y5b{bottom:407.235000px;}
.y41{bottom:409.215000px;}
.y12d{bottom:414.075000px;}
.yb3{bottom:416.055000px;}
.yca{bottom:417.675000px;}
.y173{bottom:418.035000px;}
.y88{bottom:420.015000px;}
.y195{bottom:421.635000px;}
.y2e{bottom:422.355000px;}
.yf6{bottom:426.315000px;}
.y5a{bottom:430.995000px;}
.y40{bottom:432.975000px;}
.y12c{bottom:438.015000px;}
.yb2{bottom:439.995000px;}
.y2d{bottom:441.255000px;}
.yc9{bottom:441.435000px;}
.y172{bottom:441.975000px;}
.y10d{bottom:442.695000px;}
.y87{bottom:443.955000px;}
.y194{bottom:444.675000px;}
.yf5{bottom:450.075000px;}
.y59{bottom:454.935000px;}
.y3f{bottom:456.735000px;}
.y12b{bottom:461.775000px;}
.yb1{bottom:463.755000px;}
.yc8{bottom:465.375000px;}
.y171{bottom:465.735000px;}
.y86{bottom:467.715000px;}
.y1ae{bottom:472.395000px;}
.yf4{bottom:473.835000px;}
.y2c{bottom:478.515000px;}
.y58{bottom:478.695000px;}
.y3e{bottom:480.495000px;}
.y157{bottom:480.675000px;}
.y12a{bottom:485.535000px;}
.yb0{bottom:487.515000px;}
.yc7{bottom:489.135000px;}
.y170{bottom:489.495000px;}
.y85{bottom:491.475000px;}
.y2b{bottom:492.375000px;}
.yf3{bottom:497.775000px;}
.y57{bottom:502.455000px;}
.y156{bottom:503.175000px;}
.y3d{bottom:504.255000px;}
.y129{bottom:509.295000px;}
.yaf{bottom:511.275000px;}
.y16f{bottom:511.995000px;}
.yc6{bottom:512.895000px;}
.y193{bottom:513.255000px;}
.y1ad{bottom:514.335000px;}
.y84{bottom:515.235000px;}
.y2a{bottom:521.535000px;}
.y155{bottom:522.975000px;}
.y56{bottom:526.215000px;}
.y3c{bottom:528.195000px;}
.y128{bottom:533.055000px;}
.yae{bottom:535.215000px;}
.yc5{bottom:536.115000px;}
.y29{bottom:536.295000px;}
.y192{bottom:537.195000px;}
.y83{bottom:537.915000px;}
.y1ac{bottom:538.095000px;}
.y154{bottom:542.775000px;}
.yf2{bottom:545.295000px;}
.y55{bottom:550.155000px;}
.y3b{bottom:551.955000px;}
.y28{bottom:554.295000px;}
.y127{bottom:557.025000px;}
.y10c{bottom:557.745000px;}
.yc4{bottom:558.105000px;}
.y82{bottom:559.005000px;}
.y191{bottom:560.985000px;}
.y1ab{bottom:561.885000px;}
.y153{bottom:562.785000px;}
.yf1{bottom:569.085000px;}
.y54{bottom:573.915000px;}
.y3a{bottom:575.715000px;}
.y27{bottom:576.075000px;}
.y10b{bottom:578.805000px;}
.y126{bottom:579.525000px;}
.y16e{bottom:580.785000px;}
.yc3{bottom:581.145000px;}
.yad{bottom:581.505000px;}
.y152{bottom:582.585000px;}
.y81{bottom:582.765000px;}
.y190{bottom:584.745000px;}
.yf0{bottom:593.025000px;}
.y53{bottom:597.705000px;}
.yc2{bottom:597.885000px;}
.y26{bottom:598.065000px;}
.y39{bottom:599.505000px;}
.y125{bottom:600.585000px;}
.y151{bottom:602.385000px;}
.yac{bottom:602.565000px;}
.y1aa{bottom:603.645000px;}
.y16d{bottom:604.545000px;}
.y80{bottom:606.525000px;}
.y18f{bottom:608.505000px;}
.yef{bottom:615.525000px;}
.y25{bottom:619.845000px;}
.y52{bottom:621.465000px;}
.y150{bottom:622.185000px;}
.y38{bottom:623.445000px;}
.y124{bottom:624.345000px;}
.yab{bottom:626.325000px;}
.y1a9{bottom:627.585000px;}
.y16c{bottom:628.305000px;}
.y7f{bottom:630.285000px;}
.y18e{bottom:632.265000px;}
.yee{bottom:636.585000px;}
.y24{bottom:641.625000px;}
.y14f{bottom:641.985000px;}
.y51{bottom:645.405000px;}
.y37{bottom:647.205000px;}
.y123{bottom:648.285000px;}
.y10a{bottom:649.005000px;}
.yaa{bottom:650.265000px;}
.y1a8{bottom:651.345000px;}
.y16b{bottom:652.245000px;}
.y7e{bottom:654.225000px;}
.y18d{bottom:656.205000px;}
.y14e{bottom:659.445000px;}
.yed{bottom:660.345000px;}
.y50{bottom:669.165000px;}
.y109{bottom:670.065000px;}
.y36{bottom:670.965000px;}
.y122{bottom:672.045000px;}
.ya9{bottom:672.765000px;}
.y14d{bottom:675.105000px;}
.y16a{bottom:676.005000px;}
.y7d{bottom:677.985000px;}
.y18c{bottom:678.705000px;}
.y23{bottom:681.405000px;}
.yec{bottom:684.105000px;}
.y4f{bottom:692.925000px;}
.ya8{bottom:693.825000px;}
.y35{bottom:694.725000px;}
.y22{bottom:695.265000px;}
.y121{bottom:695.805000px;}
.y169{bottom:698.505000px;}
.y14c{bottom:698.865000px;}
.y18b{bottom:699.765000px;}
.y7c{bottom:700.485000px;}
.yeb{bottom:706.785000px;}
.y4e{bottom:716.685000px;}
.y1a7{bottom:716.865000px;}
.ya7{bottom:717.585000px;}
.y34{bottom:718.665000px;}
.y120{bottom:719.565000px;}
.y7b{bottom:721.545000px;}
.y14b{bottom:722.625000px;}
.y18a{bottom:723.525000px;}
.y21{bottom:724.965000px;}
.yea{bottom:727.845000px;}
.y20{bottom:739.905000px;}
.y108{bottom:740.265000px;}
.y4d{bottom:740.625000px;}
.ya6{bottom:741.525000px;}
.y33{bottom:742.425000px;}
.y11f{bottom:743.505000px;}
.y7a{bottom:745.485000px;}
.y14a{bottom:746.385000px;}
.y189{bottom:747.465000px;}
.ye9{bottom:751.605000px;}
.y1f{bottom:754.125000px;}
.y107{bottom:761.325000px;}
.y32{bottom:763.125000px;}
.y4c{bottom:764.385000px;}
.ya5{bottom:765.285000px;}
.y11e{bottom:766.005000px;}
.y168{bottom:767.265000px;}
.y79{bottom:769.245000px;}
.y149{bottom:770.325000px;}
.y188{bottom:771.225000px;}
.ye8{bottom:774.105000px;}
.y1a6{bottom:782.565000px;}
.y106{bottom:785.085000px;}
.y31{bottom:785.625000px;}
.y1e{bottom:786.165000px;}
.y11d{bottom:787.065000px;}
.y4b{bottom:787.785000px;}
.ya4{bottom:789.045000px;}
.y167{bottom:791.025000px;}
.y78{bottom:793.005000px;}
.y148{bottom:794.085000px;}
.y187{bottom:794.985000px;}
.ye7{bottom:795.345000px;}
.y1a5{bottom:806.325000px;}
.y1d{bottom:808.125000px;}
.y105{bottom:808.845000px;}
.y11c{bottom:810.825000px;}
.ya3{bottom:812.805000px;}
.y166{bottom:814.785000px;}
.y77{bottom:816.765000px;}
.y147{bottom:817.845000px;}
.y186{bottom:818.745000px;}
.ye6{bottom:819.105000px;}
.y1c{bottom:826.665000px;}
.y1a4{bottom:830.085000px;}
.y104{bottom:832.605000px;}
.y11b{bottom:834.765000px;}
.ya2{bottom:835.305000px;}
.y165{bottom:838.770000px;}
.y76{bottom:839.490000px;}
.y146{bottom:841.110000px;}
.y185{bottom:842.730000px;}
.ye5{bottom:842.910000px;}
.y1b{bottom:845.025000px;}
.ya1{bottom:856.590000px;}
.y11a{bottom:858.570000px;}
.y75{bottom:859.290000px;}
.y164{bottom:862.530000px;}
.y145{bottom:863.250000px;}
.y1a{bottom:863.610000px;}
.y184{bottom:866.490000px;}
.ye4{bottom:866.670000px;}
.y1a3{bottom:871.890000px;}
.y74{bottom:879.090000px;}
.ya0{bottom:880.350000px;}
.y19{bottom:881.970000px;}
.y119{bottom:882.330000px;}
.y144{bottom:886.110000px;}
.y163{bottom:886.290000px;}
.y183{bottom:890.250000px;}
.ye3{bottom:890.610000px;}
.y1a2{bottom:895.830000px;}
.y73{bottom:898.890000px;}
.y9f{bottom:904.110000px;}
.y118{bottom:906.090000px;}
.y143{bottom:907.170000px;}
.y162{bottom:910.050000px;}
.ye2{bottom:911.490000px;}
.y182{bottom:914.010000px;}
.y11{bottom:916.710000px;}
.y72{bottom:918.690000px;}
.y1a1{bottom:919.590000px;}
.y9e{bottom:927.870000px;}
.y10{bottom:928.230000px;}
.yc1{bottom:929.850000px;}
.y142{bottom:930.930000px;}
.ye1{bottom:932.190000px;}
.y161{bottom:932.550000px;}
.y71{bottom:936.150000px;}
.y181{bottom:937.950000px;}
.y18{bottom:948.210000px;}
.y70{bottom:951.810000px;}
.ye0{bottom:952.710000px;}
.yc0{bottom:953.790000px;}
.yf{bottom:957.030000px;}
.y1a0{bottom:961.350000px;}
.y180{bottom:961.710000px;}
.ydf{bottom:973.410000px;}
.y141{bottom:974.850000px;}
.y6f{bottom:975.570000px;}
.ybf{bottom:977.550000px;}
.y17{bottom:978.090000px;}
.y17f{bottom:984.210000px;}
.y19f{bottom:985.110000px;}
.y140{bottom:992.850000px;}
.yde{bottom:994.110000px;}
.y9d{bottom:998.790000px;}
.y6e{bottom:999.330000px;}
.ybe{bottom:1001.310000px;}
.y16{bottom:1002.570000px;}
.ye{bottom:1003.290000px;}
.y17e{bottom:1004.010000px;}
.y19e{bottom:1009.050000px;}
.y13f{bottom:1013.550000px;}
.ydd{bottom:1014.810000px;}
.yd{bottom:1018.950000px;}
.y9c{bottom:1020.750000px;}
.y6d{bottom:1023.090000px;}
.y6{bottom:1023.630000px;}
.y17d{bottom:1023.810000px;}
.ybd{bottom:1025.070000px;}
.y13e{bottom:1034.250000px;}
.yc{bottom:1034.430000px;}
.ydc{bottom:1035.510000px;}
.y17c{bottom:1043.790000px;}
.y9b{bottom:1045.050000px;}
.y15{bottom:1046.130000px;}
.y6c{bottom:1047.030000px;}
.ybc{bottom:1049.010000px;}
.yb{bottom:1050.090000px;}
.y19d{bottom:1050.810000px;}
.ydb{bottom:1056.210000px;}
.y13d{bottom:1057.830000px;}
.y17b{bottom:1063.590000px;}
.ya{bottom:1065.570000px;}
.y9a{bottom:1068.810000px;}
.y6b{bottom:1070.790000px;}
.y117{bottom:1071.510000px;}
.ybb{bottom:1072.770000px;}
.y13c{bottom:1076.910000px;}
.y9{bottom:1077.810000px;}
.yda{bottom:1078.350000px;}
.y17a{bottom:1083.390000px;}
.y14{bottom:1089.870000px;}
.y99{bottom:1092.570000px;}
.y6a{bottom:1094.550000px;}
.yba{bottom:1095.270000px;}
.yd9{bottom:1099.050000px;}
.y13b{bottom:1100.670000px;}
.y179{bottom:1100.850000px;}
.y98{bottom:1116.330000px;}
.y69{bottom:1117.770000px;}
.yd8{bottom:1119.750000px;}
.y13{bottom:1126.770000px;}
.y68{bottom:1139.940000px;}
.y97{bottom:1140.300000px;}
.yd7{bottom:1140.480000px;}
.y12{bottom:1146.780000px;}
.y65{bottom:1188.540000px;}
.y95{bottom:1190.160000px;}
.y1{bottom:1190.340000px;}
.y66{bottom:1194.300000px;}
.y96{bottom:1197.720000px;}
.y4{bottom:1207.440000px;}
.h2{height:19.620000px;}
.h14{height:20.872500px;}
.h4{height:20.916000px;}
.hd{height:32.505469px;}
.ha{height:35.332031px;}
.h11{height:38.158594px;}
.hf{height:40.985156px;}
.h7{height:47.685000px;}
.h6{height:50.229844px;}
.h10{height:52.998047px;}
.hc{height:55.824609px;}
.h9{height:58.651172px;}
.h3{height:65.010937px;}
.h8{height:66.757500px;}
.h5{height:70.664062px;}
.h12{height:72.562500px;}
.h15{height:74.004654px;}
.he{height:82.676953px;}
.h16{height:82.904063px;}
.h17{height:83.024062px;}
.hb{height:132.789375px;}
.h13{height:1262.880000px;}
.h1{height:1263.000000px;}
.h0{height:1263.060000px;}
.w7{width:48.225000px;}
.w9{width:62.805000px;}
.w3{width:62.850000px;}
.w4{width:163.108500px;}
.w8{width:654.390000px;}
.w2{width:659.250000px;}
.w5{width:892.980000px;}
.w6{width:893.250000px;}
.w1{width:894.000000px;}
.w0{width:894.060000px;}
.x0{left:0.000000px;}
.x2{left:1.429500px;}
.x4{left:3.060000px;}
.x5{left:18.000000px;}
.x8{left:26.820000px;}
.x6{left:32.761500px;}
.x1{left:104.806500px;}
.x10{left:108.046500px;}
.x11{left:127.656000px;}
.x12{left:138.276000px;}
.x18{left:159.690000px;}
.x13{left:191.550000px;}
.x7{left:193.710000px;}
.x15{left:202.170000px;}
.xe{left:217.290000px;}
.x17{left:228.270000px;}
.x19{left:244.650000px;}
.x14{left:255.270000px;}
.xa{left:261.570000px;}
.xb{left:264.090000px;}
.xd{left:285.015000px;}
.xc{left:314.895000px;}
.xf{left:507.885000px;}
.x9{left:518.685000px;}
.x16{left:737.250000px;}
.x3{left:783.510000px;}
@media print{
.va{vertical-align:-71.680000pt;}
.v4{vertical-align:-69.120000pt;}
.v6{vertical-align:-67.840000pt;}
.v7{vertical-align:-65.280000pt;}
.v1{vertical-align:-64.000000pt;}
.v5{vertical-align:-62.720000pt;}
.v2{vertical-align:-60.160000pt;}
.v8{vertical-align:-10.880000pt;}
.v0{vertical-align:0.000000pt;}
.v3{vertical-align:2.560000pt;}
.v9{vertical-align:10.880000pt;}
.lsa{letter-spacing:-0.832000pt;}
.ls18{letter-spacing:-0.704000pt;}
.ls1d{letter-spacing:-0.456533pt;}
.ls1c{letter-spacing:-0.320000pt;}
.ls11{letter-spacing:-0.256000pt;}
.ls12{letter-spacing:-0.128000pt;}
.ls8{letter-spacing:-0.097067pt;}
.ls1a{letter-spacing:-0.047360pt;}
.ls5{letter-spacing:0.000000pt;}
.lsc{letter-spacing:0.064000pt;}
.ls19{letter-spacing:0.094933pt;}
.ls6{letter-spacing:0.097067pt;}
.lse{letter-spacing:0.128000pt;}
.ls9{letter-spacing:0.135467pt;}
.ls13{letter-spacing:0.256000pt;}
.ls7{letter-spacing:0.271467pt;}
.ls1b{letter-spacing:0.320000pt;}
.lsb{letter-spacing:0.456533pt;}
.ls10{letter-spacing:0.640000pt;}
.ls14{letter-spacing:5.120000pt;}
.ls17{letter-spacing:6.560000pt;}
.ls16{letter-spacing:6.666667pt;}
.ls4{letter-spacing:12.640000pt;}
.ls0{letter-spacing:18.080000pt;}
.ls1{letter-spacing:23.360000pt;}
.ls3{letter-spacing:34.240000pt;}
.lsd{letter-spacing:43.008000pt;}
.lsf{letter-spacing:43.520000pt;}
.ls15{letter-spacing:213.898667pt;}
.ls2{letter-spacing:400.160000pt;}
.wsd{word-spacing:-64.000000pt;}
.ws7{word-spacing:-16.640000pt;}
.wsa{word-spacing:-16.256000pt;}
.ws6{word-spacing:-16.128000pt;}
.wsb{word-spacing:-16.064000pt;}
.ws0{word-spacing:-16.000000pt;}
.ws9{word-spacing:-15.872000pt;}
.ws8{word-spacing:-15.744000pt;}
.wsc{word-spacing:-15.296000pt;}
.ws4{word-spacing:-15.168000pt;}
.ws2{word-spacing:-14.817067pt;}
.ws1{word-spacing:-14.720000pt;}
.ws3{word-spacing:-14.622933pt;}
.ws10{word-spacing:-13.600000pt;}
.wse{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.232640pt;}
.ws11{word-spacing:-12.960000pt;}
.ws12{word-spacing:-12.823467pt;}
.ws5{word-spacing:0.000000pt;}
._20{margin-left:-3.594240pt;}
._3{margin-left:-2.411520pt;}
._0{margin-left:-1.236480pt;}
._1{width:0.936960pt;}
._16{width:2.560000pt;}
._1b{width:3.965440pt;}
._6{width:5.263360pt;}
._c{width:6.466560pt;}
._b{width:7.444480pt;}
._a{width:8.424960pt;}
._d{width:9.658880pt;}
._10{width:10.826240pt;}
._22{width:12.244480pt;}
._21{width:13.588480pt;}
._1a{width:14.484480pt;}
._11{width:17.431040pt;}
._29{width:18.856960pt;}
._1c{width:20.416000pt;}
._f{width:21.632000pt;}
._e{width:22.656000pt;}
._13{width:24.130560pt;}
._12{width:25.341440pt;}
._17{width:26.688000pt;}
._2{width:28.072960pt;}
._4{width:29.355520pt;}
._24{width:33.177600pt;}
._23{width:34.068480pt;}
._1d{width:35.089920pt;}
._1e{width:35.991040pt;}
._2c{width:37.678080pt;}
._14{width:39.846400pt;}
._15{width:41.277440pt;}
._2b{width:43.552000pt;}
._2d{width:47.080960pt;}
._1f{width:48.343040pt;}
._25{width:53.009920pt;}
._7{width:63.872000pt;}
._8{width:64.855040pt;}
._9{width:65.745920pt;}
._27{width:67.479040pt;}
._28{width:68.672000pt;}
._26{width:79.531520pt;}
._2e{width:88.192000pt;}
._18{width:89.937920pt;}
._19{width:91.008000pt;}
._5{width:92.372480pt;}
._2a{width:767.936000pt;}
.fs6{font-size:29.440000pt;}
.fs3{font-size:32.000000pt;}
.fsa{font-size:34.560000pt;}
.fs8{font-size:37.120000pt;}
.fs9{font-size:48.000000pt;}
.fs5{font-size:50.560000pt;}
.fs2{font-size:53.120000pt;}
.fs0{font-size:58.880000pt;}
.fs1{font-size:64.000000pt;}
.fs7{font-size:74.880000pt;}
.fs4{font-size:117.120000pt;}
.y0{bottom:0.000000pt;}
.y64{bottom:4.633333pt;}
.y2{bottom:4.640000pt;}
.y8{bottom:9.120000pt;}
.y7{bottom:28.800000pt;}
.y63{bottom:46.438667pt;}
.y3{bottom:46.560000pt;}
.y67{bottom:51.232000pt;}
.y5{bottom:82.112000pt;}
.y13a{bottom:104.832000pt;}
.yd6{bottom:107.072000pt;}
.y103{bottom:116.832000pt;}
.yb9{bottom:123.072000pt;}
.y94{bottom:125.472000pt;}
.y139{bottom:125.792000pt;}
.y116{bottom:128.352000pt;}
.y102{bottom:134.426667pt;}
.y138{bottom:142.746667pt;}
.yd5{bottom:143.866667pt;}
.y93{bottom:144.186667pt;}
.y115{bottom:149.466667pt;}
.y101{bottom:152.026667pt;}
.y160{bottom:155.706667pt;}
.y137{bottom:161.146667pt;}
.yd4{bottom:162.106667pt;}
.y92{bottom:165.306667pt;}
.y114{bottom:170.106667pt;}
.y100{bottom:170.906667pt;}
.y4a{bottom:173.146667pt;}
.y19c{bottom:175.546667pt;}
.y15f{bottom:176.826667pt;}
.y136{bottom:179.546667pt;}
.yd3{bottom:184.346667pt;}
.y91{bottom:186.426667pt;}
.y113{bottom:189.626667pt;}
.yff{bottom:192.026667pt;}
.y49{bottom:194.426667pt;}
.y15e{bottom:197.946667pt;}
.y135{bottom:200.506667pt;}
.yd2{bottom:205.466667pt;}
.yb8{bottom:206.426667pt;}
.y90{bottom:207.546667pt;}
.y112{bottom:210.906667pt;}
.y19b{bottom:212.826667pt;}
.yfe{bottom:213.146667pt;}
.y62{bottom:213.946667pt;}
.y48{bottom:215.546667pt;}
.y134{bottom:217.466667pt;}
.y15d{bottom:219.066667pt;}
.yb7{bottom:225.306667pt;}
.yd1{bottom:226.586667pt;}
.y8f{bottom:228.826667pt;}
.y111{bottom:231.226667pt;}
.y19a{bottom:233.946667pt;}
.yfd{bottom:234.266667pt;}
.y61{bottom:235.066667pt;}
.y133{bottom:235.866667pt;}
.y47{bottom:236.666667pt;}
.y15c{bottom:240.346667pt;}
.yb6{bottom:246.466667pt;}
.yd0{bottom:247.906667pt;}
.y8e{bottom:249.986667pt;}
.yfc{bottom:254.306667pt;}
.y199{bottom:255.106667pt;}
.y60{bottom:256.186667pt;}
.y132{bottom:256.866667pt;}
.y46{bottom:257.786667pt;}
.y15b{bottom:261.506667pt;}
.yb5{bottom:267.586667pt;}
.ycf{bottom:267.906667pt;}
.y8d{bottom:269.986667pt;}
.y178{bottom:270.626667pt;}
.y110{bottom:271.106667pt;}
.yfb{bottom:273.186667pt;}
.y5f{bottom:277.306667pt;}
.y45{bottom:279.066667pt;}
.y15a{bottom:281.506667pt;}
.yce{bottom:286.626667pt;}
.y131{bottom:286.946667pt;}
.y8c{bottom:288.706667pt;}
.y177{bottom:290.146667pt;}
.y10f{bottom:292.226667pt;}
.yfa{bottom:294.306667pt;}
.y5e{bottom:298.466667pt;}
.y44{bottom:300.226667pt;}
.ycd{bottom:307.746667pt;}
.y130{bottom:308.226667pt;}
.y8b{bottom:309.986667pt;}
.y176{bottom:310.626667pt;}
.y10e{bottom:312.386667pt;}
.y198{bottom:313.506667pt;}
.yf9{bottom:315.426667pt;}
.y5d{bottom:319.746667pt;}
.y43{bottom:321.346667pt;}
.y159{bottom:321.506667pt;}
.y12f{bottom:328.226667pt;}
.ycc{bottom:329.026667pt;}
.y175{bottom:329.346667pt;}
.y8a{bottom:331.106667pt;}
.y197{bottom:334.626667pt;}
.yf8{bottom:336.546667pt;}
.y5c{bottom:340.866667pt;}
.y30{bottom:341.666667pt;}
.y42{bottom:342.466667pt;}
.y158{bottom:342.626667pt;}
.y12e{bottom:346.946667pt;}
.ycb{bottom:350.146667pt;}
.y174{bottom:350.466667pt;}
.yb4{bottom:351.106667pt;}
.y89{bottom:352.226667pt;}
.y196{bottom:355.266667pt;}
.yf7{bottom:357.826667pt;}
.y2f{bottom:358.466667pt;}
.y5b{bottom:361.986667pt;}
.y41{bottom:363.746667pt;}
.y12d{bottom:368.066667pt;}
.yb3{bottom:369.826667pt;}
.yca{bottom:371.266667pt;}
.y173{bottom:371.586667pt;}
.y88{bottom:373.346667pt;}
.y195{bottom:374.786667pt;}
.y2e{bottom:375.426667pt;}
.yf6{bottom:378.946667pt;}
.y5a{bottom:383.106667pt;}
.y40{bottom:384.866667pt;}
.y12c{bottom:389.346667pt;}
.yb2{bottom:391.106667pt;}
.y2d{bottom:392.226667pt;}
.yc9{bottom:392.386667pt;}
.y172{bottom:392.866667pt;}
.y10d{bottom:393.506667pt;}
.y87{bottom:394.626667pt;}
.y194{bottom:395.266667pt;}
.yf5{bottom:400.066667pt;}
.y59{bottom:404.386667pt;}
.y3f{bottom:405.986667pt;}
.y12b{bottom:410.466667pt;}
.yb1{bottom:412.226667pt;}
.yc8{bottom:413.666667pt;}
.y171{bottom:413.986667pt;}
.y86{bottom:415.746667pt;}
.y1ae{bottom:419.906667pt;}
.yf4{bottom:421.186667pt;}
.y2c{bottom:425.346667pt;}
.y58{bottom:425.506667pt;}
.y3e{bottom:427.106667pt;}
.y157{bottom:427.266667pt;}
.y12a{bottom:431.586667pt;}
.yb0{bottom:433.346667pt;}
.yc7{bottom:434.786667pt;}
.y170{bottom:435.106667pt;}
.y85{bottom:436.866667pt;}
.y2b{bottom:437.666667pt;}
.yf3{bottom:442.466667pt;}
.y57{bottom:446.626667pt;}
.y156{bottom:447.266667pt;}
.y3d{bottom:448.226667pt;}
.y129{bottom:452.706667pt;}
.yaf{bottom:454.466667pt;}
.y16f{bottom:455.106667pt;}
.yc6{bottom:455.906667pt;}
.y193{bottom:456.226667pt;}
.y1ad{bottom:457.186667pt;}
.y84{bottom:457.986667pt;}
.y2a{bottom:463.586667pt;}
.y155{bottom:464.866667pt;}
.y56{bottom:467.746667pt;}
.y3c{bottom:469.506667pt;}
.y128{bottom:473.826667pt;}
.yae{bottom:475.746667pt;}
.yc5{bottom:476.546667pt;}
.y29{bottom:476.706667pt;}
.y192{bottom:477.506667pt;}
.y83{bottom:478.146667pt;}
.y1ac{bottom:478.306667pt;}
.y154{bottom:482.466667pt;}
.yf2{bottom:484.706667pt;}
.y55{bottom:489.026667pt;}
.y3b{bottom:490.626667pt;}
.y28{bottom:492.706667pt;}
.y127{bottom:495.133333pt;}
.y10c{bottom:495.773333pt;}
.yc4{bottom:496.093333pt;}
.y82{bottom:496.893333pt;}
.y191{bottom:498.653333pt;}
.y1ab{bottom:499.453333pt;}
.y153{bottom:500.253333pt;}
.yf1{bottom:505.853333pt;}
.y54{bottom:510.146667pt;}
.y3a{bottom:511.746667pt;}
.y27{bottom:512.066667pt;}
.y10b{bottom:514.493333pt;}
.y126{bottom:515.133333pt;}
.y16e{bottom:516.253333pt;}
.yc3{bottom:516.573333pt;}
.yad{bottom:516.893333pt;}
.y152{bottom:517.853333pt;}
.y81{bottom:518.013333pt;}
.y190{bottom:519.773333pt;}
.yf0{bottom:527.133333pt;}
.y53{bottom:531.293333pt;}
.yc2{bottom:531.453333pt;}
.y26{bottom:531.613333pt;}
.y39{bottom:532.893333pt;}
.y125{bottom:533.853333pt;}
.y151{bottom:535.453333pt;}
.yac{bottom:535.613333pt;}
.y1aa{bottom:536.573333pt;}
.y16d{bottom:537.373333pt;}
.y80{bottom:539.133333pt;}
.y18f{bottom:540.893333pt;}
.yef{bottom:547.133333pt;}
.y25{bottom:550.973333pt;}
.y52{bottom:552.413333pt;}
.y150{bottom:553.053333pt;}
.y38{bottom:554.173333pt;}
.y124{bottom:554.973333pt;}
.yab{bottom:556.733333pt;}
.y1a9{bottom:557.853333pt;}
.y16c{bottom:558.493333pt;}
.y7f{bottom:560.253333pt;}
.y18e{bottom:562.013333pt;}
.yee{bottom:565.853333pt;}
.y24{bottom:570.333333pt;}
.y14f{bottom:570.653333pt;}
.y51{bottom:573.693333pt;}
.y37{bottom:575.293333pt;}
.y123{bottom:576.253333pt;}
.y10a{bottom:576.893333pt;}
.yaa{bottom:578.013333pt;}
.y1a8{bottom:578.973333pt;}
.y16b{bottom:579.773333pt;}
.y7e{bottom:581.533333pt;}
.y18d{bottom:583.293333pt;}
.y14e{bottom:586.173333pt;}
.yed{bottom:586.973333pt;}
.y50{bottom:594.813333pt;}
.y109{bottom:595.613333pt;}
.y36{bottom:596.413333pt;}
.y122{bottom:597.373333pt;}
.ya9{bottom:598.013333pt;}
.y14d{bottom:600.093333pt;}
.y16a{bottom:600.893333pt;}
.y7d{bottom:602.653333pt;}
.y18c{bottom:603.293333pt;}
.y23{bottom:605.693333pt;}
.yec{bottom:608.093333pt;}
.y4f{bottom:615.933333pt;}
.ya8{bottom:616.733333pt;}
.y35{bottom:617.533333pt;}
.y22{bottom:618.013333pt;}
.y121{bottom:618.493333pt;}
.y169{bottom:620.893333pt;}
.y14c{bottom:621.213333pt;}
.y18b{bottom:622.013333pt;}
.y7c{bottom:622.653333pt;}
.yeb{bottom:628.253333pt;}
.y4e{bottom:637.053333pt;}
.y1a7{bottom:637.213333pt;}
.ya7{bottom:637.853333pt;}
.y34{bottom:638.813333pt;}
.y120{bottom:639.613333pt;}
.y7b{bottom:641.373333pt;}
.y14b{bottom:642.333333pt;}
.y18a{bottom:643.133333pt;}
.y21{bottom:644.413333pt;}
.yea{bottom:646.973333pt;}
.y20{bottom:657.693333pt;}
.y108{bottom:658.013333pt;}
.y4d{bottom:658.333333pt;}
.ya6{bottom:659.133333pt;}
.y33{bottom:659.933333pt;}
.y11f{bottom:660.893333pt;}
.y7a{bottom:662.653333pt;}
.y14a{bottom:663.453333pt;}
.y189{bottom:664.413333pt;}
.ye9{bottom:668.093333pt;}
.y1f{bottom:670.333333pt;}
.y107{bottom:676.733333pt;}
.y32{bottom:678.333333pt;}
.y4c{bottom:679.453333pt;}
.ya5{bottom:680.253333pt;}
.y11e{bottom:680.893333pt;}
.y168{bottom:682.013333pt;}
.y79{bottom:683.773333pt;}
.y149{bottom:684.733333pt;}
.y188{bottom:685.533333pt;}
.ye8{bottom:688.093333pt;}
.y1a6{bottom:695.613333pt;}
.y106{bottom:697.853333pt;}
.y31{bottom:698.333333pt;}
.y1e{bottom:698.813333pt;}
.y11d{bottom:699.613333pt;}
.y4b{bottom:700.253333pt;}
.ya4{bottom:701.373333pt;}
.y167{bottom:703.133333pt;}
.y78{bottom:704.893333pt;}
.y148{bottom:705.853333pt;}
.y187{bottom:706.653333pt;}
.ye7{bottom:706.973333pt;}
.y1a5{bottom:716.733333pt;}
.y1d{bottom:718.333333pt;}
.y105{bottom:718.973333pt;}
.y11c{bottom:720.733333pt;}
.ya3{bottom:722.493333pt;}
.y166{bottom:724.253333pt;}
.y77{bottom:726.013333pt;}
.y147{bottom:726.973333pt;}
.y186{bottom:727.773333pt;}
.ye6{bottom:728.093333pt;}
.y1c{bottom:734.813333pt;}
.y1a4{bottom:737.853333pt;}
.y104{bottom:740.093333pt;}
.y11b{bottom:742.013333pt;}
.ya2{bottom:742.493333pt;}
.y165{bottom:745.573333pt;}
.y76{bottom:746.213333pt;}
.y146{bottom:747.653333pt;}
.y185{bottom:749.093333pt;}
.ye5{bottom:749.253333pt;}
.y1b{bottom:751.133333pt;}
.ya1{bottom:761.413333pt;}
.y11a{bottom:763.173333pt;}
.y75{bottom:763.813333pt;}
.y164{bottom:766.693333pt;}
.y145{bottom:767.333333pt;}
.y1a{bottom:767.653333pt;}
.y184{bottom:770.213333pt;}
.ye4{bottom:770.373333pt;}
.y1a3{bottom:775.013333pt;}
.y74{bottom:781.413333pt;}
.ya0{bottom:782.533333pt;}
.y19{bottom:783.973333pt;}
.y119{bottom:784.293333pt;}
.y144{bottom:787.653333pt;}
.y163{bottom:787.813333pt;}
.y183{bottom:791.333333pt;}
.ye3{bottom:791.653333pt;}
.y1a2{bottom:796.293333pt;}
.y73{bottom:799.013333pt;}
.y9f{bottom:803.653333pt;}
.y118{bottom:805.413333pt;}
.y143{bottom:806.373333pt;}
.y162{bottom:808.933333pt;}
.ye2{bottom:810.213333pt;}
.y182{bottom:812.453333pt;}
.y11{bottom:814.853333pt;}
.y72{bottom:816.613333pt;}
.y1a1{bottom:817.413333pt;}
.y9e{bottom:824.773333pt;}
.y10{bottom:825.093333pt;}
.yc1{bottom:826.533333pt;}
.y142{bottom:827.493333pt;}
.ye1{bottom:828.613333pt;}
.y161{bottom:828.933333pt;}
.y71{bottom:832.133333pt;}
.y181{bottom:833.733333pt;}
.y18{bottom:842.853333pt;}
.y70{bottom:846.053333pt;}
.ye0{bottom:846.853333pt;}
.yc0{bottom:847.813333pt;}
.yf{bottom:850.693333pt;}
.y1a0{bottom:854.533333pt;}
.y180{bottom:854.853333pt;}
.ydf{bottom:865.253333pt;}
.y141{bottom:866.533333pt;}
.y6f{bottom:867.173333pt;}
.ybf{bottom:868.933333pt;}
.y17{bottom:869.413333pt;}
.y17f{bottom:874.853333pt;}
.y19f{bottom:875.653333pt;}
.y140{bottom:882.533333pt;}
.yde{bottom:883.653333pt;}
.y9d{bottom:887.813333pt;}
.y6e{bottom:888.293333pt;}
.ybe{bottom:890.053333pt;}
.y16{bottom:891.173333pt;}
.ye{bottom:891.813333pt;}
.y17e{bottom:892.453333pt;}
.y19e{bottom:896.933333pt;}
.y13f{bottom:900.933333pt;}
.ydd{bottom:902.053333pt;}
.yd{bottom:905.733333pt;}
.y9c{bottom:907.333333pt;}
.y6d{bottom:909.413333pt;}
.y6{bottom:909.893333pt;}
.y17d{bottom:910.053333pt;}
.ybd{bottom:911.173333pt;}
.y13e{bottom:919.333333pt;}
.yc{bottom:919.493333pt;}
.ydc{bottom:920.453333pt;}
.y17c{bottom:927.813333pt;}
.y9b{bottom:928.933333pt;}
.y15{bottom:929.893333pt;}
.y6c{bottom:930.693333pt;}
.ybc{bottom:932.453333pt;}
.yb{bottom:933.413333pt;}
.y19d{bottom:934.053333pt;}
.ydb{bottom:938.853333pt;}
.y13d{bottom:940.293333pt;}
.y17b{bottom:945.413333pt;}
.ya{bottom:947.173333pt;}
.y9a{bottom:950.053333pt;}
.y6b{bottom:951.813333pt;}
.y117{bottom:952.453333pt;}
.ybb{bottom:953.573333pt;}
.y13c{bottom:957.253333pt;}
.y9{bottom:958.053333pt;}
.yda{bottom:958.533333pt;}
.y17a{bottom:963.013333pt;}
.y14{bottom:968.773333pt;}
.y99{bottom:971.173333pt;}
.y6a{bottom:972.933333pt;}
.yba{bottom:973.573333pt;}
.yd9{bottom:976.933333pt;}
.y13b{bottom:978.373333pt;}
.y179{bottom:978.533333pt;}
.y98{bottom:992.293333pt;}
.y69{bottom:993.573333pt;}
.yd8{bottom:995.333333pt;}
.y13{bottom:1001.573333pt;}
.y68{bottom:1013.280000pt;}
.y97{bottom:1013.600000pt;}
.yd7{bottom:1013.760000pt;}
.y12{bottom:1019.360000pt;}
.y65{bottom:1056.480000pt;}
.y95{bottom:1057.920000pt;}
.y1{bottom:1058.080000pt;}
.y66{bottom:1061.600000pt;}
.y96{bottom:1064.640000pt;}
.y4{bottom:1073.280000pt;}
.h2{height:17.440000pt;}
.h14{height:18.553333pt;}
.h4{height:18.592000pt;}
.hd{height:28.893750pt;}
.ha{height:31.406250pt;}
.h11{height:33.918750pt;}
.hf{height:36.431250pt;}
.h7{height:42.386667pt;}
.h6{height:44.648750pt;}
.h10{height:47.109375pt;}
.hc{height:49.621875pt;}
.h9{height:52.134375pt;}
.h3{height:57.787500pt;}
.h8{height:59.340000pt;}
.h5{height:62.812500pt;}
.h12{height:64.500000pt;}
.h15{height:65.781915pt;}
.he{height:73.490625pt;}
.h16{height:73.692500pt;}
.h17{height:73.799167pt;}
.hb{height:118.035000pt;}
.h13{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.h0{height:1122.720000pt;}
.w7{width:42.866667pt;}
.w9{width:55.826667pt;}
.w3{width:55.866667pt;}
.w4{width:144.985333pt;}
.w8{width:581.680000pt;}
.w2{width:586.000000pt;}
.w5{width:793.760000pt;}
.w6{width:794.000000pt;}
.w1{width:794.666667pt;}
.w0{width:794.720000pt;}
.x0{left:0.000000pt;}
.x2{left:1.270667pt;}
.x4{left:2.720000pt;}
.x5{left:16.000000pt;}
.x8{left:23.840000pt;}
.x6{left:29.121333pt;}
.x1{left:93.161333pt;}
.x10{left:96.041333pt;}
.x11{left:113.472000pt;}
.x12{left:122.912000pt;}
.x18{left:141.946667pt;}
.x13{left:170.266667pt;}
.x7{left:172.186667pt;}
.x15{left:179.706667pt;}
.xe{left:193.146667pt;}
.x17{left:202.906667pt;}
.x19{left:217.466667pt;}
.x14{left:226.906667pt;}
.xa{left:232.506667pt;}
.xb{left:234.746667pt;}
.xd{left:253.346667pt;}
.xc{left:279.906667pt;}
.xf{left:451.453333pt;}
.x9{left:461.053333pt;}
.x16{left:655.333333pt;}
.x3{left:696.453333pt;}
}




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