
    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_0337536ed138bda184e5544a.woff2')format("woff");}.ff1{font-family:ff1;line-height:0.675781;font-style:normal;font-weight: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_12c0d197d84ec14eed3a9a4f.woff2')format("woff");}.ff2{font-family:ff2;line-height:0.740723;font-style:normal;font-weight: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_0a5b709139ba436b8c1189a6.woff2')format("woff");}.ff3{font-family:ff3;line-height:0.740723;font-style:normal;font-weight: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_93a2bb4302d4f1a23899cc47.woff2')format("woff");}.ff4{font-family:ff4;line-height:0.709961;font-style:normal;font-weight: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_d6c85cf702754afd9e3069af.woff2')format("woff");}.ff5{font-family:ff5;line-height:0.974609;font-style:normal;font-weight: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_ecf7a699b4b76383c8afe590.woff2')format("woff");}.ff6{font-family:ff6;line-height:0.740723;font-style:normal;font-weight: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_1e776b47f9a87a9bc245ff02.woff2')format("woff");}.ff7{font-family:ff7;line-height:0.715820;font-style:normal;font-weight: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_cefc10b570f449d44a26ffb2.woff2')format("woff");}.ff8{font-family:ff8;line-height:0.718750;font-style:normal;font-weight: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_8266da0dabbe2e68c9825bec.woff2')format("woff");}.ff9{font-family:ff9;line-height:0.740234;font-style:normal;font-weight: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_c782419b284d95b399dc3692.woff2')format("woff");}.ffa{font-family:ffa;line-height:0.939453;font-style:normal;font-weight: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_83ad1781e4b93c9248832d1e.woff2')format("woff");}.ffb{font-family:ffb;line-height:0.908691;font-style:normal;font-weight: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_b0af4f602e9335ace7fe26ce.woff2')format("woff");}.ffc{font-family:ffc;line-height:0.938965;font-style:normal;font-weight: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_8728190f1c56c323ec616c06.woff2')format("woff");}.ffd{font-family:ffd;line-height:0.666504;font-style:normal;font-weight: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_4cd60259c511caa94969ab4a.woff2')format("woff");}.ffe{font-family:ffe;line-height:0.926270;font-style:normal;font-weight: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_a9c663467593b7af8400d4a7.woff2')format("woff");}.fff{font-family:fff;line-height:0.666504;font-style:normal;font-weight: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_15f3f70838dca76e02b3fad3.woff2')format("woff");}.ff10{font-family:ff10;line-height:1.100098;font-style:normal;font-weight: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_9ac9dc804104bec14edb5326.woff2')format("woff");}.ff11{font-family:ff11;line-height:0.922852;font-style:normal;font-weight: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_7f8e02010fc398b6dde4a769.woff2')format("woff");}.ff12{font-family:ff12;line-height:0.666504;font-style:normal;font-weight: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_3f6b44670860ab80862825e5.woff2')format("woff");}.ff13{font-family:ff13;line-height:0.924316;font-style:normal;font-weight: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_b8b4e52c83019d5741774ea3.woff2')format("woff");}.ff14{font-family:ff14;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:ff15;src:url('chunks/assets/font_c939b12a17edb1969fa36a73.woff2')format("woff");}.ff15{font-family:ff15;line-height:0.666504;font-style:normal;font-weight: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_2284b60cca8544f653efdcfd.woff2')format("woff");}.ff16{font-family:ff16;line-height:0.666504;font-style:normal;font-weight: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_ea8a3cd18ae50637186372cf.woff2')format("woff");}.ff17{font-family:ff17;line-height:0.666504;font-style:normal;font-weight: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_767b1aadee8a7b0fe446f098.woff2')format("woff");}.ff18{font-family:ff18;line-height:0.740234;font-style:normal;font-weight: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_a4ee1c4edbd51f9aff291646.woff2')format("woff");}.ff19{font-family:ff19;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:ff1a;src:url('chunks/assets/font_967a2e01f3e8adc88c786479.woff2')format("woff");}.ff1a{font-family:ff1a;line-height:0.918945;font-style:normal;font-weight: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_f5344ece9b168ee9b7badcbb.woff2')format("woff");}.ff1b{font-family:ff1b;line-height:0.959473;font-style:normal;font-weight: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_857211dadbdfaae33f905a03.woff2')format("woff");}.ff1c{font-family:ff1c;line-height:0.743164;font-style:normal;font-weight: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_836434fce919a54eeefa2b45.woff2')format("woff");}.ff1d{font-family:ff1d;line-height:1.054688;font-style:normal;font-weight:normal;visibility:visible;font-variant-ligatures:none;font-feature-settings: "liga" 0, "clig" 0, "dlig" 0, "hlig" 0, "calt" 0;}
.m1{transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-ms-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,0);-webkit-transform:matrix(0.000000,-0.250000,0.250000,0.000000,0,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);}
.v2{vertical-align:-14.400000px;}
.v0{vertical-align:0.000000px;}
.v1{vertical-align:50.400000px;}
.ls86{letter-spacing:-4.055040px;}
.ls87{letter-spacing:-3.621600px;}
.ls88{letter-spacing:-3.600000px;}
.ls81{letter-spacing:-2.793600px;}
.ls5c{letter-spacing:-2.543616px;}
.ls5d{letter-spacing:-2.530368px;}
.ls5f{letter-spacing:-2.523744px;}
.ls5e{letter-spacing:-2.503872px;}
.ls82{letter-spacing:-2.419200px;}
.ls83{letter-spacing:-2.397600px;}
.ls4d{letter-spacing:-1.836000px;}
.ls51{letter-spacing:-1.821600px;}
.ls50{letter-spacing:-1.800000px;}
.ls4f{letter-spacing:-1.785600px;}
.ls19{letter-spacing:-1.698048px;}
.ls72{letter-spacing:-1.664640px;}
.ls1a{letter-spacing:-1.660032px;}
.ls7b{letter-spacing:-1.653120px;}
.ls7d{letter-spacing:-1.595520px;}
.ls79{letter-spacing:-1.589760px;}
.ls85{letter-spacing:-1.584000px;}
.ls7c{letter-spacing:-1.578240px;}
.ls7a{letter-spacing:-1.572480px;}
.ls84{letter-spacing:-1.566720px;}
.ls6e{letter-spacing:-1.555200px;}
.ls80{letter-spacing:-1.486080px;}
.ls7e{letter-spacing:-1.411200px;}
.ls57{letter-spacing:-1.344672px;}
.ls5a{letter-spacing:-1.331424px;}
.ls5b{letter-spacing:-1.324800px;}
.ls59{letter-spacing:-1.318176px;}
.ls58{letter-spacing:-1.304928px;}
.ls71{letter-spacing:-1.238400px;}
.ls6f{letter-spacing:-1.216800px;}
.ls70{letter-spacing:-1.202400px;}
.ls78{letter-spacing:-1.180800px;}
.ls7f{letter-spacing:-1.166400px;}
.ls67{letter-spacing:-0.768384px;}
.ls65{letter-spacing:-0.755136px;}
.ls6a{letter-spacing:-0.735264px;}
.ls69{letter-spacing:-0.722016px;}
.ls64{letter-spacing:-0.708768px;}
.ls66{letter-spacing:-0.669024px;}
.ls68{letter-spacing:-0.655776px;}
.ls63{letter-spacing:-0.649152px;}
.ls44{letter-spacing:-0.633600px;}
.ls43{letter-spacing:-0.619200px;}
.ls42{letter-spacing:-0.597600px;}
.ls41{letter-spacing:-0.583200px;}
.ls45{letter-spacing:-0.561600px;}
.ls16{letter-spacing:-0.508896px;}
.ls17{letter-spacing:-0.393984px;}
.ls2a{letter-spacing:-0.368928px;}
.ls20{letter-spacing:-0.338688px;}
.ls18{letter-spacing:-0.328032px;}
.ls25{letter-spacing:-0.320544px;}
.ls2b{letter-spacing:-0.308448px;}
.ls27{letter-spacing:-0.302400px;}
.ls28{letter-spacing:-0.290304px;}
.ls21{letter-spacing:-0.260064px;}
.ls22{letter-spacing:-0.241920px;}
.ls29{letter-spacing:-0.229824px;}
.ls15{letter-spacing:-0.207936px;}
.ls1c{letter-spacing:-0.198720px;}
.ls4c{letter-spacing:-0.185472px;}
.ls2c{letter-spacing:-0.169344px;}
.ls55{letter-spacing:-0.165600px;}
.ls1b{letter-spacing:-0.158976px;}
.ls52{letter-spacing:-0.145728px;}
.ls24{letter-spacing:-0.145152px;}
.ls23{letter-spacing:-0.139104px;}
.ls30{letter-spacing:-0.132480px;}
.ls4a{letter-spacing:-0.125856px;}
.ls46{letter-spacing:-0.120960px;}
.ls62{letter-spacing:-0.119232px;}
.ls4b{letter-spacing:-0.105984px;}
.ls1d{letter-spacing:-0.079488px;}
.ls4e{letter-spacing:-0.066240px;}
.ls56{letter-spacing:-0.052992px;}
.ls26{letter-spacing:-0.036000px;}
.ls40{letter-spacing:-0.021600px;}
.ls60{letter-spacing:-0.014400px;}
.ls14{letter-spacing:0.000000px;}
.lse{letter-spacing:0.014400px;}
.ls31{letter-spacing:0.021600px;}
.ls34{letter-spacing:0.036000px;}
.lsf{letter-spacing:0.059616px;}
.ls3b{letter-spacing:0.102240px;}
.ls1f{letter-spacing:0.116928px;}
.ls7{letter-spacing:0.119232px;}
.ls9{letter-spacing:0.119376px;}
.ls32{letter-spacing:0.125424px;}
.ls1e{letter-spacing:0.158688px;}
.lsc{letter-spacing:0.160416px;}
.lsd{letter-spacing:0.160560px;}
.ls2d{letter-spacing:0.275040px;}
.lsb{letter-spacing:0.275616px;}
.ls33{letter-spacing:0.283968px;}
.ls61{letter-spacing:0.317376px;}
.ls3f{letter-spacing:0.318384px;}
.ls1{letter-spacing:0.319392px;}
.ls4{letter-spacing:0.319536px;}
.ls3e{letter-spacing:0.356400px;}
.lsa{letter-spacing:0.359136px;}
.ls3{letter-spacing:0.359280px;}
.ls6{letter-spacing:0.360000px;}
.ls5{letter-spacing:0.360576px;}
.ls2{letter-spacing:0.360720px;}
.ls2f{letter-spacing:0.399168px;}
.ls75{letter-spacing:0.411840px;}
.ls12{letter-spacing:0.485424px;}
.ls8{letter-spacing:0.498672px;}
.ls0{letter-spacing:0.819360px;}
.ls13{letter-spacing:1.171872px;}
.ls10{letter-spacing:1.593792px;}
.ls3a{letter-spacing:2.345184px;}
.ls54{letter-spacing:2.652480px;}
.ls6c{letter-spacing:3.312000px;}
.ls39{letter-spacing:3.673440px;}
.ls49{letter-spacing:4.066560px;}
.ls47{letter-spacing:4.215744px;}
.ls48{letter-spacing:4.216032px;}
.ls74{letter-spacing:5.756112px;}
.ls6b{letter-spacing:5.935680px;}
.ls77{letter-spacing:6.536160px;}
.ls76{letter-spacing:6.557760px;}
.ls11{letter-spacing:9.980640px;}
.ls38{letter-spacing:11.664000px;}
.ls36{letter-spacing:11.665440px;}
.ls35{letter-spacing:11.665872px;}
.ls37{letter-spacing:11.666880px;}
.ls73{letter-spacing:11.855088px;}
.ls3d{letter-spacing:12.126240px;}
.ls3c{letter-spacing:12.127680px;}
.ls6d{letter-spacing:15.708960px;}
.ls53{letter-spacing:68.039136px;}
.ls2e{letter-spacing:847.440000px;}
.sc_{text-shadow:none;}
.sc0{text-shadow:-0.015em 0 transparent,0 0.015em transparent,0.015em 0 transparent,0 -0.015em  transparent;}
@media screen and (-webkit-min-device-pixel-ratio:0){
.sc_{-webkit-text-stroke:0px transparent;}
.sc0{-webkit-text-stroke:0.015em transparent;text-shadow:none;}
}
.ws5{word-spacing:-43.234560px;}
.ws3{word-spacing:-26.493408px;}
.wsd{word-spacing:-23.577696px;}
.ws1d{word-spacing:-23.502528px;}
.wse{word-spacing:-23.494176px;}
.wsa{word-spacing:-23.377248px;}
.wsb{word-spacing:-23.335488px;}
.ws9{word-spacing:-23.218560px;}
.ws13{word-spacing:-20.030400px;}
.ws8{word-spacing:-18.335232px;}
.wsc{word-spacing:-18.255744px;}
.ws7{word-spacing:-18.216000px;}
.ws1a{word-spacing:-18.021600px;}
.ws14{word-spacing:-18.000000px;}
.ws29{word-spacing:-17.985600px;}
.ws25{word-spacing:-17.978400px;}
.ws1b{word-spacing:-17.964000px;}
.ws22{word-spacing:-17.416800px;}
.ws1e{word-spacing:-17.402400px;}
.ws36{word-spacing:-16.833600px;}
.ws31{word-spacing:-16.819200px;}
.ws10{word-spacing:-16.813440px;}
.ws2b{word-spacing:-16.797600px;}
.ws30{word-spacing:-16.783200px;}
.ws2c{word-spacing:-16.761600px;}
.ws11{word-spacing:-16.668288px;}
.ws20{word-spacing:-16.560000px;}
.wsf{word-spacing:-16.553376px;}
.ws21{word-spacing:-16.493760px;}
.ws12{word-spacing:-16.492896px;}
.ws26{word-spacing:-16.434144px;}
.ws23{word-spacing:-16.394400px;}
.ws28{word-spacing:-15.804864px;}
.ws39{word-spacing:-15.580800px;}
.ws24{word-spacing:-15.255072px;}
.ws1{word-spacing:-15.212160px;}
.ws15{word-spacing:-15.120000px;}
.ws0{word-spacing:-15.004224px;}
.ws17{word-spacing:-14.950656px;}
.ws16{word-spacing:-14.878080px;}
.ws19{word-spacing:-14.837760px;}
.ws2{word-spacing:-14.818176px;}
.ws1f{word-spacing:-14.817600px;}
.ws3d{word-spacing:-14.400000px;}
.ws35{word-spacing:-12.988800px;}
.ws37{word-spacing:-12.913920px;}
.ws2a{word-spacing:-12.844800px;}
.ws3a{word-spacing:-12.833280px;}
.ws2f{word-spacing:-12.827520px;}
.ws34{word-spacing:-12.821760px;}
.ws3b{word-spacing:-12.816000px;}
.ws2e{word-spacing:-12.810240px;}
.ws33{word-spacing:-12.804480px;}
.ws32{word-spacing:-12.746880px;}
.ws2d{word-spacing:-12.735360px;}
.ws38{word-spacing:-11.606400px;}
.ws3c{word-spacing:-10.344960px;}
.ws27{word-spacing:-0.442656px;}
.ws1c{word-spacing:-0.403920px;}
.ws4{word-spacing:-0.155520px;}
.ws18{word-spacing:0.000000px;}
.ws6{word-spacing:1.533312px;}
._1c{margin-left:-3.618864px;}
._19{margin-left:-2.175552px;}
._1{margin-left:-1.123632px;}
._0{width:1.039680px;}
._7{width:2.100240px;}
._4{width:3.715200px;}
._2{width:4.874400px;}
._6{width:6.026400px;}
._5{width:7.149600px;}
._e{width:8.913600px;}
._8{width:9.950400px;}
._c{width:10.980000px;}
._d{width:12.758400px;}
._b{width:14.428800px;}
._9{width:15.480000px;}
._a{width:16.994880px;}
._18{width:18.017280px;}
._f{width:19.036800px;}
._3{width:20.318400px;}
._11{width:22.104000px;}
._14{width:23.378400px;}
._13{width:25.473600px;}
._10{width:27.712800px;}
._17{width:28.828800px;}
._12{width:34.236000px;}
._15{width:68.039136px;}
._1b{width:104.075424px;}
._1a{width:105.597792px;}
._16{width:195.839280px;}
.fc2{color:transparent;}
.fc3{color:rgb(34,34,34);}
.fc1{color:rgb(255,255,255);}
.fc0{color:rgb(0,0,0);}
.fsa{font-size:38.880000px;}
.fs9{font-size:41.760000px;}
.fsb{font-size:47.520000px;}
.fs1{font-size:54.720000px;}
.fsc{font-size:57.600000px;}
.fs7{font-size:60.480000px;}
.fs0{font-size:66.240000px;}
.fs8{font-size:72.000000px;}
.fs6{font-size:83.520000px;}
.fs2{font-size:96.480000px;}
.fs5{font-size:102.240000px;}
.fs4{font-size:126.720000px;}
.fs3{font-size:155.520000px;}
.y0{bottom:0.000000px;}
.y25{bottom:5.880000px;}
.y5{bottom:13.225800px;}
.y24{bottom:42.000000px;}
.y3{bottom:46.440000px;}
.y23{bottom:47.880000px;}
.y2{bottom:61.560000px;}
.y21{bottom:110.160000px;}
.y91{bottom:111.600000px;}
.yab{bottom:113.760000px;}
.y112{bottom:114.120000px;}
.y15f{bottom:114.840000px;}
.y63{bottom:115.560000px;}
.y137{bottom:116.640000px;}
.y179{bottom:121.320000px;}
.yea{bottom:123.120000px;}
.yc6{bottom:126.000000px;}
.y20{bottom:127.080000px;}
.y90{bottom:127.800000px;}
.yaa{bottom:133.920000px;}
.y111{bottom:134.280000px;}
.y15e{bottom:135.000000px;}
.y62{bottom:135.720000px;}
.y136{bottom:137.160000px;}
.ye9{bottom:143.280000px;}
.y194{bottom:145.800000px;}
.yc5{bottom:146.160000px;}
.y1f{bottom:147.600000px;}
.y178{bottom:150.480000px;}
.ya9{bottom:154.080000px;}
.y110{bottom:154.800000px;}
.y15d{bottom:155.160000px;}
.y61{bottom:155.880000px;}
.y11f{bottom:156.240000px;}
.y135{bottom:157.320000px;}
.y1e{bottom:161.280000px;}
.ye8{bottom:163.800000px;}
.ya8{bottom:174.600000px;}
.y10f{bottom:174.960000px;}
.y15c{bottom:175.320000px;}
.y60{bottom:176.400000px;}
.y134{bottom:177.480000px;}
.y177{bottom:180.000000px;}
.yc4{bottom:183.960000px;}
.y1d{bottom:193.320000px;}
.ya7{bottom:194.760000px;}
.y10e{bottom:195.120000px;}
.y15b{bottom:195.840000px;}
.y5f{bottom:196.560000px;}
.y133{bottom:197.640000px;}
.y88{bottom:199.800000px;}
.yc3{bottom:202.680000px;}
.ye7{bottom:204.120000px;}
.y176{bottom:209.160000px;}
.y1c{bottom:213.480000px;}
.ya6{bottom:214.920000px;}
.y10d{bottom:215.280000px;}
.y15a{bottom:216.000000px;}
.y5e{bottom:216.720000px;}
.y132{bottom:218.160000px;}
.yc2{bottom:221.040000px;}
.ye6{bottom:224.280000px;}
.ya5{bottom:235.080000px;}
.y10c{bottom:235.440000px;}
.y159{bottom:236.160000px;}
.y11e{bottom:237.240000px;}
.y87{bottom:237.960000px;}
.y131{bottom:238.320000px;}
.yc1{bottom:239.760000px;}
.ye5{bottom:244.800000px;}
.y1b{bottom:250.560000px;}
.y193{bottom:253.800000px;}
.y5d{bottom:254.880000px;}
.ya4{bottom:255.600000px;}
.y158{bottom:256.320000px;}
.y11d{bottom:257.400000px;}
.y130{bottom:258.480000px;}
.ye4{bottom:264.960000px;}
.y10b{bottom:273.240000px;}
.y192{bottom:273.960000px;}
.y5c{bottom:275.400000px;}
.ya3{bottom:275.760000px;}
.y86{bottom:276.120000px;}
.yc0{bottom:276.840000px;}
.y11c{bottom:277.560000px;}
.y12f{bottom:278.640000px;}
.y175{bottom:282.240000px;}
.ye3{bottom:285.120000px;}
.y10a{bottom:291.960000px;}
.y191{bottom:294.120000px;}
.y5b{bottom:295.560000px;}
.ya2{bottom:295.920000px;}
.ybf{bottom:297.000000px;}
.y11b{bottom:297.720000px;}
.y12e{bottom:299.160000px;}
.ye2{bottom:305.280000px;}
.y109{bottom:310.680000px;}
.y85{bottom:314.280000px;}
.y1a{bottom:314.640000px;}
.y5a{bottom:315.720000px;}
.ya1{bottom:316.080000px;}
.ybe{bottom:317.160000px;}
.y11a{bottom:318.240000px;}
.y12d{bottom:319.320000px;}
.y190{bottom:323.280000px;}
.ye1{bottom:325.800000px;}
.y108{bottom:329.040000px;}
.y59{bottom:335.880000px;}
.ya0{bottom:336.600000px;}
.y157{bottom:337.320000px;}
.y119{bottom:338.400000px;}
.y12c{bottom:339.480000px;}
.ye0{bottom:345.960000px;}
.y19{bottom:351.720000px;}
.y84{bottom:352.800000px;}
.ybd{bottom:354.960000px;}
.y58{bottom:356.400000px;}
.y9f{bottom:356.760000px;}
.y118{bottom:358.560000px;}
.y174{bottom:360.720000px;}
.ydf{bottom:366.120000px;}
.ybc{bottom:373.680000px;}
.y156{bottom:375.840000px;}
.y57{bottom:376.560000px;}
.y9e{bottom:376.920000px;}
.y117{bottom:378.720000px;}
.y173{bottom:380.880000px;}
.y18f{bottom:381.960000px;}
.y12b{bottom:383.400000px;}
.y107{bottom:386.280000px;}
.y83{bottom:390.960000px;}
.ybb{bottom:392.040000px;}
.y155{bottom:396.000000px;}
.y56{bottom:396.720000px;}
.y9d{bottom:397.080000px;}
.y116{bottom:398.880000px;}
.y172{bottom:401.400000px;}
.y18e{bottom:402.120000px;}
.yde{bottom:404.280000px;}
.y106{bottom:406.800000px;}
.yba{bottom:410.760000px;}
.y18{bottom:415.440000px;}
.y154{bottom:416.160000px;}
.y55{bottom:416.880000px;}
.y171{bottom:421.560000px;}
.y18d{bottom:422.280000px;}
.ydd{bottom:424.800000px;}
.y105{bottom:426.960000px;}
.y82{bottom:429.120000px;}
.y17{bottom:435.600000px;}
.y153{bottom:436.320000px;}
.y115{bottom:436.680000px;}
.y54{bottom:437.400000px;}
.y170{bottom:441.720000px;}
.ydc{bottom:444.960000px;}
.y1a3{bottom:445.320000px;}
.y104{bottom:447.120000px;}
.yb9{bottom:447.840000px;}
.y18c{bottom:451.800000px;}
.y16{bottom:455.760000px;}
.y114{bottom:456.480000px;}
.y152{bottom:456.840000px;}
.y53{bottom:457.560000px;}
.y12a{bottom:461.160000px;}
.y16f{bottom:461.880000px;}
.ydb{bottom:465.120000px;}
.yb8{bottom:466.200000px;}
.y81{bottom:467.280000px;}
.y113{bottom:471.960000px;}
.y9c{bottom:475.920000px;}
.y15{bottom:476.280000px;}
.y129{bottom:477.000000px;}
.y1a2{bottom:477.360000px;}
.y52{bottom:477.720000px;}
.y18b{bottom:480.960000px;}
.y16e{bottom:482.400000px;}
.yb7{bottom:484.920000px;}
.yda{bottom:485.280000px;}
.y80{bottom:487.800000px;}
.y9b{bottom:496.080000px;}
.y14{bottom:496.440000px;}
.y151{bottom:497.160000px;}
.y51{bottom:497.880000px;}
.y18a{bottom:501.120000px;}
.y16d{bottom:502.560000px;}
.yd9{bottom:505.800000px;}
.y7f{bottom:507.960000px;}
.y13{bottom:516.600000px;}
.y150{bottom:517.320000px;}
.y50{bottom:518.400000px;}
.yb6{bottom:522.000000px;}
.y16c{bottom:522.720000px;}
.yd8{bottom:525.960000px;}
.y7e{bottom:528.120000px;}
.y189{bottom:530.280000px;}
.y1a1{bottom:534.960000px;}
.y12{bottom:536.760000px;}
.y14f{bottom:537.840000px;}
.y4f{bottom:538.560000px;}
.y16b{bottom:542.880000px;}
.y103{bottom:545.400000px;}
.yd7{bottom:546.120000px;}
.y8f{bottom:547.200000px;}
.y7d{bottom:548.280000px;}
.y9a{bottom:556.920000px;}
.y11{bottom:557.280000px;}
.y14e{bottom:558.000000px;}
.y4e{bottom:558.720000px;}
.yb5{bottom:559.440000px;}
.y188{bottom:559.800000px;}
.y16a{bottom:563.400000px;}
.y102{bottom:564.120000px;}
.yd6{bottom:566.280000px;}
.y8e{bottom:567.000000px;}
.y7c{bottom:568.800000px;}
.y99{bottom:577.080000px;}
.yb4{bottom:578.160000px;}
.y4d{bottom:578.880000px;}
.y101{bottom:582.840000px;}
.y169{bottom:583.560000px;}
.y8d{bottom:586.800000px;}
.y7b{bottom:588.960000px;}
.y1a0{bottom:593.280000px;}
.y10{bottom:594.360000px;}
.yb3{bottom:596.880000px;}
.y98{bottom:597.600000px;}
.y14d{bottom:598.320000px;}
.y4c{bottom:599.400000px;}
.y100{bottom:601.200000px;}
.y168{bottom:603.720000px;}
.y8c{bottom:606.600000px;}
.yd5{bottom:606.960000px;}
.y7a{bottom:609.120000px;}
.yb2{bottom:615.600000px;}
.y97{bottom:617.760000px;}
.y187{bottom:618.120000px;}
.y14c{bottom:618.840000px;}
.y4b{bottom:619.560000px;}
.yff{bottom:619.920000px;}
.y19f{bottom:622.800000px;}
.y167{bottom:623.880000px;}
.y8b{bottom:626.760000px;}
.yd4{bottom:627.120000px;}
.y79{bottom:629.280000px;}
.yb1{bottom:633.960000px;}
.y96{bottom:637.920000px;}
.y186{bottom:638.280000px;}
.yfe{bottom:638.640000px;}
.y14b{bottom:639.000000px;}
.y4a{bottom:639.720000px;}
.y8a{bottom:642.600000px;}
.y166{bottom:644.400000px;}
.yd3{bottom:647.280000px;}
.y78{bottom:649.800000px;}
.y19e{bottom:651.960000px;}
.yb0{bottom:652.680000px;}
.y185{bottom:658.800000px;}
.y49{bottom:659.880000px;}
.y165{bottom:664.560000px;}
.yd2{bottom:667.800000px;}
.yf{bottom:668.520000px;}
.yaf{bottom:671.040000px;}
.y95{bottom:675.360000px;}
.y14a{bottom:676.440000px;}
.y48{bottom:680.400000px;}
.y19d{bottom:681.120000px;}
.y164{bottom:684.720000px;}
.ye{bottom:685.800000px;}
.y77{bottom:687.960000px;}
.y94{bottom:691.200000px;}
.y149{bottom:695.160000px;}
.yfd{bottom:695.880000px;}
.y47{bottom:700.560000px;}
.yd{bottom:703.080000px;}
.y163{bottom:704.880000px;}
.y76{bottom:708.120000px;}
.y19c{bottom:710.280000px;}
.y148{bottom:713.880000px;}
.yfc{bottom:716.040000px;}
.yc{bottom:720.360000px;}
.y46{bottom:720.720000px;}
.y162{bottom:725.400000px;}
.y75{bottom:728.280000px;}
.y147{bottom:732.600000px;}
.yfb{bottom:736.200000px;}
.y19b{bottom:739.800000px;}
.y161{bottom:745.560000px;}
.y74{bottom:748.800000px;}
.y146{bottom:750.960000px;}
.y184{bottom:757.800000px;}
.y45{bottom:758.880000px;}
.yd1{bottom:766.800000px;}
.y73{bottom:768.960000px;}
.y145{bottom:769.680000px;}
.yfa{bottom:774.000000px;}
.y183{bottom:777.960000px;}
.y44{bottom:779.400000px;}
.yd0{bottom:786.960000px;}
.y144{bottom:788.040000px;}
.y72{bottom:789.120000px;}
.y160{bottom:789.480000px;}
.yf9{bottom:792.720000px;}
.y19a{bottom:798.120000px;}
.y43{bottom:799.560000px;}
.y33{bottom:800.640000px;}
.yb{bottom:805.320000px;}
.y143{bottom:806.760000px;}
.ycf{bottom:807.120000px;}
.y71{bottom:809.280000px;}
.yf8{bottom:811.080000px;}
.y32{bottom:819.360000px;}
.y42{bottom:819.720000px;}
.yce{bottom:827.280000px;}
.ya{bottom:829.440000px;}
.y70{bottom:829.800000px;}
.y31{bottom:838.080000px;}
.y41{bottom:839.880000px;}
.y142{bottom:843.840000px;}
.ycd{bottom:847.800000px;}
.yf7{bottom:848.160000px;}
.y6f{bottom:849.960000px;}
.y9{bottom:853.920000px;}
.y30{bottom:856.440000px;}
.y182{bottom:856.800000px;}
.y40{bottom:860.400000px;}
.y141{bottom:864.000000px;}
.yf6{bottom:866.880000px;}
.ycc{bottom:867.960000px;}
.y6e{bottom:870.120000px;}
.y2f{bottom:875.160000px;}
.y8{bottom:878.040000px;}
.y3f{bottom:880.560000px;}
.y140{bottom:884.160000px;}
.yf5{bottom:885.600000px;}
.y181{bottom:885.960000px;}
.ycb{bottom:888.120000px;}
.y6d{bottom:890.280000px;}
.y2e{bottom:893.520000px;}
.y3e{bottom:900.720000px;}
.y13f{bottom:904.320000px;}
.y180{bottom:906.120000px;}
.yca{bottom:908.280000px;}
.y6c{bottom:910.800000px;}
.y2d{bottom:912.240000px;}
.y7{bottom:920.520000px;}
.y3d{bottom:920.880000px;}
.yf4{bottom:922.320000px;}
.y128{bottom:925.200000px;}
.y17f{bottom:926.280000px;}
.yc9{bottom:928.800000px;}
.y6b{bottom:930.960000px;}
.y199{bottom:935.280000px;}
.y3c{bottom:941.400000px;}
.y13e{bottom:942.120000px;}
.yf3{bottom:942.840000px;}
.y127{bottom:943.920000px;}
.yc8{bottom:948.960000px;}
.y2c{bottom:949.320000px;}
.y6a{bottom:951.120000px;}
.y17e{bottom:955.800000px;}
.y13d{bottom:960.840000px;}
.y3b{bottom:961.560000px;}
.y126{bottom:962.640000px;}
.yf2{bottom:963.000000px;}
.y198{bottom:964.800000px;}
.yc7{bottom:969.120000px;}
.y6{bottom:969.480000px;}
.y69{bottom:971.280000px;}
.y13c{bottom:979.200000px;}
.y125{bottom:981.000000px;}
.y3a{bottom:981.720000px;}
.yf1{bottom:983.160000px;}
.y17d{bottom:984.960000px;}
.y2b{bottom:986.400000px;}
.yae{bottom:989.280000px;}
.y68{bottom:991.800000px;}
.y197{bottom:993.960000px;}
.y13b{bottom:997.920000px;}
.y124{bottom:999.720000px;}
.y39{bottom:1001.880000px;}
.yad{bottom:1009.800000px;}
.y67{bottom:1011.960000px;}
.y17c{bottom:1014.120000px;}
.y13a{bottom:1016.640000px;}
.y123{bottom:1018.080000px;}
.yf0{bottom:1020.960000px;}
.y38{bottom:1022.400000px;}
.y196{bottom:1023.120000px;}
.yac{bottom:1029.960000px;}
.y66{bottom:1032.120000px;}
.y139{bottom:1035.000000px;}
.y122{bottom:1036.800000px;}
.yef{bottom:1039.680000px;}
.y37{bottom:1042.560000px;}
.y17b{bottom:1043.280000px;}
.y2a{bottom:1050.120000px;}
.y65{bottom:1052.280000px;}
.y138{bottom:1053.720000px;}
.y121{bottom:1055.160000px;}
.yee{bottom:1058.040000px;}
.y36{bottom:1062.720000px;}
.y29{bottom:1070.280000px;}
.y64{bottom:1072.800000px;}
.y120{bottom:1073.880000px;}
.yed{bottom:1076.760000px;}
.y195{bottom:1081.800000px;}
.y89{bottom:1082.520000px;}
.y35{bottom:1082.880000px;}
.y4{bottom:1083.000000px;}
.y28{bottom:1090.800000px;}
.yec{bottom:1095.120000px;}
.y17a{bottom:1101.960000px;}
.y27{bottom:1110.960000px;}
.y93{bottom:1113.840000px;}
.y34{bottom:1126.800000px;}
.y26{bottom:1131.120000px;}
.yeb{bottom:1132.200000px;}
.y92{bottom:1133.640000px;}
.y1{bottom:1180.800000px;}
.y22{bottom:1185.120000px;}
.hf{height:22.500000px;}
.hc{height:25.913672px;}
.he{height:34.595859px;}
.h3{height:39.837656px;}
.hd{height:40.310156px;}
.h9{height:44.060625px;}
.h2{height:44.149219px;}
.h11{height:46.122188px;}
.ha{height:51.539063px;}
.hb{height:60.257813px;}
.h10{height:60.804844px;}
.h8{height:60.886406px;}
.h12{height:61.008750px;}
.h7{height:70.240078px;}
.h5{height:70.240222px;}
.h4{height:121.500000px;}
.h6{height:123.885000px;}
.h0{height:1261.440000px;}
.h1{height:1261.500000px;}
.w3{width:19.500000px;}
.w4{width:25.500000px;}
.w2{width:43.500000px;}
.w0{width:892.440000px;}
.w1{width:892.500000px;}
.x0{left:0.000000px;}
.xe{left:1.260000px;}
.x4{left:23.100024px;}
.x1{left:84.959856px;}
.x9{left:127.484964px;}
.xf{left:138.134772px;}
.x16{left:144.856188px;}
.x15{left:170.009784px;}
.x13{left:173.995596px;}
.x11{left:181.026864px;}
.x2{left:201.884760px;}
.x18{left:229.308120px;}
.xa{left:300.959856px;}
.x8{left:345.040668px;}
.xb{left:355.813128px;}
.x19{left:433.500000px;}
.xd{left:436.500000px;}
.xc{left:446.159880px;}
.x5{left:488.844360px;}
.x17{left:582.779520px;}
.x10{left:586.379880px;}
.x12{left:587.819880px;}
.x14{left:590.339880px;}
.x6{left:658.627200px;}
.x3{left:772.500000px;}
.x7{left:807.360120px;}
@media print{
.v2{vertical-align:-12.800000pt;}
.v0{vertical-align:0.000000pt;}
.v1{vertical-align:44.800000pt;}
.ls86{letter-spacing:-3.604480pt;}
.ls87{letter-spacing:-3.219200pt;}
.ls88{letter-spacing:-3.200000pt;}
.ls81{letter-spacing:-2.483200pt;}
.ls5c{letter-spacing:-2.260992pt;}
.ls5d{letter-spacing:-2.249216pt;}
.ls5f{letter-spacing:-2.243328pt;}
.ls5e{letter-spacing:-2.225664pt;}
.ls82{letter-spacing:-2.150400pt;}
.ls83{letter-spacing:-2.131200pt;}
.ls4d{letter-spacing:-1.632000pt;}
.ls51{letter-spacing:-1.619200pt;}
.ls50{letter-spacing:-1.600000pt;}
.ls4f{letter-spacing:-1.587200pt;}
.ls19{letter-spacing:-1.509376pt;}
.ls72{letter-spacing:-1.479680pt;}
.ls1a{letter-spacing:-1.475584pt;}
.ls7b{letter-spacing:-1.469440pt;}
.ls7d{letter-spacing:-1.418240pt;}
.ls79{letter-spacing:-1.413120pt;}
.ls85{letter-spacing:-1.408000pt;}
.ls7c{letter-spacing:-1.402880pt;}
.ls7a{letter-spacing:-1.397760pt;}
.ls84{letter-spacing:-1.392640pt;}
.ls6e{letter-spacing:-1.382400pt;}
.ls80{letter-spacing:-1.320960pt;}
.ls7e{letter-spacing:-1.254400pt;}
.ls57{letter-spacing:-1.195264pt;}
.ls5a{letter-spacing:-1.183488pt;}
.ls5b{letter-spacing:-1.177600pt;}
.ls59{letter-spacing:-1.171712pt;}
.ls58{letter-spacing:-1.159936pt;}
.ls71{letter-spacing:-1.100800pt;}
.ls6f{letter-spacing:-1.081600pt;}
.ls70{letter-spacing:-1.068800pt;}
.ls78{letter-spacing:-1.049600pt;}
.ls7f{letter-spacing:-1.036800pt;}
.ls67{letter-spacing:-0.683008pt;}
.ls65{letter-spacing:-0.671232pt;}
.ls6a{letter-spacing:-0.653568pt;}
.ls69{letter-spacing:-0.641792pt;}
.ls64{letter-spacing:-0.630016pt;}
.ls66{letter-spacing:-0.594688pt;}
.ls68{letter-spacing:-0.582912pt;}
.ls63{letter-spacing:-0.577024pt;}
.ls44{letter-spacing:-0.563200pt;}
.ls43{letter-spacing:-0.550400pt;}
.ls42{letter-spacing:-0.531200pt;}
.ls41{letter-spacing:-0.518400pt;}
.ls45{letter-spacing:-0.499200pt;}
.ls16{letter-spacing:-0.452352pt;}
.ls17{letter-spacing:-0.350208pt;}
.ls2a{letter-spacing:-0.327936pt;}
.ls20{letter-spacing:-0.301056pt;}
.ls18{letter-spacing:-0.291584pt;}
.ls25{letter-spacing:-0.284928pt;}
.ls2b{letter-spacing:-0.274176pt;}
.ls27{letter-spacing:-0.268800pt;}
.ls28{letter-spacing:-0.258048pt;}
.ls21{letter-spacing:-0.231168pt;}
.ls22{letter-spacing:-0.215040pt;}
.ls29{letter-spacing:-0.204288pt;}
.ls15{letter-spacing:-0.184832pt;}
.ls1c{letter-spacing:-0.176640pt;}
.ls4c{letter-spacing:-0.164864pt;}
.ls2c{letter-spacing:-0.150528pt;}
.ls55{letter-spacing:-0.147200pt;}
.ls1b{letter-spacing:-0.141312pt;}
.ls52{letter-spacing:-0.129536pt;}
.ls24{letter-spacing:-0.129024pt;}
.ls23{letter-spacing:-0.123648pt;}
.ls30{letter-spacing:-0.117760pt;}
.ls4a{letter-spacing:-0.111872pt;}
.ls46{letter-spacing:-0.107520pt;}
.ls62{letter-spacing:-0.105984pt;}
.ls4b{letter-spacing:-0.094208pt;}
.ls1d{letter-spacing:-0.070656pt;}
.ls4e{letter-spacing:-0.058880pt;}
.ls56{letter-spacing:-0.047104pt;}
.ls26{letter-spacing:-0.032000pt;}
.ls40{letter-spacing:-0.019200pt;}
.ls60{letter-spacing:-0.012800pt;}
.ls14{letter-spacing:0.000000pt;}
.lse{letter-spacing:0.012800pt;}
.ls31{letter-spacing:0.019200pt;}
.ls34{letter-spacing:0.032000pt;}
.lsf{letter-spacing:0.052992pt;}
.ls3b{letter-spacing:0.090880pt;}
.ls1f{letter-spacing:0.103936pt;}
.ls7{letter-spacing:0.105984pt;}
.ls9{letter-spacing:0.106112pt;}
.ls32{letter-spacing:0.111488pt;}
.ls1e{letter-spacing:0.141056pt;}
.lsc{letter-spacing:0.142592pt;}
.lsd{letter-spacing:0.142720pt;}
.ls2d{letter-spacing:0.244480pt;}
.lsb{letter-spacing:0.244992pt;}
.ls33{letter-spacing:0.252416pt;}
.ls61{letter-spacing:0.282112pt;}
.ls3f{letter-spacing:0.283008pt;}
.ls1{letter-spacing:0.283904pt;}
.ls4{letter-spacing:0.284032pt;}
.ls3e{letter-spacing:0.316800pt;}
.lsa{letter-spacing:0.319232pt;}
.ls3{letter-spacing:0.319360pt;}
.ls6{letter-spacing:0.320000pt;}
.ls5{letter-spacing:0.320512pt;}
.ls2{letter-spacing:0.320640pt;}
.ls2f{letter-spacing:0.354816pt;}
.ls75{letter-spacing:0.366080pt;}
.ls12{letter-spacing:0.431488pt;}
.ls8{letter-spacing:0.443264pt;}
.ls0{letter-spacing:0.728320pt;}
.ls13{letter-spacing:1.041664pt;}
.ls10{letter-spacing:1.416704pt;}
.ls3a{letter-spacing:2.084608pt;}
.ls54{letter-spacing:2.357760pt;}
.ls6c{letter-spacing:2.944000pt;}
.ls39{letter-spacing:3.265280pt;}
.ls49{letter-spacing:3.614720pt;}
.ls47{letter-spacing:3.747328pt;}
.ls48{letter-spacing:3.747584pt;}
.ls74{letter-spacing:5.116544pt;}
.ls6b{letter-spacing:5.276160pt;}
.ls77{letter-spacing:5.809920pt;}
.ls76{letter-spacing:5.829120pt;}
.ls11{letter-spacing:8.871680pt;}
.ls38{letter-spacing:10.368000pt;}
.ls36{letter-spacing:10.369280pt;}
.ls35{letter-spacing:10.369664pt;}
.ls37{letter-spacing:10.370560pt;}
.ls73{letter-spacing:10.537856pt;}
.ls3d{letter-spacing:10.778880pt;}
.ls3c{letter-spacing:10.780160pt;}
.ls6d{letter-spacing:13.963520pt;}
.ls53{letter-spacing:60.479232pt;}
.ls2e{letter-spacing:753.280000pt;}
.ws5{word-spacing:-38.430720pt;}
.ws3{word-spacing:-23.549696pt;}
.wsd{word-spacing:-20.957952pt;}
.ws1d{word-spacing:-20.891136pt;}
.wse{word-spacing:-20.883712pt;}
.wsa{word-spacing:-20.779776pt;}
.wsb{word-spacing:-20.742656pt;}
.ws9{word-spacing:-20.638720pt;}
.ws13{word-spacing:-17.804800pt;}
.ws8{word-spacing:-16.297984pt;}
.wsc{word-spacing:-16.227328pt;}
.ws7{word-spacing:-16.192000pt;}
.ws1a{word-spacing:-16.019200pt;}
.ws14{word-spacing:-16.000000pt;}
.ws29{word-spacing:-15.987200pt;}
.ws25{word-spacing:-15.980800pt;}
.ws1b{word-spacing:-15.968000pt;}
.ws22{word-spacing:-15.481600pt;}
.ws1e{word-spacing:-15.468800pt;}
.ws36{word-spacing:-14.963200pt;}
.ws31{word-spacing:-14.950400pt;}
.ws10{word-spacing:-14.945280pt;}
.ws2b{word-spacing:-14.931200pt;}
.ws30{word-spacing:-14.918400pt;}
.ws2c{word-spacing:-14.899200pt;}
.ws11{word-spacing:-14.816256pt;}
.ws20{word-spacing:-14.720000pt;}
.wsf{word-spacing:-14.714112pt;}
.ws21{word-spacing:-14.661120pt;}
.ws12{word-spacing:-14.660352pt;}
.ws26{word-spacing:-14.608128pt;}
.ws23{word-spacing:-14.572800pt;}
.ws28{word-spacing:-14.048768pt;}
.ws39{word-spacing:-13.849600pt;}
.ws24{word-spacing:-13.560064pt;}
.ws1{word-spacing:-13.521920pt;}
.ws15{word-spacing:-13.440000pt;}
.ws0{word-spacing:-13.337088pt;}
.ws17{word-spacing:-13.289472pt;}
.ws16{word-spacing:-13.224960pt;}
.ws19{word-spacing:-13.189120pt;}
.ws2{word-spacing:-13.171712pt;}
.ws1f{word-spacing:-13.171200pt;}
.ws3d{word-spacing:-12.800000pt;}
.ws35{word-spacing:-11.545600pt;}
.ws37{word-spacing:-11.479040pt;}
.ws2a{word-spacing:-11.417600pt;}
.ws3a{word-spacing:-11.407360pt;}
.ws2f{word-spacing:-11.402240pt;}
.ws34{word-spacing:-11.397120pt;}
.ws3b{word-spacing:-11.392000pt;}
.ws2e{word-spacing:-11.386880pt;}
.ws33{word-spacing:-11.381760pt;}
.ws32{word-spacing:-11.330560pt;}
.ws2d{word-spacing:-11.320320pt;}
.ws38{word-spacing:-10.316800pt;}
.ws3c{word-spacing:-9.195520pt;}
.ws27{word-spacing:-0.393472pt;}
.ws1c{word-spacing:-0.359040pt;}
.ws4{word-spacing:-0.138240pt;}
.ws18{word-spacing:0.000000pt;}
.ws6{word-spacing:1.362944pt;}
._1c{margin-left:-3.216768pt;}
._19{margin-left:-1.933824pt;}
._1{margin-left:-0.998784pt;}
._0{width:0.924160pt;}
._7{width:1.866880pt;}
._4{width:3.302400pt;}
._2{width:4.332800pt;}
._6{width:5.356800pt;}
._5{width:6.355200pt;}
._e{width:7.923200pt;}
._8{width:8.844800pt;}
._c{width:9.760000pt;}
._d{width:11.340800pt;}
._b{width:12.825600pt;}
._9{width:13.760000pt;}
._a{width:15.106560pt;}
._18{width:16.015360pt;}
._f{width:16.921600pt;}
._3{width:18.060800pt;}
._11{width:19.648000pt;}
._14{width:20.780800pt;}
._13{width:22.643200pt;}
._10{width:24.633600pt;}
._17{width:25.625600pt;}
._12{width:30.432000pt;}
._15{width:60.479232pt;}
._1b{width:92.511488pt;}
._1a{width:93.864704pt;}
._16{width:174.079360pt;}
.fsa{font-size:34.560000pt;}
.fs9{font-size:37.120000pt;}
.fsb{font-size:42.240000pt;}
.fs1{font-size:48.640000pt;}
.fsc{font-size:51.200000pt;}
.fs7{font-size:53.760000pt;}
.fs0{font-size:58.880000pt;}
.fs8{font-size:64.000000pt;}
.fs6{font-size:74.240000pt;}
.fs2{font-size:85.760000pt;}
.fs5{font-size:90.880000pt;}
.fs4{font-size:112.640000pt;}
.fs3{font-size:138.240000pt;}
.y0{bottom:0.000000pt;}
.y25{bottom:5.226667pt;}
.y5{bottom:11.756267pt;}
.y24{bottom:37.333333pt;}
.y3{bottom:41.280000pt;}
.y23{bottom:42.560000pt;}
.y2{bottom:54.720000pt;}
.y21{bottom:97.920000pt;}
.y91{bottom:99.200000pt;}
.yab{bottom:101.120000pt;}
.y112{bottom:101.440000pt;}
.y15f{bottom:102.080000pt;}
.y63{bottom:102.720000pt;}
.y137{bottom:103.680000pt;}
.y179{bottom:107.840000pt;}
.yea{bottom:109.440000pt;}
.yc6{bottom:112.000000pt;}
.y20{bottom:112.960000pt;}
.y90{bottom:113.600000pt;}
.yaa{bottom:119.040000pt;}
.y111{bottom:119.360000pt;}
.y15e{bottom:120.000000pt;}
.y62{bottom:120.640000pt;}
.y136{bottom:121.920000pt;}
.ye9{bottom:127.360000pt;}
.y194{bottom:129.600000pt;}
.yc5{bottom:129.920000pt;}
.y1f{bottom:131.200000pt;}
.y178{bottom:133.760000pt;}
.ya9{bottom:136.960000pt;}
.y110{bottom:137.600000pt;}
.y15d{bottom:137.920000pt;}
.y61{bottom:138.560000pt;}
.y11f{bottom:138.880000pt;}
.y135{bottom:139.840000pt;}
.y1e{bottom:143.360000pt;}
.ye8{bottom:145.600000pt;}
.ya8{bottom:155.200000pt;}
.y10f{bottom:155.520000pt;}
.y15c{bottom:155.840000pt;}
.y60{bottom:156.800000pt;}
.y134{bottom:157.760000pt;}
.y177{bottom:160.000000pt;}
.yc4{bottom:163.520000pt;}
.y1d{bottom:171.840000pt;}
.ya7{bottom:173.120000pt;}
.y10e{bottom:173.440000pt;}
.y15b{bottom:174.080000pt;}
.y5f{bottom:174.720000pt;}
.y133{bottom:175.680000pt;}
.y88{bottom:177.600000pt;}
.yc3{bottom:180.160000pt;}
.ye7{bottom:181.440000pt;}
.y176{bottom:185.920000pt;}
.y1c{bottom:189.760000pt;}
.ya6{bottom:191.040000pt;}
.y10d{bottom:191.360000pt;}
.y15a{bottom:192.000000pt;}
.y5e{bottom:192.640000pt;}
.y132{bottom:193.920000pt;}
.yc2{bottom:196.480000pt;}
.ye6{bottom:199.360000pt;}
.ya5{bottom:208.960000pt;}
.y10c{bottom:209.280000pt;}
.y159{bottom:209.920000pt;}
.y11e{bottom:210.880000pt;}
.y87{bottom:211.520000pt;}
.y131{bottom:211.840000pt;}
.yc1{bottom:213.120000pt;}
.ye5{bottom:217.600000pt;}
.y1b{bottom:222.720000pt;}
.y193{bottom:225.600000pt;}
.y5d{bottom:226.560000pt;}
.ya4{bottom:227.200000pt;}
.y158{bottom:227.840000pt;}
.y11d{bottom:228.800000pt;}
.y130{bottom:229.760000pt;}
.ye4{bottom:235.520000pt;}
.y10b{bottom:242.880000pt;}
.y192{bottom:243.520000pt;}
.y5c{bottom:244.800000pt;}
.ya3{bottom:245.120000pt;}
.y86{bottom:245.440000pt;}
.yc0{bottom:246.080000pt;}
.y11c{bottom:246.720000pt;}
.y12f{bottom:247.680000pt;}
.y175{bottom:250.880000pt;}
.ye3{bottom:253.440000pt;}
.y10a{bottom:259.520000pt;}
.y191{bottom:261.440000pt;}
.y5b{bottom:262.720000pt;}
.ya2{bottom:263.040000pt;}
.ybf{bottom:264.000000pt;}
.y11b{bottom:264.640000pt;}
.y12e{bottom:265.920000pt;}
.ye2{bottom:271.360000pt;}
.y109{bottom:276.160000pt;}
.y85{bottom:279.360000pt;}
.y1a{bottom:279.680000pt;}
.y5a{bottom:280.640000pt;}
.ya1{bottom:280.960000pt;}
.ybe{bottom:281.920000pt;}
.y11a{bottom:282.880000pt;}
.y12d{bottom:283.840000pt;}
.y190{bottom:287.360000pt;}
.ye1{bottom:289.600000pt;}
.y108{bottom:292.480000pt;}
.y59{bottom:298.560000pt;}
.ya0{bottom:299.200000pt;}
.y157{bottom:299.840000pt;}
.y119{bottom:300.800000pt;}
.y12c{bottom:301.760000pt;}
.ye0{bottom:307.520000pt;}
.y19{bottom:312.640000pt;}
.y84{bottom:313.600000pt;}
.ybd{bottom:315.520000pt;}
.y58{bottom:316.800000pt;}
.y9f{bottom:317.120000pt;}
.y118{bottom:318.720000pt;}
.y174{bottom:320.640000pt;}
.ydf{bottom:325.440000pt;}
.ybc{bottom:332.160000pt;}
.y156{bottom:334.080000pt;}
.y57{bottom:334.720000pt;}
.y9e{bottom:335.040000pt;}
.y117{bottom:336.640000pt;}
.y173{bottom:338.560000pt;}
.y18f{bottom:339.520000pt;}
.y12b{bottom:340.800000pt;}
.y107{bottom:343.360000pt;}
.y83{bottom:347.520000pt;}
.ybb{bottom:348.480000pt;}
.y155{bottom:352.000000pt;}
.y56{bottom:352.640000pt;}
.y9d{bottom:352.960000pt;}
.y116{bottom:354.560000pt;}
.y172{bottom:356.800000pt;}
.y18e{bottom:357.440000pt;}
.yde{bottom:359.360000pt;}
.y106{bottom:361.600000pt;}
.yba{bottom:365.120000pt;}
.y18{bottom:369.280000pt;}
.y154{bottom:369.920000pt;}
.y55{bottom:370.560000pt;}
.y171{bottom:374.720000pt;}
.y18d{bottom:375.360000pt;}
.ydd{bottom:377.600000pt;}
.y105{bottom:379.520000pt;}
.y82{bottom:381.440000pt;}
.y17{bottom:387.200000pt;}
.y153{bottom:387.840000pt;}
.y115{bottom:388.160000pt;}
.y54{bottom:388.800000pt;}
.y170{bottom:392.640000pt;}
.ydc{bottom:395.520000pt;}
.y1a3{bottom:395.840000pt;}
.y104{bottom:397.440000pt;}
.yb9{bottom:398.080000pt;}
.y18c{bottom:401.600000pt;}
.y16{bottom:405.120000pt;}
.y114{bottom:405.760000pt;}
.y152{bottom:406.080000pt;}
.y53{bottom:406.720000pt;}
.y12a{bottom:409.920000pt;}
.y16f{bottom:410.560000pt;}
.ydb{bottom:413.440000pt;}
.yb8{bottom:414.400000pt;}
.y81{bottom:415.360000pt;}
.y113{bottom:419.520000pt;}
.y9c{bottom:423.040000pt;}
.y15{bottom:423.360000pt;}
.y129{bottom:424.000000pt;}
.y1a2{bottom:424.320000pt;}
.y52{bottom:424.640000pt;}
.y18b{bottom:427.520000pt;}
.y16e{bottom:428.800000pt;}
.yb7{bottom:431.040000pt;}
.yda{bottom:431.360000pt;}
.y80{bottom:433.600000pt;}
.y9b{bottom:440.960000pt;}
.y14{bottom:441.280000pt;}
.y151{bottom:441.920000pt;}
.y51{bottom:442.560000pt;}
.y18a{bottom:445.440000pt;}
.y16d{bottom:446.720000pt;}
.yd9{bottom:449.600000pt;}
.y7f{bottom:451.520000pt;}
.y13{bottom:459.200000pt;}
.y150{bottom:459.840000pt;}
.y50{bottom:460.800000pt;}
.yb6{bottom:464.000000pt;}
.y16c{bottom:464.640000pt;}
.yd8{bottom:467.520000pt;}
.y7e{bottom:469.440000pt;}
.y189{bottom:471.360000pt;}
.y1a1{bottom:475.520000pt;}
.y12{bottom:477.120000pt;}
.y14f{bottom:478.080000pt;}
.y4f{bottom:478.720000pt;}
.y16b{bottom:482.560000pt;}
.y103{bottom:484.800000pt;}
.yd7{bottom:485.440000pt;}
.y8f{bottom:486.400000pt;}
.y7d{bottom:487.360000pt;}
.y9a{bottom:495.040000pt;}
.y11{bottom:495.360000pt;}
.y14e{bottom:496.000000pt;}
.y4e{bottom:496.640000pt;}
.yb5{bottom:497.280000pt;}
.y188{bottom:497.600000pt;}
.y16a{bottom:500.800000pt;}
.y102{bottom:501.440000pt;}
.yd6{bottom:503.360000pt;}
.y8e{bottom:504.000000pt;}
.y7c{bottom:505.600000pt;}
.y99{bottom:512.960000pt;}
.yb4{bottom:513.920000pt;}
.y4d{bottom:514.560000pt;}
.y101{bottom:518.080000pt;}
.y169{bottom:518.720000pt;}
.y8d{bottom:521.600000pt;}
.y7b{bottom:523.520000pt;}
.y1a0{bottom:527.360000pt;}
.y10{bottom:528.320000pt;}
.yb3{bottom:530.560000pt;}
.y98{bottom:531.200000pt;}
.y14d{bottom:531.840000pt;}
.y4c{bottom:532.800000pt;}
.y100{bottom:534.400000pt;}
.y168{bottom:536.640000pt;}
.y8c{bottom:539.200000pt;}
.yd5{bottom:539.520000pt;}
.y7a{bottom:541.440000pt;}
.yb2{bottom:547.200000pt;}
.y97{bottom:549.120000pt;}
.y187{bottom:549.440000pt;}
.y14c{bottom:550.080000pt;}
.y4b{bottom:550.720000pt;}
.yff{bottom:551.040000pt;}
.y19f{bottom:553.600000pt;}
.y167{bottom:554.560000pt;}
.y8b{bottom:557.120000pt;}
.yd4{bottom:557.440000pt;}
.y79{bottom:559.360000pt;}
.yb1{bottom:563.520000pt;}
.y96{bottom:567.040000pt;}
.y186{bottom:567.360000pt;}
.yfe{bottom:567.680000pt;}
.y14b{bottom:568.000000pt;}
.y4a{bottom:568.640000pt;}
.y8a{bottom:571.200000pt;}
.y166{bottom:572.800000pt;}
.yd3{bottom:575.360000pt;}
.y78{bottom:577.600000pt;}
.y19e{bottom:579.520000pt;}
.yb0{bottom:580.160000pt;}
.y185{bottom:585.600000pt;}
.y49{bottom:586.560000pt;}
.y165{bottom:590.720000pt;}
.yd2{bottom:593.600000pt;}
.yf{bottom:594.240000pt;}
.yaf{bottom:596.480000pt;}
.y95{bottom:600.320000pt;}
.y14a{bottom:601.280000pt;}
.y48{bottom:604.800000pt;}
.y19d{bottom:605.440000pt;}
.y164{bottom:608.640000pt;}
.ye{bottom:609.600000pt;}
.y77{bottom:611.520000pt;}
.y94{bottom:614.400000pt;}
.y149{bottom:617.920000pt;}
.yfd{bottom:618.560000pt;}
.y47{bottom:622.720000pt;}
.yd{bottom:624.960000pt;}
.y163{bottom:626.560000pt;}
.y76{bottom:629.440000pt;}
.y19c{bottom:631.360000pt;}
.y148{bottom:634.560000pt;}
.yfc{bottom:636.480000pt;}
.yc{bottom:640.320000pt;}
.y46{bottom:640.640000pt;}
.y162{bottom:644.800000pt;}
.y75{bottom:647.360000pt;}
.y147{bottom:651.200000pt;}
.yfb{bottom:654.400000pt;}
.y19b{bottom:657.600000pt;}
.y161{bottom:662.720000pt;}
.y74{bottom:665.600000pt;}
.y146{bottom:667.520000pt;}
.y184{bottom:673.600000pt;}
.y45{bottom:674.560000pt;}
.yd1{bottom:681.600000pt;}
.y73{bottom:683.520000pt;}
.y145{bottom:684.160000pt;}
.yfa{bottom:688.000000pt;}
.y183{bottom:691.520000pt;}
.y44{bottom:692.800000pt;}
.yd0{bottom:699.520000pt;}
.y144{bottom:700.480000pt;}
.y72{bottom:701.440000pt;}
.y160{bottom:701.760000pt;}
.yf9{bottom:704.640000pt;}
.y19a{bottom:709.440000pt;}
.y43{bottom:710.720000pt;}
.y33{bottom:711.680000pt;}
.yb{bottom:715.840000pt;}
.y143{bottom:717.120000pt;}
.ycf{bottom:717.440000pt;}
.y71{bottom:719.360000pt;}
.yf8{bottom:720.960000pt;}
.y32{bottom:728.320000pt;}
.y42{bottom:728.640000pt;}
.yce{bottom:735.360000pt;}
.ya{bottom:737.280000pt;}
.y70{bottom:737.600000pt;}
.y31{bottom:744.960000pt;}
.y41{bottom:746.560000pt;}
.y142{bottom:750.080000pt;}
.ycd{bottom:753.600000pt;}
.yf7{bottom:753.920000pt;}
.y6f{bottom:755.520000pt;}
.y9{bottom:759.040000pt;}
.y30{bottom:761.280000pt;}
.y182{bottom:761.600000pt;}
.y40{bottom:764.800000pt;}
.y141{bottom:768.000000pt;}
.yf6{bottom:770.560000pt;}
.ycc{bottom:771.520000pt;}
.y6e{bottom:773.440000pt;}
.y2f{bottom:777.920000pt;}
.y8{bottom:780.480000pt;}
.y3f{bottom:782.720000pt;}
.y140{bottom:785.920000pt;}
.yf5{bottom:787.200000pt;}
.y181{bottom:787.520000pt;}
.ycb{bottom:789.440000pt;}
.y6d{bottom:791.360000pt;}
.y2e{bottom:794.240000pt;}
.y3e{bottom:800.640000pt;}
.y13f{bottom:803.840000pt;}
.y180{bottom:805.440000pt;}
.yca{bottom:807.360000pt;}
.y6c{bottom:809.600000pt;}
.y2d{bottom:810.880000pt;}
.y7{bottom:818.240000pt;}
.y3d{bottom:818.560000pt;}
.yf4{bottom:819.840000pt;}
.y128{bottom:822.400000pt;}
.y17f{bottom:823.360000pt;}
.yc9{bottom:825.600000pt;}
.y6b{bottom:827.520000pt;}
.y199{bottom:831.360000pt;}
.y3c{bottom:836.800000pt;}
.y13e{bottom:837.440000pt;}
.yf3{bottom:838.080000pt;}
.y127{bottom:839.040000pt;}
.yc8{bottom:843.520000pt;}
.y2c{bottom:843.840000pt;}
.y6a{bottom:845.440000pt;}
.y17e{bottom:849.600000pt;}
.y13d{bottom:854.080000pt;}
.y3b{bottom:854.720000pt;}
.y126{bottom:855.680000pt;}
.yf2{bottom:856.000000pt;}
.y198{bottom:857.600000pt;}
.yc7{bottom:861.440000pt;}
.y6{bottom:861.760000pt;}
.y69{bottom:863.360000pt;}
.y13c{bottom:870.400000pt;}
.y125{bottom:872.000000pt;}
.y3a{bottom:872.640000pt;}
.yf1{bottom:873.920000pt;}
.y17d{bottom:875.520000pt;}
.y2b{bottom:876.800000pt;}
.yae{bottom:879.360000pt;}
.y68{bottom:881.600000pt;}
.y197{bottom:883.520000pt;}
.y13b{bottom:887.040000pt;}
.y124{bottom:888.640000pt;}
.y39{bottom:890.560000pt;}
.yad{bottom:897.600000pt;}
.y67{bottom:899.520000pt;}
.y17c{bottom:901.440000pt;}
.y13a{bottom:903.680000pt;}
.y123{bottom:904.960000pt;}
.yf0{bottom:907.520000pt;}
.y38{bottom:908.800000pt;}
.y196{bottom:909.440000pt;}
.yac{bottom:915.520000pt;}
.y66{bottom:917.440000pt;}
.y139{bottom:920.000000pt;}
.y122{bottom:921.600000pt;}
.yef{bottom:924.160000pt;}
.y37{bottom:926.720000pt;}
.y17b{bottom:927.360000pt;}
.y2a{bottom:933.440000pt;}
.y65{bottom:935.360000pt;}
.y138{bottom:936.640000pt;}
.y121{bottom:937.920000pt;}
.yee{bottom:940.480000pt;}
.y36{bottom:944.640000pt;}
.y29{bottom:951.360000pt;}
.y64{bottom:953.600000pt;}
.y120{bottom:954.560000pt;}
.yed{bottom:957.120000pt;}
.y195{bottom:961.600000pt;}
.y89{bottom:962.240000pt;}
.y35{bottom:962.560000pt;}
.y4{bottom:962.666667pt;}
.y28{bottom:969.600000pt;}
.yec{bottom:973.440000pt;}
.y17a{bottom:979.520000pt;}
.y27{bottom:987.520000pt;}
.y93{bottom:990.080000pt;}
.y34{bottom:1001.600000pt;}
.y26{bottom:1005.440000pt;}
.yeb{bottom:1006.400000pt;}
.y92{bottom:1007.680000pt;}
.y1{bottom:1049.600000pt;}
.y22{bottom:1053.440000pt;}
.hf{height:20.000000pt;}
.hc{height:23.034375pt;}
.he{height:30.751875pt;}
.h3{height:35.411250pt;}
.hd{height:35.831250pt;}
.h9{height:39.165000pt;}
.h2{height:39.243750pt;}
.h11{height:40.997500pt;}
.ha{height:45.812500pt;}
.hb{height:53.562500pt;}
.h10{height:54.048750pt;}
.h8{height:54.121250pt;}
.h12{height:54.230000pt;}
.h7{height:62.435625pt;}
.h5{height:62.435753pt;}
.h4{height:108.000000pt;}
.h6{height:110.120000pt;}
.h0{height:1121.280000pt;}
.h1{height:1121.333333pt;}
.w3{width:17.333333pt;}
.w4{width:22.666667pt;}
.w2{width:38.666667pt;}
.w0{width:793.280000pt;}
.w1{width:793.333333pt;}
.x0{left:0.000000pt;}
.xe{left:1.120000pt;}
.x4{left:20.533355pt;}
.x1{left:75.519872pt;}
.x9{left:113.319968pt;}
.xf{left:122.786464pt;}
.x16{left:128.761056pt;}
.x15{left:151.119808pt;}
.x13{left:154.662752pt;}
.x11{left:160.912768pt;}
.x2{left:179.453120pt;}
.x18{left:203.829440pt;}
.xa{left:267.519872pt;}
.x8{left:306.702816pt;}
.xb{left:316.278336pt;}
.x19{left:385.333333pt;}
.xd{left:388.000000pt;}
.xc{left:396.586560pt;}
.x5{left:434.528320pt;}
.x17{left:518.026240pt;}
.x10{left:521.226560pt;}
.x12{left:522.506560pt;}
.x14{left:524.746560pt;}
.x6{left:585.446400pt;}
.x3{left:686.666667pt;}
.x7{left:717.653440pt;}
}




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