
    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_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff1{font-family:ff1;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:ff2;src:url('chunks/assets/font_a43140860f464f23468e3ae5.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_65bc232733c1e8ac406e389d.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.739746;font-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_d331c61dd2b55b06f726b2be.woff2')format("woff");}.ff4{font-family:ff4;line-height:1.010254;font-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_49fa771e75a1ec45c9052b70.woff2')format("woff");}.ff5{font-family:ff5;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:ff6;src:url('chunks/assets/font_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff6{font-family:ff6;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:ff7;src:url('chunks/assets/font_51a8f3cc6e5c58e147855d8a.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_0035bcd2638dbe07eacde919.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.940430;font-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_5086c3c7f2433805c699ad2c.woff2')format("woff");}.ff9{font-family:ff9;line-height:1.010254;font-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_a26b11441c2633507f954d5a.woff2')format("woff");}.ffa{font-family:ffa;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:ffb;src:url('chunks/assets/font_237088209dcbfbd22db3423c.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.010254;font-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_c7a956694e04ea42bfb47288.woff2')format("woff");}.ffc{font-family:ffc;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:ffd;src:url('chunks/assets/font_7b0a800ea1cdc78e0cc6e447.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffe;src:url('chunks/assets/font_023f026d683b4d3bc4752bda.woff2')format("woff");}.ffe{font-family:ffe;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:fff;src:url('chunks/assets/font_7937902e0149baab983a7f29.woff2')format("woff");}.fff{font-family:fff;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:ff10;src:url('chunks/assets/font_fc66de5dadf7586a86532101.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.107422;font-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_3465609c0a4a8b7ccb43da79.woff2')format("woff");}.ff11{font-family:ff11;line-height:1.010254;font-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_1005b0b15de8507323ab76f3.woff2')format("woff");}.ff12{font-family:ff12;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:ff13;src:url('chunks/assets/font_c5030a8a2997b18e1891eddf.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.010254;font-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_d6aeb2bb3141ef20f1791b52.woff2')format("woff");}.ff14{font-family:ff14;line-height:0.758789;font-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_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff15{font-family:ff15;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:ff16;src:url('chunks/assets/font_985e42ce1a5a0809f846f3a0.woff2')format("woff");}.ff16{font-family:ff16;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:ff17;src:url('chunks/assets/font_85cd7a6a7b5d12b6a63f4eb9.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.107422;font-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_9e811205caa20fdb26ce7578.woff2')format("woff");}.ff18{font-family:ff18;line-height:1.010254;font-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_1005b0b15de8507323ab76f3.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_5ba0968709cbedae3877b400.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.010254;font-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_d6aeb2bb3141ef20f1791b52.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.758789;font-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_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff1c{font-family:ff1c;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:ff1d;src:url('chunks/assets/font_f1b1f682b84329b60c3b959a.woff2')format("woff");}.ff1d{font-family:ff1d;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:ff1e;src:url('chunks/assets/font_5dc245df873c4e8face256bd.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:1.107422;font-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_6775e0450fdbab12b0f03ef4.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.010254;font-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_286aa1b015d394c0ee5c3c08.woff2')format("woff");}.ff20{font-family:ff20;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:ff21;src:url('chunks/assets/font_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff21{font-family:ff21;line-height:0.727539;font-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_28ceb9d5b30de9981ab64f38.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_d6aeb2bb3141ef20f1791b52.woff2')format("woff");}.ff23{font-family:ff23;line-height:0.758789;font-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_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff24{font-family:ff24;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:ff25;src:url('chunks/assets/font_ec0d071ba93a23b2d76706a0.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_91e77a8eeaedcaeeb94bd04c.woff2')format("woff");}.ff26{font-family:ff26;line-height:0.739746;font-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_64a83b802a791474a7061f02.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.010254;font-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_286aa1b015d394c0ee5c3c08.woff2')format("woff");}.ff28{font-family:ff28;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:ff29;src:url('chunks/assets/font_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff29{font-family:ff29;line-height:0.727539;font-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_394464cdc56dc01ec612c973.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.010254;font-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_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff2b{font-family:ff2b;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:ff2c;src:url('chunks/assets/font_1042e3e278c7c76a7bab6edb.woff2')format("woff");}.ff2c{font-family:ff2c;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:ff2d;src:url('chunks/assets/font_7dcbcfc9197eac373bf465c7.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:0.911133;font-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_6f33442baa541a329a2dd5f4.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.010254;font-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_8b852cec3d4772a7c7d3780c.woff2')format("woff");}.ff2f{font-family:ff2f;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:ff30;src:url('chunks/assets/font_485fb9e1e4769638f2abc28c.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.111816;font-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_aa3b3919ce03340ef250b603.woff2')format("woff");}.ff31{font-family:ff31;line-height:0.922363;font-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_01a85808c9322f620efacbd6.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff33{font-family:ff33;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:ff34;src:url('chunks/assets/font_3835893dd020fe96bc3dca72.woff2')format("woff");}.ff34{font-family:ff34;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:ff35;src:url('chunks/assets/font_427595c438589ff2a0e087e4.woff2')format("woff");}.ff35{font-family:ff35;line-height:0.739746;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_a415d19af1fcb139f9045cd2.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.010254;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_3cbc352ab513e94aaa5debc8.woff2')format("woff");}.ff37{font-family:ff37;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:ff38;src:url('chunks/assets/font_449ba46dd5fc06eee7f730ae.woff2')format("woff");}.ff38{font-family:ff38;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_70f7542070209db4f3160042.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.005371;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_5165c73ed0e7b3ea7f65230f.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:0.727539;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_023f026d683b4d3bc4752bda.woff2')format("woff");}.ff3b{font-family:ff3b;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:ff3c;src:url('chunks/assets/font_22ca78618af85a6571b12fe8.woff2')format("woff");}.ff3c{font-family:ff3c;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:ff3d;src:url('chunks/assets/font_93cbd5058f47c43b55779d65.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:0.918457;font-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:ff3e;src:url('chunks/assets/font_7590bc57df9b669d36a07ad1.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.187012;font-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:ff3f;src:url('chunks/assets/font_3cbc352ab513e94aaa5debc8.woff2')format("woff");}.ff3f{font-family:ff3f;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:ff40;src:url('chunks/assets/font_5dc5755f4bb4bd528ff75113.woff2')format("woff");}.ff40{font-family:ff40;line-height:0.727539;font-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:ff41;src:url('chunks/assets/font_c7a956694e04ea42bfb47288.woff2')format("woff");}.ff41{font-family:ff41;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;}
.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);}
.v0{vertical-align:0.000000px;}
.ls1b{letter-spacing:-0.720000px;}
.ls27{letter-spacing:-0.540000px;}
.ls12{letter-spacing:-0.288000px;}
.lse{letter-spacing:-0.216000px;}
.ls1c{letter-spacing:-0.144000px;}
.ls1f{letter-spacing:-0.072000px;}
.ls8{letter-spacing:-0.017280px;}
.ls6{letter-spacing:0.000000px;}
.ls4{letter-spacing:0.008640px;}
.ls22{letter-spacing:0.017280px;}
.ls26{letter-spacing:0.072000px;}
.ls1{letter-spacing:0.119520px;}
.ls1e{letter-spacing:0.144000px;}
.lsa{letter-spacing:0.161280px;}
.ls9{letter-spacing:0.180000px;}
.lsb{letter-spacing:0.208080px;}
.ls29{letter-spacing:0.216000px;}
.ls2{letter-spacing:0.252000px;}
.ls17{letter-spacing:0.288000px;}
.ls0{letter-spacing:0.300000px;}
.ls7{letter-spacing:0.360000px;}
.ls2e{letter-spacing:0.378720px;}
.ls18{letter-spacing:0.388080px;}
.ls3{letter-spacing:0.530640px;}
.ls20{letter-spacing:0.540000px;}
.ls1a{letter-spacing:0.701280px;}
.ls28{letter-spacing:0.909360px;}
.ls19{letter-spacing:0.928080px;}
.ls13{letter-spacing:2.880000px;}
.ls1d{letter-spacing:8.640000px;}
.ls23{letter-spacing:20.304000px;}
.lsd{letter-spacing:23.904000px;}
.ls24{letter-spacing:26.064000px;}
.lsc{letter-spacing:28.224000px;}
.ls2c{letter-spacing:29.664000px;}
.ls10{letter-spacing:30.384000px;}
.ls16{letter-spacing:31.824000px;}
.ls5{letter-spacing:33.960000px;}
.lsf{letter-spacing:33.984000px;}
.ls21{letter-spacing:34.560000px;}
.ls25{letter-spacing:35.424000px;}
.ls11{letter-spacing:38.304000px;}
.ls2a{letter-spacing:44.064000px;}
.ls2b{letter-spacing:46.224000px;}
.ls14{letter-spacing:54.864000px;}
.ls2d{letter-spacing:62.784000px;}
.ls15{letter-spacing:64.224000px;}
.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;}
}
.ws9{word-spacing:-72.000000px;}
.ws2{word-spacing:-27.000000px;}
.ws3{word-spacing:-23.940000px;}
.ws1{word-spacing:-21.780000px;}
.wsd{word-spacing:-19.457280px;}
.ws4{word-spacing:-19.440000px;}
.wsa{word-spacing:-18.288000px;}
.wsf{word-spacing:-18.144000px;}
.wse{word-spacing:-18.072000px;}
.ws5{word-spacing:-18.000000px;}
.wsc{word-spacing:-17.928000px;}
.wsb{word-spacing:-17.856000px;}
.ws7{word-spacing:-17.784000px;}
.ws8{word-spacing:-17.712000px;}
.ws10{word-spacing:-16.632000px;}
.ws11{word-spacing:-16.416000px;}
.ws13{word-spacing:-16.344000px;}
.ws12{word-spacing:-16.272000px;}
.ws0{word-spacing:-14.940000px;}
.ws14{word-spacing:-0.072000px;}
.ws6{word-spacing:0.000000px;}
._1{margin-left:-1.129920px;}
._0{width:1.254960px;}
._a{width:2.388000px;}
._5{width:3.816000px;}
._16{width:5.184000px;}
._17{width:6.618960px;}
._3{width:7.992000px;}
._4{width:9.144000px;}
._b{width:10.872000px;}
._9{width:12.168000px;}
._8{width:13.320000px;}
._18{width:14.340000px;}
._2{width:15.550320px;}
._c{width:16.925040px;}
._21{width:19.008000px;}
._6{width:20.016000px;}
._7{width:21.024000px;}
._e{width:22.824000px;}
._d{width:23.832000px;}
._f{width:24.912000px;}
._20{width:25.923120px;}
._19{width:26.953920px;}
._1a{width:28.100160px;}
._11{width:29.232000px;}
._10{width:30.312000px;}
._1b{width:32.040000px;}
._12{width:33.696000px;}
._13{width:35.388000px;}
._1c{width:37.080000px;}
._25{width:38.185920px;}
._15{width:39.384000px;}
._14{width:40.464000px;}
._1d{width:41.876880px;}
._24{width:43.001520px;}
._1f{width:46.584000px;}
._26{width:48.528000px;}
._1e{width:50.400000px;}
._27{width:54.000000px;}
._28{width:59.040000px;}
._22{width:67.680000px;}
._23{width:68.895120px;}
.fc4{color:transparent;}
.fc3{color:rgb(255,0,0);}
.fc2{color:rgb(0,0,255);}
.fc5{color:rgb(102,102,102);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fs7{font-size:12.240000px;}
.fs6{font-size:18.000000px;}
.fs8{font-size:48.240000px;}
.fs0{font-size:59.760000px;}
.fs5{font-size:72.000000px;}
.fs4{font-size:77.760000px;}
.fs2{font-size:87.120000px;}
.fs3{font-size:95.760000px;}
.fs1{font-size:108.000000px;}
.y0{bottom:0.000000px;}
.y4{bottom:3.240000px;}
.y1a8{bottom:3.780000px;}
.y1b5{bottom:3.810000px;}
.y1ab{bottom:3.825000px;}
.y1f6{bottom:24.300000px;}
.y3{bottom:52.920000px;}
.y2{bottom:56.160000px;}
.y1f1{bottom:108.180000px;}
.yad{bottom:111.600000px;}
.y272{bottom:113.940000px;}
.ye2{bottom:115.740000px;}
.y72{bottom:123.300000px;}
.y114{bottom:124.200000px;}
.y148{bottom:124.380000px;}
.y23f{bottom:124.920000px;}
.y191{bottom:126.180000px;}
.y165{bottom:126.720000px;}
.ya2{bottom:128.700000px;}
.y1f0{bottom:130.500000px;}
.y4d{bottom:132.660000px;}
.y251{bottom:134.460000px;}
.y17d{bottom:137.880000px;}
.y92{bottom:140.940000px;}
.y71{bottom:144.000000px;}
.y147{bottom:144.900000px;}
.yac{bottom:145.980000px;}
.y27d{bottom:146.160000px;}
.y28{bottom:148.500000px;}
.ya1{bottom:149.400000px;}
.y214{bottom:150.840000px;}
.y1ef{bottom:152.640000px;}
.yda{bottom:153.900000px;}
.y268{bottom:154.620000px;}
.yd1{bottom:155.160000px;}
.y113{bottom:157.680000px;}
.y17c{bottom:158.400000px;}
.y190{bottom:159.660000px;}
.y164{bottom:160.380000px;}
.y1a5{bottom:160.920000px;}
.y1c9{bottom:165.420000px;}
.y4c{bottom:166.140000px;}
.y27c{bottom:166.860000px;}
.y250{bottom:168.120000px;}
.y27{bottom:169.230000px;}
.y213{bottom:171.390000px;}
.y91{bottom:174.630000px;}
.y1ee{bottom:174.810000px;}
.y267{bottom:175.170000px;}
.y70{bottom:177.510000px;}
.y22e{bottom:178.410000px;}
.y146{bottom:178.590000px;}
.y23e{bottom:179.130000px;}
.yab{bottom:180.390000px;}
.y163{bottom:181.110000px;}
.ya0{bottom:182.910000px;}
.y1c8{bottom:186.150000px;}
.yd0{bottom:188.670000px;}
.y26{bottom:190.470000px;}
.y112{bottom:191.370000px;}
.y17b{bottom:191.910000px;}
.y18f{bottom:193.170000px;}
.y2a5{bottom:193.890000px;}
.y1a4{bottom:194.610000px;}
.y90{bottom:195.870000px;}
.y1ed{bottom:196.950000px;}
.y4b{bottom:199.650000px;}
.y145{bottom:199.830000px;}
.y27b{bottom:200.370000px;}
.y162{bottom:201.630000px;}
.y109{bottom:203.070000px;}
.y212{bottom:205.050000px;}
.yd9{bottom:208.110000px;}
.y266{bottom:208.830000px;}
.y25{bottom:211.170000px;}
.y22d{bottom:211.890000px;}
.y18e{bottom:213.870000px;}
.y2a4{bottom:214.590000px;}
.yaa{bottom:214.770000px;}
.y1a3{bottom:215.310000px;}
.y8f{bottom:216.570000px;}
.y1ec{bottom:219.090000px;}
.y1c7{bottom:219.630000px;}
.y144{bottom:220.530000px;}
.ycf{bottom:222.330000px;}
.y111{bottom:224.850000px;}
.y17a{bottom:225.570000px;}
.y211{bottom:226.290000px;}
.y265{bottom:230.070000px;}
.y4a{bottom:233.310000px;}
.y27a{bottom:233.850000px;}
.y18d{bottom:234.570000px;}
.y161{bottom:235.110000px;}
.y1a2{bottom:235.830000px;}
.y108{bottom:236.550000px;}
.y1c6{bottom:241.050000px;}
.y1eb{bottom:241.230000px;}
.yd8{bottom:241.590000px;}
.yce{bottom:243.570000px;}
.y24{bottom:244.650000px;}
.y22c{bottom:245.550000px;}
.y179{bottom:246.270000px;}
.y210{bottom:246.990000px;}
.y2a3{bottom:248.070000px;}
.ya9{bottom:249.150000px;}
.y8e{bottom:250.050000px;}
.y264{bottom:250.770000px;}
.y143{bottom:254.010000px;}
.y49{bottom:254.550000px;}
.y160{bottom:255.810000px;}
.y110{bottom:258.510000px;}
.y1c5{bottom:261.570000px;}
.y1ea{bottom:263.370000px;}
.ycd{bottom:264.270000px;}
.y6f{bottom:266.070000px;}
.y123{bottom:266.790000px;}
.y279{bottom:267.510000px;}
.y18c{bottom:268.050000px;}
.y24f{bottom:268.770000px;}
.y1a1{bottom:269.310000px;}
.y107{bottom:270.210000px;}
.y9f{bottom:271.470000px;}
.y48{bottom:275.250000px;}
.y15f{bottom:276.510000px;}
.y23{bottom:278.130000px;}
.y22b{bottom:279.030000px;}
.y20f{bottom:280.470000px;}
.y2a2{bottom:281.730000px;}
.ya8{bottom:282.630000px;}
.y8d{bottom:283.530000px;}
.y263{bottom:284.250000px;}
.y1e9{bottom:285.510000px;}
.y6e{bottom:286.590000px;}
.y142{bottom:287.670000px;}
.y9e{bottom:291.990000px;}
.yd7{bottom:296.490000px;}
.ycc{bottom:297.750000px;}
.y122{bottom:300.450000px;}
.y278{bottom:300.990000px;}
.y18b{bottom:301.710000px;}
.y24e{bottom:302.250000px;}
.y1a0{bottom:302.970000px;}
.y1c4{bottom:303.330000px;}
.y106{bottom:303.690000px;}
.ydc{bottom:304.950000px;}
.y1e8{bottom:307.650000px;}
.y47{bottom:308.730000px;}
.y141{bottom:308.910000px;}
.y15e{bottom:309.990000px;}
.y22{bottom:311.790000px;}
.y22a{bottom:312.690000px;}
.y10f{bottom:313.410000px;}
.y2a1{bottom:315.210000px;}
.y8c{bottom:317.190000px;}
.y262{bottom:317.730000px;}
.y6d{bottom:320.070000px;}
.y1c3{bottom:320.970000px;}
.y121{bottom:321.690000px;}
.y26f{bottom:322.950000px;}
.y19f{bottom:323.670000px;}
.y9d{bottom:325.470000px;}
.y140{bottom:329.610000px;}
.y1e7{bottom:329.790000px;}
.y20e{bottom:331.050000px;}
.ycb{bottom:331.410000px;}
.y10e{bottom:333.930000px;}
.y277{bottom:334.650000px;}
.y18a{bottom:335.190000px;}
.y24d{bottom:335.910000px;}
.y105{bottom:337.350000px;}
.ye1{bottom:338.430000px;}
.y46{bottom:342.390000px;}
.y1c2{bottom:343.110000px;}
.y15d{bottom:343.650000px;}
.y19e{bottom:344.190000px;}
.y21{bottom:345.270000px;}
.y229{bottom:346.170000px;}
.y8b{bottom:350.670000px;}
.y261{bottom:351.390000px;}
.y1e6{bottom:351.930000px;}
.y20d{bottom:353.190000px;}
.y6c{bottom:353.730000px;}
.y23d{bottom:355.350000px;}
.y2a0{bottom:356.430000px;}
.y104{bottom:358.590000px;}
.y9c{bottom:359.130000px;}
.y13f{bottom:363.090000px;}
.y45{bottom:363.630000px;}
.yca{bottom:364.890000px;}
.y1c1{bottom:365.250000px;}
.y20{bottom:366.690000px;}
.y10d{bottom:367.410000px;}
.y276{bottom:368.130000px;}
.y189{bottom:368.670000px;}
.y24c{bottom:369.390000px;}
.y8a{bottom:372.090000px;}
.y6b{bottom:374.970000px;}
.y20c{bottom:375.330000px;}
.y57{bottom:375.870000px;}
.y15c{bottom:377.130000px;}
.y19d{bottom:377.850000px;}
.y103{bottom:379.290000px;}
.y228{bottom:379.650000px;}
.y1e5{bottom:379.830000px;}
.y9b{bottom:380.370000px;}
.y44{bottom:384.330000px;}
.y260{bottom:384.870000px;}
.yc9{bottom:386.310000px;}
.y1f{bottom:387.210000px;}
.y1c0{bottom:387.390000px;}
.y29f{bottom:390.090000px;}
.y24b{bottom:390.810000px;}
.y89{bottom:392.610000px;}
.y6a{bottom:395.670000px;}
.y13e{bottom:396.570000px;}
.y56{bottom:397.290000px;}
.y20b{bottom:397.470000px;}
.y15b{bottom:398.550000px;}
.y227{bottom:400.350000px;}
.y9a{bottom:401.070000px;}
.y275{bottom:401.610000px;}
.y188{bottom:402.330000px;}
.y2ae{bottom:402.870000px;}
.yc8{bottom:406.830000px;}
.y120{bottom:409.350000px;}
.y1bf{bottom:409.530000px;}
.y26e{bottom:410.610000px;}
.y19c{bottom:411.330000px;}
.y102{bottom:412.815000px;}
.y43{bottom:417.855000px;}
.y25f{bottom:418.575000px;}
.y15a{bottom:419.115000px;}
.y20a{bottom:419.655000px;}
.y1e{bottom:420.915000px;}
.y226{bottom:421.095000px;}
.y187{bottom:423.075000px;}
.y29e{bottom:423.615000px;}
.y88{bottom:426.315000px;}
.y69{bottom:429.195000px;}
.y13d{bottom:430.275000px;}
.y1be{bottom:431.715000px;}
.y24a{bottom:432.075000px;}
.y99{bottom:434.595000px;}
.y2ad{bottom:436.575000px;}
.ya7{bottom:439.275000px;}
.yc7{bottom:440.355000px;}
.y209{bottom:441.795000px;}
.y1d{bottom:442.155000px;}
.y11f{bottom:443.055000px;}
.y186{bottom:443.595000px;}
.y26d{bottom:444.315000px;}
.y19b{bottom:444.855000px;}
.y101{bottom:446.295000px;}
.y42{bottom:451.335000px;}
.y25e{bottom:452.055000px;}
.y159{bottom:452.595000px;}
.y1bd{bottom:453.855000px;}
.y225{bottom:454.575000px;}
.y2ac{bottom:457.275000px;}
.y1e4{bottom:457.995000px;}
.y87{bottom:459.795000px;}
.y1c{bottom:462.855000px;}
.y13c{bottom:463.755000px;}
.y208{bottom:463.935000px;}
.y98{bottom:468.255000px;}
.yc6{bottom:474.015000px;}
.y224{bottom:475.275000px;}
.y1e3{bottom:475.635000px;}
.y1bc{bottom:475.995000px;}
.y11e{bottom:476.535000px;}
.y185{bottom:477.255000px;}
.y234{bottom:477.795000px;}
.y19a{bottom:478.515000px;}
.y100{bottom:479.955000px;}
.y86{bottom:481.215000px;}
.y41{bottom:484.995000px;}
.y25d{bottom:485.535000px;}
.y158{bottom:486.255000px;}
.y178{bottom:488.955000px;}
.y29d{bottom:492.195000px;}
.ya6{bottom:493.275000px;}
.y223{bottom:495.975000px;}
.y1b{bottom:496.335000px;}
.y13b{bottom:497.415000px;}
.y1e2{bottom:497.775000px;}
.y11d{bottom:497.955000px;}
.y1bb{bottom:498.135000px;}
.y271{bottom:499.215000px;}
.y85{bottom:501.735000px;}
.y40{bottom:506.235000px;}
.y25c{bottom:506.955000px;}
.yc5{bottom:507.495000px;}
.y207{bottom:508.395000px;}
.y177{bottom:509.475000px;}
.y126{bottom:510.195000px;}
.y184{bottom:510.735000px;}
.y233{bottom:511.455000px;}
.y199{bottom:511.995000px;}
.yff{bottom:513.435000px;}
.yd6{bottom:514.695000px;}
.y222{bottom:516.675000px;}
.y68{bottom:517.755000px;}
.y55{bottom:518.475000px;}
.y157{bottom:519.735000px;}
.y1e1{bottom:519.915000px;}
.y1ba{bottom:520.275000px;}
.y29c{bottom:526.575000px;}
.y3f{bottom:526.935000px;}
.y25b{bottom:527.475000px;}
.yc4{bottom:528.915000px;}
.y1a{bottom:529.815000px;}
.y206{bottom:530.535000px;}
.y13a{bottom:530.895000px;}
.y125{bottom:531.435000px;}
.y26c{bottom:532.155000px;}
.y84{bottom:535.215000px;}
.y221{bottom:537.195000px;}
.y67{bottom:538.275000px;}
.y54{bottom:539.895000px;}
.y1e0{bottom:542.055000px;}
.y1b9{bottom:542.415000px;}
.y176{bottom:543.135000px;}
.y23c{bottom:543.675000px;}
.y183{bottom:544.395000px;}
.y232{bottom:544.935000px;}
.y198{bottom:545.655000px;}
.yfe{bottom:547.095000px;}
.ye0{bottom:548.175000px;}
.y25a{bottom:548.895000px;}
.yc3{bottom:549.435000px;}
.y11c{bottom:552.135000px;}
.y205{bottom:552.675000px;}
.y156{bottom:553.395000px;}
.y10c{bottom:556.635000px;}
.y3e{bottom:560.415000px;}
.y29b{bottom:561.135000px;}
.y19{bottom:563.475000px;}
.y1df{bottom:564.195000px;}
.y139{bottom:564.375000px;}
.y1b8{bottom:564.735000px;}
.y231{bottom:565.635000px;}
.yfd{bottom:568.335000px;}
.y83{bottom:568.875000px;}
.y259{bottom:569.415000px;}
.y220{bottom:570.675000px;}
.y66{bottom:571.755000px;}
.y249{bottom:574.095000px;}
.y204{bottom:574.815000px;}
.y175{bottom:576.615000px;}
.y10b{bottom:577.155000px;}
.y182{bottom:577.875000px;}
.y2ab{bottom:578.595000px;}
.y197{bottom:579.135000px;}
.yc2{bottom:583.095000px;}
.y11b{bottom:585.615000px;}
.y1de{bottom:586.335000px;}
.y155{bottom:586.875000px;}
.yfc{bottom:589.035000px;}
.y82{bottom:590.115000px;}
.y65{bottom:593.175000px;}
.y3d{bottom:594.075000px;}
.y248{bottom:594.615000px;}
.y18{bottom:596.955000px;}
.y174{bottom:597.315000px;}
.y138{bottom:598.035000px;}
.y196{bottom:599.835000px;}
.y97{bottom:602.355000px;}
.y258{bottom:603.075000px;}
.y21f{bottom:604.335000px;}
.y1dd{bottom:608.475000px;}
.y1b7{bottom:609.015000px;}
.y81{bottom:610.815000px;}
.y181{bottom:611.355000px;}
.y2aa{bottom:612.075000px;}
.y64{bottom:613.695000px;}
.ya5{bottom:615.315000px;}
.yc1{bottom:616.575000px;}
.y173{bottom:617.835000px;}
.y17{bottom:618.375000px;}
.y28a{bottom:618.555000px;}
.y11a{bottom:619.095000px;}
.y230{bottom:619.815000px;}
.y154{bottom:620.535000px;}
.yfb{bottom:622.515000px;}
.y96{bottom:623.775000px;}
.y257{bottom:624.315000px;}
.y3c{bottom:627.555000px;}
.y247{bottom:628.275000px;}
.y1dc{bottom:630.615000px;}
.y1b6{bottom:631.155000px;}
.y137{bottom:631.515000px;}
.y274{bottom:632.775000px;}
.ya4{bottom:636.015000px;}
.y21e{bottom:637.815000px;}
.y16{bottom:638.895000px;}
.y22f{bottom:640.515000px;}
.y203{bottom:641.235000px;}
.y80{bottom:644.295000px;}
.y180{bottom:645.015000px;}
.y2a9{bottom:645.555000px;}
.y63{bottom:647.355000px;}
.y3b{bottom:648.975000px;}
.y29a{bottom:649.515000px;}
.yc0{bottom:650.055000px;}
.y172{bottom:651.495000px;}
.y289{bottom:652.035000px;}
.y136{bottom:652.215000px;}
.y119{bottom:652.755000px;}
.y1b4{bottom:653.295000px;}
.y153{bottom:654.015000px;}
.yfa{bottom:656.025000px;}
.y10a{bottom:657.285000px;}
.y53{bottom:661.065000px;}
.y246{bottom:661.785000px;}
.y202{bottom:663.405000px;}
.y17f{bottom:665.745000px;}
.y62{bottom:668.625000px;}
.y3a{bottom:669.525000px;}
.y299{bottom:670.245000px;}
.y21d{bottom:671.505000px;}
.y15{bottom:672.585000px;}
.y288{bottom:672.765000px;}
.y135{bottom:672.945000px;}
.y1db{bottom:674.925000px;}
.y1b3{bottom:675.465000px;}
.y7f{bottom:677.985000px;}
.y256{bottom:678.525000px;}
.y2a8{bottom:679.245000px;}
.y52{bottom:682.485000px;}
.ybf{bottom:683.745000px;}
.y171{bottom:685.005000px;}
.y201{bottom:685.545000px;}
.y118{bottom:686.265000px;}
.y26b{bottom:686.985000px;}
.y152{bottom:687.525000px;}
.y61{bottom:689.325000px;}
.yf9{bottom:689.685000px;}
.ydf{bottom:690.945000px;}
.y298{bottom:691.485000px;}
.y287{bottom:693.465000px;}
.y14{bottom:693.825000px;}
.yec{bottom:694.725000px;}
.y245{bottom:695.265000px;}
.y1da{bottom:697.065000px;}
.y1b2{bottom:697.605000px;}
.y255{bottom:699.945000px;}
.y39{bottom:703.005000px;}
.y21c{bottom:704.985000px;}
.y134{bottom:706.425000px;}
.y200{bottom:707.685000px;}
.y7e{bottom:711.465000px;}
.y297{bottom:712.185000px;}
.y2a7{bottom:712.725000px;}
.y13{bottom:714.525000px;}
.y286{bottom:714.705000px;}
.ybe{bottom:717.225000px;}
.y170{bottom:718.665000px;}
.y1d9{bottom:719.205000px;}
.y1b1{bottom:719.745000px;}
.y117{bottom:719.925000px;}
.y254{bottom:720.465000px;}
.y151{bottom:721.185000px;}
.y60{bottom:722.805000px;}
.yf8{bottom:723.165000px;}
.ya3{bottom:724.425000px;}
.y21b{bottom:725.685000px;}
.yeb{bottom:728.205000px;}
.y244{bottom:728.925000px;}
.y1ff{bottom:729.825000px;}
.yd5{bottom:732.885000px;}
.y2a6{bottom:733.425000px;}
.y285{bottom:735.405000px;}
.y38{bottom:736.665000px;}
.ybd{bottom:738.645000px;}
.y133{bottom:739.905000px;}
.y116{bottom:741.165000px;}
.y1d8{bottom:741.525000px;}
.y1b0{bottom:741.885000px;}
.y7d{bottom:744.945000px;}
.y296{bottom:745.665000px;}
.y21a{bottom:746.385000px;}
.y12{bottom:748.005000px;}
.y12a{bottom:749.625000px;}
.y16f{bottom:752.145000px;}
.yd4{bottom:753.405000px;}
.y253{bottom:754.125000px;}
.y150{bottom:754.665000px;}
.y5f{bottom:756.465000px;}
.y284{bottom:756.645000px;}
.yf7{bottom:756.825000px;}
.y1fe{bottom:757.725000px;}
.y51{bottom:757.905000px;}
.ybc{bottom:759.165000px;}
.y132{bottom:761.325000px;}
.yea{bottom:761.865000px;}
.y243{bottom:762.405000px;}
.y1d7{bottom:763.665000px;}
.y1af{bottom:764.025000px;}
.y23b{bottom:765.825000px;}
.y7c{bottom:766.365000px;}
.y11{bottom:769.425000px;}
.y37{bottom:770.145000px;}
.y124{bottom:774.825000px;}
.y270{bottom:775.365000px;}
.y283{bottom:777.345000px;}
.y50{bottom:778.605000px;}
.y295{bottom:779.145000px;}
.y219{bottom:779.865000px;}
.y131{bottom:781.845000px;}
.y16e{bottom:785.625000px;}
.y1d6{bottom:785.805000px;}
.y1ae{bottom:786.165000px;}
.y23a{bottom:786.345000px;}
.y7b{bottom:786.885000px;}
.y252{bottom:787.605000px;}
.y14f{bottom:788.325000px;}
.y10{bottom:789.945000px;}
.yf6{bottom:790.305000px;}
.y36{bottom:791.565000px;}
.ybb{bottom:792.825000px;}
.ye9{bottom:795.345000px;}
.y242{bottom:796.065000px;}
.y95{bottom:799.845000px;}
.y1fd{bottom:800.925000px;}
.y129{bottom:803.805000px;}
.y1d5{bottom:807.945000px;}
.y17e{bottom:808.305000px;}
.y282{bottom:810.825000px;}
.y5e{bottom:811.365000px;}
.y35{bottom:812.085000px;}
.y294{bottom:812.805000px;}
.y218{bottom:813.345000px;}
.yba{bottom:814.065000px;}
.y130{bottom:815.505000px;}
.y273{bottom:816.765000px;}
.y16d{bottom:819.285000px;}
.y239{bottom:819.825000px;}
.y7a{bottom:820.545000px;}
.y26a{bottom:821.085000px;}
.y14e{bottom:821.805000px;}
.yf{bottom:823.425000px;}
.yf5{bottom:823.785000px;}
.ye8{bottom:828.825000px;}
.y241{bottom:829.545000px;}
.y1d4{bottom:830.085000px;}
.y1ad{bottom:830.445000px;}
.y5d{bottom:831.885000px;}
.y34{bottom:833.505000px;}
.y293{bottom:834.045000px;}
.y1fc{bottom:834.585000px;}
.yb9{bottom:834.765000px;}
.y128{bottom:837.285000px;}
.yd3{bottom:841.785000px;}
.y195{bottom:842.505000px;}
.y281{bottom:844.485000px;}
.yf4{bottom:845.205000px;}
.yde{bottom:845.745000px;}
.y217{bottom:847.005000px;}
.y12f{bottom:848.985000px;}
.y240{bottom:850.245000px;}
.y1d3{bottom:852.225000px;}
.y16c{bottom:852.765000px;}
.y238{bottom:853.485000px;}
.y33{bottom:854.025000px;}
.y292{bottom:854.745000px;}
.y14d{bottom:855.285000px;}
.ye{bottom:857.085000px;}
.yd2{bottom:862.485000px;}
.y194{bottom:863.025000px;}
.y5c{bottom:865.365000px;}
.yf3{bottom:865.725000px;}
.ydd{bottom:866.985000px;}
.y1fb{bottom:867.525000px;}
.y216{bottom:867.705000px;}
.yb8{bottom:868.245000px;}
.y12e{bottom:870.405000px;}
.y127{bottom:870.765000px;}
.y16b{bottom:874.185000px;}
.y1d2{bottom:874.365000px;}
.y1ac{bottom:874.905000px;}
.y79{bottom:875.445000px;}
.y14c{bottom:875.985000px;}
.ye7{bottom:883.725000px;}
.y280{bottom:886.425000px;}
.y237{bottom:886.965000px;}
.y32{bottom:887.685000px;}
.y215{bottom:888.225000px;}
.y1fa{bottom:890.025000px;}
.yd{bottom:890.565000px;}
.y12d{bottom:890.925000px;}
.y16a{bottom:894.705000px;}
.y78{bottom:895.965000px;}
.y1d1{bottom:896.505000px;}
.y14b{bottom:896.685000px;}
.y1aa{bottom:897.045000px;}
.y5b{bottom:899.070000px;}
.yf2{bottom:899.430000px;}
.yb7{bottom:901.770000px;}
.yb5{bottom:903.570000px;}
.ye6{bottom:904.470000px;}
.ydb{bottom:908.970000px;}
.yc{bottom:912.030000px;}
.y269{bottom:917.430000px;}
.y1d0{bottom:918.690000px;}
.y1a9{bottom:919.230000px;}
.y1f9{bottom:919.590000px;}
.y27f{bottom:919.950000px;}
.y5a{bottom:920.310000px;}
.y236{bottom:920.670000px;}
.y31{bottom:921.210000px;}
.yb6{bottom:921.750000px;}
.y291{bottom:921.930000px;}
.y12c{bottom:924.630000px;}
.y169{bottom:928.410000px;}
.y77{bottom:929.670000px;}
.y14a{bottom:930.210000px;}
.yb{bottom:932.550000px;}
.yf1{bottom:932.910000px;}
.yb4{bottom:937.230000px;}
.ye5{bottom:937.950000px;}
.y1cf{bottom:940.830000px;}
.y59{bottom:941.010000px;}
.y27e{bottom:941.370000px;}
.y94{bottom:942.630000px;}
.y12b{bottom:945.870000px;}
.y1a7{bottom:946.950000px;}
.y1f8{bottom:949.290000px;}
.y149{bottom:950.910000px;}
.y235{bottom:954.150000px;}
.y30{bottom:954.690000px;}
.y290{bottom:955.410000px;}
.y168{bottom:961.890000px;}
.y1ce{bottom:962.970000px;}
.y76{bottom:963.150000px;}
.y193{bottom:963.870000px;}
.ya{bottom:966.210000px;}
.yf0{bottom:966.570000px;}
.yb3{bottom:970.710000px;}
.ye4{bottom:971.610000px;}
.y58{bottom:974.490000px;}
.y1a6{bottom:974.850000px;}
.y2f{bottom:976.110000px;}
.y1f7{bottom:978.990000px;}
.y115{bottom:984.570000px;}
.y1cd{bottom:985.110000px;}
.y9{bottom:987.450000px;}
.y4f{bottom:988.350000px;}
.y28f{bottom:988.890000px;}
.y167{bottom:995.370000px;}
.y2e{bottom:996.630000px;}
.y192{bottom:997.350000px;}
.yef{bottom:1000.050000px;}
.yb2{bottom:1004.190000px;}
.ye3{bottom:1005.090000px;}
.y1cc{bottom:1007.430000px;}
.y8{bottom:1008.150000px;}
.y1f5{bottom:1008.690000px;}
.y4e{bottom:1009.590000px;}
.y28e{bottom:1010.310000px;}
.y75{bottom:1018.050000px;}
.yee{bottom:1023.630000px;}
.y166{bottom:1029.030000px;}
.y1cb{bottom:1029.570000px;}
.y2d{bottom:1030.290000px;}
.y28d{bottom:1030.830000px;}
.yb1{bottom:1037.850000px;}
.y74{bottom:1038.570000px;}
.y7{bottom:1041.630000px;}
.y93{bottom:1051.530000px;}
.yed{bottom:1052.610000px;}
.y1ca{bottom:1057.290000px;}
.y1f4{bottom:1058.910000px;}
.y2c{bottom:1063.770000px;}
.y28c{bottom:1064.490000px;}
.yb0{bottom:1071.330000px;}
.y73{bottom:1072.230000px;}
.y6{bottom:1082.310000px;}
.y2b{bottom:1085.190000px;}
.y1f3{bottom:1088.610000px;}
.y28b{bottom:1097.970000px;}
.yaf{bottom:1104.990000px;}
.y2a{bottom:1105.710000px;}
.y1f2{bottom:1118.670000px;}
.y5{bottom:1131.270000px;}
.yae{bottom:1138.470000px;}
.y29{bottom:1139.370000px;}
.y1{bottom:1195.740000px;}
.ha{height:8.911055px;}
.hd{height:12.884766px;}
.h8{height:13.104492px;}
.h17{height:16.083984px;}
.hf{height:16.224609px;}
.h1b{height:16.286133px;}
.h4{height:17.280000px;}
.h14{height:20.520000px;}
.h13{height:20.556000px;}
.h10{height:20.700000px;}
.h15{height:20.736000px;}
.h18{height:41.220000px;}
.h16{height:43.481953px;}
.h7{height:52.417969px;}
.h2{height:58.621992px;}
.h3{height:58.651172px;}
.hb{height:64.335938px;}
.h12{height:64.898438px;}
.h1a{height:65.144531px;}
.h11{height:65.496094px;}
.he{height:69.575625px;}
.h19{height:70.664062px;}
.h6{height:74.004654px;}
.h5{height:78.468750px;}
.hc{height:85.566797px;}
.h9{height:96.503906px;}
.h0{height:1262.880000px;}
.h1{height:1263.000000px;}
.w9{width:4.140000px;}
.we{width:14.760000px;}
.wd{width:15.660000px;}
.w3{width:25.020000px;}
.w4{width:32.580000px;}
.w6{width:59.760000px;}
.w8{width:59.940000px;}
.w7{width:90.396000px;}
.wc{width:121.140000px;}
.w5{width:396.795000px;}
.wb{width:513.285000px;}
.wf{width:606.705000px;}
.wa{width:611.745000px;}
.w2{width:892.979987px;}
.w0{width:892.980000px;}
.w1{width:893.250000px;}
.x0{left:0.000000px;}
.x1e{left:2.880000px;}
.x12{left:10.800000px;}
.x10{left:19.980000px;}
.xc{left:22.860000px;}
.xe{left:23.940000px;}
.x13{left:27.720000px;}
.x15{left:29.880000px;}
.x21{left:39.600000px;}
.x14{left:43.245000px;}
.x16{left:45.225000px;}
.x1c{left:58.500000px;}
.x1a{left:60.480000px;}
.xa{left:80.274000px;}
.x17{left:96.654000px;}
.x1d{left:124.236000px;}
.x18{left:126.396000px;}
.x1{left:127.655987px;}
.x9{left:138.636000px;}
.x1f{left:143.136000px;}
.x3{left:154.649987px;}
.x20{left:161.130000px;}
.x4{left:181.649987px;}
.x7{left:208.649987px;}
.x6{left:234.029987px;}
.x8{left:235.649987px;}
.xb{left:537.225000px;}
.xd{left:598.605000px;}
.x19{left:641.490000px;}
.xf{left:690.450000px;}
.x5{left:732.930000px;}
.x2{left:740.490000px;}
.x11{left:751.110000px;}
.x1b{left:763.350000px;}
@media print{
.v0{vertical-align:0.000000pt;}
.ls1b{letter-spacing:-0.640000pt;}
.ls27{letter-spacing:-0.480000pt;}
.ls12{letter-spacing:-0.256000pt;}
.lse{letter-spacing:-0.192000pt;}
.ls1c{letter-spacing:-0.128000pt;}
.ls1f{letter-spacing:-0.064000pt;}
.ls8{letter-spacing:-0.015360pt;}
.ls6{letter-spacing:0.000000pt;}
.ls4{letter-spacing:0.007680pt;}
.ls22{letter-spacing:0.015360pt;}
.ls26{letter-spacing:0.064000pt;}
.ls1{letter-spacing:0.106240pt;}
.ls1e{letter-spacing:0.128000pt;}
.lsa{letter-spacing:0.143360pt;}
.ls9{letter-spacing:0.160000pt;}
.lsb{letter-spacing:0.184960pt;}
.ls29{letter-spacing:0.192000pt;}
.ls2{letter-spacing:0.224000pt;}
.ls17{letter-spacing:0.256000pt;}
.ls0{letter-spacing:0.266667pt;}
.ls7{letter-spacing:0.320000pt;}
.ls2e{letter-spacing:0.336640pt;}
.ls18{letter-spacing:0.344960pt;}
.ls3{letter-spacing:0.471680pt;}
.ls20{letter-spacing:0.480000pt;}
.ls1a{letter-spacing:0.623360pt;}
.ls28{letter-spacing:0.808320pt;}
.ls19{letter-spacing:0.824960pt;}
.ls13{letter-spacing:2.560000pt;}
.ls1d{letter-spacing:7.680000pt;}
.ls23{letter-spacing:18.048000pt;}
.lsd{letter-spacing:21.248000pt;}
.ls24{letter-spacing:23.168000pt;}
.lsc{letter-spacing:25.088000pt;}
.ls2c{letter-spacing:26.368000pt;}
.ls10{letter-spacing:27.008000pt;}
.ls16{letter-spacing:28.288000pt;}
.ls5{letter-spacing:30.186667pt;}
.lsf{letter-spacing:30.208000pt;}
.ls21{letter-spacing:30.720000pt;}
.ls25{letter-spacing:31.488000pt;}
.ls11{letter-spacing:34.048000pt;}
.ls2a{letter-spacing:39.168000pt;}
.ls2b{letter-spacing:41.088000pt;}
.ls14{letter-spacing:48.768000pt;}
.ls2d{letter-spacing:55.808000pt;}
.ls15{letter-spacing:57.088000pt;}
.ws9{word-spacing:-64.000000pt;}
.ws2{word-spacing:-24.000000pt;}
.ws3{word-spacing:-21.280000pt;}
.ws1{word-spacing:-19.360000pt;}
.wsd{word-spacing:-17.295360pt;}
.ws4{word-spacing:-17.280000pt;}
.wsa{word-spacing:-16.256000pt;}
.wsf{word-spacing:-16.128000pt;}
.wse{word-spacing:-16.064000pt;}
.ws5{word-spacing:-16.000000pt;}
.wsc{word-spacing:-15.936000pt;}
.wsb{word-spacing:-15.872000pt;}
.ws7{word-spacing:-15.808000pt;}
.ws8{word-spacing:-15.744000pt;}
.ws10{word-spacing:-14.784000pt;}
.ws11{word-spacing:-14.592000pt;}
.ws13{word-spacing:-14.528000pt;}
.ws12{word-spacing:-14.464000pt;}
.ws0{word-spacing:-13.280000pt;}
.ws14{word-spacing:-0.064000pt;}
.ws6{word-spacing:0.000000pt;}
._1{margin-left:-1.004373pt;}
._0{width:1.115520pt;}
._a{width:2.122667pt;}
._5{width:3.392000pt;}
._16{width:4.608000pt;}
._17{width:5.883520pt;}
._3{width:7.104000pt;}
._4{width:8.128000pt;}
._b{width:9.664000pt;}
._9{width:10.816000pt;}
._8{width:11.840000pt;}
._18{width:12.746667pt;}
._2{width:13.822507pt;}
._c{width:15.044480pt;}
._21{width:16.896000pt;}
._6{width:17.792000pt;}
._7{width:18.688000pt;}
._e{width:20.288000pt;}
._d{width:21.184000pt;}
._f{width:22.144000pt;}
._20{width:23.042773pt;}
._19{width:23.959040pt;}
._1a{width:24.977920pt;}
._11{width:25.984000pt;}
._10{width:26.944000pt;}
._1b{width:28.480000pt;}
._12{width:29.952000pt;}
._13{width:31.456000pt;}
._1c{width:32.960000pt;}
._25{width:33.943040pt;}
._15{width:35.008000pt;}
._14{width:35.968000pt;}
._1d{width:37.223893pt;}
._24{width:38.223573pt;}
._1f{width:41.408000pt;}
._26{width:43.136000pt;}
._1e{width:44.800000pt;}
._27{width:48.000000pt;}
._28{width:52.480000pt;}
._22{width:60.160000pt;}
._23{width:61.240107pt;}
.fs7{font-size:10.880000pt;}
.fs6{font-size:16.000000pt;}
.fs8{font-size:42.880000pt;}
.fs0{font-size:53.120000pt;}
.fs5{font-size:64.000000pt;}
.fs4{font-size:69.120000pt;}
.fs2{font-size:77.440000pt;}
.fs3{font-size:85.120000pt;}
.fs1{font-size:96.000000pt;}
.y0{bottom:0.000000pt;}
.y4{bottom:2.880000pt;}
.y1a8{bottom:3.360000pt;}
.y1b5{bottom:3.386667pt;}
.y1ab{bottom:3.400000pt;}
.y1f6{bottom:21.600000pt;}
.y3{bottom:47.040000pt;}
.y2{bottom:49.920000pt;}
.y1f1{bottom:96.160000pt;}
.yad{bottom:99.200000pt;}
.y272{bottom:101.280000pt;}
.ye2{bottom:102.880000pt;}
.y72{bottom:109.600000pt;}
.y114{bottom:110.400000pt;}
.y148{bottom:110.560000pt;}
.y23f{bottom:111.040000pt;}
.y191{bottom:112.160000pt;}
.y165{bottom:112.640000pt;}
.ya2{bottom:114.400000pt;}
.y1f0{bottom:116.000000pt;}
.y4d{bottom:117.920000pt;}
.y251{bottom:119.520000pt;}
.y17d{bottom:122.560000pt;}
.y92{bottom:125.280000pt;}
.y71{bottom:128.000000pt;}
.y147{bottom:128.800000pt;}
.yac{bottom:129.760000pt;}
.y27d{bottom:129.920000pt;}
.y28{bottom:132.000000pt;}
.ya1{bottom:132.800000pt;}
.y214{bottom:134.080000pt;}
.y1ef{bottom:135.680000pt;}
.yda{bottom:136.800000pt;}
.y268{bottom:137.440000pt;}
.yd1{bottom:137.920000pt;}
.y113{bottom:140.160000pt;}
.y17c{bottom:140.800000pt;}
.y190{bottom:141.920000pt;}
.y164{bottom:142.560000pt;}
.y1a5{bottom:143.040000pt;}
.y1c9{bottom:147.040000pt;}
.y4c{bottom:147.680000pt;}
.y27c{bottom:148.320000pt;}
.y250{bottom:149.440000pt;}
.y27{bottom:150.426667pt;}
.y213{bottom:152.346667pt;}
.y91{bottom:155.226667pt;}
.y1ee{bottom:155.386667pt;}
.y267{bottom:155.706667pt;}
.y70{bottom:157.786667pt;}
.y22e{bottom:158.586667pt;}
.y146{bottom:158.746667pt;}
.y23e{bottom:159.226667pt;}
.yab{bottom:160.346667pt;}
.y163{bottom:160.986667pt;}
.ya0{bottom:162.586667pt;}
.y1c8{bottom:165.466667pt;}
.yd0{bottom:167.706667pt;}
.y26{bottom:169.306667pt;}
.y112{bottom:170.106667pt;}
.y17b{bottom:170.586667pt;}
.y18f{bottom:171.706667pt;}
.y2a5{bottom:172.346667pt;}
.y1a4{bottom:172.986667pt;}
.y90{bottom:174.106667pt;}
.y1ed{bottom:175.066667pt;}
.y4b{bottom:177.466667pt;}
.y145{bottom:177.626667pt;}
.y27b{bottom:178.106667pt;}
.y162{bottom:179.226667pt;}
.y109{bottom:180.506667pt;}
.y212{bottom:182.266667pt;}
.yd9{bottom:184.986667pt;}
.y266{bottom:185.626667pt;}
.y25{bottom:187.706667pt;}
.y22d{bottom:188.346667pt;}
.y18e{bottom:190.106667pt;}
.y2a4{bottom:190.746667pt;}
.yaa{bottom:190.906667pt;}
.y1a3{bottom:191.386667pt;}
.y8f{bottom:192.506667pt;}
.y1ec{bottom:194.746667pt;}
.y1c7{bottom:195.226667pt;}
.y144{bottom:196.026667pt;}
.ycf{bottom:197.626667pt;}
.y111{bottom:199.866667pt;}
.y17a{bottom:200.506667pt;}
.y211{bottom:201.146667pt;}
.y265{bottom:204.506667pt;}
.y4a{bottom:207.386667pt;}
.y27a{bottom:207.866667pt;}
.y18d{bottom:208.506667pt;}
.y161{bottom:208.986667pt;}
.y1a2{bottom:209.626667pt;}
.y108{bottom:210.266667pt;}
.y1c6{bottom:214.266667pt;}
.y1eb{bottom:214.426667pt;}
.yd8{bottom:214.746667pt;}
.yce{bottom:216.506667pt;}
.y24{bottom:217.466667pt;}
.y22c{bottom:218.266667pt;}
.y179{bottom:218.906667pt;}
.y210{bottom:219.546667pt;}
.y2a3{bottom:220.506667pt;}
.ya9{bottom:221.466667pt;}
.y8e{bottom:222.266667pt;}
.y264{bottom:222.906667pt;}
.y143{bottom:225.786667pt;}
.y49{bottom:226.266667pt;}
.y160{bottom:227.386667pt;}
.y110{bottom:229.786667pt;}
.y1c5{bottom:232.506667pt;}
.y1ea{bottom:234.106667pt;}
.ycd{bottom:234.906667pt;}
.y6f{bottom:236.506667pt;}
.y123{bottom:237.146667pt;}
.y279{bottom:237.786667pt;}
.y18c{bottom:238.266667pt;}
.y24f{bottom:238.906667pt;}
.y1a1{bottom:239.386667pt;}
.y107{bottom:240.186667pt;}
.y9f{bottom:241.306667pt;}
.y48{bottom:244.666667pt;}
.y15f{bottom:245.786667pt;}
.y23{bottom:247.226667pt;}
.y22b{bottom:248.026667pt;}
.y20f{bottom:249.306667pt;}
.y2a2{bottom:250.426667pt;}
.ya8{bottom:251.226667pt;}
.y8d{bottom:252.026667pt;}
.y263{bottom:252.666667pt;}
.y1e9{bottom:253.786667pt;}
.y6e{bottom:254.746667pt;}
.y142{bottom:255.706667pt;}
.y9e{bottom:259.546667pt;}
.yd7{bottom:263.546667pt;}
.ycc{bottom:264.666667pt;}
.y122{bottom:267.066667pt;}
.y278{bottom:267.546667pt;}
.y18b{bottom:268.186667pt;}
.y24e{bottom:268.666667pt;}
.y1a0{bottom:269.306667pt;}
.y1c4{bottom:269.626667pt;}
.y106{bottom:269.946667pt;}
.ydc{bottom:271.066667pt;}
.y1e8{bottom:273.466667pt;}
.y47{bottom:274.426667pt;}
.y141{bottom:274.586667pt;}
.y15e{bottom:275.546667pt;}
.y22{bottom:277.146667pt;}
.y22a{bottom:277.946667pt;}
.y10f{bottom:278.586667pt;}
.y2a1{bottom:280.186667pt;}
.y8c{bottom:281.946667pt;}
.y262{bottom:282.426667pt;}
.y6d{bottom:284.506667pt;}
.y1c3{bottom:285.306667pt;}
.y121{bottom:285.946667pt;}
.y26f{bottom:287.066667pt;}
.y19f{bottom:287.706667pt;}
.y9d{bottom:289.306667pt;}
.y140{bottom:292.986667pt;}
.y1e7{bottom:293.146667pt;}
.y20e{bottom:294.266667pt;}
.ycb{bottom:294.586667pt;}
.y10e{bottom:296.826667pt;}
.y277{bottom:297.466667pt;}
.y18a{bottom:297.946667pt;}
.y24d{bottom:298.586667pt;}
.y105{bottom:299.866667pt;}
.ye1{bottom:300.826667pt;}
.y46{bottom:304.346667pt;}
.y1c2{bottom:304.986667pt;}
.y15d{bottom:305.466667pt;}
.y19e{bottom:305.946667pt;}
.y21{bottom:306.906667pt;}
.y229{bottom:307.706667pt;}
.y8b{bottom:311.706667pt;}
.y261{bottom:312.346667pt;}
.y1e6{bottom:312.826667pt;}
.y20d{bottom:313.946667pt;}
.y6c{bottom:314.426667pt;}
.y23d{bottom:315.866667pt;}
.y2a0{bottom:316.826667pt;}
.y104{bottom:318.746667pt;}
.y9c{bottom:319.226667pt;}
.y13f{bottom:322.746667pt;}
.y45{bottom:323.226667pt;}
.yca{bottom:324.346667pt;}
.y1c1{bottom:324.666667pt;}
.y20{bottom:325.946667pt;}
.y10d{bottom:326.586667pt;}
.y276{bottom:327.226667pt;}
.y189{bottom:327.706667pt;}
.y24c{bottom:328.346667pt;}
.y8a{bottom:330.746667pt;}
.y6b{bottom:333.306667pt;}
.y20c{bottom:333.626667pt;}
.y57{bottom:334.106667pt;}
.y15c{bottom:335.226667pt;}
.y19d{bottom:335.866667pt;}
.y103{bottom:337.146667pt;}
.y228{bottom:337.466667pt;}
.y1e5{bottom:337.626667pt;}
.y9b{bottom:338.106667pt;}
.y44{bottom:341.626667pt;}
.y260{bottom:342.106667pt;}
.yc9{bottom:343.386667pt;}
.y1f{bottom:344.186667pt;}
.y1c0{bottom:344.346667pt;}
.y29f{bottom:346.746667pt;}
.y24b{bottom:347.386667pt;}
.y89{bottom:348.986667pt;}
.y6a{bottom:351.706667pt;}
.y13e{bottom:352.506667pt;}
.y56{bottom:353.146667pt;}
.y20b{bottom:353.306667pt;}
.y15b{bottom:354.266667pt;}
.y227{bottom:355.866667pt;}
.y9a{bottom:356.506667pt;}
.y275{bottom:356.986667pt;}
.y188{bottom:357.626667pt;}
.y2ae{bottom:358.106667pt;}
.yc8{bottom:361.626667pt;}
.y120{bottom:363.866667pt;}
.y1bf{bottom:364.026667pt;}
.y26e{bottom:364.986667pt;}
.y19c{bottom:365.626667pt;}
.y102{bottom:366.946667pt;}
.y43{bottom:371.426667pt;}
.y25f{bottom:372.066667pt;}
.y15a{bottom:372.546667pt;}
.y20a{bottom:373.026667pt;}
.y1e{bottom:374.146667pt;}
.y226{bottom:374.306667pt;}
.y187{bottom:376.066667pt;}
.y29e{bottom:376.546667pt;}
.y88{bottom:378.946667pt;}
.y69{bottom:381.506667pt;}
.y13d{bottom:382.466667pt;}
.y1be{bottom:383.746667pt;}
.y24a{bottom:384.066667pt;}
.y99{bottom:386.306667pt;}
.y2ad{bottom:388.066667pt;}
.ya7{bottom:390.466667pt;}
.yc7{bottom:391.426667pt;}
.y209{bottom:392.706667pt;}
.y1d{bottom:393.026667pt;}
.y11f{bottom:393.826667pt;}
.y186{bottom:394.306667pt;}
.y26d{bottom:394.946667pt;}
.y19b{bottom:395.426667pt;}
.y101{bottom:396.706667pt;}
.y42{bottom:401.186667pt;}
.y25e{bottom:401.826667pt;}
.y159{bottom:402.306667pt;}
.y1bd{bottom:403.426667pt;}
.y225{bottom:404.066667pt;}
.y2ac{bottom:406.466667pt;}
.y1e4{bottom:407.106667pt;}
.y87{bottom:408.706667pt;}
.y1c{bottom:411.426667pt;}
.y13c{bottom:412.226667pt;}
.y208{bottom:412.386667pt;}
.y98{bottom:416.226667pt;}
.yc6{bottom:421.346667pt;}
.y224{bottom:422.466667pt;}
.y1e3{bottom:422.786667pt;}
.y1bc{bottom:423.106667pt;}
.y11e{bottom:423.586667pt;}
.y185{bottom:424.226667pt;}
.y234{bottom:424.706667pt;}
.y19a{bottom:425.346667pt;}
.y100{bottom:426.626667pt;}
.y86{bottom:427.746667pt;}
.y41{bottom:431.106667pt;}
.y25d{bottom:431.586667pt;}
.y158{bottom:432.226667pt;}
.y178{bottom:434.626667pt;}
.y29d{bottom:437.506667pt;}
.ya6{bottom:438.466667pt;}
.y223{bottom:440.866667pt;}
.y1b{bottom:441.186667pt;}
.y13b{bottom:442.146667pt;}
.y1e2{bottom:442.466667pt;}
.y11d{bottom:442.626667pt;}
.y1bb{bottom:442.786667pt;}
.y271{bottom:443.746667pt;}
.y85{bottom:445.986667pt;}
.y40{bottom:449.986667pt;}
.y25c{bottom:450.626667pt;}
.yc5{bottom:451.106667pt;}
.y207{bottom:451.906667pt;}
.y177{bottom:452.866667pt;}
.y126{bottom:453.506667pt;}
.y184{bottom:453.986667pt;}
.y233{bottom:454.626667pt;}
.y199{bottom:455.106667pt;}
.yff{bottom:456.386667pt;}
.yd6{bottom:457.506667pt;}
.y222{bottom:459.266667pt;}
.y68{bottom:460.226667pt;}
.y55{bottom:460.866667pt;}
.y157{bottom:461.986667pt;}
.y1e1{bottom:462.146667pt;}
.y1ba{bottom:462.466667pt;}
.y29c{bottom:468.066667pt;}
.y3f{bottom:468.386667pt;}
.y25b{bottom:468.866667pt;}
.yc4{bottom:470.146667pt;}
.y1a{bottom:470.946667pt;}
.y206{bottom:471.586667pt;}
.y13a{bottom:471.906667pt;}
.y125{bottom:472.386667pt;}
.y26c{bottom:473.026667pt;}
.y84{bottom:475.746667pt;}
.y221{bottom:477.506667pt;}
.y67{bottom:478.466667pt;}
.y54{bottom:479.906667pt;}
.y1e0{bottom:481.826667pt;}
.y1b9{bottom:482.146667pt;}
.y176{bottom:482.786667pt;}
.y23c{bottom:483.266667pt;}
.y183{bottom:483.906667pt;}
.y232{bottom:484.386667pt;}
.y198{bottom:485.026667pt;}
.yfe{bottom:486.306667pt;}
.ye0{bottom:487.266667pt;}
.y25a{bottom:487.906667pt;}
.yc3{bottom:488.386667pt;}
.y11c{bottom:490.786667pt;}
.y205{bottom:491.266667pt;}
.y156{bottom:491.906667pt;}
.y10c{bottom:494.786667pt;}
.y3e{bottom:498.146667pt;}
.y29b{bottom:498.786667pt;}
.y19{bottom:500.866667pt;}
.y1df{bottom:501.506667pt;}
.y139{bottom:501.666667pt;}
.y1b8{bottom:501.986667pt;}
.y231{bottom:502.786667pt;}
.yfd{bottom:505.186667pt;}
.y83{bottom:505.666667pt;}
.y259{bottom:506.146667pt;}
.y220{bottom:507.266667pt;}
.y66{bottom:508.226667pt;}
.y249{bottom:510.306667pt;}
.y204{bottom:510.946667pt;}
.y175{bottom:512.546667pt;}
.y10b{bottom:513.026667pt;}
.y182{bottom:513.666667pt;}
.y2ab{bottom:514.306667pt;}
.y197{bottom:514.786667pt;}
.yc2{bottom:518.306667pt;}
.y11b{bottom:520.546667pt;}
.y1de{bottom:521.186667pt;}
.y155{bottom:521.666667pt;}
.yfc{bottom:523.586667pt;}
.y82{bottom:524.546667pt;}
.y65{bottom:527.266667pt;}
.y3d{bottom:528.066667pt;}
.y248{bottom:528.546667pt;}
.y18{bottom:530.626667pt;}
.y174{bottom:530.946667pt;}
.y138{bottom:531.586667pt;}
.y196{bottom:533.186667pt;}
.y97{bottom:535.426667pt;}
.y258{bottom:536.066667pt;}
.y21f{bottom:537.186667pt;}
.y1dd{bottom:540.866667pt;}
.y1b7{bottom:541.346667pt;}
.y81{bottom:542.946667pt;}
.y181{bottom:543.426667pt;}
.y2aa{bottom:544.066667pt;}
.y64{bottom:545.506667pt;}
.ya5{bottom:546.946667pt;}
.yc1{bottom:548.066667pt;}
.y173{bottom:549.186667pt;}
.y17{bottom:549.666667pt;}
.y28a{bottom:549.826667pt;}
.y11a{bottom:550.306667pt;}
.y230{bottom:550.946667pt;}
.y154{bottom:551.586667pt;}
.yfb{bottom:553.346667pt;}
.y96{bottom:554.466667pt;}
.y257{bottom:554.946667pt;}
.y3c{bottom:557.826667pt;}
.y247{bottom:558.466667pt;}
.y1dc{bottom:560.546667pt;}
.y1b6{bottom:561.026667pt;}
.y137{bottom:561.346667pt;}
.y274{bottom:562.466667pt;}
.ya4{bottom:565.346667pt;}
.y21e{bottom:566.946667pt;}
.y16{bottom:567.906667pt;}
.y22f{bottom:569.346667pt;}
.y203{bottom:569.986667pt;}
.y80{bottom:572.706667pt;}
.y180{bottom:573.346667pt;}
.y2a9{bottom:573.826667pt;}
.y63{bottom:575.426667pt;}
.y3b{bottom:576.866667pt;}
.y29a{bottom:577.346667pt;}
.yc0{bottom:577.826667pt;}
.y172{bottom:579.106667pt;}
.y289{bottom:579.586667pt;}
.y136{bottom:579.746667pt;}
.y119{bottom:580.226667pt;}
.y1b4{bottom:580.706667pt;}
.y153{bottom:581.346667pt;}
.yfa{bottom:583.133333pt;}
.y10a{bottom:584.253333pt;}
.y53{bottom:587.613333pt;}
.y246{bottom:588.253333pt;}
.y202{bottom:589.693333pt;}
.y17f{bottom:591.773333pt;}
.y62{bottom:594.333333pt;}
.y3a{bottom:595.133333pt;}
.y299{bottom:595.773333pt;}
.y21d{bottom:596.893333pt;}
.y15{bottom:597.853333pt;}
.y288{bottom:598.013333pt;}
.y135{bottom:598.173333pt;}
.y1db{bottom:599.933333pt;}
.y1b3{bottom:600.413333pt;}
.y7f{bottom:602.653333pt;}
.y256{bottom:603.133333pt;}
.y2a8{bottom:603.773333pt;}
.y52{bottom:606.653333pt;}
.ybf{bottom:607.773333pt;}
.y171{bottom:608.893333pt;}
.y201{bottom:609.373333pt;}
.y118{bottom:610.013333pt;}
.y26b{bottom:610.653333pt;}
.y152{bottom:611.133333pt;}
.y61{bottom:612.733333pt;}
.yf9{bottom:613.053333pt;}
.ydf{bottom:614.173333pt;}
.y298{bottom:614.653333pt;}
.y287{bottom:616.413333pt;}
.y14{bottom:616.733333pt;}
.yec{bottom:617.533333pt;}
.y245{bottom:618.013333pt;}
.y1da{bottom:619.613333pt;}
.y1b2{bottom:620.093333pt;}
.y255{bottom:622.173333pt;}
.y39{bottom:624.893333pt;}
.y21c{bottom:626.653333pt;}
.y134{bottom:627.933333pt;}
.y200{bottom:629.053333pt;}
.y7e{bottom:632.413333pt;}
.y297{bottom:633.053333pt;}
.y2a7{bottom:633.533333pt;}
.y13{bottom:635.133333pt;}
.y286{bottom:635.293333pt;}
.ybe{bottom:637.533333pt;}
.y170{bottom:638.813333pt;}
.y1d9{bottom:639.293333pt;}
.y1b1{bottom:639.773333pt;}
.y117{bottom:639.933333pt;}
.y254{bottom:640.413333pt;}
.y151{bottom:641.053333pt;}
.y60{bottom:642.493333pt;}
.yf8{bottom:642.813333pt;}
.ya3{bottom:643.933333pt;}
.y21b{bottom:645.053333pt;}
.yeb{bottom:647.293333pt;}
.y244{bottom:647.933333pt;}
.y1ff{bottom:648.733333pt;}
.yd5{bottom:651.453333pt;}
.y2a6{bottom:651.933333pt;}
.y285{bottom:653.693333pt;}
.y38{bottom:654.813333pt;}
.ybd{bottom:656.573333pt;}
.y133{bottom:657.693333pt;}
.y116{bottom:658.813333pt;}
.y1d8{bottom:659.133333pt;}
.y1b0{bottom:659.453333pt;}
.y7d{bottom:662.173333pt;}
.y296{bottom:662.813333pt;}
.y21a{bottom:663.453333pt;}
.y12{bottom:664.893333pt;}
.y12a{bottom:666.333333pt;}
.y16f{bottom:668.573333pt;}
.yd4{bottom:669.693333pt;}
.y253{bottom:670.333333pt;}
.y150{bottom:670.813333pt;}
.y5f{bottom:672.413333pt;}
.y284{bottom:672.573333pt;}
.yf7{bottom:672.733333pt;}
.y1fe{bottom:673.533333pt;}
.y51{bottom:673.693333pt;}
.ybc{bottom:674.813333pt;}
.y132{bottom:676.733333pt;}
.yea{bottom:677.213333pt;}
.y243{bottom:677.693333pt;}
.y1d7{bottom:678.813333pt;}
.y1af{bottom:679.133333pt;}
.y23b{bottom:680.733333pt;}
.y7c{bottom:681.213333pt;}
.y11{bottom:683.933333pt;}
.y37{bottom:684.573333pt;}
.y124{bottom:688.733333pt;}
.y270{bottom:689.213333pt;}
.y283{bottom:690.973333pt;}
.y50{bottom:692.093333pt;}
.y295{bottom:692.573333pt;}
.y219{bottom:693.213333pt;}
.y131{bottom:694.973333pt;}
.y16e{bottom:698.333333pt;}
.y1d6{bottom:698.493333pt;}
.y1ae{bottom:698.813333pt;}
.y23a{bottom:698.973333pt;}
.y7b{bottom:699.453333pt;}
.y252{bottom:700.093333pt;}
.y14f{bottom:700.733333pt;}
.y10{bottom:702.173333pt;}
.yf6{bottom:702.493333pt;}
.y36{bottom:703.613333pt;}
.ybb{bottom:704.733333pt;}
.ye9{bottom:706.973333pt;}
.y242{bottom:707.613333pt;}
.y95{bottom:710.973333pt;}
.y1fd{bottom:711.933333pt;}
.y129{bottom:714.493333pt;}
.y1d5{bottom:718.173333pt;}
.y17e{bottom:718.493333pt;}
.y282{bottom:720.733333pt;}
.y5e{bottom:721.213333pt;}
.y35{bottom:721.853333pt;}
.y294{bottom:722.493333pt;}
.y218{bottom:722.973333pt;}
.yba{bottom:723.613333pt;}
.y130{bottom:724.893333pt;}
.y273{bottom:726.013333pt;}
.y16d{bottom:728.253333pt;}
.y239{bottom:728.733333pt;}
.y7a{bottom:729.373333pt;}
.y26a{bottom:729.853333pt;}
.y14e{bottom:730.493333pt;}
.yf{bottom:731.933333pt;}
.yf5{bottom:732.253333pt;}
.ye8{bottom:736.733333pt;}
.y241{bottom:737.373333pt;}
.y1d4{bottom:737.853333pt;}
.y1ad{bottom:738.173333pt;}
.y5d{bottom:739.453333pt;}
.y34{bottom:740.893333pt;}
.y293{bottom:741.373333pt;}
.y1fc{bottom:741.853333pt;}
.yb9{bottom:742.013333pt;}
.y128{bottom:744.253333pt;}
.yd3{bottom:748.253333pt;}
.y195{bottom:748.893333pt;}
.y281{bottom:750.653333pt;}
.yf4{bottom:751.293333pt;}
.yde{bottom:751.773333pt;}
.y217{bottom:752.893333pt;}
.y12f{bottom:754.653333pt;}
.y240{bottom:755.773333pt;}
.y1d3{bottom:757.533333pt;}
.y16c{bottom:758.013333pt;}
.y238{bottom:758.653333pt;}
.y33{bottom:759.133333pt;}
.y292{bottom:759.773333pt;}
.y14d{bottom:760.253333pt;}
.ye{bottom:761.853333pt;}
.yd2{bottom:766.653333pt;}
.y194{bottom:767.133333pt;}
.y5c{bottom:769.213333pt;}
.yf3{bottom:769.533333pt;}
.ydd{bottom:770.653333pt;}
.y1fb{bottom:771.133333pt;}
.y216{bottom:771.293333pt;}
.yb8{bottom:771.773333pt;}
.y12e{bottom:773.693333pt;}
.y127{bottom:774.013333pt;}
.y16b{bottom:777.053333pt;}
.y1d2{bottom:777.213333pt;}
.y1ac{bottom:777.693333pt;}
.y79{bottom:778.173333pt;}
.y14c{bottom:778.653333pt;}
.ye7{bottom:785.533333pt;}
.y280{bottom:787.933333pt;}
.y237{bottom:788.413333pt;}
.y32{bottom:789.053333pt;}
.y215{bottom:789.533333pt;}
.y1fa{bottom:791.133333pt;}
.yd{bottom:791.613333pt;}
.y12d{bottom:791.933333pt;}
.y16a{bottom:795.293333pt;}
.y78{bottom:796.413333pt;}
.y1d1{bottom:796.893333pt;}
.y14b{bottom:797.053333pt;}
.y1aa{bottom:797.373333pt;}
.y5b{bottom:799.173333pt;}
.yf2{bottom:799.493333pt;}
.yb7{bottom:801.573333pt;}
.yb5{bottom:803.173333pt;}
.ye6{bottom:803.973333pt;}
.ydb{bottom:807.973333pt;}
.yc{bottom:810.693333pt;}
.y269{bottom:815.493333pt;}
.y1d0{bottom:816.613333pt;}
.y1a9{bottom:817.093333pt;}
.y1f9{bottom:817.413333pt;}
.y27f{bottom:817.733333pt;}
.y5a{bottom:818.053333pt;}
.y236{bottom:818.373333pt;}
.y31{bottom:818.853333pt;}
.yb6{bottom:819.333333pt;}
.y291{bottom:819.493333pt;}
.y12c{bottom:821.893333pt;}
.y169{bottom:825.253333pt;}
.y77{bottom:826.373333pt;}
.y14a{bottom:826.853333pt;}
.yb{bottom:828.933333pt;}
.yf1{bottom:829.253333pt;}
.yb4{bottom:833.093333pt;}
.ye5{bottom:833.733333pt;}
.y1cf{bottom:836.293333pt;}
.y59{bottom:836.453333pt;}
.y27e{bottom:836.773333pt;}
.y94{bottom:837.893333pt;}
.y12b{bottom:840.773333pt;}
.y1a7{bottom:841.733333pt;}
.y1f8{bottom:843.813333pt;}
.y149{bottom:845.253333pt;}
.y235{bottom:848.133333pt;}
.y30{bottom:848.613333pt;}
.y290{bottom:849.253333pt;}
.y168{bottom:855.013333pt;}
.y1ce{bottom:855.973333pt;}
.y76{bottom:856.133333pt;}
.y193{bottom:856.773333pt;}
.ya{bottom:858.853333pt;}
.yf0{bottom:859.173333pt;}
.yb3{bottom:862.853333pt;}
.ye4{bottom:863.653333pt;}
.y58{bottom:866.213333pt;}
.y1a6{bottom:866.533333pt;}
.y2f{bottom:867.653333pt;}
.y1f7{bottom:870.213333pt;}
.y115{bottom:875.173333pt;}
.y1cd{bottom:875.653333pt;}
.y9{bottom:877.733333pt;}
.y4f{bottom:878.533333pt;}
.y28f{bottom:879.013333pt;}
.y167{bottom:884.773333pt;}
.y2e{bottom:885.893333pt;}
.y192{bottom:886.533333pt;}
.yef{bottom:888.933333pt;}
.yb2{bottom:892.613333pt;}
.ye3{bottom:893.413333pt;}
.y1cc{bottom:895.493333pt;}
.y8{bottom:896.133333pt;}
.y1f5{bottom:896.613333pt;}
.y4e{bottom:897.413333pt;}
.y28e{bottom:898.053333pt;}
.y75{bottom:904.933333pt;}
.yee{bottom:909.893333pt;}
.y166{bottom:914.693333pt;}
.y1cb{bottom:915.173333pt;}
.y2d{bottom:915.813333pt;}
.y28d{bottom:916.293333pt;}
.yb1{bottom:922.533333pt;}
.y74{bottom:923.173333pt;}
.y7{bottom:925.893333pt;}
.y93{bottom:934.693333pt;}
.yed{bottom:935.653333pt;}
.y1ca{bottom:939.813333pt;}
.y1f4{bottom:941.253333pt;}
.y2c{bottom:945.573333pt;}
.y28c{bottom:946.213333pt;}
.yb0{bottom:952.293333pt;}
.y73{bottom:953.093333pt;}
.y6{bottom:962.053333pt;}
.y2b{bottom:964.613333pt;}
.y1f3{bottom:967.653333pt;}
.y28b{bottom:975.973333pt;}
.yaf{bottom:982.213333pt;}
.y2a{bottom:982.853333pt;}
.y1f2{bottom:994.373333pt;}
.y5{bottom:1005.573333pt;}
.yae{bottom:1011.973333pt;}
.y29{bottom:1012.773333pt;}
.y1{bottom:1062.880000pt;}
.ha{height:7.920937pt;}
.hd{height:11.453125pt;}
.h8{height:11.648438pt;}
.h17{height:14.296875pt;}
.hf{height:14.421875pt;}
.h1b{height:14.476562pt;}
.h4{height:15.360000pt;}
.h14{height:18.240000pt;}
.h13{height:18.272000pt;}
.h10{height:18.400000pt;}
.h15{height:18.432000pt;}
.h18{height:36.640000pt;}
.h16{height:38.650625pt;}
.h7{height:46.593750pt;}
.h2{height:52.108438pt;}
.h3{height:52.134375pt;}
.hb{height:57.187500pt;}
.h12{height:57.687500pt;}
.h1a{height:57.906250pt;}
.h11{height:58.218750pt;}
.he{height:61.845000pt;}
.h19{height:62.812500pt;}
.h6{height:65.781915pt;}
.h5{height:69.750000pt;}
.hc{height:76.059375pt;}
.h9{height:85.781250pt;}
.h0{height:1122.560000pt;}
.h1{height:1122.666667pt;}
.w9{width:3.680000pt;}
.we{width:13.120000pt;}
.wd{width:13.920000pt;}
.w3{width:22.240000pt;}
.w4{width:28.960000pt;}
.w6{width:53.120000pt;}
.w8{width:53.280000pt;}
.w7{width:80.352000pt;}
.wc{width:107.680000pt;}
.w5{width:352.706667pt;}
.wb{width:456.253333pt;}
.wf{width:539.293333pt;}
.wa{width:543.773333pt;}
.w2{width:793.759988pt;}
.w0{width:793.760000pt;}
.w1{width:794.000000pt;}
.x0{left:0.000000pt;}
.x1e{left:2.560000pt;}
.x12{left:9.600000pt;}
.x10{left:17.760000pt;}
.xc{left:20.320000pt;}
.xe{left:21.280000pt;}
.x13{left:24.640000pt;}
.x15{left:26.560000pt;}
.x21{left:35.200000pt;}
.x14{left:38.440000pt;}
.x16{left:40.200000pt;}
.x1c{left:52.000000pt;}
.x1a{left:53.760000pt;}
.xa{left:71.354667pt;}
.x17{left:85.914667pt;}
.x1d{left:110.432000pt;}
.x18{left:112.352000pt;}
.x1{left:113.471988pt;}
.x9{left:123.232000pt;}
.x1f{left:127.232000pt;}
.x3{left:137.466655pt;}
.x20{left:143.226667pt;}
.x4{left:161.466655pt;}
.x7{left:185.466655pt;}
.x6{left:208.026655pt;}
.x8{left:209.466655pt;}
.xb{left:477.533333pt;}
.xd{left:532.093333pt;}
.x19{left:570.213333pt;}
.xf{left:613.733333pt;}
.x5{left:651.493333pt;}
.x2{left:658.213333pt;}
.x11{left:667.653333pt;}
.x1b{left:678.533333pt;}
}




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