
    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_51845cfcb999c27cf290875f.woff2')format("woff");}.ff1{font-family:ff1;line-height:1.123535;font-style:normal;font-weight: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_e2e9b380cd19df2f437e2a95.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.938477;font-style:normal;font-weight: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_c37ca7ba7607519ab17e7130.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.914551;font-style:normal;font-weight: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_81a27477a92b3399f8cfb763.woff2')format("woff");}.ff4{font-family:ff4;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:ff5;src:url('chunks/assets/font_cb06263149d06e4a3c6fad88.woff2')format("woff");}.ff5{font-family:ff5;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff6;src:url('chunks/assets/font_4df674d4b9fc3f1582460864.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_5b9d7516198af5cedaf04b8f.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_bcfdc616d7c2bb035cd149cd.woff2')format("woff");}.ff8{font-family:ff8;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:ff9;src:url('chunks/assets/font_2ee853f562482fd945c7db61.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffa;src:url('chunks/assets/font_2192a28750319161cd8759ba.woff2')format("woff");}.ffa{font-family:ffa;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffb;src:url('chunks/assets/font_847eab5240804f6897920993.woff2')format("woff");}.ffb{font-family:ffb;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ffc;src:url('chunks/assets/font_81dab72223fb9b28d084d0f9.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.680176;font-style:normal;font-weight: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_9985dfdf10ea1f0d2cefc0fd.woff2')format("woff");}.ffd{font-family:ffd;line-height:1.372070;font-style:normal;font-weight: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_f608f409a3a7eba2ca2d0e87.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.910156;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:fff;src:url('chunks/assets/font_b2b858abf607d7d72e6a1ae5.woff2')format("woff");}.fff{font-family:fff;line-height:0.692383;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff10;src:url('chunks/assets/font_85af87e597f1d14086740ce8.woff2')format("woff");}.ff10{font-family:ff10;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:ff11;src:url('chunks/assets/font_2ce6200d28552862d6b35746.woff2')format("woff");}.ff11{font-family:ff11;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:ff12;src:url('chunks/assets/font_3c94525203f762992f1a92dc.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.680176;font-style:normal;font-weight: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_112549451adfe9f17531cf48.woff2')format("woff");}.ff13{font-family:ff13;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff14;src:url('chunks/assets/font_2df5ca94e0d4aab050af4d4d.woff2')format("woff");}.ff14{font-family:ff14;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff15;src:url('chunks/assets/font_3c2150f022a79062606b659c.woff2')format("woff");}.ff15{font-family:ff15;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff16;src:url('chunks/assets/font_b6bb1298fbab03a1df8b913c.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_80f285f7c9b0cb1c4d1fb18e.woff2')format("woff");}.ff17{font-family:ff17;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff18;src:url('chunks/assets/font_7125e317619dc266e5b9110f.woff2')format("woff");}.ff18{font-family:ff18;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:ff19;src:url('chunks/assets/font_f34e1a7baa421a15b2c6f862.woff2')format("woff");}.ff19{font-family:ff19;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1a;src:url('chunks/assets/font_028da45e0e81c9af94d693ff.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:1.284668;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1b;src:url('chunks/assets/font_cae039e5206ba2518550dd6e.woff2')format("woff");}.ff1b{font-family:ff1b;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:ff1c;src:url('chunks/assets/font_25bb2917411c2cfab70e8342.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff1d;src:url('chunks/assets/font_7efdf1c1649f2d392ca726e1.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_0a992534503584221af06e49.woff2')format("woff");}.ff1e{font-family:ff1e;line-height:0.690918;font-style:normal;font-weight: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_4b48e1f969d0a56eadb8f537.woff2')format("woff");}.ff1f{font-family:ff1f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff20;src:url('chunks/assets/font_385a852fa3aea71107816dac.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_a58c0b60a93d6ed60d126357.woff2')format("woff");}.ff21{font-family:ff21;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff22;src:url('chunks/assets/font_76e72c230ab789798faa5b7a.woff2')format("woff");}.ff22{font-family:ff22;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff23;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff23{font-family:ff23;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff24;src:url('chunks/assets/font_76e72c230ab789798faa5b7a.woff2')format("woff");}.ff24{font-family:ff24;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff25;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff25{font-family:ff25;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff26;src:url('chunks/assets/font_797c88817e6b9a139588d3f1.woff2')format("woff");}.ff26{font-family:ff26;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff27;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff27{font-family:ff27;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff28;src:url('chunks/assets/font_797c88817e6b9a139588d3f1.woff2')format("woff");}.ff28{font-family:ff28;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff29;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff29{font-family:ff29;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2a;src:url('chunks/assets/font_797c88817e6b9a139588d3f1.woff2')format("woff");}.ff2a{font-family:ff2a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2b;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff2b{font-family:ff2b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2c;src:url('chunks/assets/font_b1c816c8e5185cb794388ef1.woff2')format("woff");}.ff2c{font-family:ff2c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2d;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff2d{font-family:ff2d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2e;src:url('chunks/assets/font_b1c816c8e5185cb794388ef1.woff2')format("woff");}.ff2e{font-family:ff2e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff2f;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff2f{font-family:ff2f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff30;src:url('chunks/assets/font_d355798b04541bc7eff8dbc8.woff2')format("woff");}.ff30{font-family:ff30;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff31;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff31{font-family:ff31;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff32;src:url('chunks/assets/font_37f10e724e7088adad2b19c4.woff2')format("woff");}.ff32{font-family:ff32;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff33;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff33{font-family:ff33;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff34;src:url('chunks/assets/font_a17c9eba26f9ea685e637aa6.woff2')format("woff");}.ff34{font-family:ff34;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff35;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff35{font-family:ff35;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff36;src:url('chunks/assets/font_ceb1df8d8e3c299fd1ec6d8b.woff2')format("woff");}.ff36{font-family:ff36;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff37;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff37{font-family:ff37;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff38;src:url('chunks/assets/font_ceb1df8d8e3c299fd1ec6d8b.woff2')format("woff");}.ff38{font-family:ff38;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff39;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff39{font-family:ff39;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3a;src:url('chunks/assets/font_b5cf51611819f658dbf2e447.woff2')format("woff");}.ff3a{font-family:ff3a;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3b;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff3b{font-family:ff3b;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3c;src:url('chunks/assets/font_2cb9dd64e75beb97963b464c.woff2')format("woff");}.ff3c{font-family:ff3c;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3d;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff3d{font-family:ff3d;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3e;src:url('chunks/assets/font_28026d14e3c6fa04ff56263f.woff2')format("woff");}.ff3e{font-family:ff3e;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff3f;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff3f{font-family:ff3f;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff40;src:url('chunks/assets/font_2a149ef4501dcd6a31da8ab5.woff2')format("woff");}.ff40{font-family:ff40;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff41;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff41{font-family:ff41;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff42;src:url('chunks/assets/font_3ab0fa47438cd39c3e3e6268.woff2')format("woff");}.ff42{font-family:ff42;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff43;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff43{font-family:ff43;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff44;src:url('chunks/assets/font_c8afc9b834f4d35c2aa6b4c9.woff2')format("woff");}.ff44{font-family:ff44;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff45;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff45{font-family:ff45;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff46;src:url('chunks/assets/font_c8afc9b834f4d35c2aa6b4c9.woff2')format("woff");}.ff46{font-family:ff46;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff47;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff47{font-family:ff47;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff48;src:url('chunks/assets/font_c8afc9b834f4d35c2aa6b4c9.woff2')format("woff");}.ff48{font-family:ff48;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
@font-face{font-family:ff49;src:url('chunks/assets/font_bd00edf1ff1076c95019f858.woff2')format("woff");}.ff49{font-family:ff49;line-height:1.432129;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.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);}
.v5{vertical-align:-68.400000px;}
.v2{vertical-align:-20.880000px;}
.v3{vertical-align:-9.360000px;}
.v7{vertical-align:-5.760000px;}
.v0{vertical-align:0.000000px;}
.v8{vertical-align:5.760000px;}
.v4{vertical-align:9.360000px;}
.v6{vertical-align:20.880000px;}
.v1{vertical-align:27.360000px;}
.ls34{letter-spacing:-0.990000px;}
.ls39{letter-spacing:-0.672000px;}
.ls21{letter-spacing:-0.666000px;}
.ls24{letter-spacing:-0.540000px;}
.ls35{letter-spacing:-0.466800px;}
.ls23{letter-spacing:-0.460200px;}
.ls1b{letter-spacing:-0.413400px;}
.ls22{letter-spacing:-0.360000px;}
.ls32{letter-spacing:-0.269400px;}
.ls1c{letter-spacing:-0.259800px;}
.ls8{letter-spacing:-0.223800px;}
.lsa{letter-spacing:-0.206400px;}
.ls33{letter-spacing:-0.181200px;}
.ls1e{letter-spacing:-0.106800px;}
.ls3b{letter-spacing:-0.090600px;}
.ls12{letter-spacing:-0.053400px;}
.ls0{letter-spacing:0.000000px;}
.ls37{letter-spacing:0.010080px;}
.ls19{letter-spacing:0.012960px;}
.ls2e{letter-spacing:0.013200px;}
.ls4{letter-spacing:0.017280px;}
.ls38{letter-spacing:0.045360px;}
.ls7{letter-spacing:0.045600px;}
.ls15{letter-spacing:0.053400px;}
.ls9{letter-spacing:0.106800px;}
.lsf{letter-spacing:0.149760px;}
.ls1{letter-spacing:0.178800px;}
.ls3{letter-spacing:0.180000px;}
.ls2{letter-spacing:0.184200px;}
.ls2d{letter-spacing:0.206400px;}
.ls30{letter-spacing:0.223800px;}
.ls36{letter-spacing:0.233400px;}
.lse{letter-spacing:0.259800px;}
.lsd{letter-spacing:0.259920px;}
.ls28{letter-spacing:0.298800px;}
.ls5{letter-spacing:0.360000px;}
.ls3a{letter-spacing:0.616080px;}
.ls1f{letter-spacing:0.666000px;}
.ls18{letter-spacing:0.714000px;}
.ls31{letter-spacing:0.720000px;}
.ls17{letter-spacing:0.738000px;}
.ls11{letter-spacing:0.828000px;}
.ls2c{letter-spacing:0.900000px;}
.ls25{letter-spacing:0.924000px;}
.ls13{letter-spacing:0.926640px;}
.ls1a{letter-spacing:0.978000px;}
.lsb{letter-spacing:1.080000px;}
.ls26{letter-spacing:1.594320px;}
.ls2f{letter-spacing:3.960000px;}
.ls1d{letter-spacing:6.660000px;}
.lsc{letter-spacing:7.920000px;}
.ls16{letter-spacing:10.026720px;}
.ls29{letter-spacing:11.869920px;}
.ls6{letter-spacing:12.600000px;}
.ls10{letter-spacing:15.066720px;}
.ls27{letter-spacing:15.480000px;}
.ls2b{letter-spacing:28.980000px;}
.ls2a{letter-spacing:61.435920px;}
.ls20{letter-spacing:80.510400px;}
.ls14{letter-spacing:748.128000px;}
.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;}
}
.ws28{word-spacing:-48.240000px;}
.ws1{word-spacing:-18.000000px;}
.ws7{word-spacing:-16.020000px;}
.ws12{word-spacing:-15.918000px;}
.ws19{word-spacing:-15.864000px;}
.ws15{word-spacing:-15.606000px;}
.ws6{word-spacing:-15.300000px;}
.wsc{word-spacing:-15.199800px;}
.ws1c{word-spacing:-15.146400px;}
.ws8{word-spacing:-15.046800px;}
.wsf{word-spacing:-14.993400px;}
.wsa{word-spacing:-14.940000px;}
.wsd{word-spacing:-14.886600px;}
.ws14{word-spacing:-14.833200px;}
.wsb{word-spacing:-14.733600px;}
.ws13{word-spacing:-14.680200px;}
.ws17{word-spacing:-14.580000px;}
.ws18{word-spacing:-14.479800px;}
.ws16{word-spacing:-14.274000px;}
.ws25{word-spacing:-12.420000px;}
.ws1f{word-spacing:-12.283800px;}
.ws4{word-spacing:-12.105600px;}
.ws5{word-spacing:-12.060000px;}
.ws2a{word-spacing:-11.969400px;}
.ws21{word-spacing:-11.878800px;}
.ws22{word-spacing:-11.836200px;}
.ws20{word-spacing:-11.790600px;}
.ws23{word-spacing:-11.700000px;}
.ws29{word-spacing:-11.388000px;}
.ws24{word-spacing:-11.070000px;}
.ws10{word-spacing:-10.458000px;}
.ws11{word-spacing:-10.434000px;}
.ws1b{word-spacing:-9.733200px;}
.ws3{word-spacing:-9.720000px;}
.ws27{word-spacing:-7.793400px;}
.ws1d{word-spacing:-7.560000px;}
.ws26{word-spacing:-7.093200px;}
.ws1e{word-spacing:-0.048240px;}
.ws0{word-spacing:0.000000px;}
.ws2{word-spacing:0.238801px;}
.ws9{word-spacing:19.080000px;}
.wse{word-spacing:47.160000px;}
.ws1a{word-spacing:76.877640px;}
._3{margin-left:-2.160000px;}
._0{margin-left:-1.107026px;}
._2{width:1.008000px;}
._c{width:2.026018px;}
._5{width:3.027624px;}
._4{width:4.302600px;}
._b{width:5.472971px;}
._7{width:7.111201px;}
._8{width:8.486398px;}
._6{width:9.561600px;}
._f{width:10.959601px;}
._d{width:12.332989px;}
._a{width:13.614006px;}
._17{width:16.613400px;}
._15{width:18.138028px;}
._e{width:19.481999px;}
._13{width:20.975999px;}
._12{width:22.111200px;}
._16{width:23.784600px;}
._14{width:25.465800px;}
._9{width:26.712600px;}
._10{width:27.856797px;}
._11{width:29.552396px;}
._26{width:31.385769px;}
._20{width:32.509201px;}
._19{width:33.523680px;}
._18{width:35.856000px;}
._23{width:45.100855px;}
._22{width:47.569139px;}
._21{width:51.991140px;}
._1{width:54.000000px;}
._1f{width:58.445340px;}
._1e{width:61.194539px;}
._24{width:62.415555px;}
._27{width:69.816097px;}
._1c{width:77.175558px;}
._25{width:81.595766px;}
._1a{width:86.534400px;}
._1b{width:92.295555px;}
._1d{width:101.950739px;}
.fc2{color:rgb(64,85,255);}
.fc1{color:rgb(0,0,255);}
.fc0{color:rgb(0,0,0);}
.fs5{font-size:30.240000px;}
.fs4{font-size:38.880000px;}
.fs8{font-size:45.360000px;}
.fs6{font-size:48.240000px;}
.fs3{font-size:59.760000px;}
.fs1{font-size:60.000000px;}
.fs0{font-size:63.360000px;}
.fs7{font-size:66.240000px;}
.fs2{font-size:72.000000px;}
.y0{bottom:0.000000px;}
.y153{bottom:2.880000px;}
.y150{bottom:3.060000px;}
.y158{bottom:3.240000px;}
.y157{bottom:3.420000px;}
.y195{bottom:4.320000px;}
.y1a0{bottom:4.365000px;}
.ycb{bottom:5.040000px;}
.yfc{bottom:5.220000px;}
.y196{bottom:6.300000px;}
.y16a{bottom:6.660000px;}
.y174{bottom:7.380000px;}
.y171{bottom:7.560000px;}
.y18c{bottom:7.740000px;}
.y15f{bottom:9.900000px;}
.y165{bottom:10.440000px;}
.y161{bottom:10.620000px;}
.y190{bottom:11.700000px;}
.y18e{bottom:11.880000px;}
.y179{bottom:14.400000px;}
.y193{bottom:14.580000px;}
.y16f{bottom:16.740000px;}
.y18a{bottom:16.785000px;}
.y188{bottom:16.920000px;}
.y19f{bottom:18.225000px;}
.y1ae{bottom:18.360000px;}
.y178{bottom:21.240000px;}
.y17e{bottom:23.580000px;}
.y185{bottom:23.760000px;}
.y15d{bottom:24.120000px;}
.y16c{bottom:26.640000px;}
.y1a1{bottom:28.080000px;}
.y1ab{bottom:28.620000px;}
.y1a6{bottom:28.800000px;}
.y17f{bottom:30.600000px;}
.y19e{bottom:32.085000px;}
.y1a2{bottom:35.100000px;}
.y184{bottom:37.620000px;}
.y1a7{bottom:39.420000px;}
.y187{bottom:44.460000px;}
.y19d{bottom:47.205000px;}
.y1aa{bottom:50.040000px;}
.y1a5{bottom:50.220000px;}
.y186{bottom:58.320000px;}
.y5c{bottom:115.380000px;}
.yc9{bottom:117.540000px;}
.yf9{bottom:122.220000px;}
.y9b{bottom:125.280000px;}
.y14a{bottom:130.320000px;}
.y128{bottom:131.940000px;}
.y5b{bottom:132.660000px;}
.yc8{bottom:134.640000px;}
.yf8{bottom:139.500000px;}
.y98{bottom:142.560000px;}
.y127{bottom:149.220000px;}
.y5a{bottom:149.940000px;}
.yc7{bottom:151.920000px;}
.yf7{bottom:156.780000px;}
.y97{bottom:159.840000px;}
.y149{bottom:164.700000px;}
.y126{bottom:166.500000px;}
.y59{bottom:167.220000px;}
.yc6{bottom:169.200000px;}
.yf6{bottom:174.060000px;}
.y96{bottom:176.940000px;}
.y148{bottom:181.980000px;}
.y125{bottom:183.780000px;}
.y58{bottom:184.320000px;}
.yc5{bottom:186.480000px;}
.yf5{bottom:191.340000px;}
.y95{bottom:194.220000px;}
.y147{bottom:199.260000px;}
.y124{bottom:201.060000px;}
.y57{bottom:201.600000px;}
.yf4{bottom:208.440000px;}
.y14b{bottom:211.140000px;}
.y94{bottom:211.500000px;}
.y146{bottom:216.570000px;}
.y123{bottom:218.370000px;}
.y56{bottom:218.910000px;}
.yc4{bottom:220.890000px;}
.yf3{bottom:225.750000px;}
.y93{bottom:228.810000px;}
.y145{bottom:233.850000px;}
.y122{bottom:235.470000px;}
.y55{bottom:236.190000px;}
.yf2{bottom:243.030000px;}
.y92{bottom:246.090000px;}
.y144{bottom:251.130000px;}
.y54{bottom:253.470000px;}
.y121{bottom:254.010000px;}
.yc3{bottom:255.450000px;}
.yf1{bottom:260.310000px;}
.y91{bottom:263.190000px;}
.y143{bottom:268.230000px;}
.y53{bottom:270.750000px;}
.yf0{bottom:277.590000px;}
.y90{bottom:280.470000px;}
.y142{bottom:285.510000px;}
.y52{bottom:287.850000px;}
.yc2{bottom:290.010000px;}
.y120{bottom:291.810000px;}
.yef{bottom:294.690000px;}
.y8f{bottom:297.750000px;}
.y141{bottom:302.790000px;}
.y51{bottom:305.130000px;}
.yc1{bottom:307.290000px;}
.y11f{bottom:309.090000px;}
.yee{bottom:311.970000px;}
.y8e{bottom:315.030000px;}
.y140{bottom:320.070000px;}
.y50{bottom:322.410000px;}
.yc0{bottom:324.390000px;}
.y11e{bottom:326.190000px;}
.y1e{bottom:326.595000px;}
.yed{bottom:329.250000px;}
.y8d{bottom:332.310000px;}
.y13f{bottom:337.350000px;}
.y4f{bottom:339.690000px;}
.ybf{bottom:341.670000px;}
.y11d{bottom:343.470000px;}
.y1d{bottom:344.955000px;}
.yec{bottom:346.530000px;}
.y8c{bottom:349.590000px;}
.y4e{bottom:356.970000px;}
.ybe{bottom:358.950000px;}
.y11c{bottom:360.750000px;}
.y1c{bottom:363.495000px;}
.yeb{bottom:363.810000px;}
.y8b{bottom:366.690000px;}
.y13e{bottom:371.730000px;}
.y4d{bottom:374.070000px;}
.ybd{bottom:376.230000px;}
.y11b{bottom:378.030000px;}
.yea{bottom:381.090000px;}
.y1b{bottom:381.855000px;}
.y8a{bottom:383.970000px;}
.y4c{bottom:391.350000px;}
.ybc{bottom:393.510000px;}
.y11a{bottom:395.310000px;}
.ye9{bottom:398.190000px;}
.y1a{bottom:400.395000px;}
.y89{bottom:401.250000px;}
.y13d{bottom:406.290000px;}
.y4b{bottom:408.630000px;}
.ybb{bottom:410.790000px;}
.y119{bottom:412.590000px;}
.ye8{bottom:415.470000px;}
.y88{bottom:418.530000px;}
.y19{bottom:418.935000px;}
.y13c{bottom:423.570000px;}
.y4a{bottom:425.910000px;}
.yba{bottom:427.890000px;}
.y118{bottom:429.690000px;}
.y14e{bottom:435.450000px;}
.y87{bottom:435.810000px;}
.y18{bottom:437.295000px;}
.y13b{bottom:440.850000px;}
.y49{bottom:443.190000px;}
.yb9{bottom:445.170000px;}
.y117{bottom:447.015000px;}
.ye7{bottom:450.075000px;}
.y86{bottom:453.135000px;}
.y17{bottom:455.835000px;}
.y13a{bottom:457.995000px;}
.y48{bottom:460.515000px;}
.y85{bottom:470.235000px;}
.y16{bottom:474.195000px;}
.y139{bottom:475.275000px;}
.y47{bottom:477.615000px;}
.yb8{bottom:479.775000px;}
.y116{bottom:481.215000px;}
.ye6{bottom:484.635000px;}
.y84{bottom:487.515000px;}
.y138{bottom:492.555000px;}
.y15{bottom:492.735000px;}
.y46{bottom:494.895000px;}
.ye5{bottom:501.735000px;}
.y83{bottom:504.795000px;}
.y137{bottom:509.835000px;}
.y14{bottom:511.275000px;}
.y45{bottom:512.175000px;}
.yb7{bottom:514.335000px;}
.y115{bottom:516.135000px;}
.ye4{bottom:519.015000px;}
.y82{bottom:522.075000px;}
.y136{bottom:527.115000px;}
.y44{bottom:529.455000px;}
.y13{bottom:529.635000px;}
.yb6{bottom:531.435000px;}
.y114{bottom:533.235000px;}
.ye3{bottom:536.295000px;}
.y14d{bottom:538.995000px;}
.y81{bottom:539.355000px;}
.y135{bottom:544.395000px;}
.y12{bottom:548.205000px;}
.y113{bottom:550.515000px;}
.ye2{bottom:553.575000px;}
.y80{bottom:556.635000px;}
.y134{bottom:561.495000px;}
.y43{bottom:563.655000px;}
.yb5{bottom:565.995000px;}
.y11{bottom:566.565000px;}
.y112{bottom:567.795000px;}
.ye1{bottom:570.855000px;}
.y7f{bottom:573.735000px;}
.y133{bottom:578.775000px;}
.y111{bottom:585.075000px;}
.y10{bottom:585.105000px;}
.ye0{bottom:588.135000px;}
.y7e{bottom:591.015000px;}
.y132{bottom:596.055000px;}
.yb4{bottom:600.555000px;}
.y110{bottom:602.355000px;}
.yf{bottom:603.465000px;}
.ydf{bottom:605.235000px;}
.y7d{bottom:608.295000px;}
.y131{bottom:613.335000px;}
.y42{bottom:615.675000px;}
.y10f{bottom:619.455000px;}
.ye{bottom:622.005000px;}
.yde{bottom:622.515000px;}
.y7c{bottom:625.575000px;}
.y130{bottom:630.615000px;}
.yb3{bottom:634.935000px;}
.y10e{bottom:636.735000px;}
.ydd{bottom:639.795000px;}
.yd{bottom:640.545000px;}
.y7b{bottom:642.855000px;}
.yb2{bottom:652.215000px;}
.y10d{bottom:654.015000px;}
.ydc{bottom:657.075000px;}
.y7a{bottom:659.955000px;}
.y41{bottom:660.315000px;}
.y12f{bottom:664.635000px;}
.yb1{bottom:669.495000px;}
.y10c{bottom:671.295000px;}
.ydb{bottom:674.355000px;}
.y79{bottom:677.235000px;}
.yc{bottom:677.445000px;}
.y40{bottom:677.595000px;}
.yb0{bottom:686.805000px;}
.yda{bottom:691.485000px;}
.y78{bottom:694.545000px;}
.y3f{bottom:694.905000px;}
.y12e{bottom:702.645000px;}
.yaf{bottom:704.085000px;}
.y10b{bottom:705.885000px;}
.yd9{bottom:708.765000px;}
.y77{bottom:711.825000px;}
.y3e{bottom:712.185000px;}
.yb{bottom:714.345000px;}
.y12d{bottom:720.825000px;}
.yd8{bottom:726.045000px;}
.y76{bottom:729.105000px;}
.y3d{bottom:729.465000px;}
.ya{bottom:732.885000px;}
.y12c{bottom:738.105000px;}
.yae{bottom:738.465000px;}
.y10a{bottom:740.265000px;}
.yd7{bottom:743.325000px;}
.y75{bottom:746.385000px;}
.y3c{bottom:746.745000px;}
.y12b{bottom:756.465000px;}
.y109{bottom:757.545000px;}
.yd6{bottom:760.605000px;}
.y9a{bottom:763.125000px;}
.y74{bottom:763.485000px;}
.y3b{bottom:763.845000px;}
.y9{bottom:769.785000px;}
.yad{bottom:773.025000px;}
.y12a{bottom:773.745000px;}
.y108{bottom:774.825000px;}
.yd5{bottom:777.885000px;}
.y73{bottom:780.765000px;}
.y3a{bottom:781.125000px;}
.yac{bottom:790.305000px;}
.y107{bottom:792.105000px;}
.yd4{bottom:794.985000px;}
.y72{bottom:798.045000px;}
.y39{bottom:798.405000px;}
.y8{bottom:806.730000px;}
.yab{bottom:807.585000px;}
.y106{bottom:809.385000px;}
.yd3{bottom:812.265000px;}
.y71{bottom:815.325000px;}
.y38{bottom:815.685000px;}
.y105{bottom:826.485000px;}
.y129{bottom:829.365000px;}
.yd2{bottom:829.545000px;}
.y70{bottom:832.605000px;}
.y37{bottom:832.965000px;}
.yaa{bottom:841.965000px;}
.y7{bottom:843.630000px;}
.y104{bottom:843.765000px;}
.yd1{bottom:846.825000px;}
.y6f{bottom:849.885000px;}
.y36{bottom:850.245000px;}
.y103{bottom:861.045000px;}
.yd0{bottom:864.105000px;}
.y6e{bottom:866.985000px;}
.y35{bottom:867.345000px;}
.y169{bottom:876.345000px;}
.ya9{bottom:876.525000px;}
.y102{bottom:878.325000px;}
.y6{bottom:880.530000px;}
.ycf{bottom:881.385000px;}
.y1b2{bottom:882.000000px;}
.y1ad{bottom:882.465000px;}
.y6d{bottom:884.265000px;}
.y34{bottom:884.625000px;}
.y17c{bottom:885.345000px;}
.ya8{bottom:893.805000px;}
.y101{bottom:895.605000px;}
.y168{bottom:897.585000px;}
.yce{bottom:898.485000px;}
.y189{bottom:899.745000px;}
.y1b1{bottom:900.000000px;}
.y6c{bottom:901.545000px;}
.y33{bottom:901.905000px;}
.y17b{bottom:903.705000px;}
.ya7{bottom:911.085000px;}
.y19c{bottom:911.445000px;}
.y100{bottom:912.885000px;}
.y1a9{bottom:913.830000px;}
.ycd{bottom:915.810000px;}
.y5{bottom:917.430000px;}
.y6b{bottom:918.870000px;}
.y167{bottom:919.050000px;}
.y32{bottom:919.230000px;}
.y17a{bottom:921.930000px;}
.y183{bottom:927.330000px;}
.ya6{bottom:928.590000px;}
.yff{bottom:930.030000px;}
.ycc{bottom:933.090000px;}
.y14c{bottom:935.790000px;}
.y6a{bottom:936.150000px;}
.y31{bottom:936.510000px;}
.y177{bottom:940.290000px;}
.y166{bottom:940.470000px;}
.y1ac{bottom:942.630000px;}
.ya5{bottom:950.370000px;}
.y69{bottom:953.430000px;}
.y30{bottom:953.790000px;}
.y4{bottom:954.510000px;}
.y164{bottom:961.890000px;}
.yfe{bottom:964.590000px;}
.ya4{bottom:967.650000px;}
.y68{bottom:970.530000px;}
.y19b{bottom:970.890000px;}
.y1a8{bottom:971.430000px;}
.y176{bottom:972.330000px;}
.y163{bottom:983.130000px;}
.ya3{bottom:984.750000px;}
.y19a{bottom:985.290000px;}
.y67{bottom:987.810000px;}
.y2f{bottom:989.610000px;}
.y175{bottom:990.690000px;}
.y3{bottom:991.410000px;}
.y182{bottom:996.450000px;}
.yfd{bottom:999.150000px;}
.y191{bottom:1000.590000px;}
.y1a4{bottom:1000.950000px;}
.ya2{bottom:1002.030000px;}
.y162{bottom:1004.550000px;}
.y66{bottom:1005.090000px;}
.y173{bottom:1009.050000px;}
.y199{bottom:1014.090000px;}
.y15b{bottom:1016.250000px;}
.ya1{bottom:1019.310000px;}
.y65{bottom:1022.370000px;}
.y181{bottom:1023.990000px;}
.y160{bottom:1025.970000px;}
.y172{bottom:1027.230000px;}
.yfb{bottom:1029.750000px;}
.y15a{bottom:1032.270000px;}
.y2e{bottom:1035.330000px;}
.ya0{bottom:1036.590000px;}
.y27{bottom:1036.950000px;}
.y64{bottom:1039.650000px;}
.y198{bottom:1042.890000px;}
.y170{bottom:1045.590000px;}
.y2{bottom:1046.670000px;}
.y15c{bottom:1048.110000px;}
.y159{bottom:1048.650000px;}
.yfa{bottom:1050.090000px;}
.y9f{bottom:1053.870000px;}
.y156{bottom:1054.950000px;}
.y63{bottom:1056.750000px;}
.y26{bottom:1057.650000px;}
.y1a3{bottom:1058.550000px;}
.y16b{bottom:1064.670000px;}
.y1{bottom:1065.240000px;}
.y180{bottom:1066.110000px;}
.yca{bottom:1067.370000px;}
.y2d{bottom:1068.270000px;}
.y18f{bottom:1069.350000px;}
.y155{bottom:1069.530000px;}
.y9e{bottom:1071.150000px;}
.y197{bottom:1071.690000px;}
.y62{bottom:1074.030000px;}
.y15e{bottom:1076.370000px;}
.y25{bottom:1078.350000px;}
.y17d{bottom:1079.970000px;}
.y2c{bottom:1081.950000px;}
.y154{bottom:1083.390000px;}
.y9d{bottom:1088.250000px;}
.y99{bottom:1090.950000px;}
.y61{bottom:1091.310000px;}
.y18d{bottom:1091.850000px;}
.y16e{bottom:1092.930000px;}
.y152{bottom:1097.250000px;}
.y24{bottom:1099.050000px;}
.y192{bottom:1101.390000px;}
.y2b{bottom:1106.790000px;}
.y16d{bottom:1107.510000px;}
.y60{bottom:1108.590000px;}
.y151{bottom:1110.930000px;}
.y18b{bottom:1115.250000px;}
.y23{bottom:1119.750000px;}
.y194{bottom:1121.910000px;}
.y21{bottom:1123.755000px;}
.y9c{bottom:1124.250000px;}
.y14f{bottom:1124.790000px;}
.y5f{bottom:1125.870000px;}
.y2a{bottom:1140.090000px;}
.y22{bottom:1140.450000px;}
.y20{bottom:1141.755000px;}
.y5e{bottom:1143.150000px;}
.y1b0{bottom:1152.000000px;}
.y1f{bottom:1159.755000px;}
.y1af{bottom:1170.000000px;}
.y29{bottom:1193.580000px;}
.y5d{bottom:1226.880000px;}
.y28{bottom:1244.880000px;}
.h13{height:13.680000px;}
.h10{height:13.860000px;}
.h14{height:14.580000px;}
.h28{height:16.740000px;}
.h1e{height:18.180000px;}
.h20{height:18.216000px;}
.h1d{height:18.360000px;}
.he{height:20.160000px;}
.hf{height:20.340000px;}
.h29{height:20.520000px;}
.h1a{height:21.240000px;}
.h19{height:21.420000px;}
.h1b{height:21.456000px;}
.h26{height:22.500000px;}
.h25{height:22.680000px;}
.h24{height:23.400000px;}
.h18{height:27.540000px;}
.h23{height:27.576000px;}
.h17{height:27.720000px;}
.h2a{height:28.800000px;}
.h9{height:29.664141px;}
.h15{height:29.678906px;}
.h2e{height:30.636000px;}
.h1f{height:32.040000px;}
.h27{height:37.260000px;}
.h21{height:41.400000px;}
.h2{height:43.681641px;}
.ha{height:47.321367px;}
.h12{height:47.344922px;}
.h2c{height:50.400000px;}
.h11{height:50.558906px;}
.h1{height:53.645625px;}
.h16{height:55.980000px;}
.h1c{height:56.700000px;}
.hb{height:58.651172px;}
.h2b{height:59.436000px;}
.hd{height:59.614102px;}
.hc{height:60.226875px;}
.h6{height:62.578125px;}
.h8{height:65.518594px;}
.h22{height:69.120000px;}
.h5{height:70.664062px;}
.h7{height:72.562500px;}
.h2d{height:86.400000px;}
.h2f{height:918.000000px;}
.h0{height:1188.000000px;}
.h3{height:1262.880000px;}
.h4{height:1263.000000px;}
.w27{width:53.496000px;}
.w28{width:58.860000px;}
.w1b{width:59.940000px;}
.w38{width:60.156000px;}
.w1f{width:61.560000px;}
.w29{width:61.920000px;}
.w26{width:65.160000px;}
.w32{width:66.780000px;}
.w2a{width:67.176000px;}
.w39{width:67.500000px;}
.w1a{width:68.400000px;}
.w16{width:70.416000px;}
.w2d{width:71.316000px;}
.w34{width:71.640000px;}
.w31{width:73.440000px;}
.w14{width:74.736000px;}
.w17{width:75.960000px;}
.w15{width:77.580000px;}
.w20{width:79.956000px;}
.w3a{width:81.756000px;}
.w2e{width:81.900000px;}
.w1e{width:85.176000px;}
.w30{width:87.156000px;}
.w2c{width:91.620000px;}
.w2f{width:92.520000px;}
.w1c{width:94.536000px;}
.w21{width:101.160000px;}
.w1d{width:102.060000px;}
.w23{width:112.356000px;}
.w37{width:118.296000px;}
.w22{width:125.100000px;}
.w35{width:127.656000px;}
.w24{width:129.096000px;}
.w25{width:138.456000px;}
.wd{width:142.236000px;}
.we{width:146.376000px;}
.w19{width:146.520000px;}
.w5{width:148.176000px;}
.wa{width:148.500000px;}
.w36{width:148.536000px;}
.w4{width:150.150000px;}
.w3{width:150.870000px;}
.w10{width:151.920000px;}
.w13{width:152.310000px;}
.wf{width:176.070000px;}
.w18{width:185.430000px;}
.w7{width:264.315000px;}
.w6{width:270.390000px;}
.w9{width:274.035000px;}
.wc{width:288.615000px;}
.w12{width:298.695000px;}
.wb{width:327.990000px;}
.w11{width:331.950000px;}
.w3b{width:466.125000px;}
.w2b{width:502.485000px;}
.w8{width:534.705000px;}
.w33{width:631.905000px;}
.w1{width:892.980000px;}
.w2{width:893.250000px;}
.w0{width:918.000000px;}
.w3c{width:1188.000000px;}
.x0{left:0.000000px;}
.x3c{left:2.340000px;}
.x3a{left:3.960000px;}
.x37{left:6.120000px;}
.x7{left:7.500000px;}
.x43{left:8.820000px;}
.x4c{left:10.080000px;}
.x3f{left:11.340000px;}
.x41{left:12.780000px;}
.x52{left:14.220000px;}
.x39{left:15.300000px;}
.x36{left:16.950000px;}
.x4a{left:18.360000px;}
.x49{left:19.620000px;}
.x44{left:21.600000px;}
.x3e{left:23.760000px;}
.x4e{left:25.740000px;}
.x65{left:27.360000px;}
.x12{left:28.440000px;}
.x6b{left:29.520000px;}
.x45{left:30.960000px;}
.x58{left:33.330000px;}
.x35{left:34.560000px;}
.x2e{left:35.640000px;}
.x4f{left:36.720000px;}
.x54{left:37.980000px;}
.x56{left:39.060000px;}
.x51{left:40.530000px;}
.x33{left:41.970000px;}
.x50{left:43.560000px;}
.x4d{left:45.900000px;}
.x53{left:48.960000px;}
.x69{left:50.805000px;}
.x2c{left:57.450000px;}
.x26{left:61.245000px;}
.x19{left:65.190000px;}
.x4{left:67.653000px;}
.x1a{left:98.640000px;}
.x17{left:100.440000px;}
.x3{left:112.536000px;}
.x2b{left:120.630000px;}
.x32{left:125.670000px;}
.x8{left:127.656000px;}
.x29{left:129.414000px;}
.x5e{left:130.536000px;}
.xc{left:131.976000px;}
.x30{left:133.554000px;}
.x28{left:138.276000px;}
.x5{left:154.650000px;}
.x21{left:160.050000px;}
.x23{left:168.150000px;}
.x1b{left:170.130000px;}
.x16{left:179.130000px;}
.x6{left:181.650000px;}
.x20{left:188.130000px;}
.x5a{left:194.070000px;}
.x1d{left:205.230000px;}
.x9{left:207.750000px;}
.x1{left:209.445000px;}
.x1e{left:210.810000px;}
.x67{left:213.510000px;}
.x11{left:221.970000px;}
.xb{left:225.210000px;}
.x2{left:226.710000px;}
.xd{left:231.510000px;}
.xa{left:234.750000px;}
.x27{left:238.170000px;}
.x1f{left:244.290000px;}
.x40{left:248.430000px;}
.xe{left:252.570000px;}
.x10{left:255.630000px;}
.x15{left:262.830000px;}
.x24{left:272.550000px;}
.x68{left:285.150000px;}
.x5f{left:293.475000px;}
.x66{left:308.055000px;}
.x22{left:310.935000px;}
.x2f{left:314.355000px;}
.x3d{left:316.695000px;}
.xf{left:320.115000px;}
.x55{left:332.535000px;}
.x42{left:342.975000px;}
.x6d{left:345.315000px;}
.x1c{left:347.475000px;}
.x13{left:372.855000px;}
.x60{left:375.375000px;}
.x5b{left:392.475000px;}
.x6a{left:412.815000px;}
.x46{left:445.035000px;}
.x18{left:449.535000px;}
.x57{left:457.635000px;}
.x31{left:463.215000px;}
.x2a{left:466.275000px;}
.x61{left:467.895000px;}
.x6e{left:494.565000px;}
.x25{left:509.325000px;}
.x5c{left:511.125000px;}
.x14{left:523.005000px;}
.x47{left:530.205000px;}
.x38{left:537.945000px;}
.x62{left:555.045000px;}
.x6c{left:561.345000px;}
.x59{left:569.985000px;}
.x48{left:591.765000px;}
.x2d{left:608.505000px;}
.x34{left:615.525000px;}
.x63{left:628.485000px;}
.x5d{left:631.905000px;}
.x4b{left:671.730000px;}
.x3b{left:685.950000px;}
.x64{left:695.670000px;}
@media print{
.v5{vertical-align:-60.800000pt;}
.v2{vertical-align:-18.560000pt;}
.v3{vertical-align:-8.320000pt;}
.v7{vertical-align:-5.120000pt;}
.v0{vertical-align:0.000000pt;}
.v8{vertical-align:5.120000pt;}
.v4{vertical-align:8.320000pt;}
.v6{vertical-align:18.560000pt;}
.v1{vertical-align:24.320000pt;}
.ls34{letter-spacing:-0.880000pt;}
.ls39{letter-spacing:-0.597333pt;}
.ls21{letter-spacing:-0.592000pt;}
.ls24{letter-spacing:-0.480000pt;}
.ls35{letter-spacing:-0.414933pt;}
.ls23{letter-spacing:-0.409067pt;}
.ls1b{letter-spacing:-0.367467pt;}
.ls22{letter-spacing:-0.320000pt;}
.ls32{letter-spacing:-0.239467pt;}
.ls1c{letter-spacing:-0.230933pt;}
.ls8{letter-spacing:-0.198933pt;}
.lsa{letter-spacing:-0.183467pt;}
.ls33{letter-spacing:-0.161067pt;}
.ls1e{letter-spacing:-0.094933pt;}
.ls3b{letter-spacing:-0.080533pt;}
.ls12{letter-spacing:-0.047467pt;}
.ls0{letter-spacing:0.000000pt;}
.ls37{letter-spacing:0.008960pt;}
.ls19{letter-spacing:0.011520pt;}
.ls2e{letter-spacing:0.011733pt;}
.ls4{letter-spacing:0.015360pt;}
.ls38{letter-spacing:0.040320pt;}
.ls7{letter-spacing:0.040533pt;}
.ls15{letter-spacing:0.047467pt;}
.ls9{letter-spacing:0.094933pt;}
.lsf{letter-spacing:0.133120pt;}
.ls1{letter-spacing:0.158933pt;}
.ls3{letter-spacing:0.160000pt;}
.ls2{letter-spacing:0.163733pt;}
.ls2d{letter-spacing:0.183467pt;}
.ls30{letter-spacing:0.198933pt;}
.ls36{letter-spacing:0.207467pt;}
.lse{letter-spacing:0.230933pt;}
.lsd{letter-spacing:0.231040pt;}
.ls28{letter-spacing:0.265600pt;}
.ls5{letter-spacing:0.320000pt;}
.ls3a{letter-spacing:0.547627pt;}
.ls1f{letter-spacing:0.592000pt;}
.ls18{letter-spacing:0.634667pt;}
.ls31{letter-spacing:0.640000pt;}
.ls17{letter-spacing:0.656000pt;}
.ls11{letter-spacing:0.736000pt;}
.ls2c{letter-spacing:0.800000pt;}
.ls25{letter-spacing:0.821333pt;}
.ls13{letter-spacing:0.823680pt;}
.ls1a{letter-spacing:0.869333pt;}
.lsb{letter-spacing:0.960000pt;}
.ls26{letter-spacing:1.417173pt;}
.ls2f{letter-spacing:3.520000pt;}
.ls1d{letter-spacing:5.920000pt;}
.lsc{letter-spacing:7.040000pt;}
.ls16{letter-spacing:8.912640pt;}
.ls29{letter-spacing:10.551040pt;}
.ls6{letter-spacing:11.200000pt;}
.ls10{letter-spacing:13.392640pt;}
.ls27{letter-spacing:13.760000pt;}
.ls2b{letter-spacing:25.760000pt;}
.ls2a{letter-spacing:54.609707pt;}
.ls20{letter-spacing:71.564800pt;}
.ls14{letter-spacing:665.002667pt;}
.ws28{word-spacing:-42.880000pt;}
.ws1{word-spacing:-16.000000pt;}
.ws7{word-spacing:-14.240000pt;}
.ws12{word-spacing:-14.149333pt;}
.ws19{word-spacing:-14.101333pt;}
.ws15{word-spacing:-13.872000pt;}
.ws6{word-spacing:-13.600000pt;}
.wsc{word-spacing:-13.510933pt;}
.ws1c{word-spacing:-13.463467pt;}
.ws8{word-spacing:-13.374933pt;}
.wsf{word-spacing:-13.327467pt;}
.wsa{word-spacing:-13.280000pt;}
.wsd{word-spacing:-13.232533pt;}
.ws14{word-spacing:-13.185067pt;}
.wsb{word-spacing:-13.096533pt;}
.ws13{word-spacing:-13.049067pt;}
.ws17{word-spacing:-12.960000pt;}
.ws18{word-spacing:-12.870933pt;}
.ws16{word-spacing:-12.688000pt;}
.ws25{word-spacing:-11.040000pt;}
.ws1f{word-spacing:-10.918933pt;}
.ws4{word-spacing:-10.760533pt;}
.ws5{word-spacing:-10.720000pt;}
.ws2a{word-spacing:-10.639467pt;}
.ws21{word-spacing:-10.558933pt;}
.ws22{word-spacing:-10.521067pt;}
.ws20{word-spacing:-10.480533pt;}
.ws23{word-spacing:-10.400000pt;}
.ws29{word-spacing:-10.122667pt;}
.ws24{word-spacing:-9.840000pt;}
.ws10{word-spacing:-9.296000pt;}
.ws11{word-spacing:-9.274667pt;}
.ws1b{word-spacing:-8.651733pt;}
.ws3{word-spacing:-8.640000pt;}
.ws27{word-spacing:-6.927467pt;}
.ws1d{word-spacing:-6.720000pt;}
.ws26{word-spacing:-6.305067pt;}
.ws1e{word-spacing:-0.042880pt;}
.ws0{word-spacing:0.000000pt;}
.ws2{word-spacing:0.212268pt;}
.ws9{word-spacing:16.960000pt;}
.wse{word-spacing:41.920000pt;}
.ws1a{word-spacing:68.335680pt;}
._3{margin-left:-1.920000pt;}
._0{margin-left:-0.984023pt;}
._2{width:0.896000pt;}
._c{width:1.800905pt;}
._5{width:2.691222pt;}
._4{width:3.824534pt;}
._b{width:4.864863pt;}
._7{width:6.321068pt;}
._8{width:7.543465pt;}
._6{width:8.499200pt;}
._f{width:9.741868pt;}
._d{width:10.962657pt;}
._a{width:12.101338pt;}
._17{width:14.767466pt;}
._15{width:16.122692pt;}
._e{width:17.317332pt;}
._13{width:18.645332pt;}
._12{width:19.654400pt;}
._16{width:21.141866pt;}
._14{width:22.636266pt;}
._9{width:23.744534pt;}
._10{width:24.761597pt;}
._11{width:26.268796pt;}
._26{width:27.898461pt;}
._20{width:28.897068pt;}
._19{width:29.798827pt;}
._18{width:31.872000pt;}
._23{width:40.089649pt;}
._22{width:42.283679pt;}
._21{width:46.214347pt;}
._1{width:48.000000pt;}
._1f{width:51.951413pt;}
._1e{width:54.395146pt;}
._24{width:55.480493pt;}
._27{width:62.058753pt;}
._1c{width:68.600496pt;}
._25{width:72.529570pt;}
._1a{width:76.919467pt;}
._1b{width:82.040493pt;}
._1d{width:90.622879pt;}
.fs5{font-size:26.880000pt;}
.fs4{font-size:34.560000pt;}
.fs8{font-size:40.320000pt;}
.fs6{font-size:42.880000pt;}
.fs3{font-size:53.120000pt;}
.fs1{font-size:53.333333pt;}
.fs0{font-size:56.320000pt;}
.fs7{font-size:58.880000pt;}
.fs2{font-size:64.000000pt;}
.y0{bottom:0.000000pt;}
.y153{bottom:2.560000pt;}
.y150{bottom:2.720000pt;}
.y158{bottom:2.880000pt;}
.y157{bottom:3.040000pt;}
.y195{bottom:3.840000pt;}
.y1a0{bottom:3.880000pt;}
.ycb{bottom:4.480000pt;}
.yfc{bottom:4.640000pt;}
.y196{bottom:5.600000pt;}
.y16a{bottom:5.920000pt;}
.y174{bottom:6.560000pt;}
.y171{bottom:6.720000pt;}
.y18c{bottom:6.880000pt;}
.y15f{bottom:8.800000pt;}
.y165{bottom:9.280000pt;}
.y161{bottom:9.440000pt;}
.y190{bottom:10.400000pt;}
.y18e{bottom:10.560000pt;}
.y179{bottom:12.800000pt;}
.y193{bottom:12.960000pt;}
.y16f{bottom:14.880000pt;}
.y18a{bottom:14.920000pt;}
.y188{bottom:15.040000pt;}
.y19f{bottom:16.200000pt;}
.y1ae{bottom:16.320000pt;}
.y178{bottom:18.880000pt;}
.y17e{bottom:20.960000pt;}
.y185{bottom:21.120000pt;}
.y15d{bottom:21.440000pt;}
.y16c{bottom:23.680000pt;}
.y1a1{bottom:24.960000pt;}
.y1ab{bottom:25.440000pt;}
.y1a6{bottom:25.600000pt;}
.y17f{bottom:27.200000pt;}
.y19e{bottom:28.520000pt;}
.y1a2{bottom:31.200000pt;}
.y184{bottom:33.440000pt;}
.y1a7{bottom:35.040000pt;}
.y187{bottom:39.520000pt;}
.y19d{bottom:41.960000pt;}
.y1aa{bottom:44.480000pt;}
.y1a5{bottom:44.640000pt;}
.y186{bottom:51.840000pt;}
.y5c{bottom:102.560000pt;}
.yc9{bottom:104.480000pt;}
.yf9{bottom:108.640000pt;}
.y9b{bottom:111.360000pt;}
.y14a{bottom:115.840000pt;}
.y128{bottom:117.280000pt;}
.y5b{bottom:117.920000pt;}
.yc8{bottom:119.680000pt;}
.yf8{bottom:124.000000pt;}
.y98{bottom:126.720000pt;}
.y127{bottom:132.640000pt;}
.y5a{bottom:133.280000pt;}
.yc7{bottom:135.040000pt;}
.yf7{bottom:139.360000pt;}
.y97{bottom:142.080000pt;}
.y149{bottom:146.400000pt;}
.y126{bottom:148.000000pt;}
.y59{bottom:148.640000pt;}
.yc6{bottom:150.400000pt;}
.yf6{bottom:154.720000pt;}
.y96{bottom:157.280000pt;}
.y148{bottom:161.760000pt;}
.y125{bottom:163.360000pt;}
.y58{bottom:163.840000pt;}
.yc5{bottom:165.760000pt;}
.yf5{bottom:170.080000pt;}
.y95{bottom:172.640000pt;}
.y147{bottom:177.120000pt;}
.y124{bottom:178.720000pt;}
.y57{bottom:179.200000pt;}
.yf4{bottom:185.280000pt;}
.y14b{bottom:187.680000pt;}
.y94{bottom:188.000000pt;}
.y146{bottom:192.506667pt;}
.y123{bottom:194.106667pt;}
.y56{bottom:194.586667pt;}
.yc4{bottom:196.346667pt;}
.yf3{bottom:200.666667pt;}
.y93{bottom:203.386667pt;}
.y145{bottom:207.866667pt;}
.y122{bottom:209.306667pt;}
.y55{bottom:209.946667pt;}
.yf2{bottom:216.026667pt;}
.y92{bottom:218.746667pt;}
.y144{bottom:223.226667pt;}
.y54{bottom:225.306667pt;}
.y121{bottom:225.786667pt;}
.yc3{bottom:227.066667pt;}
.yf1{bottom:231.386667pt;}
.y91{bottom:233.946667pt;}
.y143{bottom:238.426667pt;}
.y53{bottom:240.666667pt;}
.yf0{bottom:246.746667pt;}
.y90{bottom:249.306667pt;}
.y142{bottom:253.786667pt;}
.y52{bottom:255.866667pt;}
.yc2{bottom:257.786667pt;}
.y120{bottom:259.386667pt;}
.yef{bottom:261.946667pt;}
.y8f{bottom:264.666667pt;}
.y141{bottom:269.146667pt;}
.y51{bottom:271.226667pt;}
.yc1{bottom:273.146667pt;}
.y11f{bottom:274.746667pt;}
.yee{bottom:277.306667pt;}
.y8e{bottom:280.026667pt;}
.y140{bottom:284.506667pt;}
.y50{bottom:286.586667pt;}
.yc0{bottom:288.346667pt;}
.y11e{bottom:289.946667pt;}
.y1e{bottom:290.306667pt;}
.yed{bottom:292.666667pt;}
.y8d{bottom:295.386667pt;}
.y13f{bottom:299.866667pt;}
.y4f{bottom:301.946667pt;}
.ybf{bottom:303.706667pt;}
.y11d{bottom:305.306667pt;}
.y1d{bottom:306.626667pt;}
.yec{bottom:308.026667pt;}
.y8c{bottom:310.746667pt;}
.y4e{bottom:317.306667pt;}
.ybe{bottom:319.066667pt;}
.y11c{bottom:320.666667pt;}
.y1c{bottom:323.106667pt;}
.yeb{bottom:323.386667pt;}
.y8b{bottom:325.946667pt;}
.y13e{bottom:330.426667pt;}
.y4d{bottom:332.506667pt;}
.ybd{bottom:334.426667pt;}
.y11b{bottom:336.026667pt;}
.yea{bottom:338.746667pt;}
.y1b{bottom:339.426667pt;}
.y8a{bottom:341.306667pt;}
.y4c{bottom:347.866667pt;}
.ybc{bottom:349.786667pt;}
.y11a{bottom:351.386667pt;}
.ye9{bottom:353.946667pt;}
.y1a{bottom:355.906667pt;}
.y89{bottom:356.666667pt;}
.y13d{bottom:361.146667pt;}
.y4b{bottom:363.226667pt;}
.ybb{bottom:365.146667pt;}
.y119{bottom:366.746667pt;}
.ye8{bottom:369.306667pt;}
.y88{bottom:372.026667pt;}
.y19{bottom:372.386667pt;}
.y13c{bottom:376.506667pt;}
.y4a{bottom:378.586667pt;}
.yba{bottom:380.346667pt;}
.y118{bottom:381.946667pt;}
.y14e{bottom:387.066667pt;}
.y87{bottom:387.386667pt;}
.y18{bottom:388.706667pt;}
.y13b{bottom:391.866667pt;}
.y49{bottom:393.946667pt;}
.yb9{bottom:395.706667pt;}
.y117{bottom:397.346667pt;}
.ye7{bottom:400.066667pt;}
.y86{bottom:402.786667pt;}
.y17{bottom:405.186667pt;}
.y13a{bottom:407.106667pt;}
.y48{bottom:409.346667pt;}
.y85{bottom:417.986667pt;}
.y16{bottom:421.506667pt;}
.y139{bottom:422.466667pt;}
.y47{bottom:424.546667pt;}
.yb8{bottom:426.466667pt;}
.y116{bottom:427.746667pt;}
.ye6{bottom:430.786667pt;}
.y84{bottom:433.346667pt;}
.y138{bottom:437.826667pt;}
.y15{bottom:437.986667pt;}
.y46{bottom:439.906667pt;}
.ye5{bottom:445.986667pt;}
.y83{bottom:448.706667pt;}
.y137{bottom:453.186667pt;}
.y14{bottom:454.466667pt;}
.y45{bottom:455.266667pt;}
.yb7{bottom:457.186667pt;}
.y115{bottom:458.786667pt;}
.ye4{bottom:461.346667pt;}
.y82{bottom:464.066667pt;}
.y136{bottom:468.546667pt;}
.y44{bottom:470.626667pt;}
.y13{bottom:470.786667pt;}
.yb6{bottom:472.386667pt;}
.y114{bottom:473.986667pt;}
.ye3{bottom:476.706667pt;}
.y14d{bottom:479.106667pt;}
.y81{bottom:479.426667pt;}
.y135{bottom:483.906667pt;}
.y12{bottom:487.293333pt;}
.y113{bottom:489.346667pt;}
.ye2{bottom:492.066667pt;}
.y80{bottom:494.786667pt;}
.y134{bottom:499.106667pt;}
.y43{bottom:501.026667pt;}
.yb5{bottom:503.106667pt;}
.y11{bottom:503.613333pt;}
.y112{bottom:504.706667pt;}
.ye1{bottom:507.426667pt;}
.y7f{bottom:509.986667pt;}
.y133{bottom:514.466667pt;}
.y111{bottom:520.066667pt;}
.y10{bottom:520.093333pt;}
.ye0{bottom:522.786667pt;}
.y7e{bottom:525.346667pt;}
.y132{bottom:529.826667pt;}
.yb4{bottom:533.826667pt;}
.y110{bottom:535.426667pt;}
.yf{bottom:536.413333pt;}
.ydf{bottom:537.986667pt;}
.y7d{bottom:540.706667pt;}
.y131{bottom:545.186667pt;}
.y42{bottom:547.266667pt;}
.y10f{bottom:550.626667pt;}
.ye{bottom:552.893333pt;}
.yde{bottom:553.346667pt;}
.y7c{bottom:556.066667pt;}
.y130{bottom:560.546667pt;}
.yb3{bottom:564.386667pt;}
.y10e{bottom:565.986667pt;}
.ydd{bottom:568.706667pt;}
.yd{bottom:569.373333pt;}
.y7b{bottom:571.426667pt;}
.yb2{bottom:579.746667pt;}
.y10d{bottom:581.346667pt;}
.ydc{bottom:584.066667pt;}
.y7a{bottom:586.626667pt;}
.y41{bottom:586.946667pt;}
.y12f{bottom:590.786667pt;}
.yb1{bottom:595.106667pt;}
.y10c{bottom:596.706667pt;}
.ydb{bottom:599.426667pt;}
.y79{bottom:601.986667pt;}
.yc{bottom:602.173333pt;}
.y40{bottom:602.306667pt;}
.yb0{bottom:610.493333pt;}
.yda{bottom:614.653333pt;}
.y78{bottom:617.373333pt;}
.y3f{bottom:617.693333pt;}
.y12e{bottom:624.573333pt;}
.yaf{bottom:625.853333pt;}
.y10b{bottom:627.453333pt;}
.yd9{bottom:630.013333pt;}
.y77{bottom:632.733333pt;}
.y3e{bottom:633.053333pt;}
.yb{bottom:634.973333pt;}
.y12d{bottom:640.733333pt;}
.yd8{bottom:645.373333pt;}
.y76{bottom:648.093333pt;}
.y3d{bottom:648.413333pt;}
.ya{bottom:651.453333pt;}
.y12c{bottom:656.093333pt;}
.yae{bottom:656.413333pt;}
.y10a{bottom:658.013333pt;}
.yd7{bottom:660.733333pt;}
.y75{bottom:663.453333pt;}
.y3c{bottom:663.773333pt;}
.y12b{bottom:672.413333pt;}
.y109{bottom:673.373333pt;}
.yd6{bottom:676.093333pt;}
.y9a{bottom:678.333333pt;}
.y74{bottom:678.653333pt;}
.y3b{bottom:678.973333pt;}
.y9{bottom:684.253333pt;}
.yad{bottom:687.133333pt;}
.y12a{bottom:687.773333pt;}
.y108{bottom:688.733333pt;}
.yd5{bottom:691.453333pt;}
.y73{bottom:694.013333pt;}
.y3a{bottom:694.333333pt;}
.yac{bottom:702.493333pt;}
.y107{bottom:704.093333pt;}
.yd4{bottom:706.653333pt;}
.y72{bottom:709.373333pt;}
.y39{bottom:709.693333pt;}
.y8{bottom:717.093333pt;}
.yab{bottom:717.853333pt;}
.y106{bottom:719.453333pt;}
.yd3{bottom:722.013333pt;}
.y71{bottom:724.733333pt;}
.y38{bottom:725.053333pt;}
.y105{bottom:734.653333pt;}
.y129{bottom:737.213333pt;}
.yd2{bottom:737.373333pt;}
.y70{bottom:740.093333pt;}
.y37{bottom:740.413333pt;}
.yaa{bottom:748.413333pt;}
.y7{bottom:749.893333pt;}
.y104{bottom:750.013333pt;}
.yd1{bottom:752.733333pt;}
.y6f{bottom:755.453333pt;}
.y36{bottom:755.773333pt;}
.y103{bottom:765.373333pt;}
.yd0{bottom:768.093333pt;}
.y6e{bottom:770.653333pt;}
.y35{bottom:770.973333pt;}
.y169{bottom:778.973333pt;}
.ya9{bottom:779.133333pt;}
.y102{bottom:780.733333pt;}
.y6{bottom:782.693333pt;}
.ycf{bottom:783.453333pt;}
.y1b2{bottom:784.000000pt;}
.y1ad{bottom:784.413333pt;}
.y6d{bottom:786.013333pt;}
.y34{bottom:786.333333pt;}
.y17c{bottom:786.973333pt;}
.ya8{bottom:794.493333pt;}
.y101{bottom:796.093333pt;}
.y168{bottom:797.853333pt;}
.yce{bottom:798.653333pt;}
.y189{bottom:799.773333pt;}
.y1b1{bottom:800.000000pt;}
.y6c{bottom:801.373333pt;}
.y33{bottom:801.693333pt;}
.y17b{bottom:803.293333pt;}
.ya7{bottom:809.853333pt;}
.y19c{bottom:810.173333pt;}
.y100{bottom:811.453333pt;}
.y1a9{bottom:812.293333pt;}
.ycd{bottom:814.053333pt;}
.y5{bottom:815.493333pt;}
.y6b{bottom:816.773333pt;}
.y167{bottom:816.933333pt;}
.y32{bottom:817.093333pt;}
.y17a{bottom:819.493333pt;}
.y183{bottom:824.293333pt;}
.ya6{bottom:825.413333pt;}
.yff{bottom:826.693333pt;}
.ycc{bottom:829.413333pt;}
.y14c{bottom:831.813333pt;}
.y6a{bottom:832.133333pt;}
.y31{bottom:832.453333pt;}
.y177{bottom:835.813333pt;}
.y166{bottom:835.973333pt;}
.y1ac{bottom:837.893333pt;}
.ya5{bottom:844.773333pt;}
.y69{bottom:847.493333pt;}
.y30{bottom:847.813333pt;}
.y4{bottom:848.453333pt;}
.y164{bottom:855.013333pt;}
.yfe{bottom:857.413333pt;}
.ya4{bottom:860.133333pt;}
.y68{bottom:862.693333pt;}
.y19b{bottom:863.013333pt;}
.y1a8{bottom:863.493333pt;}
.y176{bottom:864.293333pt;}
.y163{bottom:873.893333pt;}
.ya3{bottom:875.333333pt;}
.y19a{bottom:875.813333pt;}
.y67{bottom:878.053333pt;}
.y2f{bottom:879.653333pt;}
.y175{bottom:880.613333pt;}
.y3{bottom:881.253333pt;}
.y182{bottom:885.733333pt;}
.yfd{bottom:888.133333pt;}
.y191{bottom:889.413333pt;}
.y1a4{bottom:889.733333pt;}
.ya2{bottom:890.693333pt;}
.y162{bottom:892.933333pt;}
.y66{bottom:893.413333pt;}
.y173{bottom:896.933333pt;}
.y199{bottom:901.413333pt;}
.y15b{bottom:903.333333pt;}
.ya1{bottom:906.053333pt;}
.y65{bottom:908.773333pt;}
.y181{bottom:910.213333pt;}
.y160{bottom:911.973333pt;}
.y172{bottom:913.093333pt;}
.yfb{bottom:915.333333pt;}
.y15a{bottom:917.573333pt;}
.y2e{bottom:920.293333pt;}
.ya0{bottom:921.413333pt;}
.y27{bottom:921.733333pt;}
.y64{bottom:924.133333pt;}
.y198{bottom:927.013333pt;}
.y170{bottom:929.413333pt;}
.y2{bottom:930.373333pt;}
.y15c{bottom:931.653333pt;}
.y159{bottom:932.133333pt;}
.yfa{bottom:933.413333pt;}
.y9f{bottom:936.773333pt;}
.y156{bottom:937.733333pt;}
.y63{bottom:939.333333pt;}
.y26{bottom:940.133333pt;}
.y1a3{bottom:940.933333pt;}
.y16b{bottom:946.373333pt;}
.y1{bottom:946.880000pt;}
.y180{bottom:947.653333pt;}
.yca{bottom:948.773333pt;}
.y2d{bottom:949.573333pt;}
.y18f{bottom:950.533333pt;}
.y155{bottom:950.693333pt;}
.y9e{bottom:952.133333pt;}
.y197{bottom:952.613333pt;}
.y62{bottom:954.693333pt;}
.y15e{bottom:956.773333pt;}
.y25{bottom:958.533333pt;}
.y17d{bottom:959.973333pt;}
.y2c{bottom:961.733333pt;}
.y154{bottom:963.013333pt;}
.y9d{bottom:967.333333pt;}
.y99{bottom:969.733333pt;}
.y61{bottom:970.053333pt;}
.y18d{bottom:970.533333pt;}
.y16e{bottom:971.493333pt;}
.y152{bottom:975.333333pt;}
.y24{bottom:976.933333pt;}
.y192{bottom:979.013333pt;}
.y2b{bottom:983.813333pt;}
.y16d{bottom:984.453333pt;}
.y60{bottom:985.413333pt;}
.y151{bottom:987.493333pt;}
.y18b{bottom:991.333333pt;}
.y23{bottom:995.333333pt;}
.y194{bottom:997.253333pt;}
.y21{bottom:998.893333pt;}
.y9c{bottom:999.333333pt;}
.y14f{bottom:999.813333pt;}
.y5f{bottom:1000.773333pt;}
.y2a{bottom:1013.413333pt;}
.y22{bottom:1013.733333pt;}
.y20{bottom:1014.893333pt;}
.y5e{bottom:1016.133333pt;}
.y1b0{bottom:1024.000000pt;}
.y1f{bottom:1030.893333pt;}
.y1af{bottom:1040.000000pt;}
.y29{bottom:1060.960000pt;}
.y5d{bottom:1090.560000pt;}
.y28{bottom:1106.560000pt;}
.h13{height:12.160000pt;}
.h10{height:12.320000pt;}
.h14{height:12.960000pt;}
.h28{height:14.880000pt;}
.h1e{height:16.160000pt;}
.h20{height:16.192000pt;}
.h1d{height:16.320000pt;}
.he{height:17.920000pt;}
.hf{height:18.080000pt;}
.h29{height:18.240000pt;}
.h1a{height:18.880000pt;}
.h19{height:19.040000pt;}
.h1b{height:19.072000pt;}
.h26{height:20.000000pt;}
.h25{height:20.160000pt;}
.h24{height:20.800000pt;}
.h18{height:24.480000pt;}
.h23{height:24.512000pt;}
.h17{height:24.640000pt;}
.h2a{height:25.600000pt;}
.h9{height:26.368125pt;}
.h15{height:26.381250pt;}
.h2e{height:27.232000pt;}
.h1f{height:28.480000pt;}
.h27{height:33.120000pt;}
.h21{height:36.800000pt;}
.h2{height:38.828125pt;}
.ha{height:42.063437pt;}
.h12{height:42.084375pt;}
.h2c{height:44.800000pt;}
.h11{height:44.941250pt;}
.h1{height:47.685000pt;}
.h16{height:49.760000pt;}
.h1c{height:50.400000pt;}
.hb{height:52.134375pt;}
.h2b{height:52.832000pt;}
.hd{height:52.990313pt;}
.hc{height:53.535000pt;}
.h6{height:55.625000pt;}
.h8{height:58.238750pt;}
.h22{height:61.440000pt;}
.h5{height:62.812500pt;}
.h7{height:64.500000pt;}
.h2d{height:76.800000pt;}
.h2f{height:816.000000pt;}
.h0{height:1056.000000pt;}
.h3{height:1122.560000pt;}
.h4{height:1122.666667pt;}
.w27{width:47.552000pt;}
.w28{width:52.320000pt;}
.w1b{width:53.280000pt;}
.w38{width:53.472000pt;}
.w1f{width:54.720000pt;}
.w29{width:55.040000pt;}
.w26{width:57.920000pt;}
.w32{width:59.360000pt;}
.w2a{width:59.712000pt;}
.w39{width:60.000000pt;}
.w1a{width:60.800000pt;}
.w16{width:62.592000pt;}
.w2d{width:63.392000pt;}
.w34{width:63.680000pt;}
.w31{width:65.280000pt;}
.w14{width:66.432000pt;}
.w17{width:67.520000pt;}
.w15{width:68.960000pt;}
.w20{width:71.072000pt;}
.w3a{width:72.672000pt;}
.w2e{width:72.800000pt;}
.w1e{width:75.712000pt;}
.w30{width:77.472000pt;}
.w2c{width:81.440000pt;}
.w2f{width:82.240000pt;}
.w1c{width:84.032000pt;}
.w21{width:89.920000pt;}
.w1d{width:90.720000pt;}
.w23{width:99.872000pt;}
.w37{width:105.152000pt;}
.w22{width:111.200000pt;}
.w35{width:113.472000pt;}
.w24{width:114.752000pt;}
.w25{width:123.072000pt;}
.wd{width:126.432000pt;}
.we{width:130.112000pt;}
.w19{width:130.240000pt;}
.w5{width:131.712000pt;}
.wa{width:132.000000pt;}
.w36{width:132.032000pt;}
.w4{width:133.466667pt;}
.w3{width:134.106667pt;}
.w10{width:135.040000pt;}
.w13{width:135.386667pt;}
.wf{width:156.506667pt;}
.w18{width:164.826667pt;}
.w7{width:234.946667pt;}
.w6{width:240.346667pt;}
.w9{width:243.586667pt;}
.wc{width:256.546667pt;}
.w12{width:265.506667pt;}
.wb{width:291.546667pt;}
.w11{width:295.066667pt;}
.w3b{width:414.333333pt;}
.w2b{width:446.653333pt;}
.w8{width:475.293333pt;}
.w33{width:561.693333pt;}
.w1{width:793.760000pt;}
.w2{width:794.000000pt;}
.w0{width:816.000000pt;}
.w3c{width:1056.000000pt;}
.x0{left:0.000000pt;}
.x3c{left:2.080000pt;}
.x3a{left:3.520000pt;}
.x37{left:5.440000pt;}
.x7{left:6.666667pt;}
.x43{left:7.840000pt;}
.x4c{left:8.960000pt;}
.x3f{left:10.080000pt;}
.x41{left:11.360000pt;}
.x52{left:12.640000pt;}
.x39{left:13.600000pt;}
.x36{left:15.066667pt;}
.x4a{left:16.320000pt;}
.x49{left:17.440000pt;}
.x44{left:19.200000pt;}
.x3e{left:21.120000pt;}
.x4e{left:22.880000pt;}
.x65{left:24.320000pt;}
.x12{left:25.280000pt;}
.x6b{left:26.240000pt;}
.x45{left:27.520000pt;}
.x58{left:29.626667pt;}
.x35{left:30.720000pt;}
.x2e{left:31.680000pt;}
.x4f{left:32.640000pt;}
.x54{left:33.760000pt;}
.x56{left:34.720000pt;}
.x51{left:36.026667pt;}
.x33{left:37.306667pt;}
.x50{left:38.720000pt;}
.x4d{left:40.800000pt;}
.x53{left:43.520000pt;}
.x69{left:45.160000pt;}
.x2c{left:51.066667pt;}
.x26{left:54.440000pt;}
.x19{left:57.946667pt;}
.x4{left:60.136000pt;}
.x1a{left:87.680000pt;}
.x17{left:89.280000pt;}
.x3{left:100.032000pt;}
.x2b{left:107.226667pt;}
.x32{left:111.706667pt;}
.x8{left:113.472000pt;}
.x29{left:115.034667pt;}
.x5e{left:116.032000pt;}
.xc{left:117.312000pt;}
.x30{left:118.714667pt;}
.x28{left:122.912000pt;}
.x5{left:137.466667pt;}
.x21{left:142.266667pt;}
.x23{left:149.466667pt;}
.x1b{left:151.226667pt;}
.x16{left:159.226667pt;}
.x6{left:161.466667pt;}
.x20{left:167.226667pt;}
.x5a{left:172.506667pt;}
.x1d{left:182.426667pt;}
.x9{left:184.666667pt;}
.x1{left:186.173333pt;}
.x1e{left:187.386667pt;}
.x67{left:189.786667pt;}
.x11{left:197.306667pt;}
.xb{left:200.186667pt;}
.x2{left:201.520000pt;}
.xd{left:205.786667pt;}
.xa{left:208.666667pt;}
.x27{left:211.706667pt;}
.x1f{left:217.146667pt;}
.x40{left:220.826667pt;}
.xe{left:224.506667pt;}
.x10{left:227.226667pt;}
.x15{left:233.626667pt;}
.x24{left:242.266667pt;}
.x68{left:253.466667pt;}
.x5f{left:260.866667pt;}
.x66{left:273.826667pt;}
.x22{left:276.386667pt;}
.x2f{left:279.426667pt;}
.x3d{left:281.506667pt;}
.xf{left:284.546667pt;}
.x55{left:295.586667pt;}
.x42{left:304.866667pt;}
.x6d{left:306.946667pt;}
.x1c{left:308.866667pt;}
.x13{left:331.426667pt;}
.x60{left:333.666667pt;}
.x5b{left:348.866667pt;}
.x6a{left:366.946667pt;}
.x46{left:395.586667pt;}
.x18{left:399.586667pt;}
.x57{left:406.786667pt;}
.x31{left:411.746667pt;}
.x2a{left:414.466667pt;}
.x61{left:415.906667pt;}
.x6e{left:439.613333pt;}
.x25{left:452.733333pt;}
.x5c{left:454.333333pt;}
.x14{left:464.893333pt;}
.x47{left:471.293333pt;}
.x38{left:478.173333pt;}
.x62{left:493.373333pt;}
.x6c{left:498.973333pt;}
.x59{left:506.653333pt;}
.x48{left:526.013333pt;}
.x2d{left:540.893333pt;}
.x34{left:547.133333pt;}
.x63{left:558.653333pt;}
.x5d{left:561.693333pt;}
.x4b{left:597.093333pt;}
.x3b{left:609.733333pt;}
.x64{left:618.373333pt;}
}




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